/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@-webkit-keyframes bounce {

	0%,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0)
	}
}

@keyframes bounce {

	0%,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0)
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom
}

@-webkit-keyframes flash {

	0%,
	50%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

@keyframes flash {

	0%,
	50%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse
}

@-webkit-keyframes rubberBand {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	30% {
		-webkit-transform: scale3d(1.25, .75, 1);
		transform: scale3d(1.25, .75, 1)
	}

	40% {
		-webkit-transform: scale3d(.75, 1.25, 1);
		transform: scale3d(.75, 1.25, 1)
	}

	50% {
		-webkit-transform: scale3d(1.15, .85, 1);
		transform: scale3d(1.15, .85, 1)
	}

	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1)
	}

	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes rubberBand {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	30% {
		-webkit-transform: scale3d(1.25, .75, 1);
		transform: scale3d(1.25, .75, 1)
	}

	40% {
		-webkit-transform: scale3d(.75, 1.25, 1);
		transform: scale3d(.75, 1.25, 1)
	}

	50% {
		-webkit-transform: scale3d(1.15, .85, 1);
		transform: scale3d(1.15, .85, 1)
	}

	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1)
	}

	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand
}

@-webkit-keyframes shake {

	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}
}

@keyframes shake {

	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake
}

@-webkit-keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg)
	}

	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg)
	}

	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg)
	}

	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg)
	}

	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg)
	}

	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg)
	}

	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg)
	}

	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg)
	}

	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

.headShake {
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: headShake;
	animation-name: headShake
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}

	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}

	to {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}

	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}

	to {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
}

.swing {
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
		transform: scale3d(.9, .9, .9) rotate(-3deg)
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
		transform: scale3d(.9, .9, .9) rotate(-3deg)
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada
}

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
		transform: translate3d(-25%, 0, 0) rotate(-5deg)
	}

	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
		transform: translate3d(20%, 0, 0) rotate(3deg)
	}

	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
		transform: translate3d(-15%, 0, 0) rotate(-3deg)
	}

	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
		transform: translate3d(10%, 0, 0) rotate(2deg)
	}

	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
		transform: translate3d(-5%, 0, 0) rotate(-1deg)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
		transform: translate3d(-25%, 0, 0) rotate(-5deg)
	}

	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
		transform: translate3d(20%, 0, 0) rotate(3deg)
	}

	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
		transform: translate3d(-15%, 0, 0) rotate(-3deg)
	}

	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
		transform: translate3d(10%, 0, 0) rotate(2deg)
	}

	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
		transform: translate3d(-5%, 0, 0) rotate(-1deg)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
}

@-webkit-keyframes jello {

	0%,
	11.1%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}

	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg)
	}

	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}

	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}

	66.6% {
		-webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}

	77.7% {
		-webkit-transform: skewX(.390625deg) skewY(.390625deg);
		transform: skewX(.390625deg) skewY(.390625deg)
	}

	88.8% {
		-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
		transform: skewX(-.1953125deg) skewY(-.1953125deg)
	}
}

@keyframes jello {

	0%,
	11.1%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}

	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg)
	}

	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}

	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}

	66.6% {
		-webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}

	77.7% {
		-webkit-transform: skewX(.390625deg) skewY(.390625deg);
		transform: skewX(.390625deg) skewY(.390625deg)
	}

	88.8% {
		-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
		transform: skewX(-.1953125deg) skewY(-.1953125deg)
	}
}

.jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	-webkit-transform-origin: center;
	transform-origin: center
}

@-webkit-keyframes heartBeat {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	14% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3)
	}

	28% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	42% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3)
	}

	70% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes heartBeat {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	14% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3)
	}

	28% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}

	42% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3)
	}

	70% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

.heartBeat {
	-webkit-animation-name: heartBeat;
	animation-name: heartBeat;
	-webkit-animation-duration: 1.3s;
	animation-duration: 1.3s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out
}

@-webkit-keyframes bounceIn {

	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03)
	}

	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97)
	}

	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes bounceIn {

	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03)
	}

	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97)
	}

	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.bounceIn {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes bounceInDown {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes bounceInLeft {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes bounceInRight {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes bounceInUp {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}

	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
}

@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}

	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
}

.bounceOut {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

@keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	40% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	50% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
		transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	to {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	40% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	50% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
		transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	to {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip
}

@-webkit-keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX
}

@-webkit-keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY
}

@-webkit-keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
}

.flipOutX {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotateY(-15deg);
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotateY(-15deg);
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
}

.flipOutY {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0
	}

	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1
	}

	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0
	}

	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1
	}

	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0
	}
}

@keyframes lightSpeedOut {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

@keyframes rotateIn {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

@keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

@keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

@keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

@keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0
	}
}

@keyframes rotateOut {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}
}

@keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

@keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

@keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

@keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	20%,
	60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	40%,
	80% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}

	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0
	}
}

@keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	20%,
	60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	40%,
	80% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}

	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0
	}
}

.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-name: hinge;
	animation-name: hinge
}

@-webkit-keyframes jackInTheBox {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) rotate(30deg);
		transform: scale(.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom
	}

	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}

	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes jackInTheBox {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) rotate(30deg);
		transform: scale(.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom
	}

	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}

	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

.jackInTheBox {
	-webkit-animation-name: jackInTheBox;
	animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
		transform: translate3d(-100%, 0, 0) rotate(-120deg)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
		transform: translate3d(-100%, 0, 0) rotate(-120deg)
	}

	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn
}

@-webkit-keyframes rollOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
		transform: translate3d(100%, 0, 0) rotate(120deg)
	}
}

@keyframes rollOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
		transform: translate3d(100%, 0, 0) rotate(120deg)
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	50% {
		opacity: 1
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	50% {
		opacity: 1
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	to {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	to {
		opacity: 0
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center
	}
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center
	}
}

.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center
	}
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center
	}
}

.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

@keyframes slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

.animated.delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s
}

.animated.delay-2s {
	-webkit-animation-delay: 2s;
	animation-delay: 2s
}

.animated.delay-3s {
	-webkit-animation-delay: 3s;
	animation-delay: 3s
}

.animated.delay-4s {
	-webkit-animation-delay: 4s;
	animation-delay: 4s
}

.animated.delay-5s {
	-webkit-animation-delay: 5s;
	animation-delay: 5s
}

.animated.fast {
	-webkit-animation-duration: .8s;
	animation-duration: .8s
}

.animated.faster {
	-webkit-animation-duration: .5s;
	animation-duration: .5s
}

.animated.slow {
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}

.animated.slower {
	-webkit-animation-duration: 3s;
	animation-duration: 3s
}

@media (prefers-reduced-motion) {
	.animated {
		-webkit-animation: unset !important;
		animation: unset !important;
		-webkit-transition: none !important;
		transition: none !important
	}
}

.select2-container {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	margin: 0;
	position: relative;
	vertical-align: middle
}

.select2-container .select2-selection--single {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	height: 28px;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-select: none
}

.select2-container .select2-selection--single .select2-selection__rendered {
	display: block;
	padding-left: 8px;
	padding-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.select2-container .select2-selection--single .select2-selection__clear {
	position: relative
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
	padding-right: 8px;
	padding-left: 20px
}

.select2-container .select2-selection--multiple {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	min-height: 32px;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-select: none
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
	display: inline-block;
	overflow: hidden;
	padding-left: 8px;
	text-overflow: ellipsis;
	white-space: nowrap
}

.select2-container .select2-search--inline {
	float: left
}

.select2-container .select2-search--inline .select2-search__field {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: none;
	font-size: 100%;
	margin-top: 5px;
	padding: 0
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none
}

.select2-dropdown {
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 4px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	position: absolute;
	left: -100000px;
	width: 100%;
	z-index: 1051
}

.select2-results {
	display: block
}

.select2-results__options {
	list-style: none;
	margin: 0;
	padding: 0
}

.select2-results__option {
	padding: 6px;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-select: none
}

.select2-results__option[aria-selected] {
	cursor: pointer
}

.select2-container--open .select2-dropdown {
	left: 0
}

.select2-container--open .select2-dropdown--above {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0
}

.select2-container--open .select2-dropdown--below {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.select2-search--dropdown {
	display: block;
	padding: 4px
}

.select2-search--dropdown .select2-search__field {
	padding: 4px;
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none
}

.select2-search--dropdown.select2-search--hide {
	display: none
}

.select2-close-mask {
	border: 0;
	margin: 0;
	padding: 0;
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	min-height: 100%;
	min-width: 100%;
	height: auto;
	width: auto;
	opacity: 0;
	z-index: 99;
	background-color: #fff;
	filter: alpha(opacity=0)
}

.select2-hidden-accessible {
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important
}

.select2-container--default .select2-selection--single {
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 4px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #444;
	line-height: 28px
}

.select2-container--default .select2-selection--single .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: 700
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #999
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 26px;
	position: absolute;
	top: 1px;
	right: 1px;
	width: 20px
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #888 transparent transparent;
	border-style: solid;
	border-width: 5px 4px 0;
	height: 0;
	left: 50%;
	margin-left: -4px;
	margin-top: -2px;
	position: absolute;
	top: 50%;
	width: 0
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
	float: left
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
	left: 1px;
	right: auto
}

.select2-container--default.select2-container--disabled .select2-selection--single {
	background-color: #eee;
	cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
	display: none
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #888;
	border-width: 0 4px 5px
}

.select2-container--default .select2-selection--multiple {
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: text
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	list-style: none;
	margin: 0;
	padding: 0 5px;
	width: 100%
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
	list-style: none
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
	color: #999;
	margin-top: 5px;
	float: left
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: 700;
	margin-top: 5px;
	margin-right: 10px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: #e4e4e4;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: default;
	float: left;
	margin-right: 5px;
	margin-top: 5px;
	padding: 0 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	color: #999;
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
	margin-right: 2px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
	color: #333
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder {
	float: right
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
	margin-left: 5px;
	margin-right: auto
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
	margin-left: 2px;
	margin-right: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
	border: 1px solid #000;
	outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
	background-color: #eee;
	cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
	display: none
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid #aaa
}

.select2-container--default .select2-search--inline .select2-search__field {
	background: transparent;
	border: none;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: textfield
}

.select2-container--default .select2-results > .select2-results__options {
	max-height: 200px;
	overflow-y: auto
}

.select2-container--default .select2-results__option[role=group] {
	padding: 0
}

.select2-container--default .select2-results__option[aria-disabled=true] {
	color: #999
}

.select2-container--default .select2-results__option[aria-selected=true] {
	background-color: #ddd
}

.select2-container--default .select2-results__option .select2-results__option {
	padding-left: 1em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
	padding-left: 0
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -1em;
	padding-left: 2em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -2em;
	padding-left: 3em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -3em;
	padding-left: 4em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -4em;
	padding-left: 5em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -5em;
	padding-left: 6em
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #5897fb;
	color: #fff
}

.select2-container--default .select2-results__group {
	cursor: default;
	display: block;
	padding: 6px
}

.select2-container--classic .select2-selection--single {
	background-color: #f7f7f7;
	border: 1px solid #aaa;
	border-radius: 4px;
	outline: 0;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #fff), to(#eee));
	background-image: linear-gradient(180deg, #fff 50%, #eee);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0)
}

.select2-container--classic .select2-selection--single:focus {
	border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
	color: #444;
	line-height: 28px
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: 700;
	margin-right: 10px
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
	color: #999
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
	background-color: #ddd;
	border: none;
	border-left: 1px solid #aaa;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	height: 26px;
	position: absolute;
	top: 1px;
	right: 1px;
	width: 20px;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#ccc));
	background-image: linear-gradient(180deg, #eee 50%, #ccc);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0)
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
	border-color: #888 transparent transparent;
	border-style: solid;
	border-width: 5px 4px 0;
	height: 0;
	left: 50%;
	margin-left: -4px;
	margin-top: -2px;
	position: absolute;
	top: 50%;
	width: 0
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
	float: left
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
	border: none;
	border-right: 1px solid #aaa;
	border-radius: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	left: 1px;
	right: auto
}

.select2-container--classic.select2-container--open .select2-selection--single {
	border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
	background: transparent;
	border: none
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #888;
	border-width: 0 4px 5px
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(50%, #eee));
	background-image: linear-gradient(180deg, #fff 0, #eee 50%);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0)
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eee), to(#fff));
	background-image: linear-gradient(180deg, #eee 50%, #fff);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0)
}

.select2-container--classic .select2-selection--multiple {
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: text;
	outline: 0
}

.select2-container--classic .select2-selection--multiple:focus {
	border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
	list-style: none;
	margin: 0;
	padding: 0 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
	display: none
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
	background-color: #e4e4e4;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: default;
	float: left;
	margin-right: 5px;
	margin-top: 5px;
	padding: 0 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
	color: #888;
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
	margin-right: 2px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
	color: #555
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
	float: right;
	margin-left: 5px;
	margin-right: auto
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
	margin-left: 2px;
	margin-right: auto
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
	border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
	border: 1px solid #aaa;
	outline: 0
}

.select2-container--classic .select2-search--inline .select2-search__field {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none
}

.select2-container--classic .select2-dropdown {
	background-color: #fff;
	border: 1px solid transparent
}

.select2-container--classic .select2-dropdown--above {
	border-bottom: none
}

.select2-container--classic .select2-dropdown--below {
	border-top: none
}

.select2-container--classic .select2-results > .select2-results__options {
	max-height: 200px;
	overflow-y: auto
}

.select2-container--classic .select2-results__option[role=group] {
	padding: 0
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
	color: grey
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
	background-color: #3875d7;
	color: #fff
}

.select2-container--classic .select2-results__group {
	cursor: default;
	display: block;
	padding: 6px
}

.select2-container--classic.select2-container--open .select2-dropdown {
	border-color: #5897fb
}

@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 400;
	src: local("Montserrat Regular"), local("Montserrat-Regular"), url(https://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm459WRhyyTh89ZNpQ.woff2) format("woff2");
	unicode-range: u+0460-052f, u+1c80-1c88, u+20b4, u+2de0-2dff, u+a640-a69f, u+fe2e-fe2f
}

@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 400;
	src: local("Montserrat Regular"), local("Montserrat-Regular"), url(https://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm459W1hyyTh89ZNpQ.woff2) format("woff2");
	unicode-range: u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116
}

@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 400;
	src: local("Montserrat Regular"), local("Montserrat-Regular"), url(https://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm459WZhyyTh89ZNpQ.woff2) format("woff2");
	unicode-range: u+0102-0103, u+0110-0111, u+1ea0-1ef9, u+20ab
}

@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 400;
	src: local("Montserrat Regular"), local("Montserrat-Regular"), url(https://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm459WdhyyTh89ZNpQ.woff2) format("woff2");
	unicode-range: u+0100-024f, u+0259, u+1e??, u+2020, u+20a0-20ab, u+20ad-20cf, u+2113, u+2c60-2c7f, u+a720-a7ff
}

@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 400;
	src: local("Montserrat Regular"), local("Montserrat-Regular"), url(https://fonts.gstatic.com/s/montserrat/v12/JTUSjIg1_i6t8kCHKm459WlhyyTh89Y.woff2) format("woff2");
	unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+2000-206f, u+2074, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd
}

@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 500;
	src: local("Montserrat Medium"), local("Montserrat-Medium"), url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_ZpC3gTD_vx3rCubqg.woff2) format("woff2");
	unicode-range: u+0460-052f, u+1c80-1c88, u+20b4, u+2de0-2dff, u+a640-a69f, u+fe2e-fe2f
}

@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 500;
	src: local("Montserrat Medium"), local("Montserrat-Medium"), url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_ZpC3g3D_vx3rCubqg.woff2) format("woff2");
	unicode-range: u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116
}

@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 500;
	src: local("Montserrat Medium"), local("Montserrat-Medium"), url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_ZpC3gbD_vx3rCubqg.woff2) format("woff2");
	unicode-range: u+0102-0103, u+0110-0111, u+1ea0-1ef9, u+20ab
}

@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 500;
	src: local("Montserrat Medium"), local("Montserrat-Medium"), url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_ZpC3gfD_vx3rCubqg.woff2) format("woff2");
	unicode-range: u+0100-024f, u+0259, u+1e??, u+2020, u+20a0-20ab, u+20ad-20cf, u+2113, u+2c60-2c7f, u+a720-a7ff
}

@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 500;
	src: local("Montserrat Medium"), local("Montserrat-Medium"), url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_ZpC3gnD_vx3rCs.woff2) format("woff2");
	unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+2000-206f, u+2074, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd
}

@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 600;
	src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_bZF3gTD_vx3rCubqg.woff2) format("woff2");
	unicode-range: u+0460-052f, u+1c80-1c88, u+20b4, u+2de0-2dff, u+a640-a69f, u+fe2e-fe2f
}

@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 600;
	src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_bZF3g3D_vx3rCubqg.woff2) format("woff2");
	unicode-range: u+0400-045f, u+0490-0491, u+04b0-04b1, u+2116
}

@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 600;
	src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_bZF3gbD_vx3rCubqg.woff2) format("woff2");
	unicode-range: u+0102-0103, u+0110-0111, u+1ea0-1ef9, u+20ab
}

@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 600;
	src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_bZF3gfD_vx3rCubqg.woff2) format("woff2");
	unicode-range: u+0100-024f, u+0259, u+1e??, u+2020, u+20a0-20ab, u+20ad-20cf, u+2113, u+2c60-2c7f, u+a720-a7ff
}

@font-face {
	font-family: Montserrat;
	font-style: normal;
	font-weight: 600;
	src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url(https://fonts.gstatic.com/s/montserrat/v12/JTURjIg1_i6t8kCHKm45_bZF3gnD_vx3rCs.woff2) format("woff2");
	unicode-range: u+00??, u+0131, u+0152-0153, u+02bb-02bc, u+02c6, u+02da, u+02dc, u+2000-206f, u+2074, u+20ac, u+2122, u+2191, u+2193, u+2212, u+2215, u+feff, u+fffd
}

/*
@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 300;
	src: url(/fonts/Roboto-Light.ttf?fc84e998bc29b297ea20321e4c90b6ed)
}

@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 400;
	src: url(/fonts/Roboto-Regular.ttf?3e1af3ef546b9e6ecef9f3ba197bf7d2)
}

@font-face {
	font-family: Roboto;
	font-style: normal;
	font-weight: 500;
	src: url(/fonts/Roboto-Medium.ttf?d08840599e05db7345652d3d417574a9)
}
*/

/*!
 * Bootstrap v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
	--blue: #3b7ae2;
	--indigo: #6610f2;
	--purple: #6f42c1;
	--pink: #e83e8c;
	--red: #e33244;
	--orange: #fd7e14;
	--yellow: #4d8cbf;
	--green: #1aae88;
	--teal: #20c997;
	--cyan: #1ccacc;
	--white: #fff;
	--gray: #6c757d;
	--gray-dark: #343a40;
	--primary: #3b7ae2;
	--secondary: #6c757d;
	--success: #1aae88;
	--info: #1ccacc;
	--warning: #4d8cbf;
	--danger: #e33244;
	--light: #fcfcfd;
	--dark: #343a40;
	--breakpoint-xs: 0;
	--breakpoint-sm: 576px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 992px;
	--breakpoint-xl: 1200px;
	--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

*,
:after,
:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}

html {
	font-family: sans-serif;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

@-ms-viewport {
	width: device-width
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	display: block
}

body {
	margin: 0;
	font-family: Roboto;
	font-size: .8125rem;
	font-weight: 300;
	line-height: 1.5;
	color: #5d6b8d;
	text-align: left;
	background-color: #fafbfd
}

[tabindex="-1"]:focus {
	outline: 0 !important
}

hr {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
	overflow: visible
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: .5rem
}

p {
	margin-top: 0;
	margin-bottom: 1rem
}

abbr[data-original-title],
abbr[title] {
	text-decoration: underline;
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	cursor: help;
	border-bottom: 0
}

address {
	font-style: normal;
	line-height: inherit
}

address,
dl,
ol,
ul {
	margin-bottom: 1rem
}

dl,
ol,
ul {
	margin-top: 0
}

ol ol,
ol ul,
ul ol,
ul ul {
	margin-bottom: 0
}

dt {
	font-weight: 700
}

dd {
	margin-bottom: .5rem;
	margin-left: 0
}

blockquote {
	margin: 0 0 1rem
}

dfn {
	font-style: italic
}

b,
strong {
	font-weight: bolder
}

small {
	font-size: 80%
}

sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

a {
	text-decoration: none;
	background-color: transparent;
	-webkit-text-decoration-skip: objects
}

a,
a:hover {
	color: #5d6b8d
}

a:hover {
	text-decoration: underline
}

a:not([href]):not([tabindex]),
a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
	color: inherit;
	text-decoration: none
}

a:not([href]):not([tabindex]):focus {
	outline: 0
}

code,
kbd,
pre,
samp {
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
	font-size: 1em
}

pre {
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto;
	-ms-overflow-style: scrollbar
}

figure {
	margin: 0 0 1rem
}

img {
	border-style: none
}

img,
svg {
	vertical-align: middle
}

svg {
	overflow: hidden
}

table {
	border-collapse: collapse
}

caption {
	padding-top: .75rem;
	padding-bottom: .75rem;
	color: #6c757d;
	text-align: left;
	caption-side: bottom
}

th {
	text-align: inherit
}

label {
	display: inline-block;
	margin-bottom: .5rem
}

button {
	border-radius: 0
}

button:focus {
	outline: 1px dotted;
	outline: 5px auto -webkit-focus-ring-color
}

button,
input,
optgroup,
select,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit
}

button,
input {
	overflow: visible
}

button,
select {
	text-transform: none
}

[type=reset],
[type=submit],
button,
html [type=button] {
	-webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
	padding: 0;
	border-style: none
}

input[type=checkbox],
input[type=radio] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
	-webkit-appearance: listbox
}

textarea {
	overflow: auto;
	resize: vertical
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0
}

legend {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: .5rem;
	font-size: 1.5rem;
	line-height: inherit;
	color: inherit;
	white-space: normal
}

progress {
	vertical-align: baseline
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto
}

[type=search] {
	outline-offset: -2px;
	-webkit-appearance: none
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button
}

output {
	display: inline-block
}

summary {
	display: list-item;
	cursor: pointer
}

template {
	display: none
}

[hidden] {
	display: none !important
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: .5rem;
	font-family: inherit;
	font-weight: 500;
	line-height: 1.2;
	color: inherit
}

.h1,
h1 {
	font-size: 2.03125rem
}

.h2,
h2 {
	font-size: 1.625rem
}

.h3,
h3 {
	font-size: 1.421875rem
}

.h4,
h4 {
	font-size: 1.21875rem
}

.h5,
h5 {
	font-size: 1.015625rem
}

.h6,
h6 {
	font-size: .8125rem
}

.lead {
	font-size: 1.015625rem;
	font-weight: 300
}

.display-1 {
	font-size: 6rem
}

.display-1,
.display-2 {
	font-weight: 300;
	line-height: 1.2
}

.display-2 {
	font-size: 5.5rem
}

.display-3 {
	font-size: 4.5rem
}

.display-3,
.display-4 {
	font-weight: 300;
	line-height: 1.2
}

.display-4 {
	font-size: 3.5rem
}

hr {
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, .1)
}

.small,
small {
	font-size: 80%;
	font-weight: 400
}

.mark,
mark {
	padding: .2em;
	background-color: #fcf8e3
}

.list-inline,
.list-unstyled {
	padding-left: 0;
	list-style: none
}

.list-inline-item {
	display: inline-block
}

.list-inline-item:not(:last-child) {
	margin-right: .5rem
}

.initialism {
	font-size: 90%;
	text-transform: uppercase
}

.blockquote {
	margin-bottom: 1rem;
	font-size: 1.015625rem
}

.blockquote-footer {
	display: block;
	font-size: 80%;
	color: #6c757d
}

.blockquote-footer:before {
	content: "\2014   \A0"
}

.img-fluid,
.img-thumbnail {
	max-width: 100%;
	height: auto
}

.img-thumbnail {
	padding: .25rem;
	background-color: #fafbfd;
	border: 1px solid #dee2e6;
	border-radius: .2rem
}

.figure {
	display: inline-block
}

.figure-img {
	margin-bottom: .5rem;
	line-height: 1
}

.figure-caption {
	font-size: 90%;
	color: #6c757d
}

code {
	font-size: 87.5%;
	color: #e83e8c;
	word-break: break-word
}

a > code {
	color: inherit
}

kbd {
	padding: .2rem .4rem;
	font-size: 87.5%;
	color: #fff;
	background-color: #212529;
	border-radius: .2rem
}

kbd kbd {
	padding: 0;
	font-size: 100%;
	font-weight: 700
}

pre {
	display: block;
	font-size: 87.5%;
	color: #212529
}

pre code {
	font-size: inherit;
	color: inherit;
	word-break: normal
}

.pre-scrollable {
	max-height: 340px;
	overflow-y: scroll
}

.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto
}

@media (min-width:576px) {
	.container {
		max-width: 540px
	}
}

@media (min-width:768px) {
	.container {
		max-width: 720px
	}
}

@media (min-width:992px) {
	.container {
		max-width: 960px
	}
}

@media (min-width:1200px) {
	.container {
		max-width: 1140px
	}
}

.container-fluid {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto
}

.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px
}

.no-gutters {
	margin-right: 0;
	margin-left: 0
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
	padding-right: 0;
	padding-left: 0
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px
}

.col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%
}

.col-auto {
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: none
}

.col-1,
.col-auto {
	-webkit-box-flex: 0
}

.col-1 {
	-ms-flex: 0 0 8.33333333%;
	flex: 0 0 8.33333333%;
	max-width: 8.33333333%
}

.col-2 {
	-ms-flex: 0 0 16.66666667%;
	flex: 0 0 16.66666667%;
	max-width: 16.66666667%
}

.col-2,
.col-3 {
	-webkit-box-flex: 0
}

.col-3 {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%
}

.col-4 {
	-ms-flex: 0 0 33.33333333%;
	flex: 0 0 33.33333333%;
	max-width: 33.33333333%
}

.col-4,
.col-5 {
	-webkit-box-flex: 0
}

.col-5 {
	-ms-flex: 0 0 41.66666667%;
	flex: 0 0 41.66666667%;
	max-width: 41.66666667%
}

.col-6 {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%
}

.col-6,
.col-7 {
	-webkit-box-flex: 0
}

.col-7 {
	-ms-flex: 0 0 58.33333333%;
	flex: 0 0 58.33333333%;
	max-width: 58.33333333%
}

.col-8 {
	-ms-flex: 0 0 66.66666667%;
	flex: 0 0 66.66666667%;
	max-width: 66.66666667%
}

.col-8,
.col-9 {
	-webkit-box-flex: 0
}

.col-9 {
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%
}

.col-10 {
	-ms-flex: 0 0 83.33333333%;
	flex: 0 0 83.33333333%;
	max-width: 83.33333333%
}

.col-10,
.col-11 {
	-webkit-box-flex: 0
}

.col-11 {
	-ms-flex: 0 0 91.66666667%;
	flex: 0 0 91.66666667%;
	max-width: 91.66666667%
}

.col-12 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%
}

.order-first {
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1
}

.order-last {
	-webkit-box-ordinal-group: 14;
	-ms-flex-order: 13;
	order: 13
}

.order-0 {
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 0;
	order: 0
}

.order-1 {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1
}

.order-2 {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2
}

.order-3 {
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 3;
	order: 3
}

.order-4 {
	-webkit-box-ordinal-group: 5;
	-ms-flex-order: 4;
	order: 4
}

.order-5 {
	-webkit-box-ordinal-group: 6;
	-ms-flex-order: 5;
	order: 5
}

.order-6 {
	-webkit-box-ordinal-group: 7;
	-ms-flex-order: 6;
	order: 6
}

.order-7 {
	-webkit-box-ordinal-group: 8;
	-ms-flex-order: 7;
	order: 7
}

.order-8 {
	-webkit-box-ordinal-group: 9;
	-ms-flex-order: 8;
	order: 8
}

.order-9 {
	-webkit-box-ordinal-group: 10;
	-ms-flex-order: 9;
	order: 9
}

.order-10 {
	-webkit-box-ordinal-group: 11;
	-ms-flex-order: 10;
	order: 10
}

.order-11 {
	-webkit-box-ordinal-group: 12;
	-ms-flex-order: 11;
	order: 11
}

.order-12 {
	-webkit-box-ordinal-group: 13;
	-ms-flex-order: 12;
	order: 12
}

.offset-1 {
	margin-left: 8.33333333%
}

.offset-2 {
	margin-left: 16.66666667%
}

.offset-3 {
	margin-left: 25%
}

.offset-4 {
	margin-left: 33.33333333%
}

.offset-5 {
	margin-left: 41.66666667%
}

.offset-6 {
	margin-left: 50%
}

.offset-7 {
	margin-left: 58.33333333%
}

.offset-8 {
	margin-left: 66.66666667%
}

.offset-9 {
	margin-left: 75%
}

.offset-10 {
	margin-left: 83.33333333%
}

.offset-11 {
	margin-left: 91.66666667%
}

@media (min-width:576px) {
	.col-sm {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%
	}

	.col-sm-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none
	}

	.col-sm-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333333%;
		flex: 0 0 8.33333333%;
		max-width: 8.33333333%
	}

	.col-sm-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66666667%;
		flex: 0 0 16.66666667%;
		max-width: 16.66666667%
	}

	.col-sm-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%
	}

	.col-sm-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333333%;
		flex: 0 0 33.33333333%;
		max-width: 33.33333333%
	}

	.col-sm-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66666667%;
		flex: 0 0 41.66666667%;
		max-width: 41.66666667%
	}

	.col-sm-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%
	}

	.col-sm-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333333%;
		flex: 0 0 58.33333333%;
		max-width: 58.33333333%
	}

	.col-sm-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66666667%;
		flex: 0 0 66.66666667%;
		max-width: 66.66666667%
	}

	.col-sm-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%
	}

	.col-sm-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333333%;
		flex: 0 0 83.33333333%;
		max-width: 83.33333333%
	}

	.col-sm-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66666667%;
		flex: 0 0 91.66666667%;
		max-width: 91.66666667%
	}

	.col-sm-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%
	}

	.order-sm-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1
	}

	.order-sm-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13
	}

	.order-sm-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0
	}

	.order-sm-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}

	.order-sm-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}

	.order-sm-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}

	.order-sm-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}

	.order-sm-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5
	}

	.order-sm-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6
	}

	.order-sm-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7
	}

	.order-sm-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8
	}

	.order-sm-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9
	}

	.order-sm-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10
	}

	.order-sm-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11
	}

	.order-sm-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12
	}

	.offset-sm-0 {
		margin-left: 0
	}

	.offset-sm-1 {
		margin-left: 8.33333333%
	}

	.offset-sm-2 {
		margin-left: 16.66666667%
	}

	.offset-sm-3 {
		margin-left: 25%
	}

	.offset-sm-4 {
		margin-left: 33.33333333%
	}

	.offset-sm-5 {
		margin-left: 41.66666667%
	}

	.offset-sm-6 {
		margin-left: 50%
	}

	.offset-sm-7 {
		margin-left: 58.33333333%
	}

	.offset-sm-8 {
		margin-left: 66.66666667%
	}

	.offset-sm-9 {
		margin-left: 75%
	}

	.offset-sm-10 {
		margin-left: 83.33333333%
	}

	.offset-sm-11 {
		margin-left: 91.66666667%
	}
}

@media (min-width:768px) {
	.col-md {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%
	}

	.col-md-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none
	}

	.col-md-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333333%;
		flex: 0 0 8.33333333%;
		max-width: 8.33333333%
	}

	.col-md-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66666667%;
		flex: 0 0 16.66666667%;
		max-width: 16.66666667%
	}

	.col-md-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%
	}

	.col-md-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333333%;
		flex: 0 0 33.33333333%;
		max-width: 33.33333333%
	}

	.col-md-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66666667%;
		flex: 0 0 41.66666667%;
		max-width: 41.66666667%
	}

	.col-md-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%
	}

	.col-md-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333333%;
		flex: 0 0 58.33333333%;
		max-width: 58.33333333%
	}

	.col-md-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66666667%;
		flex: 0 0 66.66666667%;
		max-width: 66.66666667%
	}

	.col-md-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%
	}

	.col-md-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333333%;
		flex: 0 0 83.33333333%;
		max-width: 83.33333333%
	}

	.col-md-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66666667%;
		flex: 0 0 91.66666667%;
		max-width: 91.66666667%
	}

	.col-md-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%
	}

	.order-md-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1
	}

	.order-md-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13
	}

	.order-md-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0
	}

	.order-md-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}

	.order-md-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}

	.order-md-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}

	.order-md-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}

	.order-md-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5
	}

	.order-md-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6
	}

	.order-md-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7
	}

	.order-md-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8
	}

	.order-md-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9
	}

	.order-md-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10
	}

	.order-md-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11
	}

	.order-md-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12
	}

	.offset-md-0 {
		margin-left: 0
	}

	.offset-md-1 {
		margin-left: 8.33333333%
	}

	.offset-md-2 {
		margin-left: 16.66666667%
	}

	.offset-md-3 {
		margin-left: 25%
	}

	.offset-md-4 {
		margin-left: 33.33333333%
	}

	.offset-md-5 {
		margin-left: 41.66666667%
	}

	.offset-md-6 {
		margin-left: 50%
	}

	.offset-md-7 {
		margin-left: 58.33333333%
	}

	.offset-md-8 {
		margin-left: 66.66666667%
	}

	.offset-md-9 {
		margin-left: 75%
	}

	.offset-md-10 {
		margin-left: 83.33333333%
	}

	.offset-md-11 {
		margin-left: 91.66666667%
	}
}

@media (min-width:992px) {
	.col-lg {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%
	}

	.col-lg-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none
	}

	.col-lg-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333333%;
		flex: 0 0 8.33333333%;
		max-width: 8.33333333%
	}

	.col-lg-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66666667%;
		flex: 0 0 16.66666667%;
		max-width: 16.66666667%
	}

	.col-lg-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%
	}

	.col-lg-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333333%;
		flex: 0 0 33.33333333%;
		max-width: 33.33333333%
	}

	.col-lg-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66666667%;
		flex: 0 0 41.66666667%;
		max-width: 41.66666667%
	}

	.col-lg-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%
	}

	.col-lg-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333333%;
		flex: 0 0 58.33333333%;
		max-width: 58.33333333%
	}

	.col-lg-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66666667%;
		flex: 0 0 66.66666667%;
		max-width: 66.66666667%
	}

	.col-lg-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%
	}

	.col-lg-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333333%;
		flex: 0 0 83.33333333%;
		max-width: 83.33333333%
	}

	.col-lg-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66666667%;
		flex: 0 0 91.66666667%;
		max-width: 91.66666667%
	}

	.col-lg-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%
	}

	.order-lg-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1
	}

	.order-lg-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13
	}

	.order-lg-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0
	}

	.order-lg-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}

	.order-lg-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}

	.order-lg-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}

	.order-lg-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}

	.order-lg-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5
	}

	.order-lg-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6
	}

	.order-lg-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7
	}

	.order-lg-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8
	}

	.order-lg-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9
	}

	.order-lg-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10
	}

	.order-lg-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11
	}

	.order-lg-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12
	}

	.offset-lg-0 {
		margin-left: 0
	}

	.offset-lg-1 {
		margin-left: 8.33333333%
	}

	.offset-lg-2 {
		margin-left: 16.66666667%
	}

	.offset-lg-3 {
		margin-left: 25%
	}

	.offset-lg-4 {
		margin-left: 33.33333333%
	}

	.offset-lg-5 {
		margin-left: 41.66666667%
	}

	.offset-lg-6 {
		margin-left: 50%
	}

	.offset-lg-7 {
		margin-left: 58.33333333%
	}

	.offset-lg-8 {
		margin-left: 66.66666667%
	}

	.offset-lg-9 {
		margin-left: 75%
	}

	.offset-lg-10 {
		margin-left: 83.33333333%
	}

	.offset-lg-11 {
		margin-left: 91.66666667%
	}
}

@media (min-width:1200px) {
	.col-xl {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%
	}

	.col-xl-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none
	}

	.col-xl-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333333%;
		flex: 0 0 8.33333333%;
		max-width: 8.33333333%
	}

	.col-xl-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66666667%;
		flex: 0 0 16.66666667%;
		max-width: 16.66666667%
	}

	.col-xl-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%
	}

	.col-xl-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333333%;
		flex: 0 0 33.33333333%;
		max-width: 33.33333333%
	}

	.col-xl-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66666667%;
		flex: 0 0 41.66666667%;
		max-width: 41.66666667%
	}

	.col-xl-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%
	}

	.col-xl-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333333%;
		flex: 0 0 58.33333333%;
		max-width: 58.33333333%
	}

	.col-xl-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66666667%;
		flex: 0 0 66.66666667%;
		max-width: 66.66666667%
	}

	.col-xl-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%
	}

	.col-xl-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333333%;
		flex: 0 0 83.33333333%;
		max-width: 83.33333333%
	}

	.col-xl-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66666667%;
		flex: 0 0 91.66666667%;
		max-width: 91.66666667%
	}

	.col-xl-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%
	}

	.order-xl-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1
	}

	.order-xl-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13
	}

	.order-xl-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0
	}

	.order-xl-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}

	.order-xl-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2
	}

	.order-xl-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3
	}

	.order-xl-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4
	}

	.order-xl-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5
	}

	.order-xl-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6
	}

	.order-xl-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7
	}

	.order-xl-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8
	}

	.order-xl-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9
	}

	.order-xl-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10
	}

	.order-xl-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11
	}

	.order-xl-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12
	}

	.offset-xl-0 {
		margin-left: 0
	}

	.offset-xl-1 {
		margin-left: 8.33333333%
	}

	.offset-xl-2 {
		margin-left: 16.66666667%
	}

	.offset-xl-3 {
		margin-left: 25%
	}

	.offset-xl-4 {
		margin-left: 33.33333333%
	}

	.offset-xl-5 {
		margin-left: 41.66666667%
	}

	.offset-xl-6 {
		margin-left: 50%
	}

	.offset-xl-7 {
		margin-left: 58.33333333%
	}

	.offset-xl-8 {
		margin-left: 66.66666667%
	}

	.offset-xl-9 {
		margin-left: 75%
	}

	.offset-xl-10 {
		margin-left: 83.33333333%
	}

	.offset-xl-11 {
		margin-left: 91.66666667%
	}
}

.table {
	width: 100%;
	margin-bottom: 1rem;
	background-color: transparent
}

.table td,
.table th {
	padding: .75rem;
	vertical-align: top;
	border-top: 1px solid #dee2e6
}

.table thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #dee2e6
}

.table tbody + tbody {
	border-top: 2px solid #dee2e6
}

.table .table {
	background-color: #fafbfd
}

.table-sm td,
.table-sm th {
	padding: .3rem
}

.table-bordered,
.table-bordered td,
.table-bordered th {
	border: 1px solid #dee2e6
}

.table-bordered thead td,
.table-bordered thead th {
	border-bottom-width: 2px
}

.table-borderless tbody + tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
	border: 0
}

.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(0, 0, 0, .05)
}

.table-hover tbody tr:hover {
	background-color: rgba(0, 0, 0, .075)
}

.table-primary,
.table-primary > td,
.table-primary > th {
	background-color: #c8daf7
}

.table-hover .table-primary:hover,
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
	background-color: #b2cbf4
}

.table-secondary,
.table-secondary > td,
.table-secondary > th {
	background-color: #d6d8db
}

.table-hover .table-secondary:hover,
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
	background-color: #c8cbcf
}

.table-success,
.table-success > td,
.table-success > th {
	background-color: #bfe8de
}

.table-hover .table-success:hover,
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
	background-color: #ace1d4
}

.table-info,
.table-info > td,
.table-info > th {
	background-color: #bff0f1
}

.table-hover .table-info:hover,
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
	background-color: #aaebec
}

.table-warning,
.table-warning > td,
.table-warning > th {
	background-color: #feefc6
}

.table-hover .table-warning:hover,
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
	background-color: #fee8ad
}

.table-danger,
.table-danger > td,
.table-danger > th {
	background-color: #f7c6cb
}

.table-hover .table-danger:hover,
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
	background-color: #f4b0b7
}

.table-light,
.table-light > td,
.table-light > th {
	background-color: #fefefe
}

.table-hover .table-light:hover,
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
	background-color: #f1f1f1
}

.table-dark,
.table-dark > td,
.table-dark > th {
	background-color: #c6c8ca
}

.table-hover .table-dark:hover,
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
	background-color: #b9bbbe
}

.table-active,
.table-active > td,
.table-active > th,
.table-hover .table-active:hover,
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
	background-color: rgba(0, 0, 0, .075)
}

.table .thead-dark th {
	color: #fafbfd;
	background-color: #212529;
	border-color: #32383e
}

.table .thead-light th {
	color: #495057;
	background-color: #e9ecef;
	border-color: #dee2e6
}

.table-dark {
	color: #fafbfd;
	background-color: #212529
}

.table-dark td,
.table-dark th,
.table-dark thead th {
	border-color: #32383e
}

.table-dark.table-bordered {
	border: 0
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
	background-color: hsla(0, 0%, 100%, .05)
}

.table-dark.table-hover tbody tr:hover {
	background-color: hsla(0, 0%, 100%, .075)
}

@media (max-width:575.98px) {
	.table-responsive-sm {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar
	}

	.table-responsive-sm > .table-bordered {
		border: 0
	}
}

@media (max-width:767.98px) {
	.table-responsive-md {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar
	}

	.table-responsive-md > .table-bordered {
		border: 0
	}
}

@media (max-width:991.98px) {
	.table-responsive-lg {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar
	}

	.table-responsive-lg > .table-bordered {
		border: 0
	}
}

@media (max-width:1199.98px) {
	.table-responsive-xl {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar
	}

	.table-responsive-xl > .table-bordered {
		border: 0
	}
}

.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar
}

.table-responsive > .table-bordered {
	border: 0
}

.form-control {
	display: block;
	width: 100%;
	height: calc(1.96875rem + 2px);
	padding: .375rem .75rem;
	font-size: .8125rem;
	line-height: 1.5;
	color: #5d6b8d;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .2rem;
	-webkit-transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}

@media screen and (prefers-reduced-motion:reduce) {
	.form-control {
		-webkit-transition: none;
		transition: none
	}
}

.form-control::-ms-expand {
	background-color: transparent;
	border: 0
}

.form-control:focus {
	color: black;
	background-color: #fff;
	border-color: #aac5f2;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none
}

.form-control::-webkit-input-placeholder {
	color: #6c757d;
	opacity: 1
}

.form-control:-ms-input-placeholder,
.form-control::-ms-input-placeholder {
	color: #6c757d;
	opacity: 1
}

.form-control::placeholder {
	color: #6c757d;
	opacity: 1
}

.form-control:disabled,
.form-control[readonly] {
	background-color: #fbfafa;
	opacity: 1
}

select.form-control:focus::-ms-value {
	color: #5d6b8d;
	background-color: #fff
}

.form-control-file,
.form-control-range {
	display: block;
	width: 100%
}

.col-form-label {
	padding-top: calc(.375rem + 1px);
	padding-bottom: calc(.375rem + 1px);
	margin-bottom: 0;
	font-size: inherit;
	line-height: 1.5
}

.col-form-label-lg {
	padding-top: calc(.5rem + 1px);
	padding-bottom: calc(.5rem + 1px);
	font-size: 1.015625rem;
	line-height: 1.5
}

.col-form-label-sm {
	padding-top: calc(.25rem + 1px);
	padding-bottom: calc(.25rem + 1px);
	font-size: .7109375rem;
	line-height: 1.5
}

.form-control-plaintext {
	display: block;
	width: 100%;
	padding-top: .375rem;
	padding-bottom: .375rem;
	margin-bottom: 0;
	line-height: 1.5;
	color: #5d6b8d;
	background-color: transparent;
	border: solid transparent;
	border-width: 1px 0
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
	padding-right: 0;
	padding-left: 0
}

.form-control-sm {
	height: calc(1.56640625rem + 2px);
	padding: .25rem .5rem;
	font-size: .7109375rem;
	line-height: 1.5;
	border-radius: .2rem
}

.form-control-lg {
	height: calc(2.5234375rem + 2px);
	padding: .5rem 1rem;
	font-size: 1.015625rem;
	line-height: 1.5;
	border-radius: .3rem
}

select.form-control[multiple],
select.form-control[size],
textarea.form-control {
	height: auto
}

.form-group {
	margin-bottom: 1rem
}

.form-text {
	display: block;
	margin-top: .25rem
}

.form-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -5px;
	margin-left: -5px
}

.form-row > .col,
.form-row > [class*=col-] {
	padding-right: 5px;
	padding-left: 5px
}

.form-check {
	position: relative;
	display: block;
	padding-left: 1.25rem
}

.form-check-input {
	position: absolute;
	margin-top: .3rem;
	margin-left: -1.25rem
}

.form-check-input:disabled ~ .form-check-label {
	color: #6c757d
}

.form-check-label {
	margin-bottom: 0
}

.form-check-inline {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 0;
	margin-right: .75rem
}

.form-check-inline .form-check-input {
	position: static;
	margin-top: 0;
	margin-right: .3125rem;
	margin-left: 0
}

.valid-feedback {
	display: none;
	width: 100%;
	margin-top: .25rem;
	font-size: 80%;
	color: #1aae88
}

.valid-tooltip {
	position: absolute;
	top: 100%;
	z-index: 5;
	display: none;
	max-width: 100%;
	padding: .25rem .5rem;
	margin-top: .1rem;
	font-size: .7109375rem;
	line-height: 1.5;
	color: #fff;
	background-color: rgba(26, 174, 136, .9);
	border-radius: .2rem
}

.custom-select.is-valid,
.form-control.is-valid,
.was-validated .custom-select:valid,
.was-validated .form-control:valid {
	border-color: #1aae88
}

.custom-select.is-valid:focus,
.form-control.is-valid:focus,
.was-validated .custom-select:valid:focus,
.was-validated .form-control:valid:focus {
	border-color: #1aae88;
	-webkit-box-shadow: 0 0 0 .2rem rgba(26, 174, 136, .25);
	box-shadow: 0 0 0 .2rem rgba(26, 174, 136, .25)
}

.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip,
.form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip,
.form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip,
.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip,
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip {
	display: block
}

.form-check-input.is-valid ~ .form-check-label,
.was-validated .form-check-input:valid ~ .form-check-label {
	color: #1aae88
}

.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip,
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip {
	display: block
}

.custom-control-input.is-valid ~ .custom-control-label,
.was-validated .custom-control-input:valid ~ .custom-control-label {
	color: #1aae88
}

.custom-control-input.is-valid ~ .custom-control-label:before,
.was-validated .custom-control-input:valid ~ .custom-control-label:before {
	background-color: #60e7c5
}

.custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip,
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip {
	display: block
}

.custom-control-input.is-valid:checked ~ .custom-control-label:before,
.was-validated .custom-control-input:valid:checked ~ .custom-control-label:before {
	background-color: #21daab
}

.custom-control-input.is-valid:focus ~ .custom-control-label:before,
.was-validated .custom-control-input:valid:focus ~ .custom-control-label:before {
	-webkit-box-shadow: 0 0 0 1px #fafbfd, 0 0 0 .2rem rgba(26, 174, 136, .25);
	box-shadow: 0 0 0 1px #fafbfd, 0 0 0 .2rem rgba(26, 174, 136, .25)
}

.custom-file-input.is-valid ~ .custom-file-label,
.was-validated .custom-file-input:valid ~ .custom-file-label {
	border-color: #1aae88
}

.custom-file-input.is-valid ~ .custom-file-label:after,
.was-validated .custom-file-input:valid ~ .custom-file-label:after {
	border-color: inherit
}

.custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip,
.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip {
	display: block
}

.custom-file-input.is-valid:focus ~ .custom-file-label,
.was-validated .custom-file-input:valid:focus ~ .custom-file-label {
	-webkit-box-shadow: 0 0 0 .2rem rgba(26, 174, 136, .25);
	box-shadow: 0 0 0 .2rem rgba(26, 174, 136, .25)
}

.invalid-feedback {
	display: none;
	width: 100%;
	margin-top: .25rem;
	font-size: 80%;
	color: #e33244
}

.invalid-tooltip {
	position: absolute;
	top: 100%;
	z-index: 5;
	display: none;
	max-width: 100%;
	padding: .25rem .5rem;
	margin-top: .1rem;
	font-size: .7109375rem;
	line-height: 1.5;
	color: #fff;
	background-color: rgba(227, 50, 68, .9);
	border-radius: .2rem
}

.custom-select.is-invalid,
.form-control.is-invalid,
.was-validated .custom-select:invalid,
.was-validated .form-control:invalid {
	border-color: #e33244
}

.custom-select.is-invalid:focus,
.form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.was-validated .form-control:invalid:focus {
	border-color: #e33244;
	-webkit-box-shadow: 0 0 0 .2rem rgba(227, 50, 68, .25);
	box-shadow: 0 0 0 .2rem rgba(227, 50, 68, .25)
}

.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip,
.form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip,
.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip,
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip {
	display: block
}

.form-check-input.is-invalid ~ .form-check-label,
.was-validated .form-check-input:invalid ~ .form-check-label {
	color: #e33244
}

.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip,
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip {
	display: block
}

.custom-control-input.is-invalid ~ .custom-control-label,
.was-validated .custom-control-input:invalid ~ .custom-control-label {
	color: #e33244
}

.custom-control-input.is-invalid ~ .custom-control-label:before,
.was-validated .custom-control-input:invalid ~ .custom-control-label:before {
	background-color: #f2a2aa
}

.custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip,
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip {
	display: block
}

.custom-control-input.is-invalid:checked ~ .custom-control-label:before,
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label:before {
	background-color: #e95f6d
}

.custom-control-input.is-invalid:focus ~ .custom-control-label:before,
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label:before {
	-webkit-box-shadow: 0 0 0 1px #fafbfd, 0 0 0 .2rem rgba(227, 50, 68, .25);
	box-shadow: 0 0 0 1px #fafbfd, 0 0 0 .2rem rgba(227, 50, 68, .25)
}

.custom-file-input.is-invalid ~ .custom-file-label,
.was-validated .custom-file-input:invalid ~ .custom-file-label {
	border-color: #e33244
}

.custom-file-input.is-invalid ~ .custom-file-label:after,
.was-validated .custom-file-input:invalid ~ .custom-file-label:after {
	border-color: inherit
}

.custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip,
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip {
	display: block
}

.custom-file-input.is-invalid:focus ~ .custom-file-label,
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
	-webkit-box-shadow: 0 0 0 .2rem rgba(227, 50, 68, .25);
	box-shadow: 0 0 0 .2rem rgba(227, 50, 68, .25)
}

.form-inline {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.form-inline .form-check {
	width: 100%
}

@media (min-width:576px) {
	.form-inline label {
		-ms-flex-align: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.form-inline .form-group,
	.form-inline label {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		align-items: center;
		margin-bottom: 0
	}

	.form-inline .form-group {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		-ms-flex-align: center
	}

	.form-inline .form-control {
		display: inline-block;
		width: auto;
		vertical-align: middle
	}

	.form-inline .form-control-plaintext {
		display: inline-block
	}

	.form-inline .custom-select,
	.form-inline .input-group {
		width: auto
	}

	.form-inline .form-check {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: auto;
		padding-left: 0
	}

	.form-inline .form-check-input {
		position: relative;
		margin-top: 0;
		margin-right: .25rem;
		margin-left: 0
	}

	.form-inline .custom-control {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.form-inline .custom-control-label {
		margin-bottom: 0
	}
}

.btn {
	display: inline-block;
	font-weight: 300;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: .8125rem;
	line-height: 1.5;
	border-radius: .2rem;
	-webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}

@media screen and (prefers-reduced-motion:reduce) {
	.btn {
		-webkit-transition: none;
		transition: none
	}
}

.btn:focus,
.btn:hover {
	text-decoration: none
}

.btn.focus,
.btn:focus {
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none
}

.btn.disabled,
.btn:disabled {
	opacity: .65
}

.btn:not(:disabled):not(.disabled) {
	cursor: pointer
}

a.btn.disabled,
fieldset:disabled a.btn {
	pointer-events: none
}

.btn-primary {
	color: #fff;
	background-color: #3b7ae2;
	border-color: #3b7ae2
}

.btn-primary:hover {
	color: #fff;
	background-color: #2065d7;
	border-color: #1e60cc
}

.btn-primary.focus,
.btn-primary:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(59, 122, 226, .5);
	box-shadow: 0 0 0 .2rem rgba(59, 122, 226, .5)
}

.btn-primary.disabled,
.btn-primary:disabled {
	color: #fff;
	background-color: #3b7ae2;
	border-color: #3b7ae2
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #1e60cc;
	border-color: #1d5ac1
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(59, 122, 226, .5);
	box-shadow: 0 0 0 .2rem rgba(59, 122, 226, .5)
}

.btn-secondary {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d
}

.btn-secondary:hover {
	color: #fff;
	background-color: #5a6268;
	border-color: #545b62
}

.btn-secondary.focus,
.btn-secondary:focus {
	-webkit-box-shadow: 0 0 0 .2rem hsla(208, 7%, 46%, .5);
	box-shadow: 0 0 0 .2rem hsla(208, 7%, 46%, .5)
}

.btn-secondary.disabled,
.btn-secondary:disabled {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
	color: #fff;
	background-color: #545b62;
	border-color: #4e555b
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem hsla(208, 7%, 46%, .5);
	box-shadow: 0 0 0 .2rem hsla(208, 7%, 46%, .5)
}

.btn-success {
	color: #fff;
	background-color: #1aae88;
	border-color: #1aae88
}

.btn-success:hover {
	color: #fff;
	background-color: #158d6e;
	border-color: #138265
}

.btn-success.focus,
.btn-success:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(26, 174, 136, .5);
	box-shadow: 0 0 0 .2rem rgba(26, 174, 136, .5)
}

.btn-success.disabled,
.btn-success:disabled {
	color: #fff;
	background-color: #1aae88;
	border-color: #1aae88
}

.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
	color: #fff;
	background-color: #138265;
	border-color: #12775d
}

.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(26, 174, 136, .5);
	box-shadow: 0 0 0 .2rem rgba(26, 174, 136, .5)
}

.btn-info {
	color: #212529;
	background-color: #1ccacc;
	border-color: #1ccacc
}

.btn-info:hover {
	color: #fff;
	background-color: #17a9aa;
	border-color: #169e9f
}

.btn-info.focus,
.btn-info:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(28, 202, 204, .5);
	box-shadow: 0 0 0 .2rem rgba(28, 202, 204, .5)
}

.btn-info.disabled,
.btn-info:disabled {
	color: #212529;
	background-color: #1ccacc;
	border-color: #1ccacc
}

.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
	color: #fff;
	background-color: #169e9f;
	border-color: #149294
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(28, 202, 204, .5);
	box-shadow: 0 0 0 .2rem rgba(28, 202, 204, .5)
}

.btn-warning {
	color: #212529;
	background-color: #4d8cbf;
	border-color: #4d8cbf
}

.btn-warning:hover {
	color: #212529;
	background-color: #fbbb0d;
	border-color: #f8b704
}

.btn-warning.focus,
.btn-warning:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(252, 198, 51, .5);
	box-shadow: 0 0 0 .2rem rgba(252, 198, 51, .5)
}

.btn-warning.disabled,
.btn-warning:disabled {
	color: #212529;
	background-color: #4d8cbf;
	border-color: #4d8cbf
}

.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
	color: #212529;
	background-color: #f8b704;
	border-color: #ecad03
}

.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-warning.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(252, 198, 51, .5);
	box-shadow: 0 0 0 .2rem rgba(252, 198, 51, .5)
}

.btn-danger {
	color: #fff;
	background-color: #e33244;
	border-color: #e33244
}

.btn-danger:hover {
	color: #fff;
	background-color: #d21d2f;
	border-color: #c71b2d
}

.btn-danger.focus,
.btn-danger:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(227, 50, 68, .5);
	box-shadow: 0 0 0 .2rem rgba(227, 50, 68, .5)
}

.btn-danger.disabled,
.btn-danger:disabled {
	color: #fff;
	background-color: #e33244;
	border-color: #e33244
}

.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show > .btn-danger.dropdown-toggle {
	color: #fff;
	background-color: #c71b2d;
	border-color: #bc1a2a
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(227, 50, 68, .5);
	box-shadow: 0 0 0 .2rem rgba(227, 50, 68, .5)
}

.btn-light {
	color: #212529;
	background-color: #fcfcfd;
	border-color: #fcfcfd
}

.btn-light:hover {
	color: #212529;
	background-color: #e5e5ee;
	border-color: #dddde9
}

.btn-light.focus,
.btn-light:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(252, 252, 253, .5);
	box-shadow: 0 0 0 .2rem rgba(252, 252, 253, .5)
}

.btn-light.disabled,
.btn-light:disabled {
	color: #212529;
	background-color: #fcfcfd;
	border-color: #fcfcfd
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
	color: #212529;
	background-color: #dddde9;
	border-color: #d6d6e4
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(252, 252, 253, .5);
	box-shadow: 0 0 0 .2rem rgba(252, 252, 253, .5)
}

.btn-dark {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40
}

.btn-dark:hover {
	color: #fff;
	background-color: #23272b;
	border-color: #1d2124
}

.btn-dark.focus,
.btn-dark:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
	box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-dark.disabled,
.btn-dark:disabled {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40
}

.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle {
	color: #fff;
	background-color: #1d2124;
	border-color: #171a1d
}

.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-dark.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
	box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-outline-primary {
	color: #3b7ae2;
	background-color: transparent;
	background-image: none;
	border-color: #3b7ae2
}

.btn-outline-primary:hover {
	color: #fff;
	background-color: #3b7ae2;
	border-color: #3b7ae2
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(59, 122, 226, .5);
	box-shadow: 0 0 0 .2rem rgba(59, 122, 226, .5)
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
	color: #3b7ae2;
	background-color: transparent
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
	color: #fff;
	background-color: #3b7ae2;
	border-color: #3b7ae2
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(59, 122, 226, .5);
	box-shadow: 0 0 0 .2rem rgba(59, 122, 226, .5)
}

.btn-outline-secondary {
	color: #6c757d;
	background-color: transparent;
	background-image: none;
	border-color: #6c757d
}

.btn-outline-secondary:hover {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d
}

.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
	-webkit-box-shadow: 0 0 0 .2rem hsla(208, 7%, 46%, .5);
	box-shadow: 0 0 0 .2rem hsla(208, 7%, 46%, .5)
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
	color: #6c757d;
	background-color: transparent
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
	color: #fff;
	background-color: #6c757d;
	border-color: #6c757d
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem hsla(208, 7%, 46%, .5);
	box-shadow: 0 0 0 .2rem hsla(208, 7%, 46%, .5)
}

.btn-outline-success {
	color: #1aae88;
	background-color: transparent;
	background-image: none;
	border-color: #1aae88
}

.btn-outline-success:hover {
	color: #fff;
	background-color: #1aae88;
	border-color: #1aae88
}

.btn-outline-success.focus,
.btn-outline-success:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(26, 174, 136, .5);
	box-shadow: 0 0 0 .2rem rgba(26, 174, 136, .5)
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
	color: #1aae88;
	background-color: transparent
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show > .btn-outline-success.dropdown-toggle {
	color: #fff;
	background-color: #1aae88;
	border-color: #1aae88
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(26, 174, 136, .5);
	box-shadow: 0 0 0 .2rem rgba(26, 174, 136, .5)
}

.btn-outline-info {
	color: #1ccacc;
	background-color: transparent;
	background-image: none;
	border-color: #1ccacc
}

.btn-outline-info:hover {
	color: #212529;
	background-color: #1ccacc;
	border-color: #1ccacc
}

.btn-outline-info.focus,
.btn-outline-info:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(28, 202, 204, .5);
	box-shadow: 0 0 0 .2rem rgba(28, 202, 204, .5)
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
	color: #1ccacc;
	background-color: transparent
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show > .btn-outline-info.dropdown-toggle {
	color: #212529;
	background-color: #1ccacc;
	border-color: #1ccacc
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(28, 202, 204, .5);
	box-shadow: 0 0 0 .2rem rgba(28, 202, 204, .5)
}

.btn-outline-warning {
	color: #4d8cbf;
	background-color: transparent;
	background-image: none;
	border-color: #4d8cbf
}

.btn-outline-warning:hover {
	color: #212529;
	background-color: #4d8cbf;
	border-color: #4d8cbf
}

.btn-outline-warning.focus,
.btn-outline-warning:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(252, 198, 51, .5);
	box-shadow: 0 0 0 .2rem rgba(252, 198, 51, .5)
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
	color: #4d8cbf;
	background-color: transparent
}

.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show > .btn-outline-warning.dropdown-toggle {
	color: #212529;
	background-color: #4d8cbf;
	border-color: #4d8cbf
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(252, 198, 51, .5);
	box-shadow: 0 0 0 .2rem rgba(252, 198, 51, .5)
}

.btn-outline-danger {
	color: #e33244;
	background-color: transparent;
	background-image: none;
	border-color: #e33244
}

.btn-outline-danger:hover {
	color: #fff;
	background-color: #e33244;
	border-color: #e33244
}

.btn-outline-danger.focus,
.btn-outline-danger:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(227, 50, 68, .5);
	box-shadow: 0 0 0 .2rem rgba(227, 50, 68, .5)
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
	color: #e33244;
	background-color: transparent
}

.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show > .btn-outline-danger.dropdown-toggle {
	color: #fff;
	background-color: #e33244;
	border-color: #e33244
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(227, 50, 68, .5);
	box-shadow: 0 0 0 .2rem rgba(227, 50, 68, .5)
}

.btn-outline-light {
	color: #fcfcfd;
	background-color: transparent;
	background-image: none;
	border-color: #fcfcfd
}

.btn-outline-light:hover {
	color: #212529;
	background-color: #fcfcfd;
	border-color: #fcfcfd
}

.btn-outline-light.focus,
.btn-outline-light:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(252, 252, 253, .5);
	box-shadow: 0 0 0 .2rem rgba(252, 252, 253, .5)
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
	color: #fcfcfd;
	background-color: transparent
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show > .btn-outline-light.dropdown-toggle {
	color: #212529;
	background-color: #fcfcfd;
	border-color: #fcfcfd
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(252, 252, 253, .5);
	box-shadow: 0 0 0 .2rem rgba(252, 252, 253, .5)
}

.btn-outline-dark {
	color: #343a40;
	background-color: transparent;
	background-image: none;
	border-color: #343a40
}

.btn-outline-dark:hover {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40
}

.btn-outline-dark.focus,
.btn-outline-dark:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
	box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
	color: #343a40;
	background-color: transparent
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show > .btn-outline-dark.dropdown-toggle {
	color: #fff;
	background-color: #343a40;
	border-color: #343a40
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5);
	box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-link {
	font-weight: 400
}

.btn-link,
.btn-link:hover {
	color: #5d6b8d;
	background-color: transparent
}

.btn-link.focus,
.btn-link:focus,
.btn-link:hover {
	text-decoration: underline;
	border-color: transparent
}

.btn-link.focus,
.btn-link:focus {
	-webkit-box-shadow: none;
	box-shadow: none
}

.btn-link.disabled,
.btn-link:disabled {
	color: #6c757d;
	pointer-events: none
}

.btn-group-lg > .btn,
.btn-lg {
	padding: .5rem 1rem;
	font-size: 1.015625rem;
	line-height: 1.5;
	border-radius: .3rem
}

.btn-group-sm > .btn,
.btn-sm {
	padding: .25rem .5rem;
	font-size: .7109375rem;
	line-height: 1.5;
	border-radius: .2rem
}

.btn-block {
	display: block;
	width: 100%
}

.btn-block + .btn-block {
	margin-top: .5rem
}

input[type=button].btn-block,
input[type=reset].btn-block,
input[type=submit].btn-block {
	width: 100%
}

.fade {
	-webkit-transition: opacity .15s linear;
	transition: opacity .15s linear
}

@media screen and (prefers-reduced-motion:reduce) {
	.fade {
		-webkit-transition: none;
		transition: none
	}
}

.fade:not(.show) {
	opacity: 0
}

.collapse:not(.show) {
	display: none
}

.collapsing {
	position: relative;
	height: 0;
	overflow: hidden;
	-webkit-transition: height .35s ease;
	transition: height .35s ease
}

@media screen and (prefers-reduced-motion:reduce) {
	.collapsing {
		-webkit-transition: none;
		transition: none
	}
}

.dropdown,
.dropleft,
.dropright,
.dropup {
	position: relative
}

.dropdown-toggle:after {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: .255em;
	vertical-align: .255em;
	content: "";
	border-top: .3em solid;
	border-right: .3em solid transparent;
	border-bottom: 0;
	border-left: .3em solid transparent
}

.dropdown-toggle:empty:after {
	margin-left: 0
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 10rem;
	padding: .5rem 0;
	margin: .125rem 0 0;
	font-size: .8125rem;
	color: #5d6b8d;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: .2rem
}

.dropdown-menu-right {
	right: 0;
	left: auto
}

.dropup .dropdown-menu {
	top: auto;
	bottom: 100%;
	margin-top: 0;
	margin-bottom: .125rem
}

.dropup .dropdown-toggle:after {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: .255em;
	vertical-align: .255em;
	content: "";
	border-top: 0;
	border-right: .3em solid transparent;
	border-bottom: .3em solid;
	border-left: .3em solid transparent
}

.dropup .dropdown-toggle:empty:after {
	margin-left: 0
}

.dropright .dropdown-menu {
	top: 0;
	right: auto;
	left: 100%;
	margin-top: 0;
	margin-left: .125rem
}

.dropright .dropdown-toggle:after {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: .255em;
	vertical-align: .255em;
	content: "";
	border-top: .3em solid transparent;
	border-right: 0;
	border-bottom: .3em solid transparent;
	border-left: .3em solid
}

.dropright .dropdown-toggle:empty:after {
	margin-left: 0
}

.dropright .dropdown-toggle:after {
	vertical-align: 0
}

.dropleft .dropdown-menu {
	top: 0;
	right: 100%;
	left: auto;
	margin-top: 0;
	margin-right: .125rem
}

.dropleft .dropdown-toggle:after {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: .255em;
	vertical-align: .255em;
	content: "";
	display: none
}

.dropleft .dropdown-toggle:before {
	display: inline-block;
	width: 0;
	height: 0;
	margin-right: .255em;
	vertical-align: .255em;
	content: "";
	border-top: .3em solid transparent;
	border-right: .3em solid;
	border-bottom: .3em solid transparent
}

.dropleft .dropdown-toggle:empty:after {
	margin-left: 0
}

.dropleft .dropdown-toggle:before {
	vertical-align: 0
}

.dropdown-menu[x-placement^=bottom],
.dropdown-menu[x-placement^=left],
.dropdown-menu[x-placement^=right],
.dropdown-menu[x-placement^=top] {
	right: auto;
	bottom: auto
}

.dropdown-divider {
	height: 0;
	margin: .5rem 0;
	overflow: hidden;
	border-top: 1px solid #e9ecef
}

.dropdown-item {
	display: block;
	width: 100%;
	padding: .25rem 1.5rem;
	clear: both;
	font-weight: 400;
	color: #212529;
	text-align: inherit;
	white-space: nowrap;
	background-color: transparent;
	border: 0
}

.dropdown-item:focus,
.dropdown-item:hover {
	color: #16181b;
	text-decoration: none;
	background-color: #fcfcfd
}

.dropdown-item.active,
.dropdown-item:active {
	color: #fff;
	text-decoration: none;
	background-color: #3b7ae2
}

.dropdown-item.disabled,
.dropdown-item:disabled {
	color: #6c757d;
	background-color: transparent
}

.dropdown-menu.show {
	display: block
}

.dropdown-header {
	display: block;
	padding: .5rem 1.5rem;
	margin-bottom: 0;
	font-size: .7109375rem;
	color: #6c757d;
	white-space: nowrap
}

.dropdown-item-text {
	display: block;
	padding: .25rem 1.5rem;
	color: #212529
}

.btn-group,
.btn-group-vertical {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	vertical-align: middle
}

.btn-group-vertical > .btn,
.btn-group > .btn {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto
}

.btn-group-vertical > .btn.active,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:hover,
.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover {
	z-index: 1
}

.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group,
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
	margin-left: -1px
}

.btn-toolbar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.btn-toolbar .input-group {
	width: auto
}

.btn-group > .btn:first-child {
	margin-left: 0
}

.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}

.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

.dropdown-toggle-split {
	padding-right: .5625rem;
	padding-left: .5625rem
}

.dropdown-toggle-split:after,
.dropright .dropdown-toggle-split:after,
.dropup .dropdown-toggle-split:after {
	margin-left: 0
}

.dropleft .dropdown-toggle-split:before {
	margin-right: 0
}

.btn-group-sm > .btn + .dropdown-toggle-split,
.btn-sm + .dropdown-toggle-split {
	padding-right: .375rem;
	padding-left: .375rem
}

.btn-group-lg > .btn + .dropdown-toggle-split,
.btn-lg + .dropdown-toggle-split {
	padding-right: .75rem;
	padding-left: .75rem
}

.btn-group-vertical {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
	width: 100%
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
	margin-top: -1px;
	margin-left: 0
}

.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0
}

.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.btn-group-vertical > .btn:not(:first-child) {
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
	margin-bottom: 0
}

.btn-group-toggle > .btn-group > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn input[type=radio] {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	pointer-events: none
}

.input-group {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%
}

.input-group > .custom-file,
.input-group > .custom-select,
.input-group > .form-control {
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 1%;
	margin-bottom: 0
}

.input-group > .custom-file + .custom-file,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .form-control,
.input-group > .custom-select + .custom-file,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .form-control,
.input-group > .form-control + .custom-file,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .form-control {
	margin-left: -1px
}

.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label,
.input-group > .custom-select:focus,
.input-group > .form-control:focus {
	z-index: 3
}

.input-group > .custom-file .custom-file-input:focus {
	z-index: 4
}

.input-group > .custom-select:not(:last-child),
.input-group > .form-control:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}

.input-group > .custom-select:not(:first-child),
.input-group > .form-control:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

.input-group > .custom-file {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label:after {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

.input-group-append,
.input-group-prepend {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.input-group-append .btn,
.input-group-prepend .btn {
	position: relative;
	z-index: 2
}

.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + .input-group-text,
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .input-group-text + .input-group-text {
	margin-left: -1px
}

.input-group-prepend {
	margin-right: -1px
}

.input-group-append {
	margin-left: -1px
}

.input-group-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: .375rem .75rem;
	margin-bottom: 0;
	font-size: .8125rem;
	font-weight: 400;
	line-height: 1.5;
	color: #5d6b8d;
	text-align: center;
	white-space: nowrap;
	background-color: #fbfafa;
	border: 1px solid #f1f1f1;
	border-radius: .2rem
}

.input-group-text input[type=checkbox],
.input-group-text input[type=radio] {
	margin-top: 0
}

.input-group-lg > .form-control,
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > .input-group-text {
	height: calc(2.5234375rem + 2px);
	padding: .5rem 1rem;
	font-size: 1.015625rem;
	line-height: 1.5;
	border-radius: .3rem
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .input-group-text {
	height: calc(1.56640625rem + 2px);
	padding: .25rem .5rem;
	font-size: .7109375rem;
	line-height: 1.5;
	border-radius: .2rem
}

.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child),
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child),
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

.custom-control {
	position: relative;
	display: block;
	min-height: 1.21875rem;
	padding-left: 1.5rem
}

.custom-control-inline {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-right: 1rem
}

.custom-control-input {
	position: absolute;
	z-index: -1;
	opacity: 0
}

.custom-control-input:checked ~ .custom-control-label:before {
	color: #fff;
	background-color: #3b7ae2
}

.custom-control-input:focus ~ .custom-control-label:before {
	-webkit-box-shadow: 0 0 0 1px #fafbfd, none;
	box-shadow: 0 0 0 1px #fafbfd, none
}

.custom-control-input:active ~ .custom-control-label:before {
	color: #fff;
	background-color: #d6e4f9
}

.custom-control-input:disabled ~ .custom-control-label {
	color: #6c757d
}

.custom-control-input:disabled ~ .custom-control-label:before {
	background-color: #e9ecef
}

.custom-control-label {
	position: relative;
	margin-bottom: 0
}

.custom-control-label:before {
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: #dee2e6
}

.custom-control-label:after,
.custom-control-label:before {
	position: absolute;
	top: .109375rem;
	left: -1.5rem;
	display: block;
	width: 1rem;
	height: 1rem;
	content: ""
}

.custom-control-label:after {
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 50% 50%
}

.custom-checkbox .custom-control-label:before {
	border-radius: .2rem
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label:before {
	background-color: #3b7ae2
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label:before {
	background-color: #3b7ae2
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label:after {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label:before {
	background-color: rgba(59, 122, 226, .5)
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label:before {
	background-color: rgba(59, 122, 226, .5)
}

.custom-radio .custom-control-label:before {
	border-radius: 50%
}

.custom-radio .custom-control-input:checked ~ .custom-control-label:before {
	background-color: #3b7ae2
}

.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label:before {
	background-color: rgba(59, 122, 226, .5)
}

.custom-select {
	display: inline-block;
	width: 100%;
	height: calc(1.96875rem + 2px);
	padding: .375rem 1.75rem .375rem .75rem;
	line-height: 1.5;
	color: #5d6b8d;
	vertical-align: middle;
	background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
	background-size: 8px 10px;
	border: 1px solid #ced4da;
	border-radius: .2rem;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

.custom-select:focus {
	border-color: #aac5f2;
	outline: 0;
	-webkit-box-shadow: 0 0 0 .2rem rgba(170, 197, 242, .5);
	box-shadow: 0 0 0 .2rem rgba(170, 197, 242, .5)
}

.custom-select:focus::-ms-value {
	color: #5d6b8d;
	background-color: #fff
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
	height: auto;
	padding-right: .75rem;
	background-image: none
}

.custom-select:disabled {
	color: #6c757d;
	background-color: #e9ecef
}

.custom-select::-ms-expand {
	opacity: 0
}

.custom-select-sm {
	height: calc(1.56640625rem + 2px);
	font-size: 75%
}

.custom-select-lg,
.custom-select-sm {
	padding-top: .375rem;
	padding-bottom: .375rem
}

.custom-select-lg {
	height: calc(2.5234375rem + 2px);
	font-size: 125%
}

.custom-file {
	display: inline-block;
	margin-bottom: 0
}

.custom-file,
.custom-file-input {
	position: relative;
	width: 100%;
	height: calc(1.96875rem + 2px)
}

.custom-file-input {
	z-index: 2;
	margin: 0;
	opacity: 0
}

.custom-file-input:focus ~ .custom-file-label {
	border-color: #aac5f2;
	-webkit-box-shadow: none;
	box-shadow: none
}

.custom-file-input:focus ~ .custom-file-label:after {
	border-color: #aac5f2
}

.custom-file-input:disabled ~ .custom-file-label {
	background-color: #fbfafa
}

.custom-file-input:lang(en) ~ .custom-file-label:after {
	content: "Browse"
}

.custom-file-label {
	left: 0;
	z-index: 1;
	height: calc(1.96875rem + 2px);
	background-color: #fff;
	border: 1px solid #ced4da;
	border-radius: .2rem
}

.custom-file-label,
.custom-file-label:after {
	position: absolute;
	top: 0;
	right: 0;
	padding: .375rem .75rem;
	line-height: 1.5;
	color: #5d6b8d
}

.custom-file-label:after {
	bottom: 0;
	z-index: 3;
	display: block;
	height: 1.96875rem;
	content: "Browse";
	background-color: #fbfafa;
	border-left: 1px solid #ced4da;
	border-radius: 0 .2rem .2rem 0
}

.custom-range {
	width: 100%;
	padding-left: 0;
	background-color: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

.custom-range:focus {
	outline: none
}

.custom-range:focus::-webkit-slider-thumb {
	-webkit-box-shadow: 0 0 0 1px #fafbfd, none;
	box-shadow: 0 0 0 1px #fafbfd, none
}

.custom-range:focus::-moz-range-thumb {
	box-shadow: 0 0 0 1px #fafbfd, none
}

.custom-range:focus::-ms-thumb {
	box-shadow: 0 0 0 1px #fafbfd, none
}

.custom-range::-moz-focus-outer {
	border: 0
}

.custom-range::-webkit-slider-thumb {
	width: 1rem;
	height: 1rem;
	margin-top: -.25rem;
	background-color: #3b7ae2;
	border: 0;
	border-radius: 1rem;
	-webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	-webkit-appearance: none;
	appearance: none
}

@media screen and (prefers-reduced-motion:reduce) {
	.custom-range::-webkit-slider-thumb {
		-webkit-transition: none;
		transition: none
	}
}

.custom-range::-webkit-slider-thumb:active {
	background-color: #d6e4f9
}

.custom-range::-webkit-slider-runnable-track {
	width: 100%;
	height: .5rem;
	color: transparent;
	cursor: pointer;
	background-color: #dee2e6;
	border-color: transparent;
	border-radius: 1rem
}

.custom-range::-moz-range-thumb {
	width: 1rem;
	height: 1rem;
	background-color: #3b7ae2;
	border: 0;
	border-radius: 1rem;
	-webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	-moz-appearance: none;
	appearance: none
}

@media screen and (prefers-reduced-motion:reduce) {
	.custom-range::-moz-range-thumb {
		-webkit-transition: none;
		transition: none
	}
}

.custom-range::-moz-range-thumb:active {
	background-color: #d6e4f9
}

.custom-range::-moz-range-track {
	width: 100%;
	height: .5rem;
	color: transparent;
	cursor: pointer;
	background-color: #dee2e6;
	border-color: transparent;
	border-radius: 1rem
}

.custom-range::-ms-thumb {
	width: 1rem;
	height: 1rem;
	margin-top: 0;
	margin-right: .2rem;
	margin-left: .2rem;
	background-color: #3b7ae2;
	border: 0;
	border-radius: 1rem;
	-webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	appearance: none
}

@media screen and (prefers-reduced-motion:reduce) {
	.custom-range::-ms-thumb {
		-webkit-transition: none;
		transition: none
	}
}

.custom-range::-ms-thumb:active {
	background-color: #d6e4f9
}

.custom-range::-ms-track {
	width: 100%;
	height: .5rem;
	color: transparent;
	cursor: pointer;
	background-color: transparent;
	border-color: transparent;
	border-width: .5rem
}

.custom-range::-ms-fill-lower,
.custom-range::-ms-fill-upper {
	background-color: #dee2e6;
	border-radius: 1rem
}

.custom-range::-ms-fill-upper {
	margin-right: 15px
}

.custom-control-label:before,
.custom-file-label,
.custom-select {
	-webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, -webkit-box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, -webkit-box-shadow .15s ease-in-out
}

@media screen and (prefers-reduced-motion:reduce) {

	.custom-control-label:before,
	.custom-file-label,
	.custom-select {
		-webkit-transition: none;
		transition: none
	}
}

.nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none
}

.nav-link {
	display: block;
	padding: .5rem 1rem
}

.nav-link:focus,
.nav-link:hover {
	text-decoration: none
}

.nav-link.disabled {
	color: #6c757d
}

.nav-tabs {
	border-bottom: 1px solid #dee2e6
}

.nav-tabs .nav-item {
	margin-bottom: -1px
}

.nav-tabs .nav-link {
	border: 1px solid transparent;
	border-top-left-radius: .2rem;
	border-top-right-radius: .2rem
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
	border-color: #e9ecef #e9ecef #dee2e6
}

.nav-tabs .nav-link.disabled {
	color: #6c757d;
	background-color: transparent;
	border-color: transparent
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	color: #495057;
	background-color: #fafbfd;
	border-color: #ecf2f9 #ecf2f9 #fafbfd
}

.nav-tabs .dropdown-menu {
	margin-top: -1px;
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.nav-pills .nav-link {
	border-radius: .2rem
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
	color: #fff;
	background-color: #3b7ae2
}

.nav-fill .nav-item {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	text-align: center
}

.nav-justified .nav-item {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	text-align: center
}

.tab-content > .tab-pane {
	display: none
}

.tab-content > .active {
	display: block
}

.navbar {
	position: relative;
	padding: .5rem 1rem
}

.navbar,
.navbar > .container,
.navbar > .container-fluid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.navbar-brand {
	display: inline-block;
	padding-top: .34765625rem;
	padding-bottom: .34765625rem;
	margin-right: 1rem;
	font-size: 1.015625rem;
	line-height: inherit;
	white-space: nowrap
}

.navbar-brand:focus,
.navbar-brand:hover {
	text-decoration: none
}

.navbar-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0;
	list-style: none
}

.navbar-nav .nav-link {
	padding-right: 0;
	padding-left: 0
}

.navbar-nav .dropdown-menu {
	position: static;
	float: none
}

.navbar-text {
	display: inline-block;
	padding-top: .5rem;
	padding-bottom: .5rem
}

.navbar-collapse {
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.navbar-toggler {
	padding: .25rem .75rem;
	font-size: 1.015625rem;
	line-height: 1;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: .2rem
}

.navbar-toggler:focus,
.navbar-toggler:hover {
	text-decoration: none
}

.navbar-toggler:not(:disabled):not(.disabled) {
	cursor: pointer
}

.navbar-toggler-icon {
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	vertical-align: middle;
	content: "";
	background: no-repeat 50%;
	background-size: 100% 100%
}

@media (max-width:575.98px) {

	.navbar-expand-sm > .container,
	.navbar-expand-sm > .container-fluid {
		padding-right: 0;
		padding-left: 0
	}
}

@media (min-width:576px) {
	.navbar-expand-sm {
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.navbar-expand-sm,
	.navbar-expand-sm .navbar-nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal
	}

	.navbar-expand-sm .navbar-nav {
		-ms-flex-direction: row;
		flex-direction: row
	}

	.navbar-expand-sm .navbar-nav .dropdown-menu {
		position: absolute
	}

	.navbar-expand-sm .navbar-nav .nav-link {
		padding-right: .5rem;
		padding-left: .5rem
	}

	.navbar-expand-sm > .container,
	.navbar-expand-sm > .container-fluid {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap
	}

	.navbar-expand-sm .navbar-collapse {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}

	.navbar-expand-sm .navbar-toggler {
		display: none
	}
}

@media (max-width:767.98px) {

	.navbar-expand-md > .container,
	.navbar-expand-md > .container-fluid {
		padding-right: 0;
		padding-left: 0
	}
}

@media (min-width:768px) {
	.navbar-expand-md {
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.navbar-expand-md,
	.navbar-expand-md .navbar-nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal
	}

	.navbar-expand-md .navbar-nav {
		-ms-flex-direction: row;
		flex-direction: row
	}

	.navbar-expand-md .navbar-nav .dropdown-menu {
		position: absolute
	}

	.navbar-expand-md .navbar-nav .nav-link {
		padding-right: .5rem;
		padding-left: .5rem
	}

	.navbar-expand-md > .container,
	.navbar-expand-md > .container-fluid {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap
	}

	.navbar-expand-md .navbar-collapse {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}

	.navbar-expand-md .navbar-toggler {
		display: none
	}
}

@media (max-width:991.98px) {

	.navbar-expand-lg > .container,
	.navbar-expand-lg > .container-fluid {
		padding-right: 0;
		padding-left: 0
	}
}

@media (min-width:992px) {
	.navbar-expand-lg {
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.navbar-expand-lg,
	.navbar-expand-lg .navbar-nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal
	}

	.navbar-expand-lg .navbar-nav {
		-ms-flex-direction: row;
		flex-direction: row
	}

	.navbar-expand-lg .navbar-nav .dropdown-menu {
		position: absolute
	}

	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: .5rem;
		padding-left: .5rem
	}

	.navbar-expand-lg > .container,
	.navbar-expand-lg > .container-fluid {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap
	}

	.navbar-expand-lg .navbar-collapse {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}

	.navbar-expand-lg .navbar-toggler {
		display: none
	}
}

@media (max-width:1199.98px) {

	.navbar-expand-xl > .container,
	.navbar-expand-xl > .container-fluid {
		padding-right: 0;
		padding-left: 0
	}
}

@media (min-width:1200px) {
	.navbar-expand-xl {
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.navbar-expand-xl,
	.navbar-expand-xl .navbar-nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal
	}

	.navbar-expand-xl .navbar-nav {
		-ms-flex-direction: row;
		flex-direction: row
	}

	.navbar-expand-xl .navbar-nav .dropdown-menu {
		position: absolute
	}

	.navbar-expand-xl .navbar-nav .nav-link {
		padding-right: .5rem;
		padding-left: .5rem
	}

	.navbar-expand-xl > .container,
	.navbar-expand-xl > .container-fluid {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap
	}

	.navbar-expand-xl .navbar-collapse {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-ms-flex-preferred-size: auto;
		flex-basis: auto
	}

	.navbar-expand-xl .navbar-toggler {
		display: none
	}
}

.navbar-expand {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
	padding-right: 0;
	padding-left: 0
}

.navbar-expand .navbar-nav {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row
}

.navbar-expand .navbar-nav .dropdown-menu {
	position: absolute
}

.navbar-expand .navbar-nav .nav-link {
	padding-right: .5rem;
	padding-left: .5rem
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap
}

.navbar-expand .navbar-collapse {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-preferred-size: auto;
	flex-basis: auto
}

.navbar-expand .navbar-toggler {
	display: none
}

.navbar-light .navbar-brand,
.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
	color: rgba(0, 0, 0, .9)
}

.navbar-light .navbar-nav .nav-link {
	color: rgba(0, 0, 0, .5)
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
	color: rgba(0, 0, 0, .7)
}

.navbar-light .navbar-nav .nav-link.disabled {
	color: rgba(0, 0, 0, .3)
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
	color: rgba(0, 0, 0, .9)
}

.navbar-light .navbar-toggler {
	color: rgba(0, 0, 0, .5);
	border-color: rgba(0, 0, 0, .1)
}

.navbar-light .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.navbar-light .navbar-text {
	color: rgba(0, 0, 0, .5)
}

.navbar-light .navbar-text a,
.navbar-light .navbar-text a:focus,
.navbar-light .navbar-text a:hover {
	color: rgba(0, 0, 0, .9)
}

.navbar-dark .navbar-brand,
.navbar-dark .navbar-brand:focus,
.navbar-dark .navbar-brand:hover {
	color: #fff
}

.navbar-dark .navbar-nav .nav-link {
	color: hsla(0, 0%, 100%, .5)
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
	color: hsla(0, 0%, 100%, .75)
}

.navbar-dark .navbar-nav .nav-link.disabled {
	color: hsla(0, 0%, 100%, .25)
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
	color: #fff
}

.navbar-dark .navbar-toggler {
	color: hsla(0, 0%, 100%, .5);
	border-color: hsla(0, 0%, 100%, .1)
}

.navbar-dark .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.navbar-dark .navbar-text {
	color: hsla(0, 0%, 100%, .5)
}

.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:focus,
.navbar-dark .navbar-text a:hover {
	color: #fff
}

.card {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid #ecf2f9;
	border-radius: .2rem
}

.card > hr {
	margin-right: 0;
	margin-left: 0
}

.card > .list-group:first-child .list-group-item:first-child {
	border-top-left-radius: .2rem;
	border-top-right-radius: .2rem
}

.card > .list-group:last-child .list-group-item:last-child {
	border-bottom-right-radius: .2rem;
	border-bottom-left-radius: .2rem
}

.card-body {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1.25rem
}

.card-title {
	margin-bottom: .75rem
}

.card-subtitle {
	margin-top: -.375rem
}

.card-subtitle,
.card-text:last-child {
	margin-bottom: 0
}

.card-link:hover {
	text-decoration: none
}

.card-link + .card-link {
	margin-left: 1.25rem
}

.card-header {
	padding: .75rem 1.25rem;
	margin-bottom: 0;
	background-color: #fafbfc;
	border-bottom: 1px solid #ecf2f9
}

.card-header:first-child {
	border-radius: calc(.2rem - 1px) calc(.2rem - 1px) 0 0
}

.card-header + .list-group .list-group-item:first-child {
	border-top: 0
}

.card-footer {
	padding: .75rem 1.25rem;
	background-color: #fafbfc;
	border-top: 1px solid #ecf2f9
}

.card-footer:last-child {
	border-radius: 0 0 calc(.2rem - 1px) calc(.2rem - 1px)
}

.card-header-tabs {
	margin-bottom: -.75rem;
	border-bottom: 0
}

.card-header-pills,
.card-header-tabs {
	margin-right: -.625rem;
	margin-left: -.625rem
}

.card-img-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1.25rem
}

.card-img {
	width: 100%;
	border-radius: calc(.2rem - 1px)
}

.card-img-top {
	width: 100%;
	border-top-left-radius: calc(.2rem - 1px);
	border-top-right-radius: calc(.2rem - 1px)
}

.card-img-bottom {
	width: 100%;
	border-bottom-right-radius: calc(.2rem - 1px);
	border-bottom-left-radius: calc(.2rem - 1px)
}

.card-deck {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.card-deck .card {
	margin-bottom: 15px
}

@media (min-width:576px) {
	.card-deck {
		-webkit-box-orient: horizontal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		margin-right: -15px;
		margin-left: -15px
	}

	.card-deck,
	.card-deck .card {
		-webkit-box-direction: normal
	}

	.card-deck .card {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-flex: 1;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%;
		-webkit-box-orient: vertical;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-right: 15px;
		margin-bottom: 0;
		margin-left: 15px
	}
}

.card-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.card-group > .card {
	margin-bottom: 15px
}

@media (min-width:576px) {
	.card-group {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap
	}

	.card-group > .card {
		-webkit-box-flex: 1;
		-ms-flex: 1 0 0%;
		flex: 1 0 0%;
		margin-bottom: 0
	}

	.card-group > .card + .card {
		margin-left: 0;
		border-left: 0
	}

	.card-group > .card:first-child {
		border-top-right-radius: 0;
		border-bottom-right-radius: 0
	}

	.card-group > .card:first-child .card-header,
	.card-group > .card:first-child .card-img-top {
		border-top-right-radius: 0
	}

	.card-group > .card:first-child .card-footer,
	.card-group > .card:first-child .card-img-bottom {
		border-bottom-right-radius: 0
	}

	.card-group > .card:last-child {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0
	}

	.card-group > .card:last-child .card-header,
	.card-group > .card:last-child .card-img-top {
		border-top-left-radius: 0
	}

	.card-group > .card:last-child .card-footer,
	.card-group > .card:last-child .card-img-bottom {
		border-bottom-left-radius: 0
	}

	.card-group > .card:only-child {
		border-radius: .2rem
	}

	.card-group > .card:only-child .card-header,
	.card-group > .card:only-child .card-img-top {
		border-top-left-radius: .2rem;
		border-top-right-radius: .2rem
	}

	.card-group > .card:only-child .card-footer,
	.card-group > .card:only-child .card-img-bottom {
		border-bottom-right-radius: .2rem;
		border-bottom-left-radius: .2rem
	}

	.card-group > .card:not(:first-child):not(:last-child):not(:only-child),
	.card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer,
	.card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
	.card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
	.card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top {
		border-radius: 0
	}
}

.card-columns .card {
	margin-bottom: .75rem
}

@media (min-width:576px) {
	.card-columns {
		-webkit-column-count: 3;
		column-count: 3;
		-webkit-column-gap: 1.25rem;
		column-gap: 1.25rem;
		orphans: 1;
		widows: 1
	}

	.card-columns .card {
		display: inline-block;
		width: 100%
	}
}

.accordion .card:not(:first-of-type):not(:last-of-type) {
	border-bottom: 0;
	border-radius: 0
}

.accordion .card:not(:first-of-type) .card-header:first-child {
	border-radius: 0
}

.accordion .card:first-of-type {
	border-bottom: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0
}

.accordion .card:last-of-type {
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.breadcrumb {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: .75rem 1rem;
	margin-bottom: 1rem;
	list-style: none;
	background-color: #e9ecef;
	border-radius: .2rem
}

.breadcrumb-item + .breadcrumb-item {
	padding-left: .5rem
}

.breadcrumb-item + .breadcrumb-item:before {
	display: inline-block;
	padding-right: .5rem;
	color: #6c757d;
	content: "/"
}

.breadcrumb-item + .breadcrumb-item:hover:before {
	text-decoration: underline;
	text-decoration: none
}

.breadcrumb-item.active {
	color: #6c757d
}

.pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-left: 0;
	list-style: none;
	border-radius: .2rem
}

.page-link {
	position: relative;
	display: block;
	padding: .5rem .75rem;
	margin-left: -1px;
	line-height: 1.25;
	color: #5d6b8d;
	background-color: #fff;
	border: 1px solid #dee2e6
}

.page-link:hover {
	z-index: 2;
	color: #5d6b8d;
	text-decoration: none;
	background-color: #e9ecef;
	border-color: #dee2e6
}

.page-link:focus {
	z-index: 2;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none
}

.page-link:not(:disabled):not(.disabled) {
	cursor: pointer
}

.page-item:first-child .page-link {
	margin-left: 0;
	border-top-left-radius: .2rem;
	border-bottom-left-radius: .2rem
}

.page-item:last-child .page-link {
	border-top-right-radius: .2rem;
	border-bottom-right-radius: .2rem
}

.page-item.active .page-link {
	z-index: 1;
	color: #fff;
	background-color: #3b7ae2;
	border-color: #3b7ae2
}

.page-item.disabled .page-link {
	color: #6c757d;
	pointer-events: none;
	cursor: auto;
	background-color: #fff;
	border-color: #dee2e6
}

.pagination-lg .page-link {
	padding: .75rem 1.5rem;
	font-size: 1.015625rem;
	line-height: 1.5
}

.pagination-lg .page-item:first-child .page-link {
	border-top-left-radius: .3rem;
	border-bottom-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
	border-top-right-radius: .3rem;
	border-bottom-right-radius: .3rem
}

.pagination-sm .page-link {
	padding: .25rem .5rem;
	font-size: .7109375rem;
	line-height: 1.5
}

.pagination-sm .page-item:first-child .page-link {
	border-top-left-radius: .2rem;
	border-bottom-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
	border-top-right-radius: .2rem;
	border-bottom-right-radius: .2rem
}

.badge {
	display: inline-block;
	padding: .25em .4em;
	font-size: 75%;
	font-weight: 700;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: .2rem
}

.badge:empty {
	display: none
}

.btn .badge {
	position: relative;
	top: -1px
}

.badge-pill {
	padding-right: .6em;
	padding-left: .6em;
	border-radius: 10rem
}

.badge-primary {
	color: #fff;
	background-color: #3b7ae2
}

.badge-primary[href]:focus,
.badge-primary[href]:hover {
	color: #fff;
	text-decoration: none;
	background-color: #1e60cc
}

.badge-secondary {
	color: #fff;
	background-color: #6c757d
}

.badge-secondary[href]:focus,
.badge-secondary[href]:hover {
	color: #fff;
	text-decoration: none;
	background-color: #545b62
}

.badge-success {
	color: #fff;
	background-color: #1aae88
}

.badge-success[href]:focus,
.badge-success[href]:hover {
	color: #fff;
	text-decoration: none;
	background-color: #138265
}

.badge-info {
	color: #212529;
	background-color: #1ccacc
}

.badge-info[href]:focus,
.badge-info[href]:hover {
	color: #212529;
	text-decoration: none;
	background-color: #169e9f
}

.badge-warning {
	color: #212529;
	background-color: #4d8cbf
}

.badge-warning[href]:focus,
.badge-warning[href]:hover {
	color: #212529;
	text-decoration: none;
	background-color: #f8b704
}

.badge-danger {
	color: #fff;
	background-color: #e33244
}

.badge-danger[href]:focus,
.badge-danger[href]:hover {
	color: #fff;
	text-decoration: none;
	background-color: #c71b2d
}

.badge-light {
	color: #212529;
	background-color: #fcfcfd
}

.badge-light[href]:focus,
.badge-light[href]:hover {
	color: #212529;
	text-decoration: none;
	background-color: #dddde9
}

.badge-dark {
	color: #fff;
	background-color: #343a40
}

.badge-dark[href]:focus,
.badge-dark[href]:hover {
	color: #fff;
	text-decoration: none;
	background-color: #1d2124
}

.jumbotron {
	padding: 2rem 1rem;
	margin-bottom: 2rem;
	background-color: #fafbfc;
	border-radius: .3rem
}

@media (min-width:576px) {
	.jumbotron {
		padding: 4rem 2rem
	}
}

.jumbotron-fluid {
	padding-right: 0;
	padding-left: 0;
	border-radius: 0
}

.alert {
	position: relative;
	padding: .75rem 1.25rem;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: .2rem
}

.alert-heading {
	color: inherit
}

.alert-link {
	font-weight: 700
}

.alert-dismissible {
	padding-right: 3.71875rem
}

.alert-dismissible .close {
	position: absolute;
	top: 0;
	right: 0;
	padding: .75rem 1.25rem;
	color: inherit
}

.alert-primary {
	color: #d8e4f9;
	background-color: #3b7ae2;
	border-color: #3b7ae2
}

.alert-primary hr {
	border-top-color: #256bdf
}

.alert-primary .alert-link {
	color: #acc5f2
}

.alert-secondary {
	color: #e2e3e5;
	background-color: #6c757d;
	border-color: #6c757d
}

.alert-secondary hr {
	border-top-color: #60686f
}

.alert-secondary .alert-link {
	color: #c7c9cd
}

.alert-success {
	color: #d1efe7;
	background-color: #1aae88;
	border-color: #1aae88
}

.alert-success hr {
	border-top-color: #179877
}

.alert-success .alert-link {
	color: #abe2d3
}

.alert-info {
	color: #d2f4f5;
	background-color: #1ccacc;
	border-color: #1ccacc
}

.alert-info hr {
	border-top-color: #19b4b6
}

.alert-info .alert-link {
	color: #a8eaec
}

.alert-warning {
	color: #fef4d6;
	background-color: #4d8cbf;
	border-color: #4d8cbf
}

.alert-warning hr {
	border-top-color: #fcbf1a
}

.alert-warning .alert-link {
	color: #fde7a4
}

.alert-danger {
	color: #f9d6da;
	background-color: #e33244;
	border-color: #e33244
}

.alert-danger hr {
	border-top-color: #dd1e32
}

.alert-danger .alert-link {
	color: #f2aab2
}

.alert-light {
	color: #fefeff;
	background-color: #fcfcfd;
	border-color: #fcfcfd
}

.alert-light hr {
	border-top-color: #ededf3
}

.alert-light .alert-link {
	color: #cbcbff
}

.alert-dark {
	color: #d6d8d9;
	background-color: #343a40;
	border-color: #343a40
}

.alert-dark hr {
	border-top-color: #292d32
}

.alert-dark .alert-link {
	color: #bcbfc0
}

@-webkit-keyframes progress-bar-stripes {
	0% {
		background-position: 1rem 0
	}

	to {
		background-position: 0 0
	}
}

@keyframes progress-bar-stripes {
	0% {
		background-position: 1rem 0
	}

	to {
		background-position: 0 0
	}
}

.progress {
	height: 1rem;
	overflow: hidden;
	font-size: .609375rem;
	background-color: #e9ecef;
	border-radius: .2rem
}

.progress,
.progress-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.progress-bar {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	background-color: #3b7ae2;
	-webkit-transition: width .6s ease;
	transition: width .6s ease
}

@media screen and (prefers-reduced-motion:reduce) {
	.progress-bar {
		-webkit-transition: none;
		transition: none
	}
}

.progress-bar-striped {
	background-image: linear-gradient(45deg, hsla(0, 0%, 100%, .15) 25%, transparent 0, transparent 50%, hsla(0, 0%, 100%, .15) 0, hsla(0, 0%, 100%, .15) 75%, transparent 0, transparent);
	background-size: 1rem 1rem
}

.progress-bar-animated {
	-webkit-animation: progress-bar-stripes 1s linear infinite;
	animation: progress-bar-stripes 1s linear infinite
}

.media {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.media-body {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1
}

.list-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-left: 0;
	margin-bottom: 0
}

.list-group-item-action {
	width: 100%;
	color: #495057;
	text-align: inherit
}

.list-group-item-action:focus,
.list-group-item-action:hover {
	color: #495057;
	text-decoration: none;
	background-color: #fcfcfd
}

.list-group-item-action:active {
	color: #5d6b8d;
	background-color: #e9ecef
}

.list-group-item {
	position: relative;
	display: block;
	padding: .75rem 1.25rem;
	margin-bottom: -1px;
	background-color: #fff;
	border: 1px solid #ecf2f9
}

.list-group-item:first-child {
	border-top-left-radius: .2rem;
	border-top-right-radius: .2rem
}

.list-group-item:last-child {
	margin-bottom: 0;
	border-bottom-right-radius: .2rem;
	border-bottom-left-radius: .2rem
}

.list-group-item:focus,
.list-group-item:hover {
	z-index: 1;
	text-decoration: none
}

.list-group-item.disabled,
.list-group-item:disabled {
	color: #6c757d;
	background-color: #fff
}

.list-group-item.active {
	z-index: 2;
	color: #fff;
	background-color: #3b7ae2;
	border-color: #3b7ae2
}

.list-group-flush .list-group-item {
	border-right: 0;
	border-left: 0;
	border-radius: 0
}

.list-group-flush:first-child .list-group-item:first-child {
	border-top: 0
}

.list-group-flush:last-child .list-group-item:last-child {
	border-bottom: 0
}

.list-group-item-primary {
	color: #1f3f76;
	background-color: #c8daf7
}

.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
	color: #1f3f76;
	background-color: #b2cbf4
}

.list-group-item-primary.list-group-item-action.active {
	background-color: #1f3f76;
	border-color: #1f3f76
}

.list-group-item-secondary {
	color: #383d41;
	background-color: #d6d8db
}

.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
	color: #383d41;
	background-color: #c8cbcf
}

.list-group-item-secondary.list-group-item-action.active {
	background-color: #383d41;
	border-color: #383d41
}

.list-group-item-success {
	color: #0e5a47;
	background-color: #bfe8de
}

.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
	color: #0e5a47;
	background-color: #ace1d4
}

.list-group-item-success.list-group-item-action.active {
	background-color: #0e5a47;
	border-color: #0e5a47
}

.list-group-item-info {
	color: #0f696a;
	background-color: #bff0f1
}

.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
	color: #0f696a;
	background-color: #aaebec
}

.list-group-item-info.list-group-item-action.active {
	background-color: #0f696a;
	border-color: #0f696a
}

.list-group-item-warning {
	color: #83671b;
	background-color: #feefc6
}

.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
	color: #83671b;
	background-color: #fee8ad
}

.list-group-item-warning.list-group-item-action.active {
	background-color: #83671b;
	border-color: #83671b
}

.list-group-item-danger {
	color: #761a23;
	background-color: #f7c6cb
}

.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
	color: #761a23;
	background-color: #f4b0b7
}

.list-group-item-danger.list-group-item-action.active {
	background-color: #761a23;
	border-color: #761a23
}

.list-group-item-light {
	color: #838384;
	background-color: #fefefe
}

.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
	color: #838384;
	background-color: #f1f1f1
}

.list-group-item-light.list-group-item-action.active {
	background-color: #838384;
	border-color: #838384
}

.list-group-item-dark {
	color: #1b1e21;
	background-color: #c6c8ca
}

.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
	color: #1b1e21;
	background-color: #b9bbbe
}

.list-group-item-dark.list-group-item-action.active {
	background-color: #1b1e21;
	border-color: #1b1e21
}

.close {
	float: right;
	font-size: 1.21875rem;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: .5
}

.close:not(:disabled):not(.disabled) {
	cursor: pointer
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
	color: #000;
	text-decoration: none;
	opacity: .75
}

button.close {
	padding: 0;
	background-color: transparent;
	border: 0;
	-webkit-appearance: none
}

.modal-open {
	overflow: hidden
}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto
}

.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	display: none;
	overflow: hidden;
	outline: 0
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: .5rem;
	pointer-events: none
}

.modal.fade .modal-dialog {
	-webkit-transition: -webkit-transform .3s ease-out;
	transition: -webkit-transform .3s ease-out;
	transition: transform .3s ease-out;
	transition: transform .3s ease-out, -webkit-transform .3s ease-out;
	-webkit-transform: translateY(-25%);
	transform: translateY(-25%)
}

@media screen and (prefers-reduced-motion:reduce) {
	.modal.fade .modal-dialog {
		-webkit-transition: none;
		transition: none
	}
}

.modal.show .modal-dialog {
	-webkit-transform: translate(0);
	transform: translate(0)
}

.modal-dialog-centered {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: calc(100% - 1rem)
}

.modal-dialog-centered:before {
	display: block;
	height: calc(100vh - 1rem);
	content: ""
}

.modal-content {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	pointer-events: auto;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ecf2f9;
	border-radius: .3rem;
	outline: 0
}

.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000
}

.modal-backdrop.fade {
	opacity: 0
}

.modal-backdrop.show {
	opacity: .5
}

.modal-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1rem;
	border-bottom: 1px solid #ecf2f9;
	border-top-left-radius: .3rem;
	border-top-right-radius: .3rem
}

.modal-header .close {
	padding: 1rem;
	margin: -1rem -1rem -1rem auto
}

.modal-title {
	margin-bottom: 0;
	line-height: 1.5
}

.modal-body {
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1rem
}

.modal-footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 1rem;
	border-top: 1px solid #ecf2f9
}

.modal-footer > :not(:first-child) {
	margin-left: .25rem
}

.modal-footer > :not(:last-child) {
	margin-right: .25rem
}

.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll
}

@media (min-width:576px) {
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto
	}

	.modal-dialog-centered {
		min-height: calc(100% - 3.5rem)
	}

	.modal-dialog-centered:before {
		height: calc(100vh - 3.5rem)
	}

	.modal-sm {
		max-width: 300px
	}
}

@media (min-width:992px) {
	.modal-lg {
		max-width: 800px
	}
}

.tooltip {
	position: absolute;
	z-index: 1070;
	display: block;
	margin: 0;
	font-family: Roboto;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
	text-align: start;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	word-break: normal;
	word-spacing: normal;
	white-space: normal;
	line-break: auto;
	font-size: .7109375rem;
	word-wrap: break-word;
	opacity: 0
}

.tooltip.show {
	opacity: .9
}

.tooltip .arrow {
	position: absolute;
	display: block;
	width: .8rem;
	height: .4rem
}

.tooltip .arrow:before {
	position: absolute;
	content: "";
	border-color: transparent;
	border-style: solid
}

.bs-tooltip-auto[x-placement^=top],
.bs-tooltip-top {
	padding: .4rem 0
}

.bs-tooltip-auto[x-placement^=top] .arrow,
.bs-tooltip-top .arrow {
	bottom: 0
}

.bs-tooltip-auto[x-placement^=top] .arrow:before,
.bs-tooltip-top .arrow:before {
	top: 0;
	border-width: .4rem .4rem 0;
	border-top-color: #000
}

.bs-tooltip-auto[x-placement^=right],
.bs-tooltip-right {
	padding: 0 .4rem
}

.bs-tooltip-auto[x-placement^=right] .arrow,
.bs-tooltip-right .arrow {
	left: 0;
	width: .4rem;
	height: .8rem
}

.bs-tooltip-auto[x-placement^=right] .arrow:before,
.bs-tooltip-right .arrow:before {
	right: 0;
	border-width: .4rem .4rem .4rem 0;
	border-right-color: #000
}

.bs-tooltip-auto[x-placement^=bottom],
.bs-tooltip-bottom {
	padding: .4rem 0
}

.bs-tooltip-auto[x-placement^=bottom] .arrow,
.bs-tooltip-bottom .arrow {
	top: 0
}

.bs-tooltip-auto[x-placement^=bottom] .arrow:before,
.bs-tooltip-bottom .arrow:before {
	bottom: 0;
	border-width: 0 .4rem .4rem;
	border-bottom-color: #000
}

.bs-tooltip-auto[x-placement^=left],
.bs-tooltip-left {
	padding: 0 .4rem
}

.bs-tooltip-auto[x-placement^=left] .arrow,
.bs-tooltip-left .arrow {
	right: 0;
	width: .4rem;
	height: .8rem
}

.bs-tooltip-auto[x-placement^=left] .arrow:before,
.bs-tooltip-left .arrow:before {
	left: 0;
	border-width: .4rem 0 .4rem .4rem;
	border-left-color: #000
}

.tooltip-inner {
	max-width: 200px;
	padding: .25rem .5rem;
	color: #fff;
	text-align: center;
	background-color: #000;
	border-radius: .2rem
}

.popover {
	top: 0;
	left: 0;
	z-index: 1060;
	max-width: 276px;
	font-family: Roboto;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
	text-align: start;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	word-break: normal;
	word-spacing: normal;
	white-space: normal;
	line-break: auto;
	font-size: .7109375rem;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, .2);
	border-radius: .3rem
}

.popover,
.popover .arrow {
	position: absolute;
	display: block
}

.popover .arrow {
	width: 1rem;
	height: .5rem;
	margin: 0 .3rem
}

.popover .arrow:after,
.popover .arrow:before {
	position: absolute;
	display: block;
	content: "";
	border-color: transparent;
	border-style: solid
}

.bs-popover-auto[x-placement^=top],
.bs-popover-top {
	margin-bottom: .5rem
}

.bs-popover-auto[x-placement^=top] .arrow,
.bs-popover-top .arrow {
	bottom: calc((.5rem + 1px) * -1)
}

.bs-popover-auto[x-placement^=top] .arrow:after,
.bs-popover-auto[x-placement^=top] .arrow:before,
.bs-popover-top .arrow:after,
.bs-popover-top .arrow:before {
	border-width: .5rem .5rem 0
}

.bs-popover-auto[x-placement^=top] .arrow:before,
.bs-popover-top .arrow:before {
	bottom: 0;
	border-top-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=top] .arrow:after,
.bs-popover-top .arrow:after {
	bottom: 1px;
	border-top-color: #fff
}

.bs-popover-auto[x-placement^=right],
.bs-popover-right {
	margin-left: .5rem
}

.bs-popover-auto[x-placement^=right] .arrow,
.bs-popover-right .arrow {
	left: calc((.5rem + 1px) * -1);
	width: .5rem;
	height: 1rem;
	margin: .3rem 0
}

.bs-popover-auto[x-placement^=right] .arrow:after,
.bs-popover-auto[x-placement^=right] .arrow:before,
.bs-popover-right .arrow:after,
.bs-popover-right .arrow:before {
	border-width: .5rem .5rem .5rem 0
}

.bs-popover-auto[x-placement^=right] .arrow:before,
.bs-popover-right .arrow:before {
	left: 0;
	border-right-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=right] .arrow:after,
.bs-popover-right .arrow:after {
	left: 1px;
	border-right-color: #fff
}

.bs-popover-auto[x-placement^=bottom],
.bs-popover-bottom {
	margin-top: .5rem
}

.bs-popover-auto[x-placement^=bottom] .arrow,
.bs-popover-bottom .arrow {
	top: calc((.5rem + 1px) * -1)
}

.bs-popover-auto[x-placement^=bottom] .arrow:after,
.bs-popover-auto[x-placement^=bottom] .arrow:before,
.bs-popover-bottom .arrow:after,
.bs-popover-bottom .arrow:before {
	border-width: 0 .5rem .5rem
}

.bs-popover-auto[x-placement^=bottom] .arrow:before,
.bs-popover-bottom .arrow:before {
	top: 0;
	border-bottom-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=bottom] .arrow:after,
.bs-popover-bottom .arrow:after {
	top: 1px;
	border-bottom-color: #fff
}

.bs-popover-auto[x-placement^=bottom] .popover-header:before,
.bs-popover-bottom .popover-header:before {
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 1rem;
	margin-left: -.5rem;
	content: "";
	border-bottom: 1px solid #f7f7f7
}

.bs-popover-auto[x-placement^=left],
.bs-popover-left {
	margin-right: .5rem
}

.bs-popover-auto[x-placement^=left] .arrow,
.bs-popover-left .arrow {
	right: calc((.5rem + 1px) * -1);
	width: .5rem;
	height: 1rem;
	margin: .3rem 0
}

.bs-popover-auto[x-placement^=left] .arrow:after,
.bs-popover-auto[x-placement^=left] .arrow:before,
.bs-popover-left .arrow:after,
.bs-popover-left .arrow:before {
	border-width: .5rem 0 .5rem .5rem
}

.bs-popover-auto[x-placement^=left] .arrow:before,
.bs-popover-left .arrow:before {
	right: 0;
	border-left-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=left] .arrow:after,
.bs-popover-left .arrow:after {
	right: 1px;
	border-left-color: #fff
}

.popover-header {
	padding: .5rem .75rem;
	margin-bottom: 0;
	font-size: .8125rem;
	color: inherit;
	background-color: #f7f7f7;
	border-bottom: 1px solid #ebebeb;
	border-top-left-radius: calc(.3rem - 1px);
	border-top-right-radius: calc(.3rem - 1px)
}

.popover-header:empty {
	display: none
}

.popover-body {
	padding: .5rem .75rem;
	color: #5d6b8d
}

.carousel {
	position: relative
}

.carousel-inner {
	position: relative;
	width: 100%;
	overflow: hidden
}

.carousel-item {
	position: relative;
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1000px;
	perspective: 1000px
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
	display: block;
	-webkit-transition: -webkit-transform .6s ease;
	transition: -webkit-transform .6s ease;
	transition: transform .6s ease;
	transition: transform .6s ease, -webkit-transform .6s ease
}

@media screen and (prefers-reduced-motion:reduce) {

	.carousel-item-next,
	.carousel-item-prev,
	.carousel-item.active {
		-webkit-transition: none;
		transition: none
	}
}

.carousel-item-next,
.carousel-item-prev {
	position: absolute;
	top: 0
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
	-webkit-transform: translateX(0);
	transform: translateX(0)
}

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {

	.carousel-item-next.carousel-item-left,
	.carousel-item-prev.carousel-item-right {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.active.carousel-item-right,
.carousel-item-next {
	-webkit-transform: translateX(100%);
	transform: translateX(100%)
}

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {

	.active.carousel-item-right,
	.carousel-item-next {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

.active.carousel-item-left,
.carousel-item-prev {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%)
}

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {

	.active.carousel-item-left,
	.carousel-item-prev {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}

.carousel-fade .carousel-item {
	opacity: 0;
	-webkit-transition-duration: .6s;
	transition-duration: .6s;
	-webkit-transition-property: opacity;
	transition-property: opacity
}

.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right,
.carousel-fade .carousel-item.active {
	opacity: 1
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
	opacity: 0
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev,
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active {
	-webkit-transform: translateX(0);
	transform: translateX(0)
}

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {

	.carousel-fade .active.carousel-item-left,
	.carousel-fade .active.carousel-item-prev,
	.carousel-fade .carousel-item-next,
	.carousel-fade .carousel-item-prev,
	.carousel-fade .carousel-item.active {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.carousel-control-next,
.carousel-control-prev {
	position: absolute;
	top: 0;
	bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 15%;
	color: #fff;
	text-align: center;
	opacity: .5
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
	color: #fff;
	text-decoration: none;
	outline: 0;
	opacity: .9
}

.carousel-control-prev {
	left: 0
}

.carousel-control-next {
	right: 0
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: transparent no-repeat 50%;
	background-size: 100% 100%
}

.carousel-control-prev-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E")
}

.carousel-control-next-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E")
}

.carousel-indicators {
	position: absolute;
	right: 0;
	bottom: 10px;
	left: 0;
	z-index: 15;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-left: 0;
	margin-right: 15%;
	margin-left: 15%;
	list-style: none
}

.carousel-indicators li {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	width: 30px;
	height: 3px;
	margin-right: 3px;
	margin-left: 3px;
	text-indent: -999px;
	cursor: pointer;
	background-color: hsla(0, 0%, 100%, .5)
}

.carousel-indicators li:before {
	top: -10px
}

.carousel-indicators li:after,
.carousel-indicators li:before {
	position: absolute;
	left: 0;
	display: inline-block;
	width: 100%;
	height: 10px;
	content: ""
}

.carousel-indicators li:after {
	bottom: -10px
}

.carousel-indicators .active {
	background-color: #fff
}

.carousel-caption {
	position: absolute;
	right: 15%;
	bottom: 20px;
	left: 15%;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #fff;
	text-align: center
}

.align-baseline {
	vertical-align: baseline !important
}

.align-top {
	vertical-align: top !important
}

.align-middle {
	vertical-align: middle !important
}

.align-bottom {
	vertical-align: bottom !important
}

.align-text-bottom {
	vertical-align: text-bottom !important
}

.align-text-top {
	vertical-align: text-top !important
}

.bg-primary {
	background-color: #3b7ae2 !important
}

a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
	background-color: #1e60cc !important
}

.bg-secondary {
	background-color: #6c757d !important
}

a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
	background-color: #545b62 !important
}

.bg-success {
	background-color: #1aae88 !important
}

a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
	background-color: #138265 !important
}

.bg-info {
	background-color: #1ccacc !important
}

a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
	background-color: #169e9f !important
}

.bg-warning {
	background-color: #4d8cbf !important
}

a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
	background-color: #f8b704 !important
}

.bg-danger {
	background-color: #e33244 !important
}

a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
	background-color: #c71b2d !important
}

.bg-light {
	background-color: #fcfcfd !important
}

a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
	background-color: #dddde9 !important
}

.bg-dark {
	background-color: #343a40 !important
}

a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
	background-color: #1d2124 !important
}

.bg-white {
	background-color: #fff !important
}

.bg-transparent {
	background-color: transparent !important
}

.border {
	border: 1px solid #dee2e6 !important
}

.border-top {
	border-top: 1px solid #dee2e6 !important
}

.border-right {
	border-right: 1px solid #dee2e6 !important
}

.border-bottom {
	border-bottom: 1px solid #dee2e6 !important
}

.border-left {
	border-left: 1px solid #dee2e6 !important
}

.border-0 {
	border: 0 !important
}

.border-top-0 {
	border-top: 0 !important
}

.border-right-0 {
	border-right: 0 !important
}

.border-bottom-0 {
	border-bottom: 0 !important
}

.border-left-0 {
	border-left: 0 !important
}

.border-primary {
	border-color: #3b7ae2 !important
}

.border-secondary {
	border-color: #6c757d !important
}

.border-success {
	border-color: #1aae88 !important
}

.border-info {
	border-color: #1ccacc !important
}

.border-warning {
	border-color: #4d8cbf !important
}

.border-danger {
	border-color: #e33244 !important
}

.border-light {
	border-color: #fcfcfd !important
}

.border-dark {
	border-color: #343a40 !important
}

.border-white {
	border-color: #fff !important
}

.rounded {
	border-radius: .2rem !important
}

.rounded-top {
	border-top-left-radius: .2rem !important
}

.rounded-right,
.rounded-top {
	border-top-right-radius: .2rem !important
}

.rounded-bottom,
.rounded-right {
	border-bottom-right-radius: .2rem !important
}

.rounded-bottom,
.rounded-left {
	border-bottom-left-radius: .2rem !important
}

.rounded-left {
	border-top-left-radius: .2rem !important
}

.rounded-circle {
	border-radius: 50% !important
}

.rounded-0 {
	border-radius: 0 !important
}

.clearfix:after {
	display: block;
	clear: both;
	content: ""
}

.d-none {
	display: none !important
}

.d-inline {
	display: inline !important
}

.d-inline-block {
	display: inline-block !important
}

.d-block {
	display: block !important
}

.d-table {
	display: table !important
}

.d-table-row {
	display: table-row !important
}

.d-table-cell {
	display: table-cell !important
}

.d-flex {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important
}

.d-inline-flex {
	display: -webkit-inline-box !important;
	display: -ms-inline-flexbox !important;
	display: inline-flex !important
}

@media (min-width:576px) {
	.d-sm-none {
		display: none !important
	}

	.d-sm-inline {
		display: inline !important
	}

	.d-sm-inline-block {
		display: inline-block !important
	}

	.d-sm-block {
		display: block !important
	}

	.d-sm-table {
		display: table !important
	}

	.d-sm-table-row {
		display: table-row !important
	}

	.d-sm-table-cell {
		display: table-cell !important
	}

	.d-sm-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important
	}

	.d-sm-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important
	}
}

@media (min-width:768px) {
	.d-md-none {
		display: none !important
	}

	.d-md-inline {
		display: inline !important
	}

	.d-md-inline-block {
		display: inline-block !important
	}

	.d-md-block {
		display: block !important
	}

	.d-md-table {
		display: table !important
	}

	.d-md-table-row {
		display: table-row !important
	}

	.d-md-table-cell {
		display: table-cell !important
	}

	.d-md-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important
	}

	.d-md-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important
	}
}

@media (min-width:992px) {
	.d-lg-none {
		display: none !important
	}

	.d-lg-inline {
		display: inline !important
	}

	.d-lg-inline-block {
		display: inline-block !important
	}

	.d-lg-block {
		display: block !important
	}

	.d-lg-table {
		display: table !important
	}

	.d-lg-table-row {
		display: table-row !important
	}

	.d-lg-table-cell {
		display: table-cell !important
	}

	.d-lg-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important
	}

	.d-lg-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important
	}
}

@media (min-width:1200px) {
	.d-xl-none {
		display: none !important
	}

	.d-xl-inline {
		display: inline !important
	}

	.d-xl-inline-block {
		display: inline-block !important
	}

	.d-xl-block {
		display: block !important
	}

	.d-xl-table {
		display: table !important
	}

	.d-xl-table-row {
		display: table-row !important
	}

	.d-xl-table-cell {
		display: table-cell !important
	}

	.d-xl-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important
	}

	.d-xl-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important
	}
}

@media print {
	.d-print-none {
		display: none !important
	}

	.d-print-inline {
		display: inline !important
	}

	.d-print-inline-block {
		display: inline-block !important
	}

	.d-print-block {
		display: block !important
	}

	.d-print-table {
		display: table !important
	}

	.d-print-table-row {
		display: table-row !important
	}

	.d-print-table-cell {
		display: table-cell !important
	}

	.d-print-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important
	}

	.d-print-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important
	}
}

.embed-responsive {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden
}

.embed-responsive:before {
	display: block;
	content: ""
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0
}

.embed-responsive-21by9:before {
	padding-top: 42.85714286%
}

.embed-responsive-16by9:before {
	padding-top: 56.25%
}

.embed-responsive-4by3:before {
	padding-top: 75%
}

.embed-responsive-1by1:before {
	padding-top: 100%
}

.flex-row {
	-webkit-box-orient: horizontal !important;
	-ms-flex-direction: row !important;
	flex-direction: row !important
}

.flex-column,
.flex-row {
	-webkit-box-direction: normal !important
}

.flex-column {
	-webkit-box-orient: vertical !important;
	-ms-flex-direction: column !important;
	flex-direction: column !important
}

.flex-row-reverse {
	-webkit-box-orient: horizontal !important;
	-ms-flex-direction: row-reverse !important;
	flex-direction: row-reverse !important
}

.flex-column-reverse,
.flex-row-reverse {
	-webkit-box-direction: reverse !important
}

.flex-column-reverse {
	-webkit-box-orient: vertical !important;
	-ms-flex-direction: column-reverse !important;
	flex-direction: column-reverse !important
}

.flex-wrap {
	-ms-flex-wrap: wrap !important;
	flex-wrap: wrap !important
}

.flex-nowrap {
	-ms-flex-wrap: nowrap !important;
	flex-wrap: nowrap !important
}

.flex-wrap-reverse {
	-ms-flex-wrap: wrap-reverse !important;
	flex-wrap: wrap-reverse !important
}

.flex-fill {
	-webkit-box-flex: 1 !important;
	-ms-flex: 1 1 auto !important;
	flex: 1 1 auto !important
}

.flex-grow-0 {
	-webkit-box-flex: 0 !important;
	-ms-flex-positive: 0 !important;
	flex-grow: 0 !important
}

.flex-grow-1 {
	-webkit-box-flex: 1 !important;
	-ms-flex-positive: 1 !important;
	flex-grow: 1 !important
}

.flex-shrink-0 {
	-ms-flex-negative: 0 !important;
	flex-shrink: 0 !important
}

.flex-shrink-1 {
	-ms-flex-negative: 1 !important;
	flex-shrink: 1 !important
}

.justify-content-start {
	-webkit-box-pack: start !important;
	-ms-flex-pack: start !important;
	justify-content: flex-start !important
}

.justify-content-end {
	-webkit-box-pack: end !important;
	-ms-flex-pack: end !important;
	justify-content: flex-end !important
}

.justify-content-center {
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important
}

.justify-content-between {
	-webkit-box-pack: justify !important;
	-ms-flex-pack: justify !important;
	justify-content: space-between !important
}

.justify-content-around {
	-ms-flex-pack: distribute !important;
	justify-content: space-around !important
}

.align-items-start {
	-webkit-box-align: start !important;
	-ms-flex-align: start !important;
	align-items: flex-start !important
}

.align-items-end {
	-webkit-box-align: end !important;
	-ms-flex-align: end !important;
	align-items: flex-end !important
}

.align-items-center {
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important
}

.align-items-baseline {
	-webkit-box-align: baseline !important;
	-ms-flex-align: baseline !important;
	align-items: baseline !important
}

.align-items-stretch {
	-webkit-box-align: stretch !important;
	-ms-flex-align: stretch !important;
	align-items: stretch !important
}

.align-content-start {
	-ms-flex-line-pack: start !important;
	align-content: flex-start !important
}

.align-content-end {
	-ms-flex-line-pack: end !important;
	align-content: flex-end !important
}

.align-content-center {
	-ms-flex-line-pack: center !important;
	align-content: center !important
}

.align-content-between {
	-ms-flex-line-pack: justify !important;
	align-content: space-between !important
}

.align-content-around {
	-ms-flex-line-pack: distribute !important;
	align-content: space-around !important
}

.align-content-stretch {
	-ms-flex-line-pack: stretch !important;
	align-content: stretch !important
}

.align-self-auto {
	-ms-flex-item-align: auto !important;
	align-self: auto !important
}

.align-self-start {
	-ms-flex-item-align: start !important;
	align-self: flex-start !important
}

.align-self-end {
	-ms-flex-item-align: end !important;
	align-self: flex-end !important
}

.align-self-center {
	-ms-flex-item-align: center !important;
	align-self: center !important
}

.align-self-baseline {
	-ms-flex-item-align: baseline !important;
	align-self: baseline !important
}

.align-self-stretch {
	-ms-flex-item-align: stretch !important;
	align-self: stretch !important
}

@media (min-width:576px) {
	.flex-sm-row {
		-webkit-box-orient: horizontal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important
	}

	.flex-sm-column,
	.flex-sm-row {
		-webkit-box-direction: normal !important
	}

	.flex-sm-column {
		-webkit-box-orient: vertical !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important
	}

	.flex-sm-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important
	}

	.flex-sm-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important
	}

	.flex-sm-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important
	}

	.flex-sm-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important
	}

	.flex-sm-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important
	}

	.flex-sm-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important
	}

	.flex-sm-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important
	}

	.flex-sm-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important
	}

	.flex-sm-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important
	}

	.flex-sm-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important
	}

	.justify-content-sm-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important
	}

	.justify-content-sm-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important
	}

	.justify-content-sm-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important
	}

	.justify-content-sm-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important
	}

	.justify-content-sm-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important
	}

	.align-items-sm-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important
	}

	.align-items-sm-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important
	}

	.align-items-sm-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important
	}

	.align-items-sm-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important
	}

	.align-items-sm-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important
	}

	.align-content-sm-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important
	}

	.align-content-sm-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important
	}

	.align-content-sm-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important
	}

	.align-content-sm-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important
	}

	.align-content-sm-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important
	}

	.align-content-sm-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important
	}

	.align-self-sm-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important
	}

	.align-self-sm-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important
	}

	.align-self-sm-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important
	}

	.align-self-sm-center {
		-ms-flex-item-align: center !important;
		align-self: center !important
	}

	.align-self-sm-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important
	}

	.align-self-sm-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important
	}
}

@media (min-width:768px) {
	.flex-md-row {
		-webkit-box-orient: horizontal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important
	}

	.flex-md-column,
	.flex-md-row {
		-webkit-box-direction: normal !important
	}

	.flex-md-column {
		-webkit-box-orient: vertical !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important
	}

	.flex-md-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important
	}

	.flex-md-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important
	}

	.flex-md-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important
	}

	.flex-md-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important
	}

	.flex-md-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important
	}

	.flex-md-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important
	}

	.flex-md-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important
	}

	.flex-md-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important
	}

	.flex-md-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important
	}

	.flex-md-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important
	}

	.justify-content-md-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important
	}

	.justify-content-md-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important
	}

	.justify-content-md-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important
	}

	.justify-content-md-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important
	}

	.justify-content-md-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important
	}

	.align-items-md-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important
	}

	.align-items-md-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important
	}

	.align-items-md-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important
	}

	.align-items-md-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important
	}

	.align-items-md-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important
	}

	.align-content-md-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important
	}

	.align-content-md-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important
	}

	.align-content-md-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important
	}

	.align-content-md-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important
	}

	.align-content-md-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important
	}

	.align-content-md-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important
	}

	.align-self-md-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important
	}

	.align-self-md-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important
	}

	.align-self-md-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important
	}

	.align-self-md-center {
		-ms-flex-item-align: center !important;
		align-self: center !important
	}

	.align-self-md-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important
	}

	.align-self-md-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important
	}
}

@media (min-width:992px) {
	.flex-lg-row {
		-webkit-box-orient: horizontal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important
	}

	.flex-lg-column,
	.flex-lg-row {
		-webkit-box-direction: normal !important
	}

	.flex-lg-column {
		-webkit-box-orient: vertical !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important
	}

	.flex-lg-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important
	}

	.flex-lg-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important
	}

	.flex-lg-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important
	}

	.flex-lg-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important
	}

	.flex-lg-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important
	}

	.flex-lg-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important
	}

	.flex-lg-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important
	}

	.flex-lg-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important
	}

	.flex-lg-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important
	}

	.flex-lg-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important
	}

	.justify-content-lg-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important
	}

	.justify-content-lg-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important
	}

	.justify-content-lg-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important
	}

	.justify-content-lg-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important
	}

	.justify-content-lg-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important
	}

	.align-items-lg-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important
	}

	.align-items-lg-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important
	}

	.align-items-lg-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important
	}

	.align-items-lg-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important
	}

	.align-items-lg-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important
	}

	.align-content-lg-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important
	}

	.align-content-lg-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important
	}

	.align-content-lg-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important
	}

	.align-content-lg-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important
	}

	.align-content-lg-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important
	}

	.align-content-lg-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important
	}

	.align-self-lg-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important
	}

	.align-self-lg-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important
	}

	.align-self-lg-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important
	}

	.align-self-lg-center {
		-ms-flex-item-align: center !important;
		align-self: center !important
	}

	.align-self-lg-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important
	}

	.align-self-lg-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important
	}
}

@media (min-width:1200px) {
	.flex-xl-row {
		-webkit-box-orient: horizontal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important
	}

	.flex-xl-column,
	.flex-xl-row {
		-webkit-box-direction: normal !important
	}

	.flex-xl-column {
		-webkit-box-orient: vertical !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important
	}

	.flex-xl-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important
	}

	.flex-xl-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important
	}

	.flex-xl-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important
	}

	.flex-xl-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important
	}

	.flex-xl-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important
	}

	.flex-xl-fill {
		-webkit-box-flex: 1 !important;
		-ms-flex: 1 1 auto !important;
		flex: 1 1 auto !important
	}

	.flex-xl-grow-0 {
		-webkit-box-flex: 0 !important;
		-ms-flex-positive: 0 !important;
		flex-grow: 0 !important
	}

	.flex-xl-grow-1 {
		-webkit-box-flex: 1 !important;
		-ms-flex-positive: 1 !important;
		flex-grow: 1 !important
	}

	.flex-xl-shrink-0 {
		-ms-flex-negative: 0 !important;
		flex-shrink: 0 !important
	}

	.flex-xl-shrink-1 {
		-ms-flex-negative: 1 !important;
		flex-shrink: 1 !important
	}

	.justify-content-xl-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important
	}

	.justify-content-xl-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important
	}

	.justify-content-xl-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important
	}

	.justify-content-xl-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important
	}

	.justify-content-xl-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important
	}

	.align-items-xl-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important
	}

	.align-items-xl-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important
	}

	.align-items-xl-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important
	}

	.align-items-xl-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important
	}

	.align-items-xl-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important
	}

	.align-content-xl-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important
	}

	.align-content-xl-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important
	}

	.align-content-xl-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important
	}

	.align-content-xl-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important
	}

	.align-content-xl-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important
	}

	.align-content-xl-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important
	}

	.align-self-xl-auto {
		-ms-flex-item-align: auto !important;
		align-self: auto !important
	}

	.align-self-xl-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important
	}

	.align-self-xl-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important
	}

	.align-self-xl-center {
		-ms-flex-item-align: center !important;
		align-self: center !important
	}

	.align-self-xl-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important
	}

	.align-self-xl-stretch {
		-ms-flex-item-align: stretch !important;
		align-self: stretch !important
	}
}

.float-left {
	float: left !important
}

.float-right {
	float: right !important
}

.float-none {
	float: none !important
}

@media (min-width:576px) {
	.float-sm-left {
		float: left !important
	}

	.float-sm-right {
		float: right !important
	}

	.float-sm-none {
		float: none !important
	}
}

@media (min-width:768px) {
	.float-md-left {
		float: left !important
	}

	.float-md-right {
		float: right !important
	}

	.float-md-none {
		float: none !important
	}
}

@media (min-width:992px) {
	.float-lg-left {
		float: left !important
	}

	.float-lg-right {
		float: right !important
	}

	.float-lg-none {
		float: none !important
	}
}

@media (min-width:1200px) {
	.float-xl-left {
		float: left !important
	}

	.float-xl-right {
		float: right !important
	}

	.float-xl-none {
		float: none !important
	}
}

.position-static {
	position: static !important
}

.position-relative {
	position: relative !important
}

.position-absolute {
	position: absolute !important
}

.position-fixed {
	position: fixed !important
}

.position-sticky {
	position: -webkit-sticky !important;
	position: sticky !important
}

.fixed-top {
	top: 0
}

.fixed-bottom,
.fixed-top {
	position: fixed;
	right: 0;
	left: 0;
	z-index: 1030
}

.fixed-bottom {
	bottom: 0
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
	.sticky-top {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 1020
	}
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	clip: auto;
	white-space: normal
}

.shadow-sm {
	-webkit-box-shadow: 0 2px 5px rgba(69, 101, 173, .08) !important;
	box-shadow: 0 2px 5px rgba(69, 101, 173, .08) !important
}

.shadow {
	-webkit-box-shadow: 0 3px 8px rgba(69, 101, 173, .21) !important;
	box-shadow: 0 3px 8px rgba(69, 101, 173, .21) !important
}

.shadow-lg {
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .56) !important;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .56) !important
}

.shadow-none {
	-webkit-box-shadow: none !important;
	box-shadow: none !important
}

.w-25 {
	width: 25% !important
}

.w-50 {
	width: 50% !important
}

.w-75 {
	width: 75% !important
}

.w-100 {
	width: 100% !important
}

.w-auto {
	width: auto !important
}

.w-1 {
	width: 1% !important
}

.w-2 {
	width: 2% !important
}

.w-3 {
	width: 3% !important
}

.w-4 {
	width: 4% !important
}

.w-5 {
	width: 5% !important
}

.w-6 {
	width: 6% !important
}

.w-7 {
	width: 7% !important
}

.w-8 {
	width: 8% !important
}

.w-9 {
	width: 9% !important
}

.w-10 {
	width: 10% !important
}

.w-11 {
	width: 11% !important
}

.w-12 {
	width: 12% !important
}

.w-13 {
	width: 13% !important
}

.w-14 {
	width: 14% !important
}

.w-15 {
	width: 15% !important
}

.w-16 {
	width: 16% !important
}

.w-17 {
	width: 17% !important
}

.w-18 {
	width: 18% !important
}

.w-19 {
	width: 19% !important
}

.w-20 {
	width: 20% !important
}

.w-21 {
	width: 21% !important
}

.w-22 {
	width: 22% !important
}

.w-23 {
	width: 23% !important
}

.w-24 {
	width: 24% !important
}

.w-26 {
	width: 26% !important
}

.w-27 {
	width: 27% !important
}

.w-28 {
	width: 28% !important
}

.w-29 {
	width: 29% !important
}

.w-30 {
	width: 30% !important
}

.w-31 {
	width: 31% !important
}

.w-32 {
	width: 32% !important
}

.w-33 {
	width: 33% !important
}

.w-34 {
	width: 34% !important
}

.w-35 {
	width: 35% !important
}

.w-36 {
	width: 36% !important
}

.w-37 {
	width: 37% !important
}

.w-38 {
	width: 38% !important
}

.w-39 {
	width: 39% !important
}

.w-40 {
	width: 40% !important
}

.w-41 {
	width: 41% !important
}

.w-42 {
	width: 42% !important
}

.w-43 {
	width: 43% !important
}

.w-44 {
	width: 44% !important
}

.w-45 {
	width: 45% !important
}

.w-46 {
	width: 46% !important
}

.w-47 {
	width: 47% !important
}

.w-48 {
	width: 48% !important
}

.w-49 {
	width: 49% !important
}

.w-51 {
	width: 51% !important
}

.w-52 {
	width: 52% !important
}

.w-53 {
	width: 53% !important
}

.w-54 {
	width: 54% !important
}

.w-55 {
	width: 55% !important
}

.w-56 {
	width: 56% !important
}

.w-57 {
	width: 57% !important
}

.w-58 {
	width: 58% !important
}

.w-59 {
	width: 59% !important
}

.w-60 {
	width: 60% !important
}

.w-61 {
	width: 61% !important
}

.w-62 {
	width: 62% !important
}

.w-63 {
	width: 63% !important
}

.w-64 {
	width: 64% !important
}

.w-65 {
	width: 65% !important
}

.w-66 {
	width: 66% !important
}

.w-67 {
	width: 67% !important
}

.w-68 {
	width: 68% !important
}

.w-69 {
	width: 69% !important
}

.w-70 {
	width: 70% !important
}

.w-71 {
	width: 71% !important
}

.w-72 {
	width: 72% !important
}

.w-73 {
	width: 73% !important
}

.w-74 {
	width: 74% !important
}

.w-76 {
	width: 76% !important
}

.w-77 {
	width: 77% !important
}

.w-78 {
	width: 78% !important
}

.w-79 {
	width: 79% !important
}

.w-80 {
	width: 80% !important
}

.w-81 {
	width: 81% !important
}

.w-82 {
	width: 82% !important
}

.w-83 {
	width: 83% !important
}

.w-84 {
	width: 84% !important
}

.w-85 {
	width: 85% !important
}

.w-86 {
	width: 86% !important
}

.w-87 {
	width: 87% !important
}

.w-88 {
	width: 88% !important
}

.w-89 {
	width: 89% !important
}

.w-90 {
	width: 90% !important
}

.w-91 {
	width: 91% !important
}

.w-92 {
	width: 92% !important
}

.w-93 {
	width: 93% !important
}

.w-94 {
	width: 94% !important
}

.w-95 {
	width: 95% !important
}

.w-96 {
	width: 96% !important
}

.w-97 {
	width: 97% !important
}

.w-98 {
	width: 98% !important
}

.w-99 {
	width: 99% !important
}

.h-25 {
	height: 25% !important
}

.h-50 {
	height: 50% !important
}

.h-75 {
	height: 75% !important
}

.h-100 {
	height: 100% !important
}

.h-auto {
	height: auto !important
}

.h-1 {
	height: 1% !important
}

.h-2 {
	height: 2% !important
}

.h-3 {
	height: 3% !important
}

.h-4 {
	height: 4% !important
}

.h-5 {
	height: 5% !important
}

.h-6 {
	height: 6% !important
}

.h-7 {
	height: 7% !important
}

.h-8 {
	height: 8% !important
}

.h-9 {
	height: 9% !important
}

.h-10 {
	height: 10% !important
}

.h-11 {
	height: 11% !important
}

.h-12 {
	height: 12% !important
}

.h-13 {
	height: 13% !important
}

.h-14 {
	height: 14% !important
}

.h-15 {
	height: 15% !important
}

.h-16 {
	height: 16% !important
}

.h-17 {
	height: 17% !important
}

.h-18 {
	height: 18% !important
}

.h-19 {
	height: 19% !important
}

.h-20 {
	height: 20% !important
}

.h-21 {
	height: 21% !important
}

.h-22 {
	height: 22% !important
}

.h-23 {
	height: 23% !important
}

.h-24 {
	height: 24% !important
}

.h-26 {
	height: 26% !important
}

.h-27 {
	height: 27% !important
}

.h-28 {
	height: 28% !important
}

.h-29 {
	height: 29% !important
}

.h-30 {
	height: 30% !important
}

.h-31 {
	height: 31% !important
}

.h-32 {
	height: 32% !important
}

.h-33 {
	height: 33% !important
}

.h-34 {
	height: 34% !important
}

.h-35 {
	height: 35% !important
}

.h-36 {
	height: 36% !important
}

.h-37 {
	height: 37% !important
}

.h-38 {
	height: 38% !important
}

.h-39 {
	height: 39% !important
}

.h-40 {
	height: 40% !important
}

.h-41 {
	height: 41% !important
}

.h-42 {
	height: 42% !important
}

.h-43 {
	height: 43% !important
}

.h-44 {
	height: 44% !important
}

.h-45 {
	height: 45% !important
}

.h-46 {
	height: 46% !important
}

.h-47 {
	height: 47% !important
}

.h-48 {
	height: 48% !important
}

.h-49 {
	height: 49% !important
}

.h-51 {
	height: 51% !important
}

.h-52 {
	height: 52% !important
}

.h-53 {
	height: 53% !important
}

.h-54 {
	height: 54% !important
}

.h-55 {
	height: 55% !important
}

.h-56 {
	height: 56% !important
}

.h-57 {
	height: 57% !important
}

.h-58 {
	height: 58% !important
}

.h-59 {
	height: 59% !important
}

.h-60 {
	height: 60% !important
}

.h-61 {
	height: 61% !important
}

.h-62 {
	height: 62% !important
}

.h-63 {
	height: 63% !important
}

.h-64 {
	height: 64% !important
}

.h-65 {
	height: 65% !important
}

.h-66 {
	height: 66% !important
}

.h-67 {
	height: 67% !important
}

.h-68 {
	height: 68% !important
}

.h-69 {
	height: 69% !important
}

.h-70 {
	height: 70% !important
}

.h-71 {
	height: 71% !important
}

.h-72 {
	height: 72% !important
}

.h-73 {
	height: 73% !important
}

.h-74 {
	height: 74% !important
}

.h-76 {
	height: 76% !important
}

.h-77 {
	height: 77% !important
}

.h-78 {
	height: 78% !important
}

.h-79 {
	height: 79% !important
}

.h-80 {
	height: 80% !important
}

.h-81 {
	height: 81% !important
}

.h-82 {
	height: 82% !important
}

.h-83 {
	height: 83% !important
}

.h-84 {
	height: 84% !important
}

.h-85 {
	height: 85% !important
}

.h-86 {
	height: 86% !important
}

.h-87 {
	height: 87% !important
}

.h-88 {
	height: 88% !important
}

.h-89 {
	height: 89% !important
}

.h-90 {
	height: 90% !important
}

.h-91 {
	height: 91% !important
}

.h-92 {
	height: 92% !important
}

.h-93 {
	height: 93% !important
}

.h-94 {
	height: 94% !important
}

.h-95 {
	height: 95% !important
}

.h-96 {
	height: 96% !important
}

.h-97 {
	height: 97% !important
}

.h-98 {
	height: 98% !important
}

.h-99 {
	height: 99% !important
}

.mw-100 {
	max-width: 100% !important
}

.mh-100 {
	max-height: 100% !important
}

.m-0 {
	margin: 0 !important
}

.mt-0,
.my-0 {
	margin-top: 0 !important
}

.mr-0,
.mx-0 {
	margin-right: 0 !important
}

.mb-0,
.my-0 {
	margin-bottom: 0 !important
}

.ml-0,
.mx-0 {
	margin-left: 0 !important
}

.m-1 {
	margin: .0625rem !important
}

.mt-1,
.my-1 {
	margin-top: .0625rem !important
}

.mr-1,
.mx-1 {
	margin-right: .0625rem !important
}

.mb-1,
.my-1 {
	margin-bottom: .0625rem !important
}

.ml-1,
.mx-1 {
	margin-left: .0625rem !important
}

.m-2 {
	margin: .125rem !important
}

.mt-2,
.my-2 {
	margin-top: .125rem !important
}

.mr-2,
.mx-2 {
	margin-right: .125rem !important
}

.mb-2,
.my-2 {
	margin-bottom: .125rem !important
}

.ml-2,
.mx-2 {
	margin-left: .125rem !important
}

.m-3 {
	margin: .1875rem !important
}

.mt-3,
.my-3 {
	margin-top: .1875rem !important
}

.mr-3,
.mx-3 {
	margin-right: .1875rem !important
}

.mb-3,
.my-3 {
	margin-bottom: .1875rem !important
}

.ml-3,
.mx-3 {
	margin-left: .1875rem !important
}

.m-4 {
	margin: .25rem !important
}

.mt-4,
.my-4 {
	margin-top: .25rem !important
}

.mr-4,
.mx-4 {
	margin-right: .25rem !important
}

.mb-4,
.my-4 {
	margin-bottom: .25rem !important
}

.ml-4,
.mx-4 {
	margin-left: .25rem !important
}

.m-5 {
	margin: .3125rem !important
}

.mt-5,
.my-5 {
	margin-top: .3125rem !important
}

.mr-5,
.mx-5 {
	margin-right: .3125rem !important
}

.mb-5,
.my-5 {
	margin-bottom: .3125rem !important
}

.ml-5,
.mx-5 {
	margin-left: .3125rem !important
}

.m-6 {
	margin: .375rem !important
}

.mt-6,
.my-6 {
	margin-top: .375rem !important
}

.mr-6,
.mx-6 {
	margin-right: .375rem !important
}

.mb-6,
.my-6 {
	margin-bottom: .375rem !important
}

.ml-6,
.mx-6 {
	margin-left: .375rem !important
}

.m-7 {
	margin: .4375rem !important
}

.mt-7,
.my-7 {
	margin-top: .4375rem !important
}

.mr-7,
.mx-7 {
	margin-right: .4375rem !important
}

.mb-7,
.my-7 {
	margin-bottom: .4375rem !important
}

.ml-7,
.mx-7 {
	margin-left: .4375rem !important
}

.m-8 {
	margin: .5rem !important
}

.mt-8,
.my-8 {
	margin-top: .5rem !important
}

.mr-8,
.mx-8 {
	margin-right: .5rem !important
}

.mb-8,
.my-8 {
	margin-bottom: .5rem !important
}

.ml-8,
.mx-8 {
	margin-left: .5rem !important
}

.m-9 {
	margin: .5625rem !important
}

.mt-9,
.my-9 {
	margin-top: .5625rem !important
}

.mr-9,
.mx-9 {
	margin-right: .5625rem !important
}

.mb-9,
.my-9 {
	margin-bottom: .5625rem !important
}

.ml-9,
.mx-9 {
	margin-left: .5625rem !important
}

.m-10 {
	margin: .625rem !important
}

.mt-10,
.my-10 {
	margin-top: .625rem !important
}

.mr-10,
.mx-10 {
	margin-right: .625rem !important
}

.mb-10,
.my-10 {
	margin-bottom: .625rem !important
}

.ml-10,
.mx-10 {
	margin-left: .625rem !important
}

.m-11 {
	margin: .6875rem !important
}

.mt-11,
.my-11 {
	margin-top: .6875rem !important
}

.mr-11,
.mx-11 {
	margin-right: .6875rem !important
}

.mb-11,
.my-11 {
	margin-bottom: .6875rem !important
}

.ml-11,
.mx-11 {
	margin-left: .6875rem !important
}

.m-12 {
	margin: .75rem !important
}

.mt-12,
.my-12 {
	margin-top: .75rem !important
}

.mr-12,
.mx-12 {
	margin-right: .75rem !important
}

.mb-12,
.my-12 {
	margin-bottom: .75rem !important
}

.ml-12,
.mx-12 {
	margin-left: .75rem !important
}

.m-13 {
	margin: .8125rem !important
}

.mt-13,
.my-13 {
	margin-top: .8125rem !important
}

.mr-13,
.mx-13 {
	margin-right: .8125rem !important
}

.mb-13,
.my-13 {
	margin-bottom: .8125rem !important
}

.ml-13,
.mx-13 {
	margin-left: .8125rem !important
}

.m-14 {
	margin: .875rem !important
}

.mt-14,
.my-14 {
	margin-top: .875rem !important
}

.mr-14,
.mx-14 {
	margin-right: .875rem !important
}

.mb-14,
.my-14 {
	margin-bottom: .875rem !important
}

.ml-14,
.mx-14 {
	margin-left: .875rem !important
}

.m-15 {
	margin: .9375rem !important
}

.mt-15,
.my-15 {
	margin-top: .9375rem !important
}

.mr-15,
.mx-15 {
	margin-right: .9375rem !important
}

.mb-15,
.my-15 {
	margin-bottom: .9375rem !important
}

.ml-15,
.mx-15 {
	margin-left: .9375rem !important
}

.m-16 {
	margin: 1rem !important
}

.mt-16,
.my-16 {
	margin-top: 1rem !important
}

.mr-16,
.mx-16 {
	margin-right: 1rem !important
}

.mb-16,
.my-16 {
	margin-bottom: 1rem !important
}

.ml-16,
.mx-16 {
	margin-left: 1rem !important
}

.m-17 {
	margin: 1.0625rem !important
}

.mt-17,
.my-17 {
	margin-top: 1.0625rem !important
}

.mr-17,
.mx-17 {
	margin-right: 1.0625rem !important
}

.mb-17,
.my-17 {
	margin-bottom: 1.0625rem !important
}

.ml-17,
.mx-17 {
	margin-left: 1.0625rem !important
}

.m-18 {
	margin: 1.125rem !important
}

.mt-18,
.my-18 {
	margin-top: 1.125rem !important
}

.mr-18,
.mx-18 {
	margin-right: 1.125rem !important
}

.mb-18,
.my-18 {
	margin-bottom: 1.125rem !important
}

.ml-18,
.mx-18 {
	margin-left: 1.125rem !important
}

.m-19 {
	margin: 1.1875rem !important
}

.mt-19,
.my-19 {
	margin-top: 1.1875rem !important
}

.mr-19,
.mx-19 {
	margin-right: 1.1875rem !important
}

.mb-19,
.my-19 {
	margin-bottom: 1.1875rem !important
}

.ml-19,
.mx-19 {
	margin-left: 1.1875rem !important
}

.m-20 {
	margin: 1.25rem !important
}

.mt-20,
.my-20 {
	margin-top: 1.25rem !important
}

.mr-20,
.mx-20 {
	margin-right: 1.25rem !important
}

.mb-20,
.my-20 {
	margin-bottom: 1.25rem !important
}

.ml-20,
.mx-20 {
	margin-left: 1.25rem !important
}

.m-21 {
	margin: 1.3125rem !important
}

.mt-21,
.my-21 {
	margin-top: 1.3125rem !important
}

.mr-21,
.mx-21 {
	margin-right: 1.3125rem !important
}

.mb-21,
.my-21 {
	margin-bottom: 1.3125rem !important
}

.ml-21,
.mx-21 {
	margin-left: 1.3125rem !important
}

.m-22 {
	margin: 1.375rem !important
}

.mt-22,
.my-22 {
	margin-top: 1.375rem !important
}

.mr-22,
.mx-22 {
	margin-right: 1.375rem !important
}

.mb-22,
.my-22 {
	margin-bottom: 1.375rem !important
}

.ml-22,
.mx-22 {
	margin-left: 1.375rem !important
}

.m-23 {
	margin: 1.4375rem !important
}

.mt-23,
.my-23 {
	margin-top: 1.4375rem !important
}

.mr-23,
.mx-23 {
	margin-right: 1.4375rem !important
}

.mb-23,
.my-23 {
	margin-bottom: 1.4375rem !important
}

.ml-23,
.mx-23 {
	margin-left: 1.4375rem !important
}

.m-24 {
	margin: 1.5rem !important
}

.mt-24,
.my-24 {
	margin-top: 1.5rem !important
}

.mr-24,
.mx-24 {
	margin-right: 1.5rem !important
}

.mb-24,
.my-24 {
	margin-bottom: 1.5rem !important
}

.ml-24,
.mx-24 {
	margin-left: 1.5rem !important
}

.m-25 {
	margin: 1.5625rem !important
}

.mt-25,
.my-25 {
	margin-top: 1.5625rem !important
}

.mr-25,
.mx-25 {
	margin-right: 1.5625rem !important
}

.mb-25,
.my-25 {
	margin-bottom: 1.5625rem !important
}

.ml-25,
.mx-25 {
	margin-left: 1.5625rem !important
}

.m-26 {
	margin: 1.625rem !important
}

.mt-26,
.my-26 {
	margin-top: 1.625rem !important
}

.mr-26,
.mx-26 {
	margin-right: 1.625rem !important
}

.mb-26,
.my-26 {
	margin-bottom: 1.625rem !important
}

.ml-26,
.mx-26 {
	margin-left: 1.625rem !important
}

.m-27 {
	margin: 1.6875rem !important
}

.mt-27,
.my-27 {
	margin-top: 1.6875rem !important
}

.mr-27,
.mx-27 {
	margin-right: 1.6875rem !important
}

.mb-27,
.my-27 {
	margin-bottom: 1.6875rem !important
}

.ml-27,
.mx-27 {
	margin-left: 1.6875rem !important
}

.m-28 {
	margin: 1.75rem !important
}

.mt-28,
.my-28 {
	margin-top: 1.75rem !important
}

.mr-28,
.mx-28 {
	margin-right: 1.75rem !important
}

.mb-28,
.my-28 {
	margin-bottom: 1.75rem !important
}

.ml-28,
.mx-28 {
	margin-left: 1.75rem !important
}

.m-29 {
	margin: 1.8125rem !important
}

.mt-29,
.my-29 {
	margin-top: 1.8125rem !important
}

.mr-29,
.mx-29 {
	margin-right: 1.8125rem !important
}

.mb-29,
.my-29 {
	margin-bottom: 1.8125rem !important
}

.ml-29,
.mx-29 {
	margin-left: 1.8125rem !important
}

.m-30 {
	margin: 1.875rem !important
}

.mt-30,
.my-30 {
	margin-top: 1.875rem !important
}

.mr-30,
.mx-30 {
	margin-right: 1.875rem !important
}

.mb-30,
.my-30 {
	margin-bottom: 1.875rem !important
}

.ml-30,
.mx-30 {
	margin-left: 1.875rem !important
}

.m-31 {
	margin: 1.9375rem !important
}

.mt-31,
.my-31 {
	margin-top: 1.9375rem !important
}

.mr-31,
.mx-31 {
	margin-right: 1.9375rem !important
}

.mb-31,
.my-31 {
	margin-bottom: 1.9375rem !important
}

.ml-31,
.mx-31 {
	margin-left: 1.9375rem !important
}

.m-32 {
	margin: 2rem !important
}

.mt-32,
.my-32 {
	margin-top: 2rem !important
}

.mr-32,
.mx-32 {
	margin-right: 2rem !important
}

.mb-32,
.my-32 {
	margin-bottom: 2rem !important
}

.ml-32,
.mx-32 {
	margin-left: 2rem !important
}

.m-33 {
	margin: 2.0625rem !important
}

.mt-33,
.my-33 {
	margin-top: 2.0625rem !important
}

.mr-33,
.mx-33 {
	margin-right: 2.0625rem !important
}

.mb-33,
.my-33 {
	margin-bottom: 2.0625rem !important
}

.ml-33,
.mx-33 {
	margin-left: 2.0625rem !important
}

.m-34 {
	margin: 2.125rem !important
}

.mt-34,
.my-34 {
	margin-top: 2.125rem !important
}

.mr-34,
.mx-34 {
	margin-right: 2.125rem !important
}

.mb-34,
.my-34 {
	margin-bottom: 2.125rem !important
}

.ml-34,
.mx-34 {
	margin-left: 2.125rem !important
}

.m-35 {
	margin: 2.1875rem !important
}

.mt-35,
.my-35 {
	margin-top: 2.1875rem !important
}

.mr-35,
.mx-35 {
	margin-right: 2.1875rem !important
}

.mb-35,
.my-35 {
	margin-bottom: 2.1875rem !important
}

.ml-35,
.mx-35 {
	margin-left: 2.1875rem !important
}

.m-36 {
	margin: 2.25rem !important
}

.mt-36,
.my-36 {
	margin-top: 2.25rem !important
}

.mr-36,
.mx-36 {
	margin-right: 2.25rem !important
}

.mb-36,
.my-36 {
	margin-bottom: 2.25rem !important
}

.ml-36,
.mx-36 {
	margin-left: 2.25rem !important
}

.m-37 {
	margin: 2.3125rem !important
}

.mt-37,
.my-37 {
	margin-top: 2.3125rem !important
}

.mr-37,
.mx-37 {
	margin-right: 2.3125rem !important
}

.mb-37,
.my-37 {
	margin-bottom: 2.3125rem !important
}

.ml-37,
.mx-37 {
	margin-left: 2.3125rem !important
}

.m-38 {
	margin: 2.375rem !important
}

.mt-38,
.my-38 {
	margin-top: 2.375rem !important
}

.mr-38,
.mx-38 {
	margin-right: 2.375rem !important
}

.mb-38,
.my-38 {
	margin-bottom: 2.375rem !important
}

.ml-38,
.mx-38 {
	margin-left: 2.375rem !important
}

.m-39 {
	margin: 2.4375rem !important
}

.mt-39,
.my-39 {
	margin-top: 2.4375rem !important
}

.mr-39,
.mx-39 {
	margin-right: 2.4375rem !important
}

.mb-39,
.my-39 {
	margin-bottom: 2.4375rem !important
}

.ml-39,
.mx-39 {
	margin-left: 2.4375rem !important
}

.m-40 {
	margin: 2.5rem !important
}

.mt-40,
.my-40 {
	margin-top: 2.5rem !important
}

.mr-40,
.mx-40 {
	margin-right: 2.5rem !important
}

.mb-40,
.my-40 {
	margin-bottom: 2.5rem !important
}

.ml-40,
.mx-40 {
	margin-left: 2.5rem !important
}

.m-41 {
	margin: 2.5625rem !important
}

.mt-41,
.my-41 {
	margin-top: 2.5625rem !important
}

.mr-41,
.mx-41 {
	margin-right: 2.5625rem !important
}

.mb-41,
.my-41 {
	margin-bottom: 2.5625rem !important
}

.ml-41,
.mx-41 {
	margin-left: 2.5625rem !important
}

.m-42 {
	margin: 2.625rem !important
}

.mt-42,
.my-42 {
	margin-top: 2.625rem !important
}

.mr-42,
.mx-42 {
	margin-right: 2.625rem !important
}

.mb-42,
.my-42 {
	margin-bottom: 2.625rem !important
}

.ml-42,
.mx-42 {
	margin-left: 2.625rem !important
}

.m-43 {
	margin: 2.6875rem !important
}

.mt-43,
.my-43 {
	margin-top: 2.6875rem !important
}

.mr-43,
.mx-43 {
	margin-right: 2.6875rem !important
}

.mb-43,
.my-43 {
	margin-bottom: 2.6875rem !important
}

.ml-43,
.mx-43 {
	margin-left: 2.6875rem !important
}

.m-44 {
	margin: 2.75rem !important
}

.mt-44,
.my-44 {
	margin-top: 2.75rem !important
}

.mr-44,
.mx-44 {
	margin-right: 2.75rem !important
}

.mb-44,
.my-44 {
	margin-bottom: 2.75rem !important
}

.ml-44,
.mx-44 {
	margin-left: 2.75rem !important
}

.m-45 {
	margin: 2.8125rem !important
}

.mt-45,
.my-45 {
	margin-top: 2.8125rem !important
}

.mr-45,
.mx-45 {
	margin-right: 2.8125rem !important
}

.mb-45,
.my-45 {
	margin-bottom: 2.8125rem !important
}

.ml-45,
.mx-45 {
	margin-left: 2.8125rem !important
}

.m-46 {
	margin: 2.875rem !important
}

.mt-46,
.my-46 {
	margin-top: 2.875rem !important
}

.mr-46,
.mx-46 {
	margin-right: 2.875rem !important
}

.mb-46,
.my-46 {
	margin-bottom: 2.875rem !important
}

.ml-46,
.mx-46 {
	margin-left: 2.875rem !important
}

.m-47 {
	margin: 2.9375rem !important
}

.mt-47,
.my-47 {
	margin-top: 2.9375rem !important
}

.mr-47,
.mx-47 {
	margin-right: 2.9375rem !important
}

.mb-47,
.my-47 {
	margin-bottom: 2.9375rem !important
}

.ml-47,
.mx-47 {
	margin-left: 2.9375rem !important
}

.m-48 {
	margin: 3rem !important
}

.mt-48,
.my-48 {
	margin-top: 3rem !important
}

.mr-48,
.mx-48 {
	margin-right: 3rem !important
}

.mb-48,
.my-48 {
	margin-bottom: 3rem !important
}

.ml-48,
.mx-48 {
	margin-left: 3rem !important
}

.m-49 {
	margin: 3.0625rem !important
}

.mt-49,
.my-49 {
	margin-top: 3.0625rem !important
}

.mr-49,
.mx-49 {
	margin-right: 3.0625rem !important
}

.mb-49,
.my-49 {
	margin-bottom: 3.0625rem !important
}

.ml-49,
.mx-49 {
	margin-left: 3.0625rem !important
}

.m-50 {
	margin: 3.125rem !important
}

.mt-50,
.my-50 {
	margin-top: 3.125rem !important
}

.mr-50,
.mx-50 {
	margin-right: 3.125rem !important
}

.mb-50,
.my-50 {
	margin-bottom: 3.125rem !important
}

.ml-50,
.mx-50 {
	margin-left: 3.125rem !important
}

.m-51 {
	margin: 3.1875rem !important
}

.mt-51,
.my-51 {
	margin-top: 3.1875rem !important
}

.mr-51,
.mx-51 {
	margin-right: 3.1875rem !important
}

.mb-51,
.my-51 {
	margin-bottom: 3.1875rem !important
}

.ml-51,
.mx-51 {
	margin-left: 3.1875rem !important
}

.m-52 {
	margin: 3.25rem !important
}

.mt-52,
.my-52 {
	margin-top: 3.25rem !important
}

.mr-52,
.mx-52 {
	margin-right: 3.25rem !important
}

.mb-52,
.my-52 {
	margin-bottom: 3.25rem !important
}

.ml-52,
.mx-52 {
	margin-left: 3.25rem !important
}

.m-53 {
	margin: 3.3125rem !important
}

.mt-53,
.my-53 {
	margin-top: 3.3125rem !important
}

.mr-53,
.mx-53 {
	margin-right: 3.3125rem !important
}

.mb-53,
.my-53 {
	margin-bottom: 3.3125rem !important
}

.ml-53,
.mx-53 {
	margin-left: 3.3125rem !important
}

.m-54 {
	margin: 3.375rem !important
}

.mt-54,
.my-54 {
	margin-top: 3.375rem !important
}

.mr-54,
.mx-54 {
	margin-right: 3.375rem !important
}

.mb-54,
.my-54 {
	margin-bottom: 3.375rem !important
}

.ml-54,
.mx-54 {
	margin-left: 3.375rem !important
}

.m-55 {
	margin: 3.4375rem !important
}

.mt-55,
.my-55 {
	margin-top: 3.4375rem !important
}

.mr-55,
.mx-55 {
	margin-right: 3.4375rem !important
}

.mb-55,
.my-55 {
	margin-bottom: 3.4375rem !important
}

.ml-55,
.mx-55 {
	margin-left: 3.4375rem !important
}

.m-56 {
	margin: 3.5rem !important
}

.mt-56,
.my-56 {
	margin-top: 3.5rem !important
}

.mr-56,
.mx-56 {
	margin-right: 3.5rem !important
}

.mb-56,
.my-56 {
	margin-bottom: 3.5rem !important
}

.ml-56,
.mx-56 {
	margin-left: 3.5rem !important
}

.m-57 {
	margin: 3.5625rem !important
}

.mt-57,
.my-57 {
	margin-top: 3.5625rem !important
}

.mr-57,
.mx-57 {
	margin-right: 3.5625rem !important
}

.mb-57,
.my-57 {
	margin-bottom: 3.5625rem !important
}

.ml-57,
.mx-57 {
	margin-left: 3.5625rem !important
}

.m-58 {
	margin: 3.625rem !important
}

.mt-58,
.my-58 {
	margin-top: 3.625rem !important
}

.mr-58,
.mx-58 {
	margin-right: 3.625rem !important
}

.mb-58,
.my-58 {
	margin-bottom: 3.625rem !important
}

.ml-58,
.mx-58 {
	margin-left: 3.625rem !important
}

.m-59 {
	margin: 3.6875rem !important
}

.mt-59,
.my-59 {
	margin-top: 3.6875rem !important
}

.mr-59,
.mx-59 {
	margin-right: 3.6875rem !important
}

.mb-59,
.my-59 {
	margin-bottom: 3.6875rem !important
}

.ml-59,
.mx-59 {
	margin-left: 3.6875rem !important
}

.m-60 {
	margin: 3.75rem !important
}

.mt-60,
.my-60 {
	margin-top: 3.75rem !important
}

.mr-60,
.mx-60 {
	margin-right: 3.75rem !important
}

.mb-60,
.my-60 {
	margin-bottom: 3.75rem !important
}

.ml-60,
.mx-60 {
	margin-left: 3.75rem !important
}

.m-61 {
	margin: 3.8125rem !important
}

.mt-61,
.my-61 {
	margin-top: 3.8125rem !important
}

.mr-61,
.mx-61 {
	margin-right: 3.8125rem !important
}

.mb-61,
.my-61 {
	margin-bottom: 3.8125rem !important
}

.ml-61,
.mx-61 {
	margin-left: 3.8125rem !important
}

.m-62 {
	margin: 3.875rem !important
}

.mt-62,
.my-62 {
	margin-top: 3.875rem !important
}

.mr-62,
.mx-62 {
	margin-right: 3.875rem !important
}

.mb-62,
.my-62 {
	margin-bottom: 3.875rem !important
}

.ml-62,
.mx-62 {
	margin-left: 3.875rem !important
}

.m-63 {
	margin: 3.9375rem !important
}

.mt-63,
.my-63 {
	margin-top: 3.9375rem !important
}

.mr-63,
.mx-63 {
	margin-right: 3.9375rem !important
}

.mb-63,
.my-63 {
	margin-bottom: 3.9375rem !important
}

.ml-63,
.mx-63 {
	margin-left: 3.9375rem !important
}

.m-64 {
	margin: 4rem !important
}

.mt-64,
.my-64 {
	margin-top: 4rem !important
}

.mr-64,
.mx-64 {
	margin-right: 4rem !important
}

.mb-64,
.my-64 {
	margin-bottom: 4rem !important
}

.ml-64,
.mx-64 {
	margin-left: 4rem !important
}

.m-65 {
	margin: 4.0625rem !important
}

.mt-65,
.my-65 {
	margin-top: 4.0625rem !important
}

.mr-65,
.mx-65 {
	margin-right: 4.0625rem !important
}

.mb-65,
.my-65 {
	margin-bottom: 4.0625rem !important
}

.ml-65,
.mx-65 {
	margin-left: 4.0625rem !important
}

.m-66 {
	margin: 4.125rem !important
}

.mt-66,
.my-66 {
	margin-top: 4.125rem !important
}

.mr-66,
.mx-66 {
	margin-right: 4.125rem !important
}

.mb-66,
.my-66 {
	margin-bottom: 4.125rem !important
}

.ml-66,
.mx-66 {
	margin-left: 4.125rem !important
}

.m-67 {
	margin: 4.1875rem !important
}

.mt-67,
.my-67 {
	margin-top: 4.1875rem !important
}

.mr-67,
.mx-67 {
	margin-right: 4.1875rem !important
}

.mb-67,
.my-67 {
	margin-bottom: 4.1875rem !important
}

.ml-67,
.mx-67 {
	margin-left: 4.1875rem !important
}

.m-68 {
	margin: 4.25rem !important
}

.mt-68,
.my-68 {
	margin-top: 4.25rem !important
}

.mr-68,
.mx-68 {
	margin-right: 4.25rem !important
}

.mb-68,
.my-68 {
	margin-bottom: 4.25rem !important
}

.ml-68,
.mx-68 {
	margin-left: 4.25rem !important
}

.m-69 {
	margin: 4.3125rem !important
}

.mt-69,
.my-69 {
	margin-top: 4.3125rem !important
}

.mr-69,
.mx-69 {
	margin-right: 4.3125rem !important
}

.mb-69,
.my-69 {
	margin-bottom: 4.3125rem !important
}

.ml-69,
.mx-69 {
	margin-left: 4.3125rem !important
}

.m-70 {
	margin: 4.375rem !important
}

.mt-70,
.my-70 {
	margin-top: 4.375rem !important
}

.mr-70,
.mx-70 {
	margin-right: 4.375rem !important
}

.mb-70,
.my-70 {
	margin-bottom: 4.375rem !important
}

.ml-70,
.mx-70 {
	margin-left: 4.375rem !important
}

.m-71 {
	margin: 4.4375rem !important
}

.mt-71,
.my-71 {
	margin-top: 4.4375rem !important
}

.mr-71,
.mx-71 {
	margin-right: 4.4375rem !important
}

.mb-71,
.my-71 {
	margin-bottom: 4.4375rem !important
}

.ml-71,
.mx-71 {
	margin-left: 4.4375rem !important
}

.m-72 {
	margin: 4.5rem !important
}

.mt-72,
.my-72 {
	margin-top: 4.5rem !important
}

.mr-72,
.mx-72 {
	margin-right: 4.5rem !important
}

.mb-72,
.my-72 {
	margin-bottom: 4.5rem !important
}

.ml-72,
.mx-72 {
	margin-left: 4.5rem !important
}

.m-73 {
	margin: 4.5625rem !important
}

.mt-73,
.my-73 {
	margin-top: 4.5625rem !important
}

.mr-73,
.mx-73 {
	margin-right: 4.5625rem !important
}

.mb-73,
.my-73 {
	margin-bottom: 4.5625rem !important
}

.ml-73,
.mx-73 {
	margin-left: 4.5625rem !important
}

.m-74 {
	margin: 4.625rem !important
}

.mt-74,
.my-74 {
	margin-top: 4.625rem !important
}

.mr-74,
.mx-74 {
	margin-right: 4.625rem !important
}

.mb-74,
.my-74 {
	margin-bottom: 4.625rem !important
}

.ml-74,
.mx-74 {
	margin-left: 4.625rem !important
}

.m-75 {
	margin: 4.6875rem !important
}

.mt-75,
.my-75 {
	margin-top: 4.6875rem !important
}

.mr-75,
.mx-75 {
	margin-right: 4.6875rem !important
}

.mb-75,
.my-75 {
	margin-bottom: 4.6875rem !important
}

.ml-75,
.mx-75 {
	margin-left: 4.6875rem !important
}

.m-76 {
	margin: 4.75rem !important
}

.mt-76,
.my-76 {
	margin-top: 4.75rem !important
}

.mr-76,
.mx-76 {
	margin-right: 4.75rem !important
}

.mb-76,
.my-76 {
	margin-bottom: 4.75rem !important
}

.ml-76,
.mx-76 {
	margin-left: 4.75rem !important
}

.m-77 {
	margin: 4.8125rem !important
}

.mt-77,
.my-77 {
	margin-top: 4.8125rem !important
}

.mr-77,
.mx-77 {
	margin-right: 4.8125rem !important
}

.mb-77,
.my-77 {
	margin-bottom: 4.8125rem !important
}

.ml-77,
.mx-77 {
	margin-left: 4.8125rem !important
}

.m-78 {
	margin: 4.875rem !important
}

.mt-78,
.my-78 {
	margin-top: 4.875rem !important
}

.mr-78,
.mx-78 {
	margin-right: 4.875rem !important
}

.mb-78,
.my-78 {
	margin-bottom: 4.875rem !important
}

.ml-78,
.mx-78 {
	margin-left: 4.875rem !important
}

.m-79 {
	margin: 4.9375rem !important
}

.mt-79,
.my-79 {
	margin-top: 4.9375rem !important
}

.mr-79,
.mx-79 {
	margin-right: 4.9375rem !important
}

.mb-79,
.my-79 {
	margin-bottom: 4.9375rem !important
}

.ml-79,
.mx-79 {
	margin-left: 4.9375rem !important
}

.m-80 {
	margin: 5rem !important
}

.mt-80,
.my-80 {
	margin-top: 5rem !important
}

.mr-80,
.mx-80 {
	margin-right: 5rem !important
}

.mb-80,
.my-80 {
	margin-bottom: 5rem !important
}

.ml-80,
.mx-80 {
	margin-left: 5rem !important
}

.m-81 {
	margin: 5.0625rem !important
}

.mt-81,
.my-81 {
	margin-top: 5.0625rem !important
}

.mr-81,
.mx-81 {
	margin-right: 5.0625rem !important
}

.mb-81,
.my-81 {
	margin-bottom: 5.0625rem !important
}

.ml-81,
.mx-81 {
	margin-left: 5.0625rem !important
}

.m-82 {
	margin: 5.125rem !important
}

.mt-82,
.my-82 {
	margin-top: 5.125rem !important
}

.mr-82,
.mx-82 {
	margin-right: 5.125rem !important
}

.mb-82,
.my-82 {
	margin-bottom: 5.125rem !important
}

.ml-82,
.mx-82 {
	margin-left: 5.125rem !important
}

.m-83 {
	margin: 5.1875rem !important
}

.mt-83,
.my-83 {
	margin-top: 5.1875rem !important
}

.mr-83,
.mx-83 {
	margin-right: 5.1875rem !important
}

.mb-83,
.my-83 {
	margin-bottom: 5.1875rem !important
}

.ml-83,
.mx-83 {
	margin-left: 5.1875rem !important
}

.m-84 {
	margin: 5.25rem !important
}

.mt-84,
.my-84 {
	margin-top: 5.25rem !important
}

.mr-84,
.mx-84 {
	margin-right: 5.25rem !important
}

.mb-84,
.my-84 {
	margin-bottom: 5.25rem !important
}

.ml-84,
.mx-84 {
	margin-left: 5.25rem !important
}

.m-85 {
	margin: 5.3125rem !important
}

.mt-85,
.my-85 {
	margin-top: 5.3125rem !important
}

.mr-85,
.mx-85 {
	margin-right: 5.3125rem !important
}

.mb-85,
.my-85 {
	margin-bottom: 5.3125rem !important
}

.ml-85,
.mx-85 {
	margin-left: 5.3125rem !important
}

.m-86 {
	margin: 5.375rem !important
}

.mt-86,
.my-86 {
	margin-top: 5.375rem !important
}

.mr-86,
.mx-86 {
	margin-right: 5.375rem !important
}

.mb-86,
.my-86 {
	margin-bottom: 5.375rem !important
}

.ml-86,
.mx-86 {
	margin-left: 5.375rem !important
}

.m-87 {
	margin: 5.4375rem !important
}

.mt-87,
.my-87 {
	margin-top: 5.4375rem !important
}

.mr-87,
.mx-87 {
	margin-right: 5.4375rem !important
}

.mb-87,
.my-87 {
	margin-bottom: 5.4375rem !important
}

.ml-87,
.mx-87 {
	margin-left: 5.4375rem !important
}

.m-88 {
	margin: 5.5rem !important
}

.mt-88,
.my-88 {
	margin-top: 5.5rem !important
}

.mr-88,
.mx-88 {
	margin-right: 5.5rem !important
}

.mb-88,
.my-88 {
	margin-bottom: 5.5rem !important
}

.ml-88,
.mx-88 {
	margin-left: 5.5rem !important
}

.m-89 {
	margin: 5.5625rem !important
}

.mt-89,
.my-89 {
	margin-top: 5.5625rem !important
}

.mr-89,
.mx-89 {
	margin-right: 5.5625rem !important
}

.mb-89,
.my-89 {
	margin-bottom: 5.5625rem !important
}

.ml-89,
.mx-89 {
	margin-left: 5.5625rem !important
}

.m-90 {
	margin: 5.625rem !important
}

.mt-90,
.my-90 {
	margin-top: 5.625rem !important
}

.mr-90,
.mx-90 {
	margin-right: 5.625rem !important
}

.mb-90,
.my-90 {
	margin-bottom: 5.625rem !important
}

.ml-90,
.mx-90 {
	margin-left: 5.625rem !important
}

.m-91 {
	margin: 5.6875rem !important
}

.mt-91,
.my-91 {
	margin-top: 5.6875rem !important
}

.mr-91,
.mx-91 {
	margin-right: 5.6875rem !important
}

.mb-91,
.my-91 {
	margin-bottom: 5.6875rem !important
}

.ml-91,
.mx-91 {
	margin-left: 5.6875rem !important
}

.m-92 {
	margin: 5.75rem !important
}

.mt-92,
.my-92 {
	margin-top: 5.75rem !important
}

.mr-92,
.mx-92 {
	margin-right: 5.75rem !important
}

.mb-92,
.my-92 {
	margin-bottom: 5.75rem !important
}

.ml-92,
.mx-92 {
	margin-left: 5.75rem !important
}

.m-93 {
	margin: 5.8125rem !important
}

.mt-93,
.my-93 {
	margin-top: 5.8125rem !important
}

.mr-93,
.mx-93 {
	margin-right: 5.8125rem !important
}

.mb-93,
.my-93 {
	margin-bottom: 5.8125rem !important
}

.ml-93,
.mx-93 {
	margin-left: 5.8125rem !important
}

.m-94 {
	margin: 5.875rem !important
}

.mt-94,
.my-94 {
	margin-top: 5.875rem !important
}

.mr-94,
.mx-94 {
	margin-right: 5.875rem !important
}

.mb-94,
.my-94 {
	margin-bottom: 5.875rem !important
}

.ml-94,
.mx-94 {
	margin-left: 5.875rem !important
}

.m-95 {
	margin: 5.9375rem !important
}

.mt-95,
.my-95 {
	margin-top: 5.9375rem !important
}

.mr-95,
.mx-95 {
	margin-right: 5.9375rem !important
}

.mb-95,
.my-95 {
	margin-bottom: 5.9375rem !important
}

.ml-95,
.mx-95 {
	margin-left: 5.9375rem !important
}

.m-96 {
	margin: 6rem !important
}

.mt-96,
.my-96 {
	margin-top: 6rem !important
}

.mr-96,
.mx-96 {
	margin-right: 6rem !important
}

.mb-96,
.my-96 {
	margin-bottom: 6rem !important
}

.ml-96,
.mx-96 {
	margin-left: 6rem !important
}

.m-97 {
	margin: 6.0625rem !important
}

.mt-97,
.my-97 {
	margin-top: 6.0625rem !important
}

.mr-97,
.mx-97 {
	margin-right: 6.0625rem !important
}

.mb-97,
.my-97 {
	margin-bottom: 6.0625rem !important
}

.ml-97,
.mx-97 {
	margin-left: 6.0625rem !important
}

.m-98 {
	margin: 6.125rem !important
}

.mt-98,
.my-98 {
	margin-top: 6.125rem !important
}

.mr-98,
.mx-98 {
	margin-right: 6.125rem !important
}

.mb-98,
.my-98 {
	margin-bottom: 6.125rem !important
}

.ml-98,
.mx-98 {
	margin-left: 6.125rem !important
}

.m-99 {
	margin: 6.1875rem !important
}

.mt-99,
.my-99 {
	margin-top: 6.1875rem !important
}

.mr-99,
.mx-99 {
	margin-right: 6.1875rem !important
}

.mb-99,
.my-99 {
	margin-bottom: 6.1875rem !important
}

.ml-99,
.mx-99 {
	margin-left: 6.1875rem !important
}

.m-100 {
	margin: 6.25rem !important
}

.mt-100,
.my-100 {
	margin-top: 6.25rem !important
}

.mr-100,
.mx-100 {
	margin-right: 6.25rem !important
}

.mb-100,
.my-100 {
	margin-bottom: 6.25rem !important
}

.ml-100,
.mx-100 {
	margin-left: 6.25rem !important
}

.m-101 {
	margin: 6.3125rem !important
}

.mt-101,
.my-101 {
	margin-top: 6.3125rem !important
}

.mr-101,
.mx-101 {
	margin-right: 6.3125rem !important
}

.mb-101,
.my-101 {
	margin-bottom: 6.3125rem !important
}

.ml-101,
.mx-101 {
	margin-left: 6.3125rem !important
}

.m-102 {
	margin: 6.375rem !important
}

.mt-102,
.my-102 {
	margin-top: 6.375rem !important
}

.mr-102,
.mx-102 {
	margin-right: 6.375rem !important
}

.mb-102,
.my-102 {
	margin-bottom: 6.375rem !important
}

.ml-102,
.mx-102 {
	margin-left: 6.375rem !important
}

.m-103 {
	margin: 6.4375rem !important
}

.mt-103,
.my-103 {
	margin-top: 6.4375rem !important
}

.mr-103,
.mx-103 {
	margin-right: 6.4375rem !important
}

.mb-103,
.my-103 {
	margin-bottom: 6.4375rem !important
}

.ml-103,
.mx-103 {
	margin-left: 6.4375rem !important
}

.m-104 {
	margin: 6.5rem !important
}

.mt-104,
.my-104 {
	margin-top: 6.5rem !important
}

.mr-104,
.mx-104 {
	margin-right: 6.5rem !important
}

.mb-104,
.my-104 {
	margin-bottom: 6.5rem !important
}

.ml-104,
.mx-104 {
	margin-left: 6.5rem !important
}

.m-105 {
	margin: 6.5625rem !important
}

.mt-105,
.my-105 {
	margin-top: 6.5625rem !important
}

.mr-105,
.mx-105 {
	margin-right: 6.5625rem !important
}

.mb-105,
.my-105 {
	margin-bottom: 6.5625rem !important
}

.ml-105,
.mx-105 {
	margin-left: 6.5625rem !important
}

.m-106 {
	margin: 6.625rem !important
}

.mt-106,
.my-106 {
	margin-top: 6.625rem !important
}

.mr-106,
.mx-106 {
	margin-right: 6.625rem !important
}

.mb-106,
.my-106 {
	margin-bottom: 6.625rem !important
}

.ml-106,
.mx-106 {
	margin-left: 6.625rem !important
}

.m-107 {
	margin: 6.6875rem !important
}

.mt-107,
.my-107 {
	margin-top: 6.6875rem !important
}

.mr-107,
.mx-107 {
	margin-right: 6.6875rem !important
}

.mb-107,
.my-107 {
	margin-bottom: 6.6875rem !important
}

.ml-107,
.mx-107 {
	margin-left: 6.6875rem !important
}

.m-108 {
	margin: 6.75rem !important
}

.mt-108,
.my-108 {
	margin-top: 6.75rem !important
}

.mr-108,
.mx-108 {
	margin-right: 6.75rem !important
}

.mb-108,
.my-108 {
	margin-bottom: 6.75rem !important
}

.ml-108,
.mx-108 {
	margin-left: 6.75rem !important
}

.m-109 {
	margin: 6.8125rem !important
}

.mt-109,
.my-109 {
	margin-top: 6.8125rem !important
}

.mr-109,
.mx-109 {
	margin-right: 6.8125rem !important
}

.mb-109,
.my-109 {
	margin-bottom: 6.8125rem !important
}

.ml-109,
.mx-109 {
	margin-left: 6.8125rem !important
}

.m-110 {
	margin: 6.875rem !important
}

.mt-110,
.my-110 {
	margin-top: 6.875rem !important
}

.mr-110,
.mx-110 {
	margin-right: 6.875rem !important
}

.mb-110,
.my-110 {
	margin-bottom: 6.875rem !important
}

.ml-110,
.mx-110 {
	margin-left: 6.875rem !important
}

.m-111 {
	margin: 6.9375rem !important
}

.mt-111,
.my-111 {
	margin-top: 6.9375rem !important
}

.mr-111,
.mx-111 {
	margin-right: 6.9375rem !important
}

.mb-111,
.my-111 {
	margin-bottom: 6.9375rem !important
}

.ml-111,
.mx-111 {
	margin-left: 6.9375rem !important
}

.m-112 {
	margin: 7rem !important
}

.mt-112,
.my-112 {
	margin-top: 7rem !important
}

.mr-112,
.mx-112 {
	margin-right: 7rem !important
}

.mb-112,
.my-112 {
	margin-bottom: 7rem !important
}

.ml-112,
.mx-112 {
	margin-left: 7rem !important
}

.m-113 {
	margin: 7.0625rem !important
}

.mt-113,
.my-113 {
	margin-top: 7.0625rem !important
}

.mr-113,
.mx-113 {
	margin-right: 7.0625rem !important
}

.mb-113,
.my-113 {
	margin-bottom: 7.0625rem !important
}

.ml-113,
.mx-113 {
	margin-left: 7.0625rem !important
}

.m-114 {
	margin: 7.125rem !important
}

.mt-114,
.my-114 {
	margin-top: 7.125rem !important
}

.mr-114,
.mx-114 {
	margin-right: 7.125rem !important
}

.mb-114,
.my-114 {
	margin-bottom: 7.125rem !important
}

.ml-114,
.mx-114 {
	margin-left: 7.125rem !important
}

.m-115 {
	margin: 7.1875rem !important
}

.mt-115,
.my-115 {
	margin-top: 7.1875rem !important
}

.mr-115,
.mx-115 {
	margin-right: 7.1875rem !important
}

.mb-115,
.my-115 {
	margin-bottom: 7.1875rem !important
}

.ml-115,
.mx-115 {
	margin-left: 7.1875rem !important
}

.m-116 {
	margin: 7.25rem !important
}

.mt-116,
.my-116 {
	margin-top: 7.25rem !important
}

.mr-116,
.mx-116 {
	margin-right: 7.25rem !important
}

.mb-116,
.my-116 {
	margin-bottom: 7.25rem !important
}

.ml-116,
.mx-116 {
	margin-left: 7.25rem !important
}

.m-117 {
	margin: 7.3125rem !important
}

.mt-117,
.my-117 {
	margin-top: 7.3125rem !important
}

.mr-117,
.mx-117 {
	margin-right: 7.3125rem !important
}

.mb-117,
.my-117 {
	margin-bottom: 7.3125rem !important
}

.ml-117,
.mx-117 {
	margin-left: 7.3125rem !important
}

.m-118 {
	margin: 7.375rem !important
}

.mt-118,
.my-118 {
	margin-top: 7.375rem !important
}

.mr-118,
.mx-118 {
	margin-right: 7.375rem !important
}

.mb-118,
.my-118 {
	margin-bottom: 7.375rem !important
}

.ml-118,
.mx-118 {
	margin-left: 7.375rem !important
}

.m-119 {
	margin: 7.4375rem !important
}

.mt-119,
.my-119 {
	margin-top: 7.4375rem !important
}

.mr-119,
.mx-119 {
	margin-right: 7.4375rem !important
}

.mb-119,
.my-119 {
	margin-bottom: 7.4375rem !important
}

.ml-119,
.mx-119 {
	margin-left: 7.4375rem !important
}

.m-120 {
	margin: 7.5rem !important
}

.mt-120,
.my-120 {
	margin-top: 7.5rem !important
}

.mr-120,
.mx-120 {
	margin-right: 7.5rem !important
}

.mb-120,
.my-120 {
	margin-bottom: 7.5rem !important
}

.ml-120,
.mx-120 {
	margin-left: 7.5rem !important
}

.m-121 {
	margin: 7.5625rem !important
}

.mt-121,
.my-121 {
	margin-top: 7.5625rem !important
}

.mr-121,
.mx-121 {
	margin-right: 7.5625rem !important
}

.mb-121,
.my-121 {
	margin-bottom: 7.5625rem !important
}

.ml-121,
.mx-121 {
	margin-left: 7.5625rem !important
}

.m-122 {
	margin: 7.625rem !important
}

.mt-122,
.my-122 {
	margin-top: 7.625rem !important
}

.mr-122,
.mx-122 {
	margin-right: 7.625rem !important
}

.mb-122,
.my-122 {
	margin-bottom: 7.625rem !important
}

.ml-122,
.mx-122 {
	margin-left: 7.625rem !important
}

.m-123 {
	margin: 7.6875rem !important
}

.mt-123,
.my-123 {
	margin-top: 7.6875rem !important
}

.mr-123,
.mx-123 {
	margin-right: 7.6875rem !important
}

.mb-123,
.my-123 {
	margin-bottom: 7.6875rem !important
}

.ml-123,
.mx-123 {
	margin-left: 7.6875rem !important
}

.m-124 {
	margin: 7.75rem !important
}

.mt-124,
.my-124 {
	margin-top: 7.75rem !important
}

.mr-124,
.mx-124 {
	margin-right: 7.75rem !important
}

.mb-124,
.my-124 {
	margin-bottom: 7.75rem !important
}

.ml-124,
.mx-124 {
	margin-left: 7.75rem !important
}

.m-125 {
	margin: 7.8125rem !important
}

.mt-125,
.my-125 {
	margin-top: 7.8125rem !important
}

.mr-125,
.mx-125 {
	margin-right: 7.8125rem !important
}

.mb-125,
.my-125 {
	margin-bottom: 7.8125rem !important
}

.ml-125,
.mx-125 {
	margin-left: 7.8125rem !important
}

.m-126 {
	margin: 7.875rem !important
}

.mt-126,
.my-126 {
	margin-top: 7.875rem !important
}

.mr-126,
.mx-126 {
	margin-right: 7.875rem !important
}

.mb-126,
.my-126 {
	margin-bottom: 7.875rem !important
}

.ml-126,
.mx-126 {
	margin-left: 7.875rem !important
}

.m-127 {
	margin: 7.9375rem !important
}

.mt-127,
.my-127 {
	margin-top: 7.9375rem !important
}

.mr-127,
.mx-127 {
	margin-right: 7.9375rem !important
}

.mb-127,
.my-127 {
	margin-bottom: 7.9375rem !important
}

.ml-127,
.mx-127 {
	margin-left: 7.9375rem !important
}

.m-128 {
	margin: 8rem !important
}

.mt-128,
.my-128 {
	margin-top: 8rem !important
}

.mr-128,
.mx-128 {
	margin-right: 8rem !important
}

.mb-128,
.my-128 {
	margin-bottom: 8rem !important
}

.ml-128,
.mx-128 {
	margin-left: 8rem !important
}

.m-129 {
	margin: 8.0625rem !important
}

.mt-129,
.my-129 {
	margin-top: 8.0625rem !important
}

.mr-129,
.mx-129 {
	margin-right: 8.0625rem !important
}

.mb-129,
.my-129 {
	margin-bottom: 8.0625rem !important
}

.ml-129,
.mx-129 {
	margin-left: 8.0625rem !important
}

.m-130 {
	margin: 8.125rem !important
}

.mt-130,
.my-130 {
	margin-top: 8.125rem !important
}

.mr-130,
.mx-130 {
	margin-right: 8.125rem !important
}

.mb-130,
.my-130 {
	margin-bottom: 8.125rem !important
}

.ml-130,
.mx-130 {
	margin-left: 8.125rem !important
}

.m-131 {
	margin: 8.1875rem !important
}

.mt-131,
.my-131 {
	margin-top: 8.1875rem !important
}

.mr-131,
.mx-131 {
	margin-right: 8.1875rem !important
}

.mb-131,
.my-131 {
	margin-bottom: 8.1875rem !important
}

.ml-131,
.mx-131 {
	margin-left: 8.1875rem !important
}

.m-132 {
	margin: 8.25rem !important
}

.mt-132,
.my-132 {
	margin-top: 8.25rem !important
}

.mr-132,
.mx-132 {
	margin-right: 8.25rem !important
}

.mb-132,
.my-132 {
	margin-bottom: 8.25rem !important
}

.ml-132,
.mx-132 {
	margin-left: 8.25rem !important
}

.m-133 {
	margin: 8.3125rem !important
}

.mt-133,
.my-133 {
	margin-top: 8.3125rem !important
}

.mr-133,
.mx-133 {
	margin-right: 8.3125rem !important
}

.mb-133,
.my-133 {
	margin-bottom: 8.3125rem !important
}

.ml-133,
.mx-133 {
	margin-left: 8.3125rem !important
}

.m-134 {
	margin: 8.375rem !important
}

.mt-134,
.my-134 {
	margin-top: 8.375rem !important
}

.mr-134,
.mx-134 {
	margin-right: 8.375rem !important
}

.mb-134,
.my-134 {
	margin-bottom: 8.375rem !important
}

.ml-134,
.mx-134 {
	margin-left: 8.375rem !important
}

.m-135 {
	margin: 8.4375rem !important
}

.mt-135,
.my-135 {
	margin-top: 8.4375rem !important
}

.mr-135,
.mx-135 {
	margin-right: 8.4375rem !important
}

.mb-135,
.my-135 {
	margin-bottom: 8.4375rem !important
}

.ml-135,
.mx-135 {
	margin-left: 8.4375rem !important
}

.m-136 {
	margin: 8.5rem !important
}

.mt-136,
.my-136 {
	margin-top: 8.5rem !important
}

.mr-136,
.mx-136 {
	margin-right: 8.5rem !important
}

.mb-136,
.my-136 {
	margin-bottom: 8.5rem !important
}

.ml-136,
.mx-136 {
	margin-left: 8.5rem !important
}

.m-137 {
	margin: 8.5625rem !important
}

.mt-137,
.my-137 {
	margin-top: 8.5625rem !important
}

.mr-137,
.mx-137 {
	margin-right: 8.5625rem !important
}

.mb-137,
.my-137 {
	margin-bottom: 8.5625rem !important
}

.ml-137,
.mx-137 {
	margin-left: 8.5625rem !important
}

.m-138 {
	margin: 8.625rem !important
}

.mt-138,
.my-138 {
	margin-top: 8.625rem !important
}

.mr-138,
.mx-138 {
	margin-right: 8.625rem !important
}

.mb-138,
.my-138 {
	margin-bottom: 8.625rem !important
}

.ml-138,
.mx-138 {
	margin-left: 8.625rem !important
}

.m-139 {
	margin: 8.6875rem !important
}

.mt-139,
.my-139 {
	margin-top: 8.6875rem !important
}

.mr-139,
.mx-139 {
	margin-right: 8.6875rem !important
}

.mb-139,
.my-139 {
	margin-bottom: 8.6875rem !important
}

.ml-139,
.mx-139 {
	margin-left: 8.6875rem !important
}

.m-140 {
	margin: 8.75rem !important
}

.mt-140,
.my-140 {
	margin-top: 8.75rem !important
}

.mr-140,
.mx-140 {
	margin-right: 8.75rem !important
}

.mb-140,
.my-140 {
	margin-bottom: 8.75rem !important
}

.ml-140,
.mx-140 {
	margin-left: 8.75rem !important
}

.m-141 {
	margin: 8.8125rem !important
}

.mt-141,
.my-141 {
	margin-top: 8.8125rem !important
}

.mr-141,
.mx-141 {
	margin-right: 8.8125rem !important
}

.mb-141,
.my-141 {
	margin-bottom: 8.8125rem !important
}

.ml-141,
.mx-141 {
	margin-left: 8.8125rem !important
}

.m-142 {
	margin: 8.875rem !important
}

.mt-142,
.my-142 {
	margin-top: 8.875rem !important
}

.mr-142,
.mx-142 {
	margin-right: 8.875rem !important
}

.mb-142,
.my-142 {
	margin-bottom: 8.875rem !important
}

.ml-142,
.mx-142 {
	margin-left: 8.875rem !important
}

.m-143 {
	margin: 8.9375rem !important
}

.mt-143,
.my-143 {
	margin-top: 8.9375rem !important
}

.mr-143,
.mx-143 {
	margin-right: 8.9375rem !important
}

.mb-143,
.my-143 {
	margin-bottom: 8.9375rem !important
}

.ml-143,
.mx-143 {
	margin-left: 8.9375rem !important
}

.m-144 {
	margin: 9rem !important
}

.mt-144,
.my-144 {
	margin-top: 9rem !important
}

.mr-144,
.mx-144 {
	margin-right: 9rem !important
}

.mb-144,
.my-144 {
	margin-bottom: 9rem !important
}

.ml-144,
.mx-144 {
	margin-left: 9rem !important
}

.m-145 {
	margin: 9.0625rem !important
}

.mt-145,
.my-145 {
	margin-top: 9.0625rem !important
}

.mr-145,
.mx-145 {
	margin-right: 9.0625rem !important
}

.mb-145,
.my-145 {
	margin-bottom: 9.0625rem !important
}

.ml-145,
.mx-145 {
	margin-left: 9.0625rem !important
}

.m-146 {
	margin: 9.125rem !important
}

.mt-146,
.my-146 {
	margin-top: 9.125rem !important
}

.mr-146,
.mx-146 {
	margin-right: 9.125rem !important
}

.mb-146,
.my-146 {
	margin-bottom: 9.125rem !important
}

.ml-146,
.mx-146 {
	margin-left: 9.125rem !important
}

.m-147 {
	margin: 9.1875rem !important
}

.mt-147,
.my-147 {
	margin-top: 9.1875rem !important
}

.mr-147,
.mx-147 {
	margin-right: 9.1875rem !important
}

.mb-147,
.my-147 {
	margin-bottom: 9.1875rem !important
}

.ml-147,
.mx-147 {
	margin-left: 9.1875rem !important
}

.m-148 {
	margin: 9.25rem !important
}

.mt-148,
.my-148 {
	margin-top: 9.25rem !important
}

.mr-148,
.mx-148 {
	margin-right: 9.25rem !important
}

.mb-148,
.my-148 {
	margin-bottom: 9.25rem !important
}

.ml-148,
.mx-148 {
	margin-left: 9.25rem !important
}

.m-149 {
	margin: 9.3125rem !important
}

.mt-149,
.my-149 {
	margin-top: 9.3125rem !important
}

.mr-149,
.mx-149 {
	margin-right: 9.3125rem !important
}

.mb-149,
.my-149 {
	margin-bottom: 9.3125rem !important
}

.ml-149,
.mx-149 {
	margin-left: 9.3125rem !important
}

.m-150 {
	margin: 9.375rem !important
}

.mt-150,
.my-150 {
	margin-top: 9.375rem !important
}

.mr-150,
.mx-150 {
	margin-right: 9.375rem !important
}

.mb-150,
.my-150 {
	margin-bottom: 9.375rem !important
}

.ml-150,
.mx-150 {
	margin-left: 9.375rem !important
}

.m-151 {
	margin: 9.4375rem !important
}

.mt-151,
.my-151 {
	margin-top: 9.4375rem !important
}

.mr-151,
.mx-151 {
	margin-right: 9.4375rem !important
}

.mb-151,
.my-151 {
	margin-bottom: 9.4375rem !important
}

.ml-151,
.mx-151 {
	margin-left: 9.4375rem !important
}

.m-152 {
	margin: 9.5rem !important
}

.mt-152,
.my-152 {
	margin-top: 9.5rem !important
}

.mr-152,
.mx-152 {
	margin-right: 9.5rem !important
}

.mb-152,
.my-152 {
	margin-bottom: 9.5rem !important
}

.ml-152,
.mx-152 {
	margin-left: 9.5rem !important
}

.m-153 {
	margin: 9.5625rem !important
}

.mt-153,
.my-153 {
	margin-top: 9.5625rem !important
}

.mr-153,
.mx-153 {
	margin-right: 9.5625rem !important
}

.mb-153,
.my-153 {
	margin-bottom: 9.5625rem !important
}

.ml-153,
.mx-153 {
	margin-left: 9.5625rem !important
}

.m-154 {
	margin: 9.625rem !important
}

.mt-154,
.my-154 {
	margin-top: 9.625rem !important
}

.mr-154,
.mx-154 {
	margin-right: 9.625rem !important
}

.mb-154,
.my-154 {
	margin-bottom: 9.625rem !important
}

.ml-154,
.mx-154 {
	margin-left: 9.625rem !important
}

.m-155 {
	margin: 9.6875rem !important
}

.mt-155,
.my-155 {
	margin-top: 9.6875rem !important
}

.mr-155,
.mx-155 {
	margin-right: 9.6875rem !important
}

.mb-155,
.my-155 {
	margin-bottom: 9.6875rem !important
}

.ml-155,
.mx-155 {
	margin-left: 9.6875rem !important
}

.m-156 {
	margin: 9.75rem !important
}

.mt-156,
.my-156 {
	margin-top: 9.75rem !important
}

.mr-156,
.mx-156 {
	margin-right: 9.75rem !important
}

.mb-156,
.my-156 {
	margin-bottom: 9.75rem !important
}

.ml-156,
.mx-156 {
	margin-left: 9.75rem !important
}

.m-157 {
	margin: 9.8125rem !important
}

.mt-157,
.my-157 {
	margin-top: 9.8125rem !important
}

.mr-157,
.mx-157 {
	margin-right: 9.8125rem !important
}

.mb-157,
.my-157 {
	margin-bottom: 9.8125rem !important
}

.ml-157,
.mx-157 {
	margin-left: 9.8125rem !important
}

.m-158 {
	margin: 9.875rem !important
}

.mt-158,
.my-158 {
	margin-top: 9.875rem !important
}

.mr-158,
.mx-158 {
	margin-right: 9.875rem !important
}

.mb-158,
.my-158 {
	margin-bottom: 9.875rem !important
}

.ml-158,
.mx-158 {
	margin-left: 9.875rem !important
}

.m-159 {
	margin: 9.9375rem !important
}

.mt-159,
.my-159 {
	margin-top: 9.9375rem !important
}

.mr-159,
.mx-159 {
	margin-right: 9.9375rem !important
}

.mb-159,
.my-159 {
	margin-bottom: 9.9375rem !important
}

.ml-159,
.mx-159 {
	margin-left: 9.9375rem !important
}

.m-160 {
	margin: 10rem !important
}

.mt-160,
.my-160 {
	margin-top: 10rem !important
}

.mr-160,
.mx-160 {
	margin-right: 10rem !important
}

.mb-160,
.my-160 {
	margin-bottom: 10rem !important
}

.ml-160,
.mx-160 {
	margin-left: 10rem !important
}

.m-161 {
	margin: 10.0625rem !important
}

.mt-161,
.my-161 {
	margin-top: 10.0625rem !important
}

.mr-161,
.mx-161 {
	margin-right: 10.0625rem !important
}

.mb-161,
.my-161 {
	margin-bottom: 10.0625rem !important
}

.ml-161,
.mx-161 {
	margin-left: 10.0625rem !important
}

.m-162 {
	margin: 10.125rem !important
}

.mt-162,
.my-162 {
	margin-top: 10.125rem !important
}

.mr-162,
.mx-162 {
	margin-right: 10.125rem !important
}

.mb-162,
.my-162 {
	margin-bottom: 10.125rem !important
}

.ml-162,
.mx-162 {
	margin-left: 10.125rem !important
}

.m-163 {
	margin: 10.1875rem !important
}

.mt-163,
.my-163 {
	margin-top: 10.1875rem !important
}

.mr-163,
.mx-163 {
	margin-right: 10.1875rem !important
}

.mb-163,
.my-163 {
	margin-bottom: 10.1875rem !important
}

.ml-163,
.mx-163 {
	margin-left: 10.1875rem !important
}

.m-164 {
	margin: 10.25rem !important
}

.mt-164,
.my-164 {
	margin-top: 10.25rem !important
}

.mr-164,
.mx-164 {
	margin-right: 10.25rem !important
}

.mb-164,
.my-164 {
	margin-bottom: 10.25rem !important
}

.ml-164,
.mx-164 {
	margin-left: 10.25rem !important
}

.m-165 {
	margin: 10.3125rem !important
}

.mt-165,
.my-165 {
	margin-top: 10.3125rem !important
}

.mr-165,
.mx-165 {
	margin-right: 10.3125rem !important
}

.mb-165,
.my-165 {
	margin-bottom: 10.3125rem !important
}

.ml-165,
.mx-165 {
	margin-left: 10.3125rem !important
}

.m-166 {
	margin: 10.375rem !important
}

.mt-166,
.my-166 {
	margin-top: 10.375rem !important
}

.mr-166,
.mx-166 {
	margin-right: 10.375rem !important
}

.mb-166,
.my-166 {
	margin-bottom: 10.375rem !important
}

.ml-166,
.mx-166 {
	margin-left: 10.375rem !important
}

.m-167 {
	margin: 10.4375rem !important
}

.mt-167,
.my-167 {
	margin-top: 10.4375rem !important
}

.mr-167,
.mx-167 {
	margin-right: 10.4375rem !important
}

.mb-167,
.my-167 {
	margin-bottom: 10.4375rem !important
}

.ml-167,
.mx-167 {
	margin-left: 10.4375rem !important
}

.m-168 {
	margin: 10.5rem !important
}

.mt-168,
.my-168 {
	margin-top: 10.5rem !important
}

.mr-168,
.mx-168 {
	margin-right: 10.5rem !important
}

.mb-168,
.my-168 {
	margin-bottom: 10.5rem !important
}

.ml-168,
.mx-168 {
	margin-left: 10.5rem !important
}

.m-169 {
	margin: 10.5625rem !important
}

.mt-169,
.my-169 {
	margin-top: 10.5625rem !important
}

.mr-169,
.mx-169 {
	margin-right: 10.5625rem !important
}

.mb-169,
.my-169 {
	margin-bottom: 10.5625rem !important
}

.ml-169,
.mx-169 {
	margin-left: 10.5625rem !important
}

.m-170 {
	margin: 10.625rem !important
}

.mt-170,
.my-170 {
	margin-top: 10.625rem !important
}

.mr-170,
.mx-170 {
	margin-right: 10.625rem !important
}

.mb-170,
.my-170 {
	margin-bottom: 10.625rem !important
}

.ml-170,
.mx-170 {
	margin-left: 10.625rem !important
}

.m-171 {
	margin: 10.6875rem !important
}

.mt-171,
.my-171 {
	margin-top: 10.6875rem !important
}

.mr-171,
.mx-171 {
	margin-right: 10.6875rem !important
}

.mb-171,
.my-171 {
	margin-bottom: 10.6875rem !important
}

.ml-171,
.mx-171 {
	margin-left: 10.6875rem !important
}

.m-172 {
	margin: 10.75rem !important
}

.mt-172,
.my-172 {
	margin-top: 10.75rem !important
}

.mr-172,
.mx-172 {
	margin-right: 10.75rem !important
}

.mb-172,
.my-172 {
	margin-bottom: 10.75rem !important
}

.ml-172,
.mx-172 {
	margin-left: 10.75rem !important
}

.m-173 {
	margin: 10.8125rem !important
}

.mt-173,
.my-173 {
	margin-top: 10.8125rem !important
}

.mr-173,
.mx-173 {
	margin-right: 10.8125rem !important
}

.mb-173,
.my-173 {
	margin-bottom: 10.8125rem !important
}

.ml-173,
.mx-173 {
	margin-left: 10.8125rem !important
}

.m-174 {
	margin: 10.875rem !important
}

.mt-174,
.my-174 {
	margin-top: 10.875rem !important
}

.mr-174,
.mx-174 {
	margin-right: 10.875rem !important
}

.mb-174,
.my-174 {
	margin-bottom: 10.875rem !important
}

.ml-174,
.mx-174 {
	margin-left: 10.875rem !important
}

.m-175 {
	margin: 10.9375rem !important
}

.mt-175,
.my-175 {
	margin-top: 10.9375rem !important
}

.mr-175,
.mx-175 {
	margin-right: 10.9375rem !important
}

.mb-175,
.my-175 {
	margin-bottom: 10.9375rem !important
}

.ml-175,
.mx-175 {
	margin-left: 10.9375rem !important
}

.m-176 {
	margin: 11rem !important
}

.mt-176,
.my-176 {
	margin-top: 11rem !important
}

.mr-176,
.mx-176 {
	margin-right: 11rem !important
}

.mb-176,
.my-176 {
	margin-bottom: 11rem !important
}

.ml-176,
.mx-176 {
	margin-left: 11rem !important
}

.m-177 {
	margin: 11.0625rem !important
}

.mt-177,
.my-177 {
	margin-top: 11.0625rem !important
}

.mr-177,
.mx-177 {
	margin-right: 11.0625rem !important
}

.mb-177,
.my-177 {
	margin-bottom: 11.0625rem !important
}

.ml-177,
.mx-177 {
	margin-left: 11.0625rem !important
}

.m-178 {
	margin: 11.125rem !important
}

.mt-178,
.my-178 {
	margin-top: 11.125rem !important
}

.mr-178,
.mx-178 {
	margin-right: 11.125rem !important
}

.mb-178,
.my-178 {
	margin-bottom: 11.125rem !important
}

.ml-178,
.mx-178 {
	margin-left: 11.125rem !important
}

.m-179 {
	margin: 11.1875rem !important
}

.mt-179,
.my-179 {
	margin-top: 11.1875rem !important
}

.mr-179,
.mx-179 {
	margin-right: 11.1875rem !important
}

.mb-179,
.my-179 {
	margin-bottom: 11.1875rem !important
}

.ml-179,
.mx-179 {
	margin-left: 11.1875rem !important
}

.m-180 {
	margin: 11.25rem !important
}

.mt-180,
.my-180 {
	margin-top: 11.25rem !important
}

.mr-180,
.mx-180 {
	margin-right: 11.25rem !important
}

.mb-180,
.my-180 {
	margin-bottom: 11.25rem !important
}

.ml-180,
.mx-180 {
	margin-left: 11.25rem !important
}

.m-181 {
	margin: 11.3125rem !important
}

.mt-181,
.my-181 {
	margin-top: 11.3125rem !important
}

.mr-181,
.mx-181 {
	margin-right: 11.3125rem !important
}

.mb-181,
.my-181 {
	margin-bottom: 11.3125rem !important
}

.ml-181,
.mx-181 {
	margin-left: 11.3125rem !important
}

.m-182 {
	margin: 11.375rem !important
}

.mt-182,
.my-182 {
	margin-top: 11.375rem !important
}

.mr-182,
.mx-182 {
	margin-right: 11.375rem !important
}

.mb-182,
.my-182 {
	margin-bottom: 11.375rem !important
}

.ml-182,
.mx-182 {
	margin-left: 11.375rem !important
}

.m-183 {
	margin: 11.4375rem !important
}

.mt-183,
.my-183 {
	margin-top: 11.4375rem !important
}

.mr-183,
.mx-183 {
	margin-right: 11.4375rem !important
}

.mb-183,
.my-183 {
	margin-bottom: 11.4375rem !important
}

.ml-183,
.mx-183 {
	margin-left: 11.4375rem !important
}

.m-184 {
	margin: 11.5rem !important
}

.mt-184,
.my-184 {
	margin-top: 11.5rem !important
}

.mr-184,
.mx-184 {
	margin-right: 11.5rem !important
}

.mb-184,
.my-184 {
	margin-bottom: 11.5rem !important
}

.ml-184,
.mx-184 {
	margin-left: 11.5rem !important
}

.m-185 {
	margin: 11.5625rem !important
}

.mt-185,
.my-185 {
	margin-top: 11.5625rem !important
}

.mr-185,
.mx-185 {
	margin-right: 11.5625rem !important
}

.mb-185,
.my-185 {
	margin-bottom: 11.5625rem !important
}

.ml-185,
.mx-185 {
	margin-left: 11.5625rem !important
}

.m-186 {
	margin: 11.625rem !important
}

.mt-186,
.my-186 {
	margin-top: 11.625rem !important
}

.mr-186,
.mx-186 {
	margin-right: 11.625rem !important
}

.mb-186,
.my-186 {
	margin-bottom: 11.625rem !important
}

.ml-186,
.mx-186 {
	margin-left: 11.625rem !important
}

.m-187 {
	margin: 11.6875rem !important
}

.mt-187,
.my-187 {
	margin-top: 11.6875rem !important
}

.mr-187,
.mx-187 {
	margin-right: 11.6875rem !important
}

.mb-187,
.my-187 {
	margin-bottom: 11.6875rem !important
}

.ml-187,
.mx-187 {
	margin-left: 11.6875rem !important
}

.m-188 {
	margin: 11.75rem !important
}

.mt-188,
.my-188 {
	margin-top: 11.75rem !important
}

.mr-188,
.mx-188 {
	margin-right: 11.75rem !important
}

.mb-188,
.my-188 {
	margin-bottom: 11.75rem !important
}

.ml-188,
.mx-188 {
	margin-left: 11.75rem !important
}

.m-189 {
	margin: 11.8125rem !important
}

.mt-189,
.my-189 {
	margin-top: 11.8125rem !important
}

.mr-189,
.mx-189 {
	margin-right: 11.8125rem !important
}

.mb-189,
.my-189 {
	margin-bottom: 11.8125rem !important
}

.ml-189,
.mx-189 {
	margin-left: 11.8125rem !important
}

.m-190 {
	margin: 11.875rem !important
}

.mt-190,
.my-190 {
	margin-top: 11.875rem !important
}

.mr-190,
.mx-190 {
	margin-right: 11.875rem !important
}

.mb-190,
.my-190 {
	margin-bottom: 11.875rem !important
}

.ml-190,
.mx-190 {
	margin-left: 11.875rem !important
}

.m-191 {
	margin: 11.9375rem !important
}

.mt-191,
.my-191 {
	margin-top: 11.9375rem !important
}

.mr-191,
.mx-191 {
	margin-right: 11.9375rem !important
}

.mb-191,
.my-191 {
	margin-bottom: 11.9375rem !important
}

.ml-191,
.mx-191 {
	margin-left: 11.9375rem !important
}

.m-192 {
	margin: 12rem !important
}

.mt-192,
.my-192 {
	margin-top: 12rem !important
}

.mr-192,
.mx-192 {
	margin-right: 12rem !important
}

.mb-192,
.my-192 {
	margin-bottom: 12rem !important
}

.ml-192,
.mx-192 {
	margin-left: 12rem !important
}

.m-193 {
	margin: 12.0625rem !important
}

.mt-193,
.my-193 {
	margin-top: 12.0625rem !important
}

.mr-193,
.mx-193 {
	margin-right: 12.0625rem !important
}

.mb-193,
.my-193 {
	margin-bottom: 12.0625rem !important
}

.ml-193,
.mx-193 {
	margin-left: 12.0625rem !important
}

.m-194 {
	margin: 12.125rem !important
}

.mt-194,
.my-194 {
	margin-top: 12.125rem !important
}

.mr-194,
.mx-194 {
	margin-right: 12.125rem !important
}

.mb-194,
.my-194 {
	margin-bottom: 12.125rem !important
}

.ml-194,
.mx-194 {
	margin-left: 12.125rem !important
}

.m-195 {
	margin: 12.1875rem !important
}

.mt-195,
.my-195 {
	margin-top: 12.1875rem !important
}

.mr-195,
.mx-195 {
	margin-right: 12.1875rem !important
}

.mb-195,
.my-195 {
	margin-bottom: 12.1875rem !important
}

.ml-195,
.mx-195 {
	margin-left: 12.1875rem !important
}

.m-196 {
	margin: 12.25rem !important
}

.mt-196,
.my-196 {
	margin-top: 12.25rem !important
}

.mr-196,
.mx-196 {
	margin-right: 12.25rem !important
}

.mb-196,
.my-196 {
	margin-bottom: 12.25rem !important
}

.ml-196,
.mx-196 {
	margin-left: 12.25rem !important
}

.m-197 {
	margin: 12.3125rem !important
}

.mt-197,
.my-197 {
	margin-top: 12.3125rem !important
}

.mr-197,
.mx-197 {
	margin-right: 12.3125rem !important
}

.mb-197,
.my-197 {
	margin-bottom: 12.3125rem !important
}

.ml-197,
.mx-197 {
	margin-left: 12.3125rem !important
}

.m-198 {
	margin: 12.375rem !important
}

.mt-198,
.my-198 {
	margin-top: 12.375rem !important
}

.mr-198,
.mx-198 {
	margin-right: 12.375rem !important
}

.mb-198,
.my-198 {
	margin-bottom: 12.375rem !important
}

.ml-198,
.mx-198 {
	margin-left: 12.375rem !important
}

.m-199 {
	margin: 12.4375rem !important
}

.mt-199,
.my-199 {
	margin-top: 12.4375rem !important
}

.mr-199,
.mx-199 {
	margin-right: 12.4375rem !important
}

.mb-199,
.my-199 {
	margin-bottom: 12.4375rem !important
}

.ml-199,
.mx-199 {
	margin-left: 12.4375rem !important
}

.m-200 {
	margin: 12.5rem !important
}

.mt-200,
.my-200 {
	margin-top: 12.5rem !important
}

.mr-200,
.mx-200 {
	margin-right: 12.5rem !important
}

.mb-200,
.my-200 {
	margin-bottom: 12.5rem !important
}

.ml-200,
.mx-200 {
	margin-left: 12.5rem !important
}

.p-0 {
	padding: 0 !important
}

.pt-0,
.py-0 {
	padding-top: 0 !important
}

.pr-0,
.px-0 {
	padding-right: 0 !important
}

.pb-0,
.py-0 {
	padding-bottom: 0 !important
}

.pl-0,
.px-0 {
	padding-left: 0 !important
}

.p-1 {
	padding: .0625rem !important
}

.pt-1,
.py-1 {
	padding-top: .0625rem !important
}

.pr-1,
.px-1 {
	padding-right: .0625rem !important
}

.pb-1,
.py-1 {
	padding-bottom: .0625rem !important
}

.pl-1,
.px-1 {
	padding-left: .0625rem !important
}

.p-2 {
	padding: .125rem !important
}

.pt-2,
.py-2 {
	padding-top: .125rem !important
}

.pr-2,
.px-2 {
	padding-right: .125rem !important
}

.pb-2,
.py-2 {
	padding-bottom: .125rem !important
}

.pl-2,
.px-2 {
	padding-left: .125rem !important
}

.p-3 {
	padding: .1875rem !important
}

.pt-3,
.py-3 {
	padding-top: .1875rem !important
}

.pr-3,
.px-3 {
	padding-right: .1875rem !important
}

.pb-3,
.py-3 {
	padding-bottom: .1875rem !important
}

.pl-3,
.px-3 {
	padding-left: .1875rem !important
}

.p-4 {
	padding: .25rem !important
}

.pt-4,
.py-4 {
	padding-top: .25rem !important
}

.pr-4,
.px-4 {
	padding-right: .25rem !important
}

.pb-4,
.py-4 {
	padding-bottom: .25rem !important
}

.pl-4,
.px-4 {
	padding-left: .25rem !important
}

.p-5 {
	padding: .3125rem !important
}

.pt-5,
.py-5 {
	padding-top: .3125rem !important
}

.pr-5,
.px-5 {
	padding-right: .3125rem !important
}

.pb-5,
.py-5 {
	padding-bottom: .3125rem !important
}

.pl-5,
.px-5 {
	padding-left: .3125rem !important
}

.p-6 {
	padding: .375rem !important
}

.pt-6,
.py-6 {
	padding-top: .375rem !important
}

.pr-6,
.px-6 {
	padding-right: .375rem !important
}

.pb-6,
.py-6 {
	padding-bottom: .375rem !important
}

.pl-6,
.px-6 {
	padding-left: .375rem !important
}

.p-7 {
	padding: .4375rem !important
}

.pt-7,
.py-7 {
	padding-top: .4375rem !important
}

.pr-7,
.px-7 {
	padding-right: .4375rem !important
}

.pb-7,
.py-7 {
	padding-bottom: .4375rem !important
}

.pl-7,
.px-7 {
	padding-left: .4375rem !important
}

.p-8 {
	padding: .5rem !important
}

.pt-8,
.py-8 {
	padding-top: .5rem !important
}

.pr-8,
.px-8 {
	padding-right: .5rem !important
}

.pb-8,
.py-8 {
	padding-bottom: .5rem !important
}

.pl-8,
.px-8 {
	padding-left: .5rem !important
}

.p-9 {
	padding: .5625rem !important
}

.pt-9,
.py-9 {
	padding-top: .5625rem !important
}

.pr-9,
.px-9 {
	padding-right: .5625rem !important
}

.pb-9,
.py-9 {
	padding-bottom: .5625rem !important
}

.pl-9,
.px-9 {
	padding-left: .5625rem !important
}

.p-10 {
	padding: .625rem !important
}

.pt-10,
.py-10 {
	padding-top: .625rem !important
}

.pr-10,
.px-10 {
	padding-right: .625rem !important
}

.pb-10,
.py-10 {
	padding-bottom: .625rem !important
}

.pl-10,
.px-10 {
	padding-left: .625rem !important
}

.p-11 {
	padding: .6875rem !important
}

.pt-11,
.py-11 {
	padding-top: .6875rem !important
}

.pr-11,
.px-11 {
	padding-right: .6875rem !important
}

.pb-11,
.py-11 {
	padding-bottom: .6875rem !important
}

.pl-11,
.px-11 {
	padding-left: .6875rem !important
}

.p-12 {
	padding: .75rem !important
}

.pt-12,
.py-12 {
	padding-top: .75rem !important
}

.pr-12,
.px-12 {
	padding-right: .75rem !important
}

.pb-12,
.py-12 {
	padding-bottom: .75rem !important
}

.pl-12,
.px-12 {
	padding-left: .75rem !important
}

.p-13 {
	padding: .8125rem !important
}

.pt-13,
.py-13 {
	padding-top: .8125rem !important
}

.pr-13,
.px-13 {
	padding-right: .8125rem !important
}

.pb-13,
.py-13 {
	padding-bottom: .8125rem !important
}

.pl-13,
.px-13 {
	padding-left: .8125rem !important
}

.p-14 {
	padding: .875rem !important
}

.pt-14,
.py-14 {
	padding-top: .875rem !important
}

.pr-14,
.px-14 {
	padding-right: .875rem !important
}

.pb-14,
.py-14 {
	padding-bottom: .875rem !important
}

.pl-14,
.px-14 {
	padding-left: .875rem !important
}

.p-15 {
	padding: .9375rem !important
}

.pt-15,
.py-15 {
	padding-top: .9375rem !important
}

.pr-15,
.px-15 {
	padding-right: .9375rem !important
}

.pb-15,
.py-15 {
	padding-bottom: .9375rem !important
}

.pl-15,
.px-15 {
	padding-left: .9375rem !important
}

.p-16 {
	padding: 1rem !important
}

.pt-16,
.py-16 {
	padding-top: 1rem !important
}

.pr-16,
.px-16 {
	padding-right: 1rem !important
}

.pb-16,
.py-16 {
	padding-bottom: 1rem !important
}

.pl-16,
.px-16 {
	padding-left: 1rem !important
}

.p-17 {
	padding: 1.0625rem !important
}

.pt-17,
.py-17 {
	padding-top: 1.0625rem !important
}

.pr-17,
.px-17 {
	padding-right: 1.0625rem !important
}

.pb-17,
.py-17 {
	padding-bottom: 1.0625rem !important
}

.pl-17,
.px-17 {
	padding-left: 1.0625rem !important
}

.p-18 {
	padding: 1.125rem !important
}

.pt-18,
.py-18 {
	padding-top: 1.125rem !important
}

.pr-18,
.px-18 {
	padding-right: 1.125rem !important
}

.pb-18,
.py-18 {
	padding-bottom: 1.125rem !important
}

.pl-18,
.px-18 {
	padding-left: 1.125rem !important
}

.p-19 {
	padding: 1.1875rem !important
}

.pt-19,
.py-19 {
	padding-top: 1.1875rem !important
}

.pr-19,
.px-19 {
	padding-right: 1.1875rem !important
}

.pb-19,
.py-19 {
	padding-bottom: 1.1875rem !important
}

.pl-19,
.px-19 {
	padding-left: 1.1875rem !important
}

.p-20 {
	padding: 1.25rem !important
}

.pt-20,
.py-20 {
	padding-top: 1.25rem !important
}

.pr-20,
.px-20 {
	padding-right: 1.25rem !important
}

.pb-20,
.py-20 {
	padding-bottom: 1.25rem !important
}

.pl-20,
.px-20 {
	padding-left: 1.25rem !important
}

.p-21 {
	padding: 1.3125rem !important
}

.pt-21,
.py-21 {
	padding-top: 1.3125rem !important
}

.pr-21,
.px-21 {
	padding-right: 1.3125rem !important
}

.pb-21,
.py-21 {
	padding-bottom: 1.3125rem !important
}

.pl-21,
.px-21 {
	padding-left: 1.3125rem !important
}

.p-22 {
	padding: 1.375rem !important
}

.pt-22,
.py-22 {
	padding-top: 1.375rem !important
}

.pr-22,
.px-22 {
	padding-right: 1.375rem !important
}

.pb-22,
.py-22 {
	padding-bottom: 1.375rem !important
}

.pl-22,
.px-22 {
	padding-left: 1.375rem !important
}

.p-23 {
	padding: 1.4375rem !important
}

.pt-23,
.py-23 {
	padding-top: 1.4375rem !important
}

.pr-23,
.px-23 {
	padding-right: 1.4375rem !important
}

.pb-23,
.py-23 {
	padding-bottom: 1.4375rem !important
}

.pl-23,
.px-23 {
	padding-left: 1.4375rem !important
}

.p-24 {
	padding: 1.5rem !important
}

.pt-24,
.py-24 {
	padding-top: 1.5rem !important
}

.pr-24,
.px-24 {
	padding-right: 1.5rem !important
}

.pb-24,
.py-24 {
	padding-bottom: 1.5rem !important
}

.pl-24,
.px-24 {
	padding-left: 1.5rem !important
}

.p-25 {
	padding: 1.5625rem !important
}

.pt-25,
.py-25 {
	padding-top: 1.5625rem !important
}

.pr-25,
.px-25 {
	padding-right: 1.5625rem !important
}

.pb-25,
.py-25 {
	padding-bottom: 1.5625rem !important
}

.pl-25,
.px-25 {
	padding-left: 1.5625rem !important
}

.p-26 {
	padding: 1.625rem !important
}

.pt-26,
.py-26 {
	padding-top: 1.625rem !important
}

.pr-26,
.px-26 {
	padding-right: 1.625rem !important
}

.pb-26,
.py-26 {
	padding-bottom: 1.625rem !important
}

.pl-26,
.px-26 {
	padding-left: 1.625rem !important
}

.p-27 {
	padding: 1.6875rem !important
}

.pt-27,
.py-27 {
	padding-top: 1.6875rem !important
}

.pr-27,
.px-27 {
	padding-right: 1.6875rem !important
}

.pb-27,
.py-27 {
	padding-bottom: 1.6875rem !important
}

.pl-27,
.px-27 {
	padding-left: 1.6875rem !important
}

.p-28 {
	padding: 1.75rem !important
}

.pt-28,
.py-28 {
	padding-top: 1.75rem !important
}

.pr-28,
.px-28 {
	padding-right: 1.75rem !important
}

.pb-28,
.py-28 {
	padding-bottom: 1.75rem !important
}

.pl-28,
.px-28 {
	padding-left: 1.75rem !important
}

.p-29 {
	padding: 1.8125rem !important
}

.pt-29,
.py-29 {
	padding-top: 1.8125rem !important
}

.pr-29,
.px-29 {
	padding-right: 1.8125rem !important
}

.pb-29,
.py-29 {
	padding-bottom: 1.8125rem !important
}

.pl-29,
.px-29 {
	padding-left: 1.8125rem !important
}

.p-30 {
	padding: 1.875rem !important
}

.pt-30,
.py-30 {
	padding-top: 1.875rem !important
}

.pr-30,
.px-30 {
	padding-right: 1.875rem !important
}

.pb-30,
.py-30 {
	padding-bottom: 1.875rem !important
}

.pl-30,
.px-30 {
	padding-left: 1.875rem !important
}

.p-31 {
	padding: 1.9375rem !important
}

.pt-31,
.py-31 {
	padding-top: 1.9375rem !important
}

.pr-31,
.px-31 {
	padding-right: 1.9375rem !important
}

.pb-31,
.py-31 {
	padding-bottom: 1.9375rem !important
}

.pl-31,
.px-31 {
	padding-left: 1.9375rem !important
}

.p-32 {
	padding: 2rem !important
}

.pt-32,
.py-32 {
	padding-top: 2rem !important
}

.pr-32,
.px-32 {
	padding-right: 2rem !important
}

.pb-32,
.py-32 {
	padding-bottom: 2rem !important
}

.pl-32,
.px-32 {
	padding-left: 2rem !important
}

.p-33 {
	padding: 2.0625rem !important
}

.pt-33,
.py-33 {
	padding-top: 2.0625rem !important
}

.pr-33,
.px-33 {
	padding-right: 2.0625rem !important
}

.pb-33,
.py-33 {
	padding-bottom: 2.0625rem !important
}

.pl-33,
.px-33 {
	padding-left: 2.0625rem !important
}

.p-34 {
	padding: 2.125rem !important
}

.pt-34,
.py-34 {
	padding-top: 2.125rem !important
}

.pr-34,
.px-34 {
	padding-right: 2.125rem !important
}

.pb-34,
.py-34 {
	padding-bottom: 2.125rem !important
}

.pl-34,
.px-34 {
	padding-left: 2.125rem !important
}

.p-35 {
	padding: 2.1875rem !important
}

.pt-35,
.py-35 {
	padding-top: 2.1875rem !important
}

.pr-35,
.px-35 {
	padding-right: 2.1875rem !important
}

.pb-35,
.py-35 {
	padding-bottom: 2.1875rem !important
}

.pl-35,
.px-35 {
	padding-left: 2.1875rem !important
}

.p-36 {
	padding: 2.25rem !important
}

.pt-36,
.py-36 {
	padding-top: 2.25rem !important
}

.pr-36,
.px-36 {
	padding-right: 2.25rem !important
}

.pb-36,
.py-36 {
	padding-bottom: 2.25rem !important
}

.pl-36,
.px-36 {
	padding-left: 2.25rem !important
}

.p-37 {
	padding: 2.3125rem !important
}

.pt-37,
.py-37 {
	padding-top: 2.3125rem !important
}

.pr-37,
.px-37 {
	padding-right: 2.3125rem !important
}

.pb-37,
.py-37 {
	padding-bottom: 2.3125rem !important
}

.pl-37,
.px-37 {
	padding-left: 2.3125rem !important
}

.p-38 {
	padding: 2.375rem !important
}

.pt-38,
.py-38 {
	padding-top: 2.375rem !important
}

.pr-38,
.px-38 {
	padding-right: 2.375rem !important
}

.pb-38,
.py-38 {
	padding-bottom: 2.375rem !important
}

.pl-38,
.px-38 {
	padding-left: 2.375rem !important
}

.p-39 {
	padding: 2.4375rem !important
}

.pt-39,
.py-39 {
	padding-top: 2.4375rem !important
}

.pr-39,
.px-39 {
	padding-right: 2.4375rem !important
}

.pb-39,
.py-39 {
	padding-bottom: 2.4375rem !important
}

.pl-39,
.px-39 {
	padding-left: 2.4375rem !important
}

.p-40 {
	padding: 2.5rem !important
}

.pt-40,
.py-40 {
	padding-top: 2.5rem !important
}

.pr-40,
.px-40 {
	padding-right: 2.5rem !important
}

.pb-40,
.py-40 {
	padding-bottom: 2.5rem !important
}

.pl-40,
.px-40 {
	padding-left: 2.5rem !important
}

.p-41 {
	padding: 2.5625rem !important
}

.pt-41,
.py-41 {
	padding-top: 2.5625rem !important
}

.pr-41,
.px-41 {
	padding-right: 2.5625rem !important
}

.pb-41,
.py-41 {
	padding-bottom: 2.5625rem !important
}

.pl-41,
.px-41 {
	padding-left: 2.5625rem !important
}

.p-42 {
	padding: 2.625rem !important
}

.pt-42,
.py-42 {
	padding-top: 2.625rem !important
}

.pr-42,
.px-42 {
	padding-right: 2.625rem !important
}

.pb-42,
.py-42 {
	padding-bottom: 2.625rem !important
}

.pl-42,
.px-42 {
	padding-left: 2.625rem !important
}

.p-43 {
	padding: 2.6875rem !important
}

.pt-43,
.py-43 {
	padding-top: 2.6875rem !important
}

.pr-43,
.px-43 {
	padding-right: 2.6875rem !important
}

.pb-43,
.py-43 {
	padding-bottom: 2.6875rem !important
}

.pl-43,
.px-43 {
	padding-left: 2.6875rem !important
}

.p-44 {
	padding: 2.75rem !important
}

.pt-44,
.py-44 {
	padding-top: 2.75rem !important
}

.pr-44,
.px-44 {
	padding-right: 2.75rem !important
}

.pb-44,
.py-44 {
	padding-bottom: 2.75rem !important
}

.pl-44,
.px-44 {
	padding-left: 2.75rem !important
}

.p-45 {
	padding: 2.8125rem !important
}

.pt-45,
.py-45 {
	padding-top: 2.8125rem !important
}

.pr-45,
.px-45 {
	padding-right: 2.8125rem !important
}

.pb-45,
.py-45 {
	padding-bottom: 2.8125rem !important
}

.pl-45,
.px-45 {
	padding-left: 2.8125rem !important
}

.p-46 {
	padding: 2.875rem !important
}

.pt-46,
.py-46 {
	padding-top: 2.875rem !important
}

.pr-46,
.px-46 {
	padding-right: 2.875rem !important
}

.pb-46,
.py-46 {
	padding-bottom: 2.875rem !important
}

.pl-46,
.px-46 {
	padding-left: 2.875rem !important
}

.p-47 {
	padding: 2.9375rem !important
}

.pt-47,
.py-47 {
	padding-top: 2.9375rem !important
}

.pr-47,
.px-47 {
	padding-right: 2.9375rem !important
}

.pb-47,
.py-47 {
	padding-bottom: 2.9375rem !important
}

.pl-47,
.px-47 {
	padding-left: 2.9375rem !important
}

.p-48 {
	padding: 3rem !important
}

.pt-48,
.py-48 {
	padding-top: 3rem !important
}

.pr-48,
.px-48 {
	padding-right: 3rem !important
}

.pb-48,
.py-48 {
	padding-bottom: 3rem !important
}

.pl-48,
.px-48 {
	padding-left: 3rem !important
}

.p-49 {
	padding: 3.0625rem !important
}

.pt-49,
.py-49 {
	padding-top: 3.0625rem !important
}

.pr-49,
.px-49 {
	padding-right: 3.0625rem !important
}

.pb-49,
.py-49 {
	padding-bottom: 3.0625rem !important
}

.pl-49,
.px-49 {
	padding-left: 3.0625rem !important
}

.p-50 {
	padding: 3.125rem !important
}

.pt-50,
.py-50 {
	padding-top: 3.125rem !important
}

.pr-50,
.px-50 {
	padding-right: 3.125rem !important
}

.pb-50,
.py-50 {
	padding-bottom: 3.125rem !important
}

.pl-50,
.px-50 {
	padding-left: 3.125rem !important
}

.p-51 {
	padding: 3.1875rem !important
}

.pt-51,
.py-51 {
	padding-top: 3.1875rem !important
}

.pr-51,
.px-51 {
	padding-right: 3.1875rem !important
}

.pb-51,
.py-51 {
	padding-bottom: 3.1875rem !important
}

.pl-51,
.px-51 {
	padding-left: 3.1875rem !important
}

.p-52 {
	padding: 3.25rem !important
}

.pt-52,
.py-52 {
	padding-top: 3.25rem !important
}

.pr-52,
.px-52 {
	padding-right: 3.25rem !important
}

.pb-52,
.py-52 {
	padding-bottom: 3.25rem !important
}

.pl-52,
.px-52 {
	padding-left: 3.25rem !important
}

.p-53 {
	padding: 3.3125rem !important
}

.pt-53,
.py-53 {
	padding-top: 3.3125rem !important
}

.pr-53,
.px-53 {
	padding-right: 3.3125rem !important
}

.pb-53,
.py-53 {
	padding-bottom: 3.3125rem !important
}

.pl-53,
.px-53 {
	padding-left: 3.3125rem !important
}

.p-54 {
	padding: 3.375rem !important
}

.pt-54,
.py-54 {
	padding-top: 3.375rem !important
}

.pr-54,
.px-54 {
	padding-right: 3.375rem !important
}

.pb-54,
.py-54 {
	padding-bottom: 3.375rem !important
}

.pl-54,
.px-54 {
	padding-left: 3.375rem !important
}

.p-55 {
	padding: 3.4375rem !important
}

.pt-55,
.py-55 {
	padding-top: 3.4375rem !important
}

.pr-55,
.px-55 {
	padding-right: 3.4375rem !important
}

.pb-55,
.py-55 {
	padding-bottom: 3.4375rem !important
}

.pl-55,
.px-55 {
	padding-left: 3.4375rem !important
}

.p-56 {
	padding: 3.5rem !important
}

.pt-56,
.py-56 {
	padding-top: 3.5rem !important
}

.pr-56,
.px-56 {
	padding-right: 3.5rem !important
}

.pb-56,
.py-56 {
	padding-bottom: 3.5rem !important
}

.pl-56,
.px-56 {
	padding-left: 3.5rem !important
}

.p-57 {
	padding: 3.5625rem !important
}

.pt-57,
.py-57 {
	padding-top: 3.5625rem !important
}

.pr-57,
.px-57 {
	padding-right: 3.5625rem !important
}

.pb-57,
.py-57 {
	padding-bottom: 3.5625rem !important
}

.pl-57,
.px-57 {
	padding-left: 3.5625rem !important
}

.p-58 {
	padding: 3.625rem !important
}

.pt-58,
.py-58 {
	padding-top: 3.625rem !important
}

.pr-58,
.px-58 {
	padding-right: 3.625rem !important
}

.pb-58,
.py-58 {
	padding-bottom: 3.625rem !important
}

.pl-58,
.px-58 {
	padding-left: 3.625rem !important
}

.p-59 {
	padding: 3.6875rem !important
}

.pt-59,
.py-59 {
	padding-top: 3.6875rem !important
}

.pr-59,
.px-59 {
	padding-right: 3.6875rem !important
}

.pb-59,
.py-59 {
	padding-bottom: 3.6875rem !important
}

.pl-59,
.px-59 {
	padding-left: 3.6875rem !important
}

.p-60 {
	padding: 3.75rem !important
}

.pt-60,
.py-60 {
	padding-top: 3.75rem !important
}

.pr-60,
.px-60 {
	padding-right: 3.75rem !important
}

.pb-60,
.py-60 {
	padding-bottom: 3.75rem !important
}

.pl-60,
.px-60 {
	padding-left: 3.75rem !important
}

.p-61 {
	padding: 3.8125rem !important
}

.pt-61,
.py-61 {
	padding-top: 3.8125rem !important
}

.pr-61,
.px-61 {
	padding-right: 3.8125rem !important
}

.pb-61,
.py-61 {
	padding-bottom: 3.8125rem !important
}

.pl-61,
.px-61 {
	padding-left: 3.8125rem !important
}

.p-62 {
	padding: 3.875rem !important
}

.pt-62,
.py-62 {
	padding-top: 3.875rem !important
}

.pr-62,
.px-62 {
	padding-right: 3.875rem !important
}

.pb-62,
.py-62 {
	padding-bottom: 3.875rem !important
}

.pl-62,
.px-62 {
	padding-left: 3.875rem !important
}

.p-63 {
	padding: 3.9375rem !important
}

.pt-63,
.py-63 {
	padding-top: 3.9375rem !important
}

.pr-63,
.px-63 {
	padding-right: 3.9375rem !important
}

.pb-63,
.py-63 {
	padding-bottom: 3.9375rem !important
}

.pl-63,
.px-63 {
	padding-left: 3.9375rem !important
}

.p-64 {
	padding: 4rem !important
}

.pt-64,
.py-64 {
	padding-top: 4rem !important
}

.pr-64,
.px-64 {
	padding-right: 4rem !important
}

.pb-64,
.py-64 {
	padding-bottom: 4rem !important
}

.pl-64,
.px-64 {
	padding-left: 4rem !important
}

.p-65 {
	padding: 4.0625rem !important
}

.pt-65,
.py-65 {
	padding-top: 4.0625rem !important
}

.pr-65,
.px-65 {
	padding-right: 4.0625rem !important
}

.pb-65,
.py-65 {
	padding-bottom: 4.0625rem !important
}

.pl-65,
.px-65 {
	padding-left: 4.0625rem !important
}

.p-66 {
	padding: 4.125rem !important
}

.pt-66,
.py-66 {
	padding-top: 4.125rem !important
}

.pr-66,
.px-66 {
	padding-right: 4.125rem !important
}

.pb-66,
.py-66 {
	padding-bottom: 4.125rem !important
}

.pl-66,
.px-66 {
	padding-left: 4.125rem !important
}

.p-67 {
	padding: 4.1875rem !important
}

.pt-67,
.py-67 {
	padding-top: 4.1875rem !important
}

.pr-67,
.px-67 {
	padding-right: 4.1875rem !important
}

.pb-67,
.py-67 {
	padding-bottom: 4.1875rem !important
}

.pl-67,
.px-67 {
	padding-left: 4.1875rem !important
}

.p-68 {
	padding: 4.25rem !important
}

.pt-68,
.py-68 {
	padding-top: 4.25rem !important
}

.pr-68,
.px-68 {
	padding-right: 4.25rem !important
}

.pb-68,
.py-68 {
	padding-bottom: 4.25rem !important
}

.pl-68,
.px-68 {
	padding-left: 4.25rem !important
}

.p-69 {
	padding: 4.3125rem !important
}

.pt-69,
.py-69 {
	padding-top: 4.3125rem !important
}

.pr-69,
.px-69 {
	padding-right: 4.3125rem !important
}

.pb-69,
.py-69 {
	padding-bottom: 4.3125rem !important
}

.pl-69,
.px-69 {
	padding-left: 4.3125rem !important
}

.p-70 {
	padding: 4.375rem !important
}

.pt-70,
.py-70 {
	padding-top: 4.375rem !important
}

.pr-70,
.px-70 {
	padding-right: 4.375rem !important
}

.pb-70,
.py-70 {
	padding-bottom: 4.375rem !important
}

.pl-70,
.px-70 {
	padding-left: 4.375rem !important
}

.p-71 {
	padding: 4.4375rem !important
}

.pt-71,
.py-71 {
	padding-top: 4.4375rem !important
}

.pr-71,
.px-71 {
	padding-right: 4.4375rem !important
}

.pb-71,
.py-71 {
	padding-bottom: 4.4375rem !important
}

.pl-71,
.px-71 {
	padding-left: 4.4375rem !important
}

.p-72 {
	padding: 4.5rem !important
}

.pt-72,
.py-72 {
	padding-top: 4.5rem !important
}

.pr-72,
.px-72 {
	padding-right: 4.5rem !important
}

.pb-72,
.py-72 {
	padding-bottom: 4.5rem !important
}

.pl-72,
.px-72 {
	padding-left: 4.5rem !important
}

.p-73 {
	padding: 4.5625rem !important
}

.pt-73,
.py-73 {
	padding-top: 4.5625rem !important
}

.pr-73,
.px-73 {
	padding-right: 4.5625rem !important
}

.pb-73,
.py-73 {
	padding-bottom: 4.5625rem !important
}

.pl-73,
.px-73 {
	padding-left: 4.5625rem !important
}

.p-74 {
	padding: 4.625rem !important
}

.pt-74,
.py-74 {
	padding-top: 4.625rem !important
}

.pr-74,
.px-74 {
	padding-right: 4.625rem !important
}

.pb-74,
.py-74 {
	padding-bottom: 4.625rem !important
}

.pl-74,
.px-74 {
	padding-left: 4.625rem !important
}

.p-75 {
	padding: 4.6875rem !important
}

.pt-75,
.py-75 {
	padding-top: 4.6875rem !important
}

.pr-75,
.px-75 {
	padding-right: 4.6875rem !important
}

.pb-75,
.py-75 {
	padding-bottom: 4.6875rem !important
}

.pl-75,
.px-75 {
	padding-left: 4.6875rem !important
}

.p-76 {
	padding: 4.75rem !important
}

.pt-76,
.py-76 {
	padding-top: 4.75rem !important
}

.pr-76,
.px-76 {
	padding-right: 4.75rem !important
}

.pb-76,
.py-76 {
	padding-bottom: 4.75rem !important
}

.pl-76,
.px-76 {
	padding-left: 4.75rem !important
}

.p-77 {
	padding: 4.8125rem !important
}

.pt-77,
.py-77 {
	padding-top: 4.8125rem !important
}

.pr-77,
.px-77 {
	padding-right: 4.8125rem !important
}

.pb-77,
.py-77 {
	padding-bottom: 4.8125rem !important
}

.pl-77,
.px-77 {
	padding-left: 4.8125rem !important
}

.p-78 {
	padding: 4.875rem !important
}

.pt-78,
.py-78 {
	padding-top: 4.875rem !important
}

.pr-78,
.px-78 {
	padding-right: 4.875rem !important
}

.pb-78,
.py-78 {
	padding-bottom: 4.875rem !important
}

.pl-78,
.px-78 {
	padding-left: 4.875rem !important
}

.p-79 {
	padding: 4.9375rem !important
}

.pt-79,
.py-79 {
	padding-top: 4.9375rem !important
}

.pr-79,
.px-79 {
	padding-right: 4.9375rem !important
}

.pb-79,
.py-79 {
	padding-bottom: 4.9375rem !important
}

.pl-79,
.px-79 {
	padding-left: 4.9375rem !important
}

.p-80 {
	padding: 5rem !important
}

.pt-80,
.py-80 {
	padding-top: 5rem !important
}

.pr-80,
.px-80 {
	padding-right: 5rem !important
}

.pb-80,
.py-80 {
	padding-bottom: 5rem !important
}

.pl-80,
.px-80 {
	padding-left: 5rem !important
}

.p-81 {
	padding: 5.0625rem !important
}

.pt-81,
.py-81 {
	padding-top: 5.0625rem !important
}

.pr-81,
.px-81 {
	padding-right: 5.0625rem !important
}

.pb-81,
.py-81 {
	padding-bottom: 5.0625rem !important
}

.pl-81,
.px-81 {
	padding-left: 5.0625rem !important
}

.p-82 {
	padding: 5.125rem !important
}

.pt-82,
.py-82 {
	padding-top: 5.125rem !important
}

.pr-82,
.px-82 {
	padding-right: 5.125rem !important
}

.pb-82,
.py-82 {
	padding-bottom: 5.125rem !important
}

.pl-82,
.px-82 {
	padding-left: 5.125rem !important
}

.p-83 {
	padding: 5.1875rem !important
}

.pt-83,
.py-83 {
	padding-top: 5.1875rem !important
}

.pr-83,
.px-83 {
	padding-right: 5.1875rem !important
}

.pb-83,
.py-83 {
	padding-bottom: 5.1875rem !important
}

.pl-83,
.px-83 {
	padding-left: 5.1875rem !important
}

.p-84 {
	padding: 5.25rem !important
}

.pt-84,
.py-84 {
	padding-top: 5.25rem !important
}

.pr-84,
.px-84 {
	padding-right: 5.25rem !important
}

.pb-84,
.py-84 {
	padding-bottom: 5.25rem !important
}

.pl-84,
.px-84 {
	padding-left: 5.25rem !important
}

.p-85 {
	padding: 5.3125rem !important
}

.pt-85,
.py-85 {
	padding-top: 5.3125rem !important
}

.pr-85,
.px-85 {
	padding-right: 5.3125rem !important
}

.pb-85,
.py-85 {
	padding-bottom: 5.3125rem !important
}

.pl-85,
.px-85 {
	padding-left: 5.3125rem !important
}

.p-86 {
	padding: 5.375rem !important
}

.pt-86,
.py-86 {
	padding-top: 5.375rem !important
}

.pr-86,
.px-86 {
	padding-right: 5.375rem !important
}

.pb-86,
.py-86 {
	padding-bottom: 5.375rem !important
}

.pl-86,
.px-86 {
	padding-left: 5.375rem !important
}

.p-87 {
	padding: 5.4375rem !important
}

.pt-87,
.py-87 {
	padding-top: 5.4375rem !important
}

.pr-87,
.px-87 {
	padding-right: 5.4375rem !important
}

.pb-87,
.py-87 {
	padding-bottom: 5.4375rem !important
}

.pl-87,
.px-87 {
	padding-left: 5.4375rem !important
}

.p-88 {
	padding: 5.5rem !important
}

.pt-88,
.py-88 {
	padding-top: 5.5rem !important
}

.pr-88,
.px-88 {
	padding-right: 5.5rem !important
}

.pb-88,
.py-88 {
	padding-bottom: 5.5rem !important
}

.pl-88,
.px-88 {
	padding-left: 5.5rem !important
}

.p-89 {
	padding: 5.5625rem !important
}

.pt-89,
.py-89 {
	padding-top: 5.5625rem !important
}

.pr-89,
.px-89 {
	padding-right: 5.5625rem !important
}

.pb-89,
.py-89 {
	padding-bottom: 5.5625rem !important
}

.pl-89,
.px-89 {
	padding-left: 5.5625rem !important
}

.p-90 {
	padding: 5.625rem !important
}

.pt-90,
.py-90 {
	padding-top: 5.625rem !important
}

.pr-90,
.px-90 {
	padding-right: 5.625rem !important
}

.pb-90,
.py-90 {
	padding-bottom: 5.625rem !important
}

.pl-90,
.px-90 {
	padding-left: 5.625rem !important
}

.p-91 {
	padding: 5.6875rem !important
}

.pt-91,
.py-91 {
	padding-top: 5.6875rem !important
}

.pr-91,
.px-91 {
	padding-right: 5.6875rem !important
}

.pb-91,
.py-91 {
	padding-bottom: 5.6875rem !important
}

.pl-91,
.px-91 {
	padding-left: 5.6875rem !important
}

.p-92 {
	padding: 5.75rem !important
}

.pt-92,
.py-92 {
	padding-top: 5.75rem !important
}

.pr-92,
.px-92 {
	padding-right: 5.75rem !important
}

.pb-92,
.py-92 {
	padding-bottom: 5.75rem !important
}

.pl-92,
.px-92 {
	padding-left: 5.75rem !important
}

.p-93 {
	padding: 5.8125rem !important
}

.pt-93,
.py-93 {
	padding-top: 5.8125rem !important
}

.pr-93,
.px-93 {
	padding-right: 5.8125rem !important
}

.pb-93,
.py-93 {
	padding-bottom: 5.8125rem !important
}

.pl-93,
.px-93 {
	padding-left: 5.8125rem !important
}

.p-94 {
	padding: 5.875rem !important
}

.pt-94,
.py-94 {
	padding-top: 5.875rem !important
}

.pr-94,
.px-94 {
	padding-right: 5.875rem !important
}

.pb-94,
.py-94 {
	padding-bottom: 5.875rem !important
}

.pl-94,
.px-94 {
	padding-left: 5.875rem !important
}

.p-95 {
	padding: 5.9375rem !important
}

.pt-95,
.py-95 {
	padding-top: 5.9375rem !important
}

.pr-95,
.px-95 {
	padding-right: 5.9375rem !important
}

.pb-95,
.py-95 {
	padding-bottom: 5.9375rem !important
}

.pl-95,
.px-95 {
	padding-left: 5.9375rem !important
}

.p-96 {
	padding: 6rem !important
}

.pt-96,
.py-96 {
	padding-top: 6rem !important
}

.pr-96,
.px-96 {
	padding-right: 6rem !important
}

.pb-96,
.py-96 {
	padding-bottom: 6rem !important
}

.pl-96,
.px-96 {
	padding-left: 6rem !important
}

.p-97 {
	padding: 6.0625rem !important
}

.pt-97,
.py-97 {
	padding-top: 6.0625rem !important
}

.pr-97,
.px-97 {
	padding-right: 6.0625rem !important
}

.pb-97,
.py-97 {
	padding-bottom: 6.0625rem !important
}

.pl-97,
.px-97 {
	padding-left: 6.0625rem !important
}

.p-98 {
	padding: 6.125rem !important
}

.pt-98,
.py-98 {
	padding-top: 6.125rem !important
}

.pr-98,
.px-98 {
	padding-right: 6.125rem !important
}

.pb-98,
.py-98 {
	padding-bottom: 6.125rem !important
}

.pl-98,
.px-98 {
	padding-left: 6.125rem !important
}

.p-99 {
	padding: 6.1875rem !important
}

.pt-99,
.py-99 {
	padding-top: 6.1875rem !important
}

.pr-99,
.px-99 {
	padding-right: 6.1875rem !important
}

.pb-99,
.py-99 {
	padding-bottom: 6.1875rem !important
}

.pl-99,
.px-99 {
	padding-left: 6.1875rem !important
}

.p-100 {
	padding: 6.25rem !important
}

.pt-100,
.py-100 {
	padding-top: 6.25rem !important
}

.pr-100,
.px-100 {
	padding-right: 6.25rem !important
}

.pb-100,
.py-100 {
	padding-bottom: 6.25rem !important
}

.pl-100,
.px-100 {
	padding-left: 6.25rem !important
}

.p-101 {
	padding: 6.3125rem !important
}

.pt-101,
.py-101 {
	padding-top: 6.3125rem !important
}

.pr-101,
.px-101 {
	padding-right: 6.3125rem !important
}

.pb-101,
.py-101 {
	padding-bottom: 6.3125rem !important
}

.pl-101,
.px-101 {
	padding-left: 6.3125rem !important
}

.p-102 {
	padding: 6.375rem !important
}

.pt-102,
.py-102 {
	padding-top: 6.375rem !important
}

.pr-102,
.px-102 {
	padding-right: 6.375rem !important
}

.pb-102,
.py-102 {
	padding-bottom: 6.375rem !important
}

.pl-102,
.px-102 {
	padding-left: 6.375rem !important
}

.p-103 {
	padding: 6.4375rem !important
}

.pt-103,
.py-103 {
	padding-top: 6.4375rem !important
}

.pr-103,
.px-103 {
	padding-right: 6.4375rem !important
}

.pb-103,
.py-103 {
	padding-bottom: 6.4375rem !important
}

.pl-103,
.px-103 {
	padding-left: 6.4375rem !important
}

.p-104 {
	padding: 6.5rem !important
}

.pt-104,
.py-104 {
	padding-top: 6.5rem !important
}

.pr-104,
.px-104 {
	padding-right: 6.5rem !important
}

.pb-104,
.py-104 {
	padding-bottom: 6.5rem !important
}

.pl-104,
.px-104 {
	padding-left: 6.5rem !important
}

.p-105 {
	padding: 6.5625rem !important
}

.pt-105,
.py-105 {
	padding-top: 6.5625rem !important
}

.pr-105,
.px-105 {
	padding-right: 6.5625rem !important
}

.pb-105,
.py-105 {
	padding-bottom: 6.5625rem !important
}

.pl-105,
.px-105 {
	padding-left: 6.5625rem !important
}

.p-106 {
	padding: 6.625rem !important
}

.pt-106,
.py-106 {
	padding-top: 6.625rem !important
}

.pr-106,
.px-106 {
	padding-right: 6.625rem !important
}

.pb-106,
.py-106 {
	padding-bottom: 6.625rem !important
}

.pl-106,
.px-106 {
	padding-left: 6.625rem !important
}

.p-107 {
	padding: 6.6875rem !important
}

.pt-107,
.py-107 {
	padding-top: 6.6875rem !important
}

.pr-107,
.px-107 {
	padding-right: 6.6875rem !important
}

.pb-107,
.py-107 {
	padding-bottom: 6.6875rem !important
}

.pl-107,
.px-107 {
	padding-left: 6.6875rem !important
}

.p-108 {
	padding: 6.75rem !important
}

.pt-108,
.py-108 {
	padding-top: 6.75rem !important
}

.pr-108,
.px-108 {
	padding-right: 6.75rem !important
}

.pb-108,
.py-108 {
	padding-bottom: 6.75rem !important
}

.pl-108,
.px-108 {
	padding-left: 6.75rem !important
}

.p-109 {
	padding: 6.8125rem !important
}

.pt-109,
.py-109 {
	padding-top: 6.8125rem !important
}

.pr-109,
.px-109 {
	padding-right: 6.8125rem !important
}

.pb-109,
.py-109 {
	padding-bottom: 6.8125rem !important
}

.pl-109,
.px-109 {
	padding-left: 6.8125rem !important
}

.p-110 {
	padding: 6.875rem !important
}

.pt-110,
.py-110 {
	padding-top: 6.875rem !important
}

.pr-110,
.px-110 {
	padding-right: 6.875rem !important
}

.pb-110,
.py-110 {
	padding-bottom: 6.875rem !important
}

.pl-110,
.px-110 {
	padding-left: 6.875rem !important
}

.p-111 {
	padding: 6.9375rem !important
}

.pt-111,
.py-111 {
	padding-top: 6.9375rem !important
}

.pr-111,
.px-111 {
	padding-right: 6.9375rem !important
}

.pb-111,
.py-111 {
	padding-bottom: 6.9375rem !important
}

.pl-111,
.px-111 {
	padding-left: 6.9375rem !important
}

.p-112 {
	padding: 7rem !important
}

.pt-112,
.py-112 {
	padding-top: 7rem !important
}

.pr-112,
.px-112 {
	padding-right: 7rem !important
}

.pb-112,
.py-112 {
	padding-bottom: 7rem !important
}

.pl-112,
.px-112 {
	padding-left: 7rem !important
}

.p-113 {
	padding: 7.0625rem !important
}

.pt-113,
.py-113 {
	padding-top: 7.0625rem !important
}

.pr-113,
.px-113 {
	padding-right: 7.0625rem !important
}

.pb-113,
.py-113 {
	padding-bottom: 7.0625rem !important
}

.pl-113,
.px-113 {
	padding-left: 7.0625rem !important
}

.p-114 {
	padding: 7.125rem !important
}

.pt-114,
.py-114 {
	padding-top: 7.125rem !important
}

.pr-114,
.px-114 {
	padding-right: 7.125rem !important
}

.pb-114,
.py-114 {
	padding-bottom: 7.125rem !important
}

.pl-114,
.px-114 {
	padding-left: 7.125rem !important
}

.p-115 {
	padding: 7.1875rem !important
}

.pt-115,
.py-115 {
	padding-top: 7.1875rem !important
}

.pr-115,
.px-115 {
	padding-right: 7.1875rem !important
}

.pb-115,
.py-115 {
	padding-bottom: 7.1875rem !important
}

.pl-115,
.px-115 {
	padding-left: 7.1875rem !important
}

.p-116 {
	padding: 7.25rem !important
}

.pt-116,
.py-116 {
	padding-top: 7.25rem !important
}

.pr-116,
.px-116 {
	padding-right: 7.25rem !important
}

.pb-116,
.py-116 {
	padding-bottom: 7.25rem !important
}

.pl-116,
.px-116 {
	padding-left: 7.25rem !important
}

.p-117 {
	padding: 7.3125rem !important
}

.pt-117,
.py-117 {
	padding-top: 7.3125rem !important
}

.pr-117,
.px-117 {
	padding-right: 7.3125rem !important
}

.pb-117,
.py-117 {
	padding-bottom: 7.3125rem !important
}

.pl-117,
.px-117 {
	padding-left: 7.3125rem !important
}

.p-118 {
	padding: 7.375rem !important
}

.pt-118,
.py-118 {
	padding-top: 7.375rem !important
}

.pr-118,
.px-118 {
	padding-right: 7.375rem !important
}

.pb-118,
.py-118 {
	padding-bottom: 7.375rem !important
}

.pl-118,
.px-118 {
	padding-left: 7.375rem !important
}

.p-119 {
	padding: 7.4375rem !important
}

.pt-119,
.py-119 {
	padding-top: 7.4375rem !important
}

.pr-119,
.px-119 {
	padding-right: 7.4375rem !important
}

.pb-119,
.py-119 {
	padding-bottom: 7.4375rem !important
}

.pl-119,
.px-119 {
	padding-left: 7.4375rem !important
}

.p-120 {
	padding: 7.5rem !important
}

.pt-120,
.py-120 {
	padding-top: 7.5rem !important
}

.pr-120,
.px-120 {
	padding-right: 7.5rem !important
}

.pb-120,
.py-120 {
	padding-bottom: 7.5rem !important
}

.pl-120,
.px-120 {
	padding-left: 7.5rem !important
}

.p-121 {
	padding: 7.5625rem !important
}

.pt-121,
.py-121 {
	padding-top: 7.5625rem !important
}

.pr-121,
.px-121 {
	padding-right: 7.5625rem !important
}

.pb-121,
.py-121 {
	padding-bottom: 7.5625rem !important
}

.pl-121,
.px-121 {
	padding-left: 7.5625rem !important
}

.p-122 {
	padding: 7.625rem !important
}

.pt-122,
.py-122 {
	padding-top: 7.625rem !important
}

.pr-122,
.px-122 {
	padding-right: 7.625rem !important
}

.pb-122,
.py-122 {
	padding-bottom: 7.625rem !important
}

.pl-122,
.px-122 {
	padding-left: 7.625rem !important
}

.p-123 {
	padding: 7.6875rem !important
}

.pt-123,
.py-123 {
	padding-top: 7.6875rem !important
}

.pr-123,
.px-123 {
	padding-right: 7.6875rem !important
}

.pb-123,
.py-123 {
	padding-bottom: 7.6875rem !important
}

.pl-123,
.px-123 {
	padding-left: 7.6875rem !important
}

.p-124 {
	padding: 7.75rem !important
}

.pt-124,
.py-124 {
	padding-top: 7.75rem !important
}

.pr-124,
.px-124 {
	padding-right: 7.75rem !important
}

.pb-124,
.py-124 {
	padding-bottom: 7.75rem !important
}

.pl-124,
.px-124 {
	padding-left: 7.75rem !important
}

.p-125 {
	padding: 7.8125rem !important
}

.pt-125,
.py-125 {
	padding-top: 7.8125rem !important
}

.pr-125,
.px-125 {
	padding-right: 7.8125rem !important
}

.pb-125,
.py-125 {
	padding-bottom: 7.8125rem !important
}

.pl-125,
.px-125 {
	padding-left: 7.8125rem !important
}

.p-126 {
	padding: 7.875rem !important
}

.pt-126,
.py-126 {
	padding-top: 7.875rem !important
}

.pr-126,
.px-126 {
	padding-right: 7.875rem !important
}

.pb-126,
.py-126 {
	padding-bottom: 7.875rem !important
}

.pl-126,
.px-126 {
	padding-left: 7.875rem !important
}

.p-127 {
	padding: 7.9375rem !important
}

.pt-127,
.py-127 {
	padding-top: 7.9375rem !important
}

.pr-127,
.px-127 {
	padding-right: 7.9375rem !important
}

.pb-127,
.py-127 {
	padding-bottom: 7.9375rem !important
}

.pl-127,
.px-127 {
	padding-left: 7.9375rem !important
}

.p-128 {
	padding: 8rem !important
}

.pt-128,
.py-128 {
	padding-top: 8rem !important
}

.pr-128,
.px-128 {
	padding-right: 8rem !important
}

.pb-128,
.py-128 {
	padding-bottom: 8rem !important
}

.pl-128,
.px-128 {
	padding-left: 8rem !important
}

.p-129 {
	padding: 8.0625rem !important
}

.pt-129,
.py-129 {
	padding-top: 8.0625rem !important
}

.pr-129,
.px-129 {
	padding-right: 8.0625rem !important
}

.pb-129,
.py-129 {
	padding-bottom: 8.0625rem !important
}

.pl-129,
.px-129 {
	padding-left: 8.0625rem !important
}

.p-130 {
	padding: 8.125rem !important
}

.pt-130,
.py-130 {
	padding-top: 8.125rem !important
}

.pr-130,
.px-130 {
	padding-right: 8.125rem !important
}

.pb-130,
.py-130 {
	padding-bottom: 8.125rem !important
}

.pl-130,
.px-130 {
	padding-left: 8.125rem !important
}

.p-131 {
	padding: 8.1875rem !important
}

.pt-131,
.py-131 {
	padding-top: 8.1875rem !important
}

.pr-131,
.px-131 {
	padding-right: 8.1875rem !important
}

.pb-131,
.py-131 {
	padding-bottom: 8.1875rem !important
}

.pl-131,
.px-131 {
	padding-left: 8.1875rem !important
}

.p-132 {
	padding: 8.25rem !important
}

.pt-132,
.py-132 {
	padding-top: 8.25rem !important
}

.pr-132,
.px-132 {
	padding-right: 8.25rem !important
}

.pb-132,
.py-132 {
	padding-bottom: 8.25rem !important
}

.pl-132,
.px-132 {
	padding-left: 8.25rem !important
}

.p-133 {
	padding: 8.3125rem !important
}

.pt-133,
.py-133 {
	padding-top: 8.3125rem !important
}

.pr-133,
.px-133 {
	padding-right: 8.3125rem !important
}

.pb-133,
.py-133 {
	padding-bottom: 8.3125rem !important
}

.pl-133,
.px-133 {
	padding-left: 8.3125rem !important
}

.p-134 {
	padding: 8.375rem !important
}

.pt-134,
.py-134 {
	padding-top: 8.375rem !important
}

.pr-134,
.px-134 {
	padding-right: 8.375rem !important
}

.pb-134,
.py-134 {
	padding-bottom: 8.375rem !important
}

.pl-134,
.px-134 {
	padding-left: 8.375rem !important
}

.p-135 {
	padding: 8.4375rem !important
}

.pt-135,
.py-135 {
	padding-top: 8.4375rem !important
}

.pr-135,
.px-135 {
	padding-right: 8.4375rem !important
}

.pb-135,
.py-135 {
	padding-bottom: 8.4375rem !important
}

.pl-135,
.px-135 {
	padding-left: 8.4375rem !important
}

.p-136 {
	padding: 8.5rem !important
}

.pt-136,
.py-136 {
	padding-top: 8.5rem !important
}

.pr-136,
.px-136 {
	padding-right: 8.5rem !important
}

.pb-136,
.py-136 {
	padding-bottom: 8.5rem !important
}

.pl-136,
.px-136 {
	padding-left: 8.5rem !important
}

.p-137 {
	padding: 8.5625rem !important
}

.pt-137,
.py-137 {
	padding-top: 8.5625rem !important
}

.pr-137,
.px-137 {
	padding-right: 8.5625rem !important
}

.pb-137,
.py-137 {
	padding-bottom: 8.5625rem !important
}

.pl-137,
.px-137 {
	padding-left: 8.5625rem !important
}

.p-138 {
	padding: 8.625rem !important
}

.pt-138,
.py-138 {
	padding-top: 8.625rem !important
}

.pr-138,
.px-138 {
	padding-right: 8.625rem !important
}

.pb-138,
.py-138 {
	padding-bottom: 8.625rem !important
}

.pl-138,
.px-138 {
	padding-left: 8.625rem !important
}

.p-139 {
	padding: 8.6875rem !important
}

.pt-139,
.py-139 {
	padding-top: 8.6875rem !important
}

.pr-139,
.px-139 {
	padding-right: 8.6875rem !important
}

.pb-139,
.py-139 {
	padding-bottom: 8.6875rem !important
}

.pl-139,
.px-139 {
	padding-left: 8.6875rem !important
}

.p-140 {
	padding: 8.75rem !important
}

.pt-140,
.py-140 {
	padding-top: 8.75rem !important
}

.pr-140,
.px-140 {
	padding-right: 8.75rem !important
}

.pb-140,
.py-140 {
	padding-bottom: 8.75rem !important
}

.pl-140,
.px-140 {
	padding-left: 8.75rem !important
}

.p-141 {
	padding: 8.8125rem !important
}

.pt-141,
.py-141 {
	padding-top: 8.8125rem !important
}

.pr-141,
.px-141 {
	padding-right: 8.8125rem !important
}

.pb-141,
.py-141 {
	padding-bottom: 8.8125rem !important
}

.pl-141,
.px-141 {
	padding-left: 8.8125rem !important
}

.p-142 {
	padding: 8.875rem !important
}

.pt-142,
.py-142 {
	padding-top: 8.875rem !important
}

.pr-142,
.px-142 {
	padding-right: 8.875rem !important
}

.pb-142,
.py-142 {
	padding-bottom: 8.875rem !important
}

.pl-142,
.px-142 {
	padding-left: 8.875rem !important
}

.p-143 {
	padding: 8.9375rem !important
}

.pt-143,
.py-143 {
	padding-top: 8.9375rem !important
}

.pr-143,
.px-143 {
	padding-right: 8.9375rem !important
}

.pb-143,
.py-143 {
	padding-bottom: 8.9375rem !important
}

.pl-143,
.px-143 {
	padding-left: 8.9375rem !important
}

.p-144 {
	padding: 9rem !important
}

.pt-144,
.py-144 {
	padding-top: 9rem !important
}

.pr-144,
.px-144 {
	padding-right: 9rem !important
}

.pb-144,
.py-144 {
	padding-bottom: 9rem !important
}

.pl-144,
.px-144 {
	padding-left: 9rem !important
}

.p-145 {
	padding: 9.0625rem !important
}

.pt-145,
.py-145 {
	padding-top: 9.0625rem !important
}

.pr-145,
.px-145 {
	padding-right: 9.0625rem !important
}

.pb-145,
.py-145 {
	padding-bottom: 9.0625rem !important
}

.pl-145,
.px-145 {
	padding-left: 9.0625rem !important
}

.p-146 {
	padding: 9.125rem !important
}

.pt-146,
.py-146 {
	padding-top: 9.125rem !important
}

.pr-146,
.px-146 {
	padding-right: 9.125rem !important
}

.pb-146,
.py-146 {
	padding-bottom: 9.125rem !important
}

.pl-146,
.px-146 {
	padding-left: 9.125rem !important
}

.p-147 {
	padding: 9.1875rem !important
}

.pt-147,
.py-147 {
	padding-top: 9.1875rem !important
}

.pr-147,
.px-147 {
	padding-right: 9.1875rem !important
}

.pb-147,
.py-147 {
	padding-bottom: 9.1875rem !important
}

.pl-147,
.px-147 {
	padding-left: 9.1875rem !important
}

.p-148 {
	padding: 9.25rem !important
}

.pt-148,
.py-148 {
	padding-top: 9.25rem !important
}

.pr-148,
.px-148 {
	padding-right: 9.25rem !important
}

.pb-148,
.py-148 {
	padding-bottom: 9.25rem !important
}

.pl-148,
.px-148 {
	padding-left: 9.25rem !important
}

.p-149 {
	padding: 9.3125rem !important
}

.pt-149,
.py-149 {
	padding-top: 9.3125rem !important
}

.pr-149,
.px-149 {
	padding-right: 9.3125rem !important
}

.pb-149,
.py-149 {
	padding-bottom: 9.3125rem !important
}

.pl-149,
.px-149 {
	padding-left: 9.3125rem !important
}

.p-150 {
	padding: 9.375rem !important
}

.pt-150,
.py-150 {
	padding-top: 9.375rem !important
}

.pr-150,
.px-150 {
	padding-right: 9.375rem !important
}

.pb-150,
.py-150 {
	padding-bottom: 9.375rem !important
}

.pl-150,
.px-150 {
	padding-left: 9.375rem !important
}

.p-151 {
	padding: 9.4375rem !important
}

.pt-151,
.py-151 {
	padding-top: 9.4375rem !important
}

.pr-151,
.px-151 {
	padding-right: 9.4375rem !important
}

.pb-151,
.py-151 {
	padding-bottom: 9.4375rem !important
}

.pl-151,
.px-151 {
	padding-left: 9.4375rem !important
}

.p-152 {
	padding: 9.5rem !important
}

.pt-152,
.py-152 {
	padding-top: 9.5rem !important
}

.pr-152,
.px-152 {
	padding-right: 9.5rem !important
}

.pb-152,
.py-152 {
	padding-bottom: 9.5rem !important
}

.pl-152,
.px-152 {
	padding-left: 9.5rem !important
}

.p-153 {
	padding: 9.5625rem !important
}

.pt-153,
.py-153 {
	padding-top: 9.5625rem !important
}

.pr-153,
.px-153 {
	padding-right: 9.5625rem !important
}

.pb-153,
.py-153 {
	padding-bottom: 9.5625rem !important
}

.pl-153,
.px-153 {
	padding-left: 9.5625rem !important
}

.p-154 {
	padding: 9.625rem !important
}

.pt-154,
.py-154 {
	padding-top: 9.625rem !important
}

.pr-154,
.px-154 {
	padding-right: 9.625rem !important
}

.pb-154,
.py-154 {
	padding-bottom: 9.625rem !important
}

.pl-154,
.px-154 {
	padding-left: 9.625rem !important
}

.p-155 {
	padding: 9.6875rem !important
}

.pt-155,
.py-155 {
	padding-top: 9.6875rem !important
}

.pr-155,
.px-155 {
	padding-right: 9.6875rem !important
}

.pb-155,
.py-155 {
	padding-bottom: 9.6875rem !important
}

.pl-155,
.px-155 {
	padding-left: 9.6875rem !important
}

.p-156 {
	padding: 9.75rem !important
}

.pt-156,
.py-156 {
	padding-top: 9.75rem !important
}

.pr-156,
.px-156 {
	padding-right: 9.75rem !important
}

.pb-156,
.py-156 {
	padding-bottom: 9.75rem !important
}

.pl-156,
.px-156 {
	padding-left: 9.75rem !important
}

.p-157 {
	padding: 9.8125rem !important
}

.pt-157,
.py-157 {
	padding-top: 9.8125rem !important
}

.pr-157,
.px-157 {
	padding-right: 9.8125rem !important
}

.pb-157,
.py-157 {
	padding-bottom: 9.8125rem !important
}

.pl-157,
.px-157 {
	padding-left: 9.8125rem !important
}

.p-158 {
	padding: 9.875rem !important
}

.pt-158,
.py-158 {
	padding-top: 9.875rem !important
}

.pr-158,
.px-158 {
	padding-right: 9.875rem !important
}

.pb-158,
.py-158 {
	padding-bottom: 9.875rem !important
}

.pl-158,
.px-158 {
	padding-left: 9.875rem !important
}

.p-159 {
	padding: 9.9375rem !important
}

.pt-159,
.py-159 {
	padding-top: 9.9375rem !important
}

.pr-159,
.px-159 {
	padding-right: 9.9375rem !important
}

.pb-159,
.py-159 {
	padding-bottom: 9.9375rem !important
}

.pl-159,
.px-159 {
	padding-left: 9.9375rem !important
}

.p-160 {
	padding: 10rem !important
}

.pt-160,
.py-160 {
	padding-top: 10rem !important
}

.pr-160,
.px-160 {
	padding-right: 10rem !important
}

.pb-160,
.py-160 {
	padding-bottom: 10rem !important
}

.pl-160,
.px-160 {
	padding-left: 10rem !important
}

.p-161 {
	padding: 10.0625rem !important
}

.pt-161,
.py-161 {
	padding-top: 10.0625rem !important
}

.pr-161,
.px-161 {
	padding-right: 10.0625rem !important
}

.pb-161,
.py-161 {
	padding-bottom: 10.0625rem !important
}

.pl-161,
.px-161 {
	padding-left: 10.0625rem !important
}

.p-162 {
	padding: 10.125rem !important
}

.pt-162,
.py-162 {
	padding-top: 10.125rem !important
}

.pr-162,
.px-162 {
	padding-right: 10.125rem !important
}

.pb-162,
.py-162 {
	padding-bottom: 10.125rem !important
}

.pl-162,
.px-162 {
	padding-left: 10.125rem !important
}

.p-163 {
	padding: 10.1875rem !important
}

.pt-163,
.py-163 {
	padding-top: 10.1875rem !important
}

.pr-163,
.px-163 {
	padding-right: 10.1875rem !important
}

.pb-163,
.py-163 {
	padding-bottom: 10.1875rem !important
}

.pl-163,
.px-163 {
	padding-left: 10.1875rem !important
}

.p-164 {
	padding: 10.25rem !important
}

.pt-164,
.py-164 {
	padding-top: 10.25rem !important
}

.pr-164,
.px-164 {
	padding-right: 10.25rem !important
}

.pb-164,
.py-164 {
	padding-bottom: 10.25rem !important
}

.pl-164,
.px-164 {
	padding-left: 10.25rem !important
}

.p-165 {
	padding: 10.3125rem !important
}

.pt-165,
.py-165 {
	padding-top: 10.3125rem !important
}

.pr-165,
.px-165 {
	padding-right: 10.3125rem !important
}

.pb-165,
.py-165 {
	padding-bottom: 10.3125rem !important
}

.pl-165,
.px-165 {
	padding-left: 10.3125rem !important
}

.p-166 {
	padding: 10.375rem !important
}

.pt-166,
.py-166 {
	padding-top: 10.375rem !important
}

.pr-166,
.px-166 {
	padding-right: 10.375rem !important
}

.pb-166,
.py-166 {
	padding-bottom: 10.375rem !important
}

.pl-166,
.px-166 {
	padding-left: 10.375rem !important
}

.p-167 {
	padding: 10.4375rem !important
}

.pt-167,
.py-167 {
	padding-top: 10.4375rem !important
}

.pr-167,
.px-167 {
	padding-right: 10.4375rem !important
}

.pb-167,
.py-167 {
	padding-bottom: 10.4375rem !important
}

.pl-167,
.px-167 {
	padding-left: 10.4375rem !important
}

.p-168 {
	padding: 10.5rem !important
}

.pt-168,
.py-168 {
	padding-top: 10.5rem !important
}

.pr-168,
.px-168 {
	padding-right: 10.5rem !important
}

.pb-168,
.py-168 {
	padding-bottom: 10.5rem !important
}

.pl-168,
.px-168 {
	padding-left: 10.5rem !important
}

.p-169 {
	padding: 10.5625rem !important
}

.pt-169,
.py-169 {
	padding-top: 10.5625rem !important
}

.pr-169,
.px-169 {
	padding-right: 10.5625rem !important
}

.pb-169,
.py-169 {
	padding-bottom: 10.5625rem !important
}

.pl-169,
.px-169 {
	padding-left: 10.5625rem !important
}

.p-170 {
	padding: 10.625rem !important
}

.pt-170,
.py-170 {
	padding-top: 10.625rem !important
}

.pr-170,
.px-170 {
	padding-right: 10.625rem !important
}

.pb-170,
.py-170 {
	padding-bottom: 10.625rem !important
}

.pl-170,
.px-170 {
	padding-left: 10.625rem !important
}

.p-171 {
	padding: 10.6875rem !important
}

.pt-171,
.py-171 {
	padding-top: 10.6875rem !important
}

.pr-171,
.px-171 {
	padding-right: 10.6875rem !important
}

.pb-171,
.py-171 {
	padding-bottom: 10.6875rem !important
}

.pl-171,
.px-171 {
	padding-left: 10.6875rem !important
}

.p-172 {
	padding: 10.75rem !important
}

.pt-172,
.py-172 {
	padding-top: 10.75rem !important
}

.pr-172,
.px-172 {
	padding-right: 10.75rem !important
}

.pb-172,
.py-172 {
	padding-bottom: 10.75rem !important
}

.pl-172,
.px-172 {
	padding-left: 10.75rem !important
}

.p-173 {
	padding: 10.8125rem !important
}

.pt-173,
.py-173 {
	padding-top: 10.8125rem !important
}

.pr-173,
.px-173 {
	padding-right: 10.8125rem !important
}

.pb-173,
.py-173 {
	padding-bottom: 10.8125rem !important
}

.pl-173,
.px-173 {
	padding-left: 10.8125rem !important
}

.p-174 {
	padding: 10.875rem !important
}

.pt-174,
.py-174 {
	padding-top: 10.875rem !important
}

.pr-174,
.px-174 {
	padding-right: 10.875rem !important
}

.pb-174,
.py-174 {
	padding-bottom: 10.875rem !important
}

.pl-174,
.px-174 {
	padding-left: 10.875rem !important
}

.p-175 {
	padding: 10.9375rem !important
}

.pt-175,
.py-175 {
	padding-top: 10.9375rem !important
}

.pr-175,
.px-175 {
	padding-right: 10.9375rem !important
}

.pb-175,
.py-175 {
	padding-bottom: 10.9375rem !important
}

.pl-175,
.px-175 {
	padding-left: 10.9375rem !important
}

.p-176 {
	padding: 11rem !important
}

.pt-176,
.py-176 {
	padding-top: 11rem !important
}

.pr-176,
.px-176 {
	padding-right: 11rem !important
}

.pb-176,
.py-176 {
	padding-bottom: 11rem !important
}

.pl-176,
.px-176 {
	padding-left: 11rem !important
}

.p-177 {
	padding: 11.0625rem !important
}

.pt-177,
.py-177 {
	padding-top: 11.0625rem !important
}

.pr-177,
.px-177 {
	padding-right: 11.0625rem !important
}

.pb-177,
.py-177 {
	padding-bottom: 11.0625rem !important
}

.pl-177,
.px-177 {
	padding-left: 11.0625rem !important
}

.p-178 {
	padding: 11.125rem !important
}

.pt-178,
.py-178 {
	padding-top: 11.125rem !important
}

.pr-178,
.px-178 {
	padding-right: 11.125rem !important
}

.pb-178,
.py-178 {
	padding-bottom: 11.125rem !important
}

.pl-178,
.px-178 {
	padding-left: 11.125rem !important
}

.p-179 {
	padding: 11.1875rem !important
}

.pt-179,
.py-179 {
	padding-top: 11.1875rem !important
}

.pr-179,
.px-179 {
	padding-right: 11.1875rem !important
}

.pb-179,
.py-179 {
	padding-bottom: 11.1875rem !important
}

.pl-179,
.px-179 {
	padding-left: 11.1875rem !important
}

.p-180 {
	padding: 11.25rem !important
}

.pt-180,
.py-180 {
	padding-top: 11.25rem !important
}

.pr-180,
.px-180 {
	padding-right: 11.25rem !important
}

.pb-180,
.py-180 {
	padding-bottom: 11.25rem !important
}

.pl-180,
.px-180 {
	padding-left: 11.25rem !important
}

.p-181 {
	padding: 11.3125rem !important
}

.pt-181,
.py-181 {
	padding-top: 11.3125rem !important
}

.pr-181,
.px-181 {
	padding-right: 11.3125rem !important
}

.pb-181,
.py-181 {
	padding-bottom: 11.3125rem !important
}

.pl-181,
.px-181 {
	padding-left: 11.3125rem !important
}

.p-182 {
	padding: 11.375rem !important
}

.pt-182,
.py-182 {
	padding-top: 11.375rem !important
}

.pr-182,
.px-182 {
	padding-right: 11.375rem !important
}

.pb-182,
.py-182 {
	padding-bottom: 11.375rem !important
}

.pl-182,
.px-182 {
	padding-left: 11.375rem !important
}

.p-183 {
	padding: 11.4375rem !important
}

.pt-183,
.py-183 {
	padding-top: 11.4375rem !important
}

.pr-183,
.px-183 {
	padding-right: 11.4375rem !important
}

.pb-183,
.py-183 {
	padding-bottom: 11.4375rem !important
}

.pl-183,
.px-183 {
	padding-left: 11.4375rem !important
}

.p-184 {
	padding: 11.5rem !important
}

.pt-184,
.py-184 {
	padding-top: 11.5rem !important
}

.pr-184,
.px-184 {
	padding-right: 11.5rem !important
}

.pb-184,
.py-184 {
	padding-bottom: 11.5rem !important
}

.pl-184,
.px-184 {
	padding-left: 11.5rem !important
}

.p-185 {
	padding: 11.5625rem !important
}

.pt-185,
.py-185 {
	padding-top: 11.5625rem !important
}

.pr-185,
.px-185 {
	padding-right: 11.5625rem !important
}

.pb-185,
.py-185 {
	padding-bottom: 11.5625rem !important
}

.pl-185,
.px-185 {
	padding-left: 11.5625rem !important
}

.p-186 {
	padding: 11.625rem !important
}

.pt-186,
.py-186 {
	padding-top: 11.625rem !important
}

.pr-186,
.px-186 {
	padding-right: 11.625rem !important
}

.pb-186,
.py-186 {
	padding-bottom: 11.625rem !important
}

.pl-186,
.px-186 {
	padding-left: 11.625rem !important
}

.p-187 {
	padding: 11.6875rem !important
}

.pt-187,
.py-187 {
	padding-top: 11.6875rem !important
}

.pr-187,
.px-187 {
	padding-right: 11.6875rem !important
}

.pb-187,
.py-187 {
	padding-bottom: 11.6875rem !important
}

.pl-187,
.px-187 {
	padding-left: 11.6875rem !important
}

.p-188 {
	padding: 11.75rem !important
}

.pt-188,
.py-188 {
	padding-top: 11.75rem !important
}

.pr-188,
.px-188 {
	padding-right: 11.75rem !important
}

.pb-188,
.py-188 {
	padding-bottom: 11.75rem !important
}

.pl-188,
.px-188 {
	padding-left: 11.75rem !important
}

.p-189 {
	padding: 11.8125rem !important
}

.pt-189,
.py-189 {
	padding-top: 11.8125rem !important
}

.pr-189,
.px-189 {
	padding-right: 11.8125rem !important
}

.pb-189,
.py-189 {
	padding-bottom: 11.8125rem !important
}

.pl-189,
.px-189 {
	padding-left: 11.8125rem !important
}

.p-190 {
	padding: 11.875rem !important
}

.pt-190,
.py-190 {
	padding-top: 11.875rem !important
}

.pr-190,
.px-190 {
	padding-right: 11.875rem !important
}

.pb-190,
.py-190 {
	padding-bottom: 11.875rem !important
}

.pl-190,
.px-190 {
	padding-left: 11.875rem !important
}

.p-191 {
	padding: 11.9375rem !important
}

.pt-191,
.py-191 {
	padding-top: 11.9375rem !important
}

.pr-191,
.px-191 {
	padding-right: 11.9375rem !important
}

.pb-191,
.py-191 {
	padding-bottom: 11.9375rem !important
}

.pl-191,
.px-191 {
	padding-left: 11.9375rem !important
}

.p-192 {
	padding: 12rem !important
}

.pt-192,
.py-192 {
	padding-top: 12rem !important
}

.pr-192,
.px-192 {
	padding-right: 12rem !important
}

.pb-192,
.py-192 {
	padding-bottom: 12rem !important
}

.pl-192,
.px-192 {
	padding-left: 12rem !important
}

.p-193 {
	padding: 12.0625rem !important
}

.pt-193,
.py-193 {
	padding-top: 12.0625rem !important
}

.pr-193,
.px-193 {
	padding-right: 12.0625rem !important
}

.pb-193,
.py-193 {
	padding-bottom: 12.0625rem !important
}

.pl-193,
.px-193 {
	padding-left: 12.0625rem !important
}

.p-194 {
	padding: 12.125rem !important
}

.pt-194,
.py-194 {
	padding-top: 12.125rem !important
}

.pr-194,
.px-194 {
	padding-right: 12.125rem !important
}

.pb-194,
.py-194 {
	padding-bottom: 12.125rem !important
}

.pl-194,
.px-194 {
	padding-left: 12.125rem !important
}

.p-195 {
	padding: 12.1875rem !important
}

.pt-195,
.py-195 {
	padding-top: 12.1875rem !important
}

.pr-195,
.px-195 {
	padding-right: 12.1875rem !important
}

.pb-195,
.py-195 {
	padding-bottom: 12.1875rem !important
}

.pl-195,
.px-195 {
	padding-left: 12.1875rem !important
}

.p-196 {
	padding: 12.25rem !important
}

.pt-196,
.py-196 {
	padding-top: 12.25rem !important
}

.pr-196,
.px-196 {
	padding-right: 12.25rem !important
}

.pb-196,
.py-196 {
	padding-bottom: 12.25rem !important
}

.pl-196,
.px-196 {
	padding-left: 12.25rem !important
}

.p-197 {
	padding: 12.3125rem !important
}

.pt-197,
.py-197 {
	padding-top: 12.3125rem !important
}

.pr-197,
.px-197 {
	padding-right: 12.3125rem !important
}

.pb-197,
.py-197 {
	padding-bottom: 12.3125rem !important
}

.pl-197,
.px-197 {
	padding-left: 12.3125rem !important
}

.p-198 {
	padding: 12.375rem !important
}

.pt-198,
.py-198 {
	padding-top: 12.375rem !important
}

.pr-198,
.px-198 {
	padding-right: 12.375rem !important
}

.pb-198,
.py-198 {
	padding-bottom: 12.375rem !important
}

.pl-198,
.px-198 {
	padding-left: 12.375rem !important
}

.p-199 {
	padding: 12.4375rem !important
}

.pt-199,
.py-199 {
	padding-top: 12.4375rem !important
}

.pr-199,
.px-199 {
	padding-right: 12.4375rem !important
}

.pb-199,
.py-199 {
	padding-bottom: 12.4375rem !important
}

.pl-199,
.px-199 {
	padding-left: 12.4375rem !important
}

.p-200 {
	padding: 12.5rem !important
}

.pt-200,
.py-200 {
	padding-top: 12.5rem !important
}

.pr-200,
.px-200 {
	padding-right: 12.5rem !important
}

.pb-200,
.py-200 {
	padding-bottom: 12.5rem !important
}

.pl-200,
.px-200 {
	padding-left: 12.5rem !important
}

.p-auto {
	padding: auto !important
}

.pt-auto,
.py-auto {
	padding-top: auto !important
}

.pr-auto,
.px-auto {
	padding-right: auto !important
}

.pb-auto,
.py-auto {
	padding-bottom: auto !important
}

.pl-auto,
.px-auto {
	padding-left: auto !important
}

.m-auto {
	margin: auto !important
}

.mt-auto,
.my-auto {
	margin-top: auto !important
}

.mr-auto,
.mx-auto {
	margin-right: auto !important
}

.mb-auto,
.my-auto {
	margin-bottom: auto !important
}

.ml-auto,
.mx-auto {
	margin-left: auto !important
}

@media (min-width:576px) {
	.m-sm-0 {
		margin: 0 !important
	}

	.mt-sm-0,
	.my-sm-0 {
		margin-top: 0 !important
	}

	.mr-sm-0,
	.mx-sm-0 {
		margin-right: 0 !important
	}

	.mb-sm-0,
	.my-sm-0 {
		margin-bottom: 0 !important
	}

	.ml-sm-0,
	.mx-sm-0 {
		margin-left: 0 !important
	}

	.m-sm-1 {
		margin: .0625rem !important
	}

	.mt-sm-1,
	.my-sm-1 {
		margin-top: .0625rem !important
	}

	.mr-sm-1,
	.mx-sm-1 {
		margin-right: .0625rem !important
	}

	.mb-sm-1,
	.my-sm-1 {
		margin-bottom: .0625rem !important
	}

	.ml-sm-1,
	.mx-sm-1 {
		margin-left: .0625rem !important
	}

	.m-sm-2 {
		margin: .125rem !important
	}

	.mt-sm-2,
	.my-sm-2 {
		margin-top: .125rem !important
	}

	.mr-sm-2,
	.mx-sm-2 {
		margin-right: .125rem !important
	}

	.mb-sm-2,
	.my-sm-2 {
		margin-bottom: .125rem !important
	}

	.ml-sm-2,
	.mx-sm-2 {
		margin-left: .125rem !important
	}

	.m-sm-3 {
		margin: .1875rem !important
	}

	.mt-sm-3,
	.my-sm-3 {
		margin-top: .1875rem !important
	}

	.mr-sm-3,
	.mx-sm-3 {
		margin-right: .1875rem !important
	}

	.mb-sm-3,
	.my-sm-3 {
		margin-bottom: .1875rem !important
	}

	.ml-sm-3,
	.mx-sm-3 {
		margin-left: .1875rem !important
	}

	.m-sm-4 {
		margin: .25rem !important
	}

	.mt-sm-4,
	.my-sm-4 {
		margin-top: .25rem !important
	}

	.mr-sm-4,
	.mx-sm-4 {
		margin-right: .25rem !important
	}

	.mb-sm-4,
	.my-sm-4 {
		margin-bottom: .25rem !important
	}

	.ml-sm-4,
	.mx-sm-4 {
		margin-left: .25rem !important
	}

	.m-sm-5 {
		margin: .3125rem !important
	}

	.mt-sm-5,
	.my-sm-5 {
		margin-top: .3125rem !important
	}

	.mr-sm-5,
	.mx-sm-5 {
		margin-right: .3125rem !important
	}

	.mb-sm-5,
	.my-sm-5 {
		margin-bottom: .3125rem !important
	}

	.ml-sm-5,
	.mx-sm-5 {
		margin-left: .3125rem !important
	}

	.m-sm-6 {
		margin: .375rem !important
	}

	.mt-sm-6,
	.my-sm-6 {
		margin-top: .375rem !important
	}

	.mr-sm-6,
	.mx-sm-6 {
		margin-right: .375rem !important
	}

	.mb-sm-6,
	.my-sm-6 {
		margin-bottom: .375rem !important
	}

	.ml-sm-6,
	.mx-sm-6 {
		margin-left: .375rem !important
	}

	.m-sm-7 {
		margin: .4375rem !important
	}

	.mt-sm-7,
	.my-sm-7 {
		margin-top: .4375rem !important
	}

	.mr-sm-7,
	.mx-sm-7 {
		margin-right: .4375rem !important
	}

	.mb-sm-7,
	.my-sm-7 {
		margin-bottom: .4375rem !important
	}

	.ml-sm-7,
	.mx-sm-7 {
		margin-left: .4375rem !important
	}

	.m-sm-8 {
		margin: .5rem !important
	}

	.mt-sm-8,
	.my-sm-8 {
		margin-top: .5rem !important
	}

	.mr-sm-8,
	.mx-sm-8 {
		margin-right: .5rem !important
	}

	.mb-sm-8,
	.my-sm-8 {
		margin-bottom: .5rem !important
	}

	.ml-sm-8,
	.mx-sm-8 {
		margin-left: .5rem !important
	}

	.m-sm-9 {
		margin: .5625rem !important
	}

	.mt-sm-9,
	.my-sm-9 {
		margin-top: .5625rem !important
	}

	.mr-sm-9,
	.mx-sm-9 {
		margin-right: .5625rem !important
	}

	.mb-sm-9,
	.my-sm-9 {
		margin-bottom: .5625rem !important
	}

	.ml-sm-9,
	.mx-sm-9 {
		margin-left: .5625rem !important
	}

	.m-sm-10 {
		margin: .625rem !important
	}

	.mt-sm-10,
	.my-sm-10 {
		margin-top: .625rem !important
	}

	.mr-sm-10,
	.mx-sm-10 {
		margin-right: .625rem !important
	}

	.mb-sm-10,
	.my-sm-10 {
		margin-bottom: .625rem !important
	}

	.ml-sm-10,
	.mx-sm-10 {
		margin-left: .625rem !important
	}

	.m-sm-11 {
		margin: .6875rem !important
	}

	.mt-sm-11,
	.my-sm-11 {
		margin-top: .6875rem !important
	}

	.mr-sm-11,
	.mx-sm-11 {
		margin-right: .6875rem !important
	}

	.mb-sm-11,
	.my-sm-11 {
		margin-bottom: .6875rem !important
	}

	.ml-sm-11,
	.mx-sm-11 {
		margin-left: .6875rem !important
	}

	.m-sm-12 {
		margin: .75rem !important
	}

	.mt-sm-12,
	.my-sm-12 {
		margin-top: .75rem !important
	}

	.mr-sm-12,
	.mx-sm-12 {
		margin-right: .75rem !important
	}

	.mb-sm-12,
	.my-sm-12 {
		margin-bottom: .75rem !important
	}

	.ml-sm-12,
	.mx-sm-12 {
		margin-left: .75rem !important
	}

	.m-sm-13 {
		margin: .8125rem !important
	}

	.mt-sm-13,
	.my-sm-13 {
		margin-top: .8125rem !important
	}

	.mr-sm-13,
	.mx-sm-13 {
		margin-right: .8125rem !important
	}

	.mb-sm-13,
	.my-sm-13 {
		margin-bottom: .8125rem !important
	}

	.ml-sm-13,
	.mx-sm-13 {
		margin-left: .8125rem !important
	}

	.m-sm-14 {
		margin: .875rem !important
	}

	.mt-sm-14,
	.my-sm-14 {
		margin-top: .875rem !important
	}

	.mr-sm-14,
	.mx-sm-14 {
		margin-right: .875rem !important
	}

	.mb-sm-14,
	.my-sm-14 {
		margin-bottom: .875rem !important
	}

	.ml-sm-14,
	.mx-sm-14 {
		margin-left: .875rem !important
	}

	.m-sm-15 {
		margin: .9375rem !important
	}

	.mt-sm-15,
	.my-sm-15 {
		margin-top: .9375rem !important
	}

	.mr-sm-15,
	.mx-sm-15 {
		margin-right: .9375rem !important
	}

	.mb-sm-15,
	.my-sm-15 {
		margin-bottom: .9375rem !important
	}

	.ml-sm-15,
	.mx-sm-15 {
		margin-left: .9375rem !important
	}

	.m-sm-16 {
		margin: 1rem !important
	}

	.mt-sm-16,
	.my-sm-16 {
		margin-top: 1rem !important
	}

	.mr-sm-16,
	.mx-sm-16 {
		margin-right: 1rem !important
	}

	.mb-sm-16,
	.my-sm-16 {
		margin-bottom: 1rem !important
	}

	.ml-sm-16,
	.mx-sm-16 {
		margin-left: 1rem !important
	}

	.m-sm-17 {
		margin: 1.0625rem !important
	}

	.mt-sm-17,
	.my-sm-17 {
		margin-top: 1.0625rem !important
	}

	.mr-sm-17,
	.mx-sm-17 {
		margin-right: 1.0625rem !important
	}

	.mb-sm-17,
	.my-sm-17 {
		margin-bottom: 1.0625rem !important
	}

	.ml-sm-17,
	.mx-sm-17 {
		margin-left: 1.0625rem !important
	}

	.m-sm-18 {
		margin: 1.125rem !important
	}

	.mt-sm-18,
	.my-sm-18 {
		margin-top: 1.125rem !important
	}

	.mr-sm-18,
	.mx-sm-18 {
		margin-right: 1.125rem !important
	}

	.mb-sm-18,
	.my-sm-18 {
		margin-bottom: 1.125rem !important
	}

	.ml-sm-18,
	.mx-sm-18 {
		margin-left: 1.125rem !important
	}

	.m-sm-19 {
		margin: 1.1875rem !important
	}

	.mt-sm-19,
	.my-sm-19 {
		margin-top: 1.1875rem !important
	}

	.mr-sm-19,
	.mx-sm-19 {
		margin-right: 1.1875rem !important
	}

	.mb-sm-19,
	.my-sm-19 {
		margin-bottom: 1.1875rem !important
	}

	.ml-sm-19,
	.mx-sm-19 {
		margin-left: 1.1875rem !important
	}

	.m-sm-20 {
		margin: 1.25rem !important
	}

	.mt-sm-20,
	.my-sm-20 {
		margin-top: 1.25rem !important
	}

	.mr-sm-20,
	.mx-sm-20 {
		margin-right: 1.25rem !important
	}

	.mb-sm-20,
	.my-sm-20 {
		margin-bottom: 1.25rem !important
	}

	.ml-sm-20,
	.mx-sm-20 {
		margin-left: 1.25rem !important
	}

	.m-sm-21 {
		margin: 1.3125rem !important
	}

	.mt-sm-21,
	.my-sm-21 {
		margin-top: 1.3125rem !important
	}

	.mr-sm-21,
	.mx-sm-21 {
		margin-right: 1.3125rem !important
	}

	.mb-sm-21,
	.my-sm-21 {
		margin-bottom: 1.3125rem !important
	}

	.ml-sm-21,
	.mx-sm-21 {
		margin-left: 1.3125rem !important
	}

	.m-sm-22 {
		margin: 1.375rem !important
	}

	.mt-sm-22,
	.my-sm-22 {
		margin-top: 1.375rem !important
	}

	.mr-sm-22,
	.mx-sm-22 {
		margin-right: 1.375rem !important
	}

	.mb-sm-22,
	.my-sm-22 {
		margin-bottom: 1.375rem !important
	}

	.ml-sm-22,
	.mx-sm-22 {
		margin-left: 1.375rem !important
	}

	.m-sm-23 {
		margin: 1.4375rem !important
	}

	.mt-sm-23,
	.my-sm-23 {
		margin-top: 1.4375rem !important
	}

	.mr-sm-23,
	.mx-sm-23 {
		margin-right: 1.4375rem !important
	}

	.mb-sm-23,
	.my-sm-23 {
		margin-bottom: 1.4375rem !important
	}

	.ml-sm-23,
	.mx-sm-23 {
		margin-left: 1.4375rem !important
	}

	.m-sm-24 {
		margin: 1.5rem !important
	}

	.mt-sm-24,
	.my-sm-24 {
		margin-top: 1.5rem !important
	}

	.mr-sm-24,
	.mx-sm-24 {
		margin-right: 1.5rem !important
	}

	.mb-sm-24,
	.my-sm-24 {
		margin-bottom: 1.5rem !important
	}

	.ml-sm-24,
	.mx-sm-24 {
		margin-left: 1.5rem !important
	}

	.m-sm-25 {
		margin: 1.5625rem !important
	}

	.mt-sm-25,
	.my-sm-25 {
		margin-top: 1.5625rem !important
	}

	.mr-sm-25,
	.mx-sm-25 {
		margin-right: 1.5625rem !important
	}

	.mb-sm-25,
	.my-sm-25 {
		margin-bottom: 1.5625rem !important
	}

	.ml-sm-25,
	.mx-sm-25 {
		margin-left: 1.5625rem !important
	}

	.m-sm-26 {
		margin: 1.625rem !important
	}

	.mt-sm-26,
	.my-sm-26 {
		margin-top: 1.625rem !important
	}

	.mr-sm-26,
	.mx-sm-26 {
		margin-right: 1.625rem !important
	}

	.mb-sm-26,
	.my-sm-26 {
		margin-bottom: 1.625rem !important
	}

	.ml-sm-26,
	.mx-sm-26 {
		margin-left: 1.625rem !important
	}

	.m-sm-27 {
		margin: 1.6875rem !important
	}

	.mt-sm-27,
	.my-sm-27 {
		margin-top: 1.6875rem !important
	}

	.mr-sm-27,
	.mx-sm-27 {
		margin-right: 1.6875rem !important
	}

	.mb-sm-27,
	.my-sm-27 {
		margin-bottom: 1.6875rem !important
	}

	.ml-sm-27,
	.mx-sm-27 {
		margin-left: 1.6875rem !important
	}

	.m-sm-28 {
		margin: 1.75rem !important
	}

	.mt-sm-28,
	.my-sm-28 {
		margin-top: 1.75rem !important
	}

	.mr-sm-28,
	.mx-sm-28 {
		margin-right: 1.75rem !important
	}

	.mb-sm-28,
	.my-sm-28 {
		margin-bottom: 1.75rem !important
	}

	.ml-sm-28,
	.mx-sm-28 {
		margin-left: 1.75rem !important
	}

	.m-sm-29 {
		margin: 1.8125rem !important
	}

	.mt-sm-29,
	.my-sm-29 {
		margin-top: 1.8125rem !important
	}

	.mr-sm-29,
	.mx-sm-29 {
		margin-right: 1.8125rem !important
	}

	.mb-sm-29,
	.my-sm-29 {
		margin-bottom: 1.8125rem !important
	}

	.ml-sm-29,
	.mx-sm-29 {
		margin-left: 1.8125rem !important
	}

	.m-sm-30 {
		margin: 1.875rem !important
	}

	.mt-sm-30,
	.my-sm-30 {
		margin-top: 1.875rem !important
	}

	.mr-sm-30,
	.mx-sm-30 {
		margin-right: 1.875rem !important
	}

	.mb-sm-30,
	.my-sm-30 {
		margin-bottom: 1.875rem !important
	}

	.ml-sm-30,
	.mx-sm-30 {
		margin-left: 1.875rem !important
	}

	.m-sm-31 {
		margin: 1.9375rem !important
	}

	.mt-sm-31,
	.my-sm-31 {
		margin-top: 1.9375rem !important
	}

	.mr-sm-31,
	.mx-sm-31 {
		margin-right: 1.9375rem !important
	}

	.mb-sm-31,
	.my-sm-31 {
		margin-bottom: 1.9375rem !important
	}

	.ml-sm-31,
	.mx-sm-31 {
		margin-left: 1.9375rem !important
	}

	.m-sm-32 {
		margin: 2rem !important
	}

	.mt-sm-32,
	.my-sm-32 {
		margin-top: 2rem !important
	}

	.mr-sm-32,
	.mx-sm-32 {
		margin-right: 2rem !important
	}

	.mb-sm-32,
	.my-sm-32 {
		margin-bottom: 2rem !important
	}

	.ml-sm-32,
	.mx-sm-32 {
		margin-left: 2rem !important
	}

	.m-sm-33 {
		margin: 2.0625rem !important
	}

	.mt-sm-33,
	.my-sm-33 {
		margin-top: 2.0625rem !important
	}

	.mr-sm-33,
	.mx-sm-33 {
		margin-right: 2.0625rem !important
	}

	.mb-sm-33,
	.my-sm-33 {
		margin-bottom: 2.0625rem !important
	}

	.ml-sm-33,
	.mx-sm-33 {
		margin-left: 2.0625rem !important
	}

	.m-sm-34 {
		margin: 2.125rem !important
	}

	.mt-sm-34,
	.my-sm-34 {
		margin-top: 2.125rem !important
	}

	.mr-sm-34,
	.mx-sm-34 {
		margin-right: 2.125rem !important
	}

	.mb-sm-34,
	.my-sm-34 {
		margin-bottom: 2.125rem !important
	}

	.ml-sm-34,
	.mx-sm-34 {
		margin-left: 2.125rem !important
	}

	.m-sm-35 {
		margin: 2.1875rem !important
	}

	.mt-sm-35,
	.my-sm-35 {
		margin-top: 2.1875rem !important
	}

	.mr-sm-35,
	.mx-sm-35 {
		margin-right: 2.1875rem !important
	}

	.mb-sm-35,
	.my-sm-35 {
		margin-bottom: 2.1875rem !important
	}

	.ml-sm-35,
	.mx-sm-35 {
		margin-left: 2.1875rem !important
	}

	.m-sm-36 {
		margin: 2.25rem !important
	}

	.mt-sm-36,
	.my-sm-36 {
		margin-top: 2.25rem !important
	}

	.mr-sm-36,
	.mx-sm-36 {
		margin-right: 2.25rem !important
	}

	.mb-sm-36,
	.my-sm-36 {
		margin-bottom: 2.25rem !important
	}

	.ml-sm-36,
	.mx-sm-36 {
		margin-left: 2.25rem !important
	}

	.m-sm-37 {
		margin: 2.3125rem !important
	}

	.mt-sm-37,
	.my-sm-37 {
		margin-top: 2.3125rem !important
	}

	.mr-sm-37,
	.mx-sm-37 {
		margin-right: 2.3125rem !important
	}

	.mb-sm-37,
	.my-sm-37 {
		margin-bottom: 2.3125rem !important
	}

	.ml-sm-37,
	.mx-sm-37 {
		margin-left: 2.3125rem !important
	}

	.m-sm-38 {
		margin: 2.375rem !important
	}

	.mt-sm-38,
	.my-sm-38 {
		margin-top: 2.375rem !important
	}

	.mr-sm-38,
	.mx-sm-38 {
		margin-right: 2.375rem !important
	}

	.mb-sm-38,
	.my-sm-38 {
		margin-bottom: 2.375rem !important
	}

	.ml-sm-38,
	.mx-sm-38 {
		margin-left: 2.375rem !important
	}

	.m-sm-39 {
		margin: 2.4375rem !important
	}

	.mt-sm-39,
	.my-sm-39 {
		margin-top: 2.4375rem !important
	}

	.mr-sm-39,
	.mx-sm-39 {
		margin-right: 2.4375rem !important
	}

	.mb-sm-39,
	.my-sm-39 {
		margin-bottom: 2.4375rem !important
	}

	.ml-sm-39,
	.mx-sm-39 {
		margin-left: 2.4375rem !important
	}

	.m-sm-40 {
		margin: 2.5rem !important
	}

	.mt-sm-40,
	.my-sm-40 {
		margin-top: 2.5rem !important
	}

	.mr-sm-40,
	.mx-sm-40 {
		margin-right: 2.5rem !important
	}

	.mb-sm-40,
	.my-sm-40 {
		margin-bottom: 2.5rem !important
	}

	.ml-sm-40,
	.mx-sm-40 {
		margin-left: 2.5rem !important
	}

	.m-sm-41 {
		margin: 2.5625rem !important
	}

	.mt-sm-41,
	.my-sm-41 {
		margin-top: 2.5625rem !important
	}

	.mr-sm-41,
	.mx-sm-41 {
		margin-right: 2.5625rem !important
	}

	.mb-sm-41,
	.my-sm-41 {
		margin-bottom: 2.5625rem !important
	}

	.ml-sm-41,
	.mx-sm-41 {
		margin-left: 2.5625rem !important
	}

	.m-sm-42 {
		margin: 2.625rem !important
	}

	.mt-sm-42,
	.my-sm-42 {
		margin-top: 2.625rem !important
	}

	.mr-sm-42,
	.mx-sm-42 {
		margin-right: 2.625rem !important
	}

	.mb-sm-42,
	.my-sm-42 {
		margin-bottom: 2.625rem !important
	}

	.ml-sm-42,
	.mx-sm-42 {
		margin-left: 2.625rem !important
	}

	.m-sm-43 {
		margin: 2.6875rem !important
	}

	.mt-sm-43,
	.my-sm-43 {
		margin-top: 2.6875rem !important
	}

	.mr-sm-43,
	.mx-sm-43 {
		margin-right: 2.6875rem !important
	}

	.mb-sm-43,
	.my-sm-43 {
		margin-bottom: 2.6875rem !important
	}

	.ml-sm-43,
	.mx-sm-43 {
		margin-left: 2.6875rem !important
	}

	.m-sm-44 {
		margin: 2.75rem !important
	}

	.mt-sm-44,
	.my-sm-44 {
		margin-top: 2.75rem !important
	}

	.mr-sm-44,
	.mx-sm-44 {
		margin-right: 2.75rem !important
	}

	.mb-sm-44,
	.my-sm-44 {
		margin-bottom: 2.75rem !important
	}

	.ml-sm-44,
	.mx-sm-44 {
		margin-left: 2.75rem !important
	}

	.m-sm-45 {
		margin: 2.8125rem !important
	}

	.mt-sm-45,
	.my-sm-45 {
		margin-top: 2.8125rem !important
	}

	.mr-sm-45,
	.mx-sm-45 {
		margin-right: 2.8125rem !important
	}

	.mb-sm-45,
	.my-sm-45 {
		margin-bottom: 2.8125rem !important
	}

	.ml-sm-45,
	.mx-sm-45 {
		margin-left: 2.8125rem !important
	}

	.m-sm-46 {
		margin: 2.875rem !important
	}

	.mt-sm-46,
	.my-sm-46 {
		margin-top: 2.875rem !important
	}

	.mr-sm-46,
	.mx-sm-46 {
		margin-right: 2.875rem !important
	}

	.mb-sm-46,
	.my-sm-46 {
		margin-bottom: 2.875rem !important
	}

	.ml-sm-46,
	.mx-sm-46 {
		margin-left: 2.875rem !important
	}

	.m-sm-47 {
		margin: 2.9375rem !important
	}

	.mt-sm-47,
	.my-sm-47 {
		margin-top: 2.9375rem !important
	}

	.mr-sm-47,
	.mx-sm-47 {
		margin-right: 2.9375rem !important
	}

	.mb-sm-47,
	.my-sm-47 {
		margin-bottom: 2.9375rem !important
	}

	.ml-sm-47,
	.mx-sm-47 {
		margin-left: 2.9375rem !important
	}

	.m-sm-48 {
		margin: 3rem !important
	}

	.mt-sm-48,
	.my-sm-48 {
		margin-top: 3rem !important
	}

	.mr-sm-48,
	.mx-sm-48 {
		margin-right: 3rem !important
	}

	.mb-sm-48,
	.my-sm-48 {
		margin-bottom: 3rem !important
	}

	.ml-sm-48,
	.mx-sm-48 {
		margin-left: 3rem !important
	}

	.m-sm-49 {
		margin: 3.0625rem !important
	}

	.mt-sm-49,
	.my-sm-49 {
		margin-top: 3.0625rem !important
	}

	.mr-sm-49,
	.mx-sm-49 {
		margin-right: 3.0625rem !important
	}

	.mb-sm-49,
	.my-sm-49 {
		margin-bottom: 3.0625rem !important
	}

	.ml-sm-49,
	.mx-sm-49 {
		margin-left: 3.0625rem !important
	}

	.m-sm-50 {
		margin: 3.125rem !important
	}

	.mt-sm-50,
	.my-sm-50 {
		margin-top: 3.125rem !important
	}

	.mr-sm-50,
	.mx-sm-50 {
		margin-right: 3.125rem !important
	}

	.mb-sm-50,
	.my-sm-50 {
		margin-bottom: 3.125rem !important
	}

	.ml-sm-50,
	.mx-sm-50 {
		margin-left: 3.125rem !important
	}

	.m-sm-51 {
		margin: 3.1875rem !important
	}

	.mt-sm-51,
	.my-sm-51 {
		margin-top: 3.1875rem !important
	}

	.mr-sm-51,
	.mx-sm-51 {
		margin-right: 3.1875rem !important
	}

	.mb-sm-51,
	.my-sm-51 {
		margin-bottom: 3.1875rem !important
	}

	.ml-sm-51,
	.mx-sm-51 {
		margin-left: 3.1875rem !important
	}

	.m-sm-52 {
		margin: 3.25rem !important
	}

	.mt-sm-52,
	.my-sm-52 {
		margin-top: 3.25rem !important
	}

	.mr-sm-52,
	.mx-sm-52 {
		margin-right: 3.25rem !important
	}

	.mb-sm-52,
	.my-sm-52 {
		margin-bottom: 3.25rem !important
	}

	.ml-sm-52,
	.mx-sm-52 {
		margin-left: 3.25rem !important
	}

	.m-sm-53 {
		margin: 3.3125rem !important
	}

	.mt-sm-53,
	.my-sm-53 {
		margin-top: 3.3125rem !important
	}

	.mr-sm-53,
	.mx-sm-53 {
		margin-right: 3.3125rem !important
	}

	.mb-sm-53,
	.my-sm-53 {
		margin-bottom: 3.3125rem !important
	}

	.ml-sm-53,
	.mx-sm-53 {
		margin-left: 3.3125rem !important
	}

	.m-sm-54 {
		margin: 3.375rem !important
	}

	.mt-sm-54,
	.my-sm-54 {
		margin-top: 3.375rem !important
	}

	.mr-sm-54,
	.mx-sm-54 {
		margin-right: 3.375rem !important
	}

	.mb-sm-54,
	.my-sm-54 {
		margin-bottom: 3.375rem !important
	}

	.ml-sm-54,
	.mx-sm-54 {
		margin-left: 3.375rem !important
	}

	.m-sm-55 {
		margin: 3.4375rem !important
	}

	.mt-sm-55,
	.my-sm-55 {
		margin-top: 3.4375rem !important
	}

	.mr-sm-55,
	.mx-sm-55 {
		margin-right: 3.4375rem !important
	}

	.mb-sm-55,
	.my-sm-55 {
		margin-bottom: 3.4375rem !important
	}

	.ml-sm-55,
	.mx-sm-55 {
		margin-left: 3.4375rem !important
	}

	.m-sm-56 {
		margin: 3.5rem !important
	}

	.mt-sm-56,
	.my-sm-56 {
		margin-top: 3.5rem !important
	}

	.mr-sm-56,
	.mx-sm-56 {
		margin-right: 3.5rem !important
	}

	.mb-sm-56,
	.my-sm-56 {
		margin-bottom: 3.5rem !important
	}

	.ml-sm-56,
	.mx-sm-56 {
		margin-left: 3.5rem !important
	}

	.m-sm-57 {
		margin: 3.5625rem !important
	}

	.mt-sm-57,
	.my-sm-57 {
		margin-top: 3.5625rem !important
	}

	.mr-sm-57,
	.mx-sm-57 {
		margin-right: 3.5625rem !important
	}

	.mb-sm-57,
	.my-sm-57 {
		margin-bottom: 3.5625rem !important
	}

	.ml-sm-57,
	.mx-sm-57 {
		margin-left: 3.5625rem !important
	}

	.m-sm-58 {
		margin: 3.625rem !important
	}

	.mt-sm-58,
	.my-sm-58 {
		margin-top: 3.625rem !important
	}

	.mr-sm-58,
	.mx-sm-58 {
		margin-right: 3.625rem !important
	}

	.mb-sm-58,
	.my-sm-58 {
		margin-bottom: 3.625rem !important
	}

	.ml-sm-58,
	.mx-sm-58 {
		margin-left: 3.625rem !important
	}

	.m-sm-59 {
		margin: 3.6875rem !important
	}

	.mt-sm-59,
	.my-sm-59 {
		margin-top: 3.6875rem !important
	}

	.mr-sm-59,
	.mx-sm-59 {
		margin-right: 3.6875rem !important
	}

	.mb-sm-59,
	.my-sm-59 {
		margin-bottom: 3.6875rem !important
	}

	.ml-sm-59,
	.mx-sm-59 {
		margin-left: 3.6875rem !important
	}

	.m-sm-60 {
		margin: 3.75rem !important
	}

	.mt-sm-60,
	.my-sm-60 {
		margin-top: 3.75rem !important
	}

	.mr-sm-60,
	.mx-sm-60 {
		margin-right: 3.75rem !important
	}

	.mb-sm-60,
	.my-sm-60 {
		margin-bottom: 3.75rem !important
	}

	.ml-sm-60,
	.mx-sm-60 {
		margin-left: 3.75rem !important
	}

	.m-sm-61 {
		margin: 3.8125rem !important
	}

	.mt-sm-61,
	.my-sm-61 {
		margin-top: 3.8125rem !important
	}

	.mr-sm-61,
	.mx-sm-61 {
		margin-right: 3.8125rem !important
	}

	.mb-sm-61,
	.my-sm-61 {
		margin-bottom: 3.8125rem !important
	}

	.ml-sm-61,
	.mx-sm-61 {
		margin-left: 3.8125rem !important
	}

	.m-sm-62 {
		margin: 3.875rem !important
	}

	.mt-sm-62,
	.my-sm-62 {
		margin-top: 3.875rem !important
	}

	.mr-sm-62,
	.mx-sm-62 {
		margin-right: 3.875rem !important
	}

	.mb-sm-62,
	.my-sm-62 {
		margin-bottom: 3.875rem !important
	}

	.ml-sm-62,
	.mx-sm-62 {
		margin-left: 3.875rem !important
	}

	.m-sm-63 {
		margin: 3.9375rem !important
	}

	.mt-sm-63,
	.my-sm-63 {
		margin-top: 3.9375rem !important
	}

	.mr-sm-63,
	.mx-sm-63 {
		margin-right: 3.9375rem !important
	}

	.mb-sm-63,
	.my-sm-63 {
		margin-bottom: 3.9375rem !important
	}

	.ml-sm-63,
	.mx-sm-63 {
		margin-left: 3.9375rem !important
	}

	.m-sm-64 {
		margin: 4rem !important
	}

	.mt-sm-64,
	.my-sm-64 {
		margin-top: 4rem !important
	}

	.mr-sm-64,
	.mx-sm-64 {
		margin-right: 4rem !important
	}

	.mb-sm-64,
	.my-sm-64 {
		margin-bottom: 4rem !important
	}

	.ml-sm-64,
	.mx-sm-64 {
		margin-left: 4rem !important
	}

	.m-sm-65 {
		margin: 4.0625rem !important
	}

	.mt-sm-65,
	.my-sm-65 {
		margin-top: 4.0625rem !important
	}

	.mr-sm-65,
	.mx-sm-65 {
		margin-right: 4.0625rem !important
	}

	.mb-sm-65,
	.my-sm-65 {
		margin-bottom: 4.0625rem !important
	}

	.ml-sm-65,
	.mx-sm-65 {
		margin-left: 4.0625rem !important
	}

	.m-sm-66 {
		margin: 4.125rem !important
	}

	.mt-sm-66,
	.my-sm-66 {
		margin-top: 4.125rem !important
	}

	.mr-sm-66,
	.mx-sm-66 {
		margin-right: 4.125rem !important
	}

	.mb-sm-66,
	.my-sm-66 {
		margin-bottom: 4.125rem !important
	}

	.ml-sm-66,
	.mx-sm-66 {
		margin-left: 4.125rem !important
	}

	.m-sm-67 {
		margin: 4.1875rem !important
	}

	.mt-sm-67,
	.my-sm-67 {
		margin-top: 4.1875rem !important
	}

	.mr-sm-67,
	.mx-sm-67 {
		margin-right: 4.1875rem !important
	}

	.mb-sm-67,
	.my-sm-67 {
		margin-bottom: 4.1875rem !important
	}

	.ml-sm-67,
	.mx-sm-67 {
		margin-left: 4.1875rem !important
	}

	.m-sm-68 {
		margin: 4.25rem !important
	}

	.mt-sm-68,
	.my-sm-68 {
		margin-top: 4.25rem !important
	}

	.mr-sm-68,
	.mx-sm-68 {
		margin-right: 4.25rem !important
	}

	.mb-sm-68,
	.my-sm-68 {
		margin-bottom: 4.25rem !important
	}

	.ml-sm-68,
	.mx-sm-68 {
		margin-left: 4.25rem !important
	}

	.m-sm-69 {
		margin: 4.3125rem !important
	}

	.mt-sm-69,
	.my-sm-69 {
		margin-top: 4.3125rem !important
	}

	.mr-sm-69,
	.mx-sm-69 {
		margin-right: 4.3125rem !important
	}

	.mb-sm-69,
	.my-sm-69 {
		margin-bottom: 4.3125rem !important
	}

	.ml-sm-69,
	.mx-sm-69 {
		margin-left: 4.3125rem !important
	}

	.m-sm-70 {
		margin: 4.375rem !important
	}

	.mt-sm-70,
	.my-sm-70 {
		margin-top: 4.375rem !important
	}

	.mr-sm-70,
	.mx-sm-70 {
		margin-right: 4.375rem !important
	}

	.mb-sm-70,
	.my-sm-70 {
		margin-bottom: 4.375rem !important
	}

	.ml-sm-70,
	.mx-sm-70 {
		margin-left: 4.375rem !important
	}

	.m-sm-71 {
		margin: 4.4375rem !important
	}

	.mt-sm-71,
	.my-sm-71 {
		margin-top: 4.4375rem !important
	}

	.mr-sm-71,
	.mx-sm-71 {
		margin-right: 4.4375rem !important
	}

	.mb-sm-71,
	.my-sm-71 {
		margin-bottom: 4.4375rem !important
	}

	.ml-sm-71,
	.mx-sm-71 {
		margin-left: 4.4375rem !important
	}

	.m-sm-72 {
		margin: 4.5rem !important
	}

	.mt-sm-72,
	.my-sm-72 {
		margin-top: 4.5rem !important
	}

	.mr-sm-72,
	.mx-sm-72 {
		margin-right: 4.5rem !important
	}

	.mb-sm-72,
	.my-sm-72 {
		margin-bottom: 4.5rem !important
	}

	.ml-sm-72,
	.mx-sm-72 {
		margin-left: 4.5rem !important
	}

	.m-sm-73 {
		margin: 4.5625rem !important
	}

	.mt-sm-73,
	.my-sm-73 {
		margin-top: 4.5625rem !important
	}

	.mr-sm-73,
	.mx-sm-73 {
		margin-right: 4.5625rem !important
	}

	.mb-sm-73,
	.my-sm-73 {
		margin-bottom: 4.5625rem !important
	}

	.ml-sm-73,
	.mx-sm-73 {
		margin-left: 4.5625rem !important
	}

	.m-sm-74 {
		margin: 4.625rem !important
	}

	.mt-sm-74,
	.my-sm-74 {
		margin-top: 4.625rem !important
	}

	.mr-sm-74,
	.mx-sm-74 {
		margin-right: 4.625rem !important
	}

	.mb-sm-74,
	.my-sm-74 {
		margin-bottom: 4.625rem !important
	}

	.ml-sm-74,
	.mx-sm-74 {
		margin-left: 4.625rem !important
	}

	.m-sm-75 {
		margin: 4.6875rem !important
	}

	.mt-sm-75,
	.my-sm-75 {
		margin-top: 4.6875rem !important
	}

	.mr-sm-75,
	.mx-sm-75 {
		margin-right: 4.6875rem !important
	}

	.mb-sm-75,
	.my-sm-75 {
		margin-bottom: 4.6875rem !important
	}

	.ml-sm-75,
	.mx-sm-75 {
		margin-left: 4.6875rem !important
	}

	.m-sm-76 {
		margin: 4.75rem !important
	}

	.mt-sm-76,
	.my-sm-76 {
		margin-top: 4.75rem !important
	}

	.mr-sm-76,
	.mx-sm-76 {
		margin-right: 4.75rem !important
	}

	.mb-sm-76,
	.my-sm-76 {
		margin-bottom: 4.75rem !important
	}

	.ml-sm-76,
	.mx-sm-76 {
		margin-left: 4.75rem !important
	}

	.m-sm-77 {
		margin: 4.8125rem !important
	}

	.mt-sm-77,
	.my-sm-77 {
		margin-top: 4.8125rem !important
	}

	.mr-sm-77,
	.mx-sm-77 {
		margin-right: 4.8125rem !important
	}

	.mb-sm-77,
	.my-sm-77 {
		margin-bottom: 4.8125rem !important
	}

	.ml-sm-77,
	.mx-sm-77 {
		margin-left: 4.8125rem !important
	}

	.m-sm-78 {
		margin: 4.875rem !important
	}

	.mt-sm-78,
	.my-sm-78 {
		margin-top: 4.875rem !important
	}

	.mr-sm-78,
	.mx-sm-78 {
		margin-right: 4.875rem !important
	}

	.mb-sm-78,
	.my-sm-78 {
		margin-bottom: 4.875rem !important
	}

	.ml-sm-78,
	.mx-sm-78 {
		margin-left: 4.875rem !important
	}

	.m-sm-79 {
		margin: 4.9375rem !important
	}

	.mt-sm-79,
	.my-sm-79 {
		margin-top: 4.9375rem !important
	}

	.mr-sm-79,
	.mx-sm-79 {
		margin-right: 4.9375rem !important
	}

	.mb-sm-79,
	.my-sm-79 {
		margin-bottom: 4.9375rem !important
	}

	.ml-sm-79,
	.mx-sm-79 {
		margin-left: 4.9375rem !important
	}

	.m-sm-80 {
		margin: 5rem !important
	}

	.mt-sm-80,
	.my-sm-80 {
		margin-top: 5rem !important
	}

	.mr-sm-80,
	.mx-sm-80 {
		margin-right: 5rem !important
	}

	.mb-sm-80,
	.my-sm-80 {
		margin-bottom: 5rem !important
	}

	.ml-sm-80,
	.mx-sm-80 {
		margin-left: 5rem !important
	}

	.m-sm-81 {
		margin: 5.0625rem !important
	}

	.mt-sm-81,
	.my-sm-81 {
		margin-top: 5.0625rem !important
	}

	.mr-sm-81,
	.mx-sm-81 {
		margin-right: 5.0625rem !important
	}

	.mb-sm-81,
	.my-sm-81 {
		margin-bottom: 5.0625rem !important
	}

	.ml-sm-81,
	.mx-sm-81 {
		margin-left: 5.0625rem !important
	}

	.m-sm-82 {
		margin: 5.125rem !important
	}

	.mt-sm-82,
	.my-sm-82 {
		margin-top: 5.125rem !important
	}

	.mr-sm-82,
	.mx-sm-82 {
		margin-right: 5.125rem !important
	}

	.mb-sm-82,
	.my-sm-82 {
		margin-bottom: 5.125rem !important
	}

	.ml-sm-82,
	.mx-sm-82 {
		margin-left: 5.125rem !important
	}

	.m-sm-83 {
		margin: 5.1875rem !important
	}

	.mt-sm-83,
	.my-sm-83 {
		margin-top: 5.1875rem !important
	}

	.mr-sm-83,
	.mx-sm-83 {
		margin-right: 5.1875rem !important
	}

	.mb-sm-83,
	.my-sm-83 {
		margin-bottom: 5.1875rem !important
	}

	.ml-sm-83,
	.mx-sm-83 {
		margin-left: 5.1875rem !important
	}

	.m-sm-84 {
		margin: 5.25rem !important
	}

	.mt-sm-84,
	.my-sm-84 {
		margin-top: 5.25rem !important
	}

	.mr-sm-84,
	.mx-sm-84 {
		margin-right: 5.25rem !important
	}

	.mb-sm-84,
	.my-sm-84 {
		margin-bottom: 5.25rem !important
	}

	.ml-sm-84,
	.mx-sm-84 {
		margin-left: 5.25rem !important
	}

	.m-sm-85 {
		margin: 5.3125rem !important
	}

	.mt-sm-85,
	.my-sm-85 {
		margin-top: 5.3125rem !important
	}

	.mr-sm-85,
	.mx-sm-85 {
		margin-right: 5.3125rem !important
	}

	.mb-sm-85,
	.my-sm-85 {
		margin-bottom: 5.3125rem !important
	}

	.ml-sm-85,
	.mx-sm-85 {
		margin-left: 5.3125rem !important
	}

	.m-sm-86 {
		margin: 5.375rem !important
	}

	.mt-sm-86,
	.my-sm-86 {
		margin-top: 5.375rem !important
	}

	.mr-sm-86,
	.mx-sm-86 {
		margin-right: 5.375rem !important
	}

	.mb-sm-86,
	.my-sm-86 {
		margin-bottom: 5.375rem !important
	}

	.ml-sm-86,
	.mx-sm-86 {
		margin-left: 5.375rem !important
	}

	.m-sm-87 {
		margin: 5.4375rem !important
	}

	.mt-sm-87,
	.my-sm-87 {
		margin-top: 5.4375rem !important
	}

	.mr-sm-87,
	.mx-sm-87 {
		margin-right: 5.4375rem !important
	}

	.mb-sm-87,
	.my-sm-87 {
		margin-bottom: 5.4375rem !important
	}

	.ml-sm-87,
	.mx-sm-87 {
		margin-left: 5.4375rem !important
	}

	.m-sm-88 {
		margin: 5.5rem !important
	}

	.mt-sm-88,
	.my-sm-88 {
		margin-top: 5.5rem !important
	}

	.mr-sm-88,
	.mx-sm-88 {
		margin-right: 5.5rem !important
	}

	.mb-sm-88,
	.my-sm-88 {
		margin-bottom: 5.5rem !important
	}

	.ml-sm-88,
	.mx-sm-88 {
		margin-left: 5.5rem !important
	}

	.m-sm-89 {
		margin: 5.5625rem !important
	}

	.mt-sm-89,
	.my-sm-89 {
		margin-top: 5.5625rem !important
	}

	.mr-sm-89,
	.mx-sm-89 {
		margin-right: 5.5625rem !important
	}

	.mb-sm-89,
	.my-sm-89 {
		margin-bottom: 5.5625rem !important
	}

	.ml-sm-89,
	.mx-sm-89 {
		margin-left: 5.5625rem !important
	}

	.m-sm-90 {
		margin: 5.625rem !important
	}

	.mt-sm-90,
	.my-sm-90 {
		margin-top: 5.625rem !important
	}

	.mr-sm-90,
	.mx-sm-90 {
		margin-right: 5.625rem !important
	}

	.mb-sm-90,
	.my-sm-90 {
		margin-bottom: 5.625rem !important
	}

	.ml-sm-90,
	.mx-sm-90 {
		margin-left: 5.625rem !important
	}

	.m-sm-91 {
		margin: 5.6875rem !important
	}

	.mt-sm-91,
	.my-sm-91 {
		margin-top: 5.6875rem !important
	}

	.mr-sm-91,
	.mx-sm-91 {
		margin-right: 5.6875rem !important
	}

	.mb-sm-91,
	.my-sm-91 {
		margin-bottom: 5.6875rem !important
	}

	.ml-sm-91,
	.mx-sm-91 {
		margin-left: 5.6875rem !important
	}

	.m-sm-92 {
		margin: 5.75rem !important
	}

	.mt-sm-92,
	.my-sm-92 {
		margin-top: 5.75rem !important
	}

	.mr-sm-92,
	.mx-sm-92 {
		margin-right: 5.75rem !important
	}

	.mb-sm-92,
	.my-sm-92 {
		margin-bottom: 5.75rem !important
	}

	.ml-sm-92,
	.mx-sm-92 {
		margin-left: 5.75rem !important
	}

	.m-sm-93 {
		margin: 5.8125rem !important
	}

	.mt-sm-93,
	.my-sm-93 {
		margin-top: 5.8125rem !important
	}

	.mr-sm-93,
	.mx-sm-93 {
		margin-right: 5.8125rem !important
	}

	.mb-sm-93,
	.my-sm-93 {
		margin-bottom: 5.8125rem !important
	}

	.ml-sm-93,
	.mx-sm-93 {
		margin-left: 5.8125rem !important
	}

	.m-sm-94 {
		margin: 5.875rem !important
	}

	.mt-sm-94,
	.my-sm-94 {
		margin-top: 5.875rem !important
	}

	.mr-sm-94,
	.mx-sm-94 {
		margin-right: 5.875rem !important
	}

	.mb-sm-94,
	.my-sm-94 {
		margin-bottom: 5.875rem !important
	}

	.ml-sm-94,
	.mx-sm-94 {
		margin-left: 5.875rem !important
	}

	.m-sm-95 {
		margin: 5.9375rem !important
	}

	.mt-sm-95,
	.my-sm-95 {
		margin-top: 5.9375rem !important
	}

	.mr-sm-95,
	.mx-sm-95 {
		margin-right: 5.9375rem !important
	}

	.mb-sm-95,
	.my-sm-95 {
		margin-bottom: 5.9375rem !important
	}

	.ml-sm-95,
	.mx-sm-95 {
		margin-left: 5.9375rem !important
	}

	.m-sm-96 {
		margin: 6rem !important
	}

	.mt-sm-96,
	.my-sm-96 {
		margin-top: 6rem !important
	}

	.mr-sm-96,
	.mx-sm-96 {
		margin-right: 6rem !important
	}

	.mb-sm-96,
	.my-sm-96 {
		margin-bottom: 6rem !important
	}

	.ml-sm-96,
	.mx-sm-96 {
		margin-left: 6rem !important
	}

	.m-sm-97 {
		margin: 6.0625rem !important
	}

	.mt-sm-97,
	.my-sm-97 {
		margin-top: 6.0625rem !important
	}

	.mr-sm-97,
	.mx-sm-97 {
		margin-right: 6.0625rem !important
	}

	.mb-sm-97,
	.my-sm-97 {
		margin-bottom: 6.0625rem !important
	}

	.ml-sm-97,
	.mx-sm-97 {
		margin-left: 6.0625rem !important
	}

	.m-sm-98 {
		margin: 6.125rem !important
	}

	.mt-sm-98,
	.my-sm-98 {
		margin-top: 6.125rem !important
	}

	.mr-sm-98,
	.mx-sm-98 {
		margin-right: 6.125rem !important
	}

	.mb-sm-98,
	.my-sm-98 {
		margin-bottom: 6.125rem !important
	}

	.ml-sm-98,
	.mx-sm-98 {
		margin-left: 6.125rem !important
	}

	.m-sm-99 {
		margin: 6.1875rem !important
	}

	.mt-sm-99,
	.my-sm-99 {
		margin-top: 6.1875rem !important
	}

	.mr-sm-99,
	.mx-sm-99 {
		margin-right: 6.1875rem !important
	}

	.mb-sm-99,
	.my-sm-99 {
		margin-bottom: 6.1875rem !important
	}

	.ml-sm-99,
	.mx-sm-99 {
		margin-left: 6.1875rem !important
	}

	.m-sm-100 {
		margin: 6.25rem !important
	}

	.mt-sm-100,
	.my-sm-100 {
		margin-top: 6.25rem !important
	}

	.mr-sm-100,
	.mx-sm-100 {
		margin-right: 6.25rem !important
	}

	.mb-sm-100,
	.my-sm-100 {
		margin-bottom: 6.25rem !important
	}

	.ml-sm-100,
	.mx-sm-100 {
		margin-left: 6.25rem !important
	}

	.m-sm-101 {
		margin: 6.3125rem !important
	}

	.mt-sm-101,
	.my-sm-101 {
		margin-top: 6.3125rem !important
	}

	.mr-sm-101,
	.mx-sm-101 {
		margin-right: 6.3125rem !important
	}

	.mb-sm-101,
	.my-sm-101 {
		margin-bottom: 6.3125rem !important
	}

	.ml-sm-101,
	.mx-sm-101 {
		margin-left: 6.3125rem !important
	}

	.m-sm-102 {
		margin: 6.375rem !important
	}

	.mt-sm-102,
	.my-sm-102 {
		margin-top: 6.375rem !important
	}

	.mr-sm-102,
	.mx-sm-102 {
		margin-right: 6.375rem !important
	}

	.mb-sm-102,
	.my-sm-102 {
		margin-bottom: 6.375rem !important
	}

	.ml-sm-102,
	.mx-sm-102 {
		margin-left: 6.375rem !important
	}

	.m-sm-103 {
		margin: 6.4375rem !important
	}

	.mt-sm-103,
	.my-sm-103 {
		margin-top: 6.4375rem !important
	}

	.mr-sm-103,
	.mx-sm-103 {
		margin-right: 6.4375rem !important
	}

	.mb-sm-103,
	.my-sm-103 {
		margin-bottom: 6.4375rem !important
	}

	.ml-sm-103,
	.mx-sm-103 {
		margin-left: 6.4375rem !important
	}

	.m-sm-104 {
		margin: 6.5rem !important
	}

	.mt-sm-104,
	.my-sm-104 {
		margin-top: 6.5rem !important
	}

	.mr-sm-104,
	.mx-sm-104 {
		margin-right: 6.5rem !important
	}

	.mb-sm-104,
	.my-sm-104 {
		margin-bottom: 6.5rem !important
	}

	.ml-sm-104,
	.mx-sm-104 {
		margin-left: 6.5rem !important
	}

	.m-sm-105 {
		margin: 6.5625rem !important
	}

	.mt-sm-105,
	.my-sm-105 {
		margin-top: 6.5625rem !important
	}

	.mr-sm-105,
	.mx-sm-105 {
		margin-right: 6.5625rem !important
	}

	.mb-sm-105,
	.my-sm-105 {
		margin-bottom: 6.5625rem !important
	}

	.ml-sm-105,
	.mx-sm-105 {
		margin-left: 6.5625rem !important
	}

	.m-sm-106 {
		margin: 6.625rem !important
	}

	.mt-sm-106,
	.my-sm-106 {
		margin-top: 6.625rem !important
	}

	.mr-sm-106,
	.mx-sm-106 {
		margin-right: 6.625rem !important
	}

	.mb-sm-106,
	.my-sm-106 {
		margin-bottom: 6.625rem !important
	}

	.ml-sm-106,
	.mx-sm-106 {
		margin-left: 6.625rem !important
	}

	.m-sm-107 {
		margin: 6.6875rem !important
	}

	.mt-sm-107,
	.my-sm-107 {
		margin-top: 6.6875rem !important
	}

	.mr-sm-107,
	.mx-sm-107 {
		margin-right: 6.6875rem !important
	}

	.mb-sm-107,
	.my-sm-107 {
		margin-bottom: 6.6875rem !important
	}

	.ml-sm-107,
	.mx-sm-107 {
		margin-left: 6.6875rem !important
	}

	.m-sm-108 {
		margin: 6.75rem !important
	}

	.mt-sm-108,
	.my-sm-108 {
		margin-top: 6.75rem !important
	}

	.mr-sm-108,
	.mx-sm-108 {
		margin-right: 6.75rem !important
	}

	.mb-sm-108,
	.my-sm-108 {
		margin-bottom: 6.75rem !important
	}

	.ml-sm-108,
	.mx-sm-108 {
		margin-left: 6.75rem !important
	}

	.m-sm-109 {
		margin: 6.8125rem !important
	}

	.mt-sm-109,
	.my-sm-109 {
		margin-top: 6.8125rem !important
	}

	.mr-sm-109,
	.mx-sm-109 {
		margin-right: 6.8125rem !important
	}

	.mb-sm-109,
	.my-sm-109 {
		margin-bottom: 6.8125rem !important
	}

	.ml-sm-109,
	.mx-sm-109 {
		margin-left: 6.8125rem !important
	}

	.m-sm-110 {
		margin: 6.875rem !important
	}

	.mt-sm-110,
	.my-sm-110 {
		margin-top: 6.875rem !important
	}

	.mr-sm-110,
	.mx-sm-110 {
		margin-right: 6.875rem !important
	}

	.mb-sm-110,
	.my-sm-110 {
		margin-bottom: 6.875rem !important
	}

	.ml-sm-110,
	.mx-sm-110 {
		margin-left: 6.875rem !important
	}

	.m-sm-111 {
		margin: 6.9375rem !important
	}

	.mt-sm-111,
	.my-sm-111 {
		margin-top: 6.9375rem !important
	}

	.mr-sm-111,
	.mx-sm-111 {
		margin-right: 6.9375rem !important
	}

	.mb-sm-111,
	.my-sm-111 {
		margin-bottom: 6.9375rem !important
	}

	.ml-sm-111,
	.mx-sm-111 {
		margin-left: 6.9375rem !important
	}

	.m-sm-112 {
		margin: 7rem !important
	}

	.mt-sm-112,
	.my-sm-112 {
		margin-top: 7rem !important
	}

	.mr-sm-112,
	.mx-sm-112 {
		margin-right: 7rem !important
	}

	.mb-sm-112,
	.my-sm-112 {
		margin-bottom: 7rem !important
	}

	.ml-sm-112,
	.mx-sm-112 {
		margin-left: 7rem !important
	}

	.m-sm-113 {
		margin: 7.0625rem !important
	}

	.mt-sm-113,
	.my-sm-113 {
		margin-top: 7.0625rem !important
	}

	.mr-sm-113,
	.mx-sm-113 {
		margin-right: 7.0625rem !important
	}

	.mb-sm-113,
	.my-sm-113 {
		margin-bottom: 7.0625rem !important
	}

	.ml-sm-113,
	.mx-sm-113 {
		margin-left: 7.0625rem !important
	}

	.m-sm-114 {
		margin: 7.125rem !important
	}

	.mt-sm-114,
	.my-sm-114 {
		margin-top: 7.125rem !important
	}

	.mr-sm-114,
	.mx-sm-114 {
		margin-right: 7.125rem !important
	}

	.mb-sm-114,
	.my-sm-114 {
		margin-bottom: 7.125rem !important
	}

	.ml-sm-114,
	.mx-sm-114 {
		margin-left: 7.125rem !important
	}

	.m-sm-115 {
		margin: 7.1875rem !important
	}

	.mt-sm-115,
	.my-sm-115 {
		margin-top: 7.1875rem !important
	}

	.mr-sm-115,
	.mx-sm-115 {
		margin-right: 7.1875rem !important
	}

	.mb-sm-115,
	.my-sm-115 {
		margin-bottom: 7.1875rem !important
	}

	.ml-sm-115,
	.mx-sm-115 {
		margin-left: 7.1875rem !important
	}

	.m-sm-116 {
		margin: 7.25rem !important
	}

	.mt-sm-116,
	.my-sm-116 {
		margin-top: 7.25rem !important
	}

	.mr-sm-116,
	.mx-sm-116 {
		margin-right: 7.25rem !important
	}

	.mb-sm-116,
	.my-sm-116 {
		margin-bottom: 7.25rem !important
	}

	.ml-sm-116,
	.mx-sm-116 {
		margin-left: 7.25rem !important
	}

	.m-sm-117 {
		margin: 7.3125rem !important
	}

	.mt-sm-117,
	.my-sm-117 {
		margin-top: 7.3125rem !important
	}

	.mr-sm-117,
	.mx-sm-117 {
		margin-right: 7.3125rem !important
	}

	.mb-sm-117,
	.my-sm-117 {
		margin-bottom: 7.3125rem !important
	}

	.ml-sm-117,
	.mx-sm-117 {
		margin-left: 7.3125rem !important
	}

	.m-sm-118 {
		margin: 7.375rem !important
	}

	.mt-sm-118,
	.my-sm-118 {
		margin-top: 7.375rem !important
	}

	.mr-sm-118,
	.mx-sm-118 {
		margin-right: 7.375rem !important
	}

	.mb-sm-118,
	.my-sm-118 {
		margin-bottom: 7.375rem !important
	}

	.ml-sm-118,
	.mx-sm-118 {
		margin-left: 7.375rem !important
	}

	.m-sm-119 {
		margin: 7.4375rem !important
	}

	.mt-sm-119,
	.my-sm-119 {
		margin-top: 7.4375rem !important
	}

	.mr-sm-119,
	.mx-sm-119 {
		margin-right: 7.4375rem !important
	}

	.mb-sm-119,
	.my-sm-119 {
		margin-bottom: 7.4375rem !important
	}

	.ml-sm-119,
	.mx-sm-119 {
		margin-left: 7.4375rem !important
	}

	.m-sm-120 {
		margin: 7.5rem !important
	}

	.mt-sm-120,
	.my-sm-120 {
		margin-top: 7.5rem !important
	}

	.mr-sm-120,
	.mx-sm-120 {
		margin-right: 7.5rem !important
	}

	.mb-sm-120,
	.my-sm-120 {
		margin-bottom: 7.5rem !important
	}

	.ml-sm-120,
	.mx-sm-120 {
		margin-left: 7.5rem !important
	}

	.m-sm-121 {
		margin: 7.5625rem !important
	}

	.mt-sm-121,
	.my-sm-121 {
		margin-top: 7.5625rem !important
	}

	.mr-sm-121,
	.mx-sm-121 {
		margin-right: 7.5625rem !important
	}

	.mb-sm-121,
	.my-sm-121 {
		margin-bottom: 7.5625rem !important
	}

	.ml-sm-121,
	.mx-sm-121 {
		margin-left: 7.5625rem !important
	}

	.m-sm-122 {
		margin: 7.625rem !important
	}

	.mt-sm-122,
	.my-sm-122 {
		margin-top: 7.625rem !important
	}

	.mr-sm-122,
	.mx-sm-122 {
		margin-right: 7.625rem !important
	}

	.mb-sm-122,
	.my-sm-122 {
		margin-bottom: 7.625rem !important
	}

	.ml-sm-122,
	.mx-sm-122 {
		margin-left: 7.625rem !important
	}

	.m-sm-123 {
		margin: 7.6875rem !important
	}

	.mt-sm-123,
	.my-sm-123 {
		margin-top: 7.6875rem !important
	}

	.mr-sm-123,
	.mx-sm-123 {
		margin-right: 7.6875rem !important
	}

	.mb-sm-123,
	.my-sm-123 {
		margin-bottom: 7.6875rem !important
	}

	.ml-sm-123,
	.mx-sm-123 {
		margin-left: 7.6875rem !important
	}

	.m-sm-124 {
		margin: 7.75rem !important
	}

	.mt-sm-124,
	.my-sm-124 {
		margin-top: 7.75rem !important
	}

	.mr-sm-124,
	.mx-sm-124 {
		margin-right: 7.75rem !important
	}

	.mb-sm-124,
	.my-sm-124 {
		margin-bottom: 7.75rem !important
	}

	.ml-sm-124,
	.mx-sm-124 {
		margin-left: 7.75rem !important
	}

	.m-sm-125 {
		margin: 7.8125rem !important
	}

	.mt-sm-125,
	.my-sm-125 {
		margin-top: 7.8125rem !important
	}

	.mr-sm-125,
	.mx-sm-125 {
		margin-right: 7.8125rem !important
	}

	.mb-sm-125,
	.my-sm-125 {
		margin-bottom: 7.8125rem !important
	}

	.ml-sm-125,
	.mx-sm-125 {
		margin-left: 7.8125rem !important
	}

	.m-sm-126 {
		margin: 7.875rem !important
	}

	.mt-sm-126,
	.my-sm-126 {
		margin-top: 7.875rem !important
	}

	.mr-sm-126,
	.mx-sm-126 {
		margin-right: 7.875rem !important
	}

	.mb-sm-126,
	.my-sm-126 {
		margin-bottom: 7.875rem !important
	}

	.ml-sm-126,
	.mx-sm-126 {
		margin-left: 7.875rem !important
	}

	.m-sm-127 {
		margin: 7.9375rem !important
	}

	.mt-sm-127,
	.my-sm-127 {
		margin-top: 7.9375rem !important
	}

	.mr-sm-127,
	.mx-sm-127 {
		margin-right: 7.9375rem !important
	}

	.mb-sm-127,
	.my-sm-127 {
		margin-bottom: 7.9375rem !important
	}

	.ml-sm-127,
	.mx-sm-127 {
		margin-left: 7.9375rem !important
	}

	.m-sm-128 {
		margin: 8rem !important
	}

	.mt-sm-128,
	.my-sm-128 {
		margin-top: 8rem !important
	}

	.mr-sm-128,
	.mx-sm-128 {
		margin-right: 8rem !important
	}

	.mb-sm-128,
	.my-sm-128 {
		margin-bottom: 8rem !important
	}

	.ml-sm-128,
	.mx-sm-128 {
		margin-left: 8rem !important
	}

	.m-sm-129 {
		margin: 8.0625rem !important
	}

	.mt-sm-129,
	.my-sm-129 {
		margin-top: 8.0625rem !important
	}

	.mr-sm-129,
	.mx-sm-129 {
		margin-right: 8.0625rem !important
	}

	.mb-sm-129,
	.my-sm-129 {
		margin-bottom: 8.0625rem !important
	}

	.ml-sm-129,
	.mx-sm-129 {
		margin-left: 8.0625rem !important
	}

	.m-sm-130 {
		margin: 8.125rem !important
	}

	.mt-sm-130,
	.my-sm-130 {
		margin-top: 8.125rem !important
	}

	.mr-sm-130,
	.mx-sm-130 {
		margin-right: 8.125rem !important
	}

	.mb-sm-130,
	.my-sm-130 {
		margin-bottom: 8.125rem !important
	}

	.ml-sm-130,
	.mx-sm-130 {
		margin-left: 8.125rem !important
	}

	.m-sm-131 {
		margin: 8.1875rem !important
	}

	.mt-sm-131,
	.my-sm-131 {
		margin-top: 8.1875rem !important
	}

	.mr-sm-131,
	.mx-sm-131 {
		margin-right: 8.1875rem !important
	}

	.mb-sm-131,
	.my-sm-131 {
		margin-bottom: 8.1875rem !important
	}

	.ml-sm-131,
	.mx-sm-131 {
		margin-left: 8.1875rem !important
	}

	.m-sm-132 {
		margin: 8.25rem !important
	}

	.mt-sm-132,
	.my-sm-132 {
		margin-top: 8.25rem !important
	}

	.mr-sm-132,
	.mx-sm-132 {
		margin-right: 8.25rem !important
	}

	.mb-sm-132,
	.my-sm-132 {
		margin-bottom: 8.25rem !important
	}

	.ml-sm-132,
	.mx-sm-132 {
		margin-left: 8.25rem !important
	}

	.m-sm-133 {
		margin: 8.3125rem !important
	}

	.mt-sm-133,
	.my-sm-133 {
		margin-top: 8.3125rem !important
	}

	.mr-sm-133,
	.mx-sm-133 {
		margin-right: 8.3125rem !important
	}

	.mb-sm-133,
	.my-sm-133 {
		margin-bottom: 8.3125rem !important
	}

	.ml-sm-133,
	.mx-sm-133 {
		margin-left: 8.3125rem !important
	}

	.m-sm-134 {
		margin: 8.375rem !important
	}

	.mt-sm-134,
	.my-sm-134 {
		margin-top: 8.375rem !important
	}

	.mr-sm-134,
	.mx-sm-134 {
		margin-right: 8.375rem !important
	}

	.mb-sm-134,
	.my-sm-134 {
		margin-bottom: 8.375rem !important
	}

	.ml-sm-134,
	.mx-sm-134 {
		margin-left: 8.375rem !important
	}

	.m-sm-135 {
		margin: 8.4375rem !important
	}

	.mt-sm-135,
	.my-sm-135 {
		margin-top: 8.4375rem !important
	}

	.mr-sm-135,
	.mx-sm-135 {
		margin-right: 8.4375rem !important
	}

	.mb-sm-135,
	.my-sm-135 {
		margin-bottom: 8.4375rem !important
	}

	.ml-sm-135,
	.mx-sm-135 {
		margin-left: 8.4375rem !important
	}

	.m-sm-136 {
		margin: 8.5rem !important
	}

	.mt-sm-136,
	.my-sm-136 {
		margin-top: 8.5rem !important
	}

	.mr-sm-136,
	.mx-sm-136 {
		margin-right: 8.5rem !important
	}

	.mb-sm-136,
	.my-sm-136 {
		margin-bottom: 8.5rem !important
	}

	.ml-sm-136,
	.mx-sm-136 {
		margin-left: 8.5rem !important
	}

	.m-sm-137 {
		margin: 8.5625rem !important
	}

	.mt-sm-137,
	.my-sm-137 {
		margin-top: 8.5625rem !important
	}

	.mr-sm-137,
	.mx-sm-137 {
		margin-right: 8.5625rem !important
	}

	.mb-sm-137,
	.my-sm-137 {
		margin-bottom: 8.5625rem !important
	}

	.ml-sm-137,
	.mx-sm-137 {
		margin-left: 8.5625rem !important
	}

	.m-sm-138 {
		margin: 8.625rem !important
	}

	.mt-sm-138,
	.my-sm-138 {
		margin-top: 8.625rem !important
	}

	.mr-sm-138,
	.mx-sm-138 {
		margin-right: 8.625rem !important
	}

	.mb-sm-138,
	.my-sm-138 {
		margin-bottom: 8.625rem !important
	}

	.ml-sm-138,
	.mx-sm-138 {
		margin-left: 8.625rem !important
	}

	.m-sm-139 {
		margin: 8.6875rem !important
	}

	.mt-sm-139,
	.my-sm-139 {
		margin-top: 8.6875rem !important
	}

	.mr-sm-139,
	.mx-sm-139 {
		margin-right: 8.6875rem !important
	}

	.mb-sm-139,
	.my-sm-139 {
		margin-bottom: 8.6875rem !important
	}

	.ml-sm-139,
	.mx-sm-139 {
		margin-left: 8.6875rem !important
	}

	.m-sm-140 {
		margin: 8.75rem !important
	}

	.mt-sm-140,
	.my-sm-140 {
		margin-top: 8.75rem !important
	}

	.mr-sm-140,
	.mx-sm-140 {
		margin-right: 8.75rem !important
	}

	.mb-sm-140,
	.my-sm-140 {
		margin-bottom: 8.75rem !important
	}

	.ml-sm-140,
	.mx-sm-140 {
		margin-left: 8.75rem !important
	}

	.m-sm-141 {
		margin: 8.8125rem !important
	}

	.mt-sm-141,
	.my-sm-141 {
		margin-top: 8.8125rem !important
	}

	.mr-sm-141,
	.mx-sm-141 {
		margin-right: 8.8125rem !important
	}

	.mb-sm-141,
	.my-sm-141 {
		margin-bottom: 8.8125rem !important
	}

	.ml-sm-141,
	.mx-sm-141 {
		margin-left: 8.8125rem !important
	}

	.m-sm-142 {
		margin: 8.875rem !important
	}

	.mt-sm-142,
	.my-sm-142 {
		margin-top: 8.875rem !important
	}

	.mr-sm-142,
	.mx-sm-142 {
		margin-right: 8.875rem !important
	}

	.mb-sm-142,
	.my-sm-142 {
		margin-bottom: 8.875rem !important
	}

	.ml-sm-142,
	.mx-sm-142 {
		margin-left: 8.875rem !important
	}

	.m-sm-143 {
		margin: 8.9375rem !important
	}

	.mt-sm-143,
	.my-sm-143 {
		margin-top: 8.9375rem !important
	}

	.mr-sm-143,
	.mx-sm-143 {
		margin-right: 8.9375rem !important
	}

	.mb-sm-143,
	.my-sm-143 {
		margin-bottom: 8.9375rem !important
	}

	.ml-sm-143,
	.mx-sm-143 {
		margin-left: 8.9375rem !important
	}

	.m-sm-144 {
		margin: 9rem !important
	}

	.mt-sm-144,
	.my-sm-144 {
		margin-top: 9rem !important
	}

	.mr-sm-144,
	.mx-sm-144 {
		margin-right: 9rem !important
	}

	.mb-sm-144,
	.my-sm-144 {
		margin-bottom: 9rem !important
	}

	.ml-sm-144,
	.mx-sm-144 {
		margin-left: 9rem !important
	}

	.m-sm-145 {
		margin: 9.0625rem !important
	}

	.mt-sm-145,
	.my-sm-145 {
		margin-top: 9.0625rem !important
	}

	.mr-sm-145,
	.mx-sm-145 {
		margin-right: 9.0625rem !important
	}

	.mb-sm-145,
	.my-sm-145 {
		margin-bottom: 9.0625rem !important
	}

	.ml-sm-145,
	.mx-sm-145 {
		margin-left: 9.0625rem !important
	}

	.m-sm-146 {
		margin: 9.125rem !important
	}

	.mt-sm-146,
	.my-sm-146 {
		margin-top: 9.125rem !important
	}

	.mr-sm-146,
	.mx-sm-146 {
		margin-right: 9.125rem !important
	}

	.mb-sm-146,
	.my-sm-146 {
		margin-bottom: 9.125rem !important
	}

	.ml-sm-146,
	.mx-sm-146 {
		margin-left: 9.125rem !important
	}

	.m-sm-147 {
		margin: 9.1875rem !important
	}

	.mt-sm-147,
	.my-sm-147 {
		margin-top: 9.1875rem !important
	}

	.mr-sm-147,
	.mx-sm-147 {
		margin-right: 9.1875rem !important
	}

	.mb-sm-147,
	.my-sm-147 {
		margin-bottom: 9.1875rem !important
	}

	.ml-sm-147,
	.mx-sm-147 {
		margin-left: 9.1875rem !important
	}

	.m-sm-148 {
		margin: 9.25rem !important
	}

	.mt-sm-148,
	.my-sm-148 {
		margin-top: 9.25rem !important
	}

	.mr-sm-148,
	.mx-sm-148 {
		margin-right: 9.25rem !important
	}

	.mb-sm-148,
	.my-sm-148 {
		margin-bottom: 9.25rem !important
	}

	.ml-sm-148,
	.mx-sm-148 {
		margin-left: 9.25rem !important
	}

	.m-sm-149 {
		margin: 9.3125rem !important
	}

	.mt-sm-149,
	.my-sm-149 {
		margin-top: 9.3125rem !important
	}

	.mr-sm-149,
	.mx-sm-149 {
		margin-right: 9.3125rem !important
	}

	.mb-sm-149,
	.my-sm-149 {
		margin-bottom: 9.3125rem !important
	}

	.ml-sm-149,
	.mx-sm-149 {
		margin-left: 9.3125rem !important
	}

	.m-sm-150 {
		margin: 9.375rem !important
	}

	.mt-sm-150,
	.my-sm-150 {
		margin-top: 9.375rem !important
	}

	.mr-sm-150,
	.mx-sm-150 {
		margin-right: 9.375rem !important
	}

	.mb-sm-150,
	.my-sm-150 {
		margin-bottom: 9.375rem !important
	}

	.ml-sm-150,
	.mx-sm-150 {
		margin-left: 9.375rem !important
	}

	.m-sm-151 {
		margin: 9.4375rem !important
	}

	.mt-sm-151,
	.my-sm-151 {
		margin-top: 9.4375rem !important
	}

	.mr-sm-151,
	.mx-sm-151 {
		margin-right: 9.4375rem !important
	}

	.mb-sm-151,
	.my-sm-151 {
		margin-bottom: 9.4375rem !important
	}

	.ml-sm-151,
	.mx-sm-151 {
		margin-left: 9.4375rem !important
	}

	.m-sm-152 {
		margin: 9.5rem !important
	}

	.mt-sm-152,
	.my-sm-152 {
		margin-top: 9.5rem !important
	}

	.mr-sm-152,
	.mx-sm-152 {
		margin-right: 9.5rem !important
	}

	.mb-sm-152,
	.my-sm-152 {
		margin-bottom: 9.5rem !important
	}

	.ml-sm-152,
	.mx-sm-152 {
		margin-left: 9.5rem !important
	}

	.m-sm-153 {
		margin: 9.5625rem !important
	}

	.mt-sm-153,
	.my-sm-153 {
		margin-top: 9.5625rem !important
	}

	.mr-sm-153,
	.mx-sm-153 {
		margin-right: 9.5625rem !important
	}

	.mb-sm-153,
	.my-sm-153 {
		margin-bottom: 9.5625rem !important
	}

	.ml-sm-153,
	.mx-sm-153 {
		margin-left: 9.5625rem !important
	}

	.m-sm-154 {
		margin: 9.625rem !important
	}

	.mt-sm-154,
	.my-sm-154 {
		margin-top: 9.625rem !important
	}

	.mr-sm-154,
	.mx-sm-154 {
		margin-right: 9.625rem !important
	}

	.mb-sm-154,
	.my-sm-154 {
		margin-bottom: 9.625rem !important
	}

	.ml-sm-154,
	.mx-sm-154 {
		margin-left: 9.625rem !important
	}

	.m-sm-155 {
		margin: 9.6875rem !important
	}

	.mt-sm-155,
	.my-sm-155 {
		margin-top: 9.6875rem !important
	}

	.mr-sm-155,
	.mx-sm-155 {
		margin-right: 9.6875rem !important
	}

	.mb-sm-155,
	.my-sm-155 {
		margin-bottom: 9.6875rem !important
	}

	.ml-sm-155,
	.mx-sm-155 {
		margin-left: 9.6875rem !important
	}

	.m-sm-156 {
		margin: 9.75rem !important
	}

	.mt-sm-156,
	.my-sm-156 {
		margin-top: 9.75rem !important
	}

	.mr-sm-156,
	.mx-sm-156 {
		margin-right: 9.75rem !important
	}

	.mb-sm-156,
	.my-sm-156 {
		margin-bottom: 9.75rem !important
	}

	.ml-sm-156,
	.mx-sm-156 {
		margin-left: 9.75rem !important
	}

	.m-sm-157 {
		margin: 9.8125rem !important
	}

	.mt-sm-157,
	.my-sm-157 {
		margin-top: 9.8125rem !important
	}

	.mr-sm-157,
	.mx-sm-157 {
		margin-right: 9.8125rem !important
	}

	.mb-sm-157,
	.my-sm-157 {
		margin-bottom: 9.8125rem !important
	}

	.ml-sm-157,
	.mx-sm-157 {
		margin-left: 9.8125rem !important
	}

	.m-sm-158 {
		margin: 9.875rem !important
	}

	.mt-sm-158,
	.my-sm-158 {
		margin-top: 9.875rem !important
	}

	.mr-sm-158,
	.mx-sm-158 {
		margin-right: 9.875rem !important
	}

	.mb-sm-158,
	.my-sm-158 {
		margin-bottom: 9.875rem !important
	}

	.ml-sm-158,
	.mx-sm-158 {
		margin-left: 9.875rem !important
	}

	.m-sm-159 {
		margin: 9.9375rem !important
	}

	.mt-sm-159,
	.my-sm-159 {
		margin-top: 9.9375rem !important
	}

	.mr-sm-159,
	.mx-sm-159 {
		margin-right: 9.9375rem !important
	}

	.mb-sm-159,
	.my-sm-159 {
		margin-bottom: 9.9375rem !important
	}

	.ml-sm-159,
	.mx-sm-159 {
		margin-left: 9.9375rem !important
	}

	.m-sm-160 {
		margin: 10rem !important
	}

	.mt-sm-160,
	.my-sm-160 {
		margin-top: 10rem !important
	}

	.mr-sm-160,
	.mx-sm-160 {
		margin-right: 10rem !important
	}

	.mb-sm-160,
	.my-sm-160 {
		margin-bottom: 10rem !important
	}

	.ml-sm-160,
	.mx-sm-160 {
		margin-left: 10rem !important
	}

	.m-sm-161 {
		margin: 10.0625rem !important
	}

	.mt-sm-161,
	.my-sm-161 {
		margin-top: 10.0625rem !important
	}

	.mr-sm-161,
	.mx-sm-161 {
		margin-right: 10.0625rem !important
	}

	.mb-sm-161,
	.my-sm-161 {
		margin-bottom: 10.0625rem !important
	}

	.ml-sm-161,
	.mx-sm-161 {
		margin-left: 10.0625rem !important
	}

	.m-sm-162 {
		margin: 10.125rem !important
	}

	.mt-sm-162,
	.my-sm-162 {
		margin-top: 10.125rem !important
	}

	.mr-sm-162,
	.mx-sm-162 {
		margin-right: 10.125rem !important
	}

	.mb-sm-162,
	.my-sm-162 {
		margin-bottom: 10.125rem !important
	}

	.ml-sm-162,
	.mx-sm-162 {
		margin-left: 10.125rem !important
	}

	.m-sm-163 {
		margin: 10.1875rem !important
	}

	.mt-sm-163,
	.my-sm-163 {
		margin-top: 10.1875rem !important
	}

	.mr-sm-163,
	.mx-sm-163 {
		margin-right: 10.1875rem !important
	}

	.mb-sm-163,
	.my-sm-163 {
		margin-bottom: 10.1875rem !important
	}

	.ml-sm-163,
	.mx-sm-163 {
		margin-left: 10.1875rem !important
	}

	.m-sm-164 {
		margin: 10.25rem !important
	}

	.mt-sm-164,
	.my-sm-164 {
		margin-top: 10.25rem !important
	}

	.mr-sm-164,
	.mx-sm-164 {
		margin-right: 10.25rem !important
	}

	.mb-sm-164,
	.my-sm-164 {
		margin-bottom: 10.25rem !important
	}

	.ml-sm-164,
	.mx-sm-164 {
		margin-left: 10.25rem !important
	}

	.m-sm-165 {
		margin: 10.3125rem !important
	}

	.mt-sm-165,
	.my-sm-165 {
		margin-top: 10.3125rem !important
	}

	.mr-sm-165,
	.mx-sm-165 {
		margin-right: 10.3125rem !important
	}

	.mb-sm-165,
	.my-sm-165 {
		margin-bottom: 10.3125rem !important
	}

	.ml-sm-165,
	.mx-sm-165 {
		margin-left: 10.3125rem !important
	}

	.m-sm-166 {
		margin: 10.375rem !important
	}

	.mt-sm-166,
	.my-sm-166 {
		margin-top: 10.375rem !important
	}

	.mr-sm-166,
	.mx-sm-166 {
		margin-right: 10.375rem !important
	}

	.mb-sm-166,
	.my-sm-166 {
		margin-bottom: 10.375rem !important
	}

	.ml-sm-166,
	.mx-sm-166 {
		margin-left: 10.375rem !important
	}

	.m-sm-167 {
		margin: 10.4375rem !important
	}

	.mt-sm-167,
	.my-sm-167 {
		margin-top: 10.4375rem !important
	}

	.mr-sm-167,
	.mx-sm-167 {
		margin-right: 10.4375rem !important
	}

	.mb-sm-167,
	.my-sm-167 {
		margin-bottom: 10.4375rem !important
	}

	.ml-sm-167,
	.mx-sm-167 {
		margin-left: 10.4375rem !important
	}

	.m-sm-168 {
		margin: 10.5rem !important
	}

	.mt-sm-168,
	.my-sm-168 {
		margin-top: 10.5rem !important
	}

	.mr-sm-168,
	.mx-sm-168 {
		margin-right: 10.5rem !important
	}

	.mb-sm-168,
	.my-sm-168 {
		margin-bottom: 10.5rem !important
	}

	.ml-sm-168,
	.mx-sm-168 {
		margin-left: 10.5rem !important
	}

	.m-sm-169 {
		margin: 10.5625rem !important
	}

	.mt-sm-169,
	.my-sm-169 {
		margin-top: 10.5625rem !important
	}

	.mr-sm-169,
	.mx-sm-169 {
		margin-right: 10.5625rem !important
	}

	.mb-sm-169,
	.my-sm-169 {
		margin-bottom: 10.5625rem !important
	}

	.ml-sm-169,
	.mx-sm-169 {
		margin-left: 10.5625rem !important
	}

	.m-sm-170 {
		margin: 10.625rem !important
	}

	.mt-sm-170,
	.my-sm-170 {
		margin-top: 10.625rem !important
	}

	.mr-sm-170,
	.mx-sm-170 {
		margin-right: 10.625rem !important
	}

	.mb-sm-170,
	.my-sm-170 {
		margin-bottom: 10.625rem !important
	}

	.ml-sm-170,
	.mx-sm-170 {
		margin-left: 10.625rem !important
	}

	.m-sm-171 {
		margin: 10.6875rem !important
	}

	.mt-sm-171,
	.my-sm-171 {
		margin-top: 10.6875rem !important
	}

	.mr-sm-171,
	.mx-sm-171 {
		margin-right: 10.6875rem !important
	}

	.mb-sm-171,
	.my-sm-171 {
		margin-bottom: 10.6875rem !important
	}

	.ml-sm-171,
	.mx-sm-171 {
		margin-left: 10.6875rem !important
	}

	.m-sm-172 {
		margin: 10.75rem !important
	}

	.mt-sm-172,
	.my-sm-172 {
		margin-top: 10.75rem !important
	}

	.mr-sm-172,
	.mx-sm-172 {
		margin-right: 10.75rem !important
	}

	.mb-sm-172,
	.my-sm-172 {
		margin-bottom: 10.75rem !important
	}

	.ml-sm-172,
	.mx-sm-172 {
		margin-left: 10.75rem !important
	}

	.m-sm-173 {
		margin: 10.8125rem !important
	}

	.mt-sm-173,
	.my-sm-173 {
		margin-top: 10.8125rem !important
	}

	.mr-sm-173,
	.mx-sm-173 {
		margin-right: 10.8125rem !important
	}

	.mb-sm-173,
	.my-sm-173 {
		margin-bottom: 10.8125rem !important
	}

	.ml-sm-173,
	.mx-sm-173 {
		margin-left: 10.8125rem !important
	}

	.m-sm-174 {
		margin: 10.875rem !important
	}

	.mt-sm-174,
	.my-sm-174 {
		margin-top: 10.875rem !important
	}

	.mr-sm-174,
	.mx-sm-174 {
		margin-right: 10.875rem !important
	}

	.mb-sm-174,
	.my-sm-174 {
		margin-bottom: 10.875rem !important
	}

	.ml-sm-174,
	.mx-sm-174 {
		margin-left: 10.875rem !important
	}

	.m-sm-175 {
		margin: 10.9375rem !important
	}

	.mt-sm-175,
	.my-sm-175 {
		margin-top: 10.9375rem !important
	}

	.mr-sm-175,
	.mx-sm-175 {
		margin-right: 10.9375rem !important
	}

	.mb-sm-175,
	.my-sm-175 {
		margin-bottom: 10.9375rem !important
	}

	.ml-sm-175,
	.mx-sm-175 {
		margin-left: 10.9375rem !important
	}

	.m-sm-176 {
		margin: 11rem !important
	}

	.mt-sm-176,
	.my-sm-176 {
		margin-top: 11rem !important
	}

	.mr-sm-176,
	.mx-sm-176 {
		margin-right: 11rem !important
	}

	.mb-sm-176,
	.my-sm-176 {
		margin-bottom: 11rem !important
	}

	.ml-sm-176,
	.mx-sm-176 {
		margin-left: 11rem !important
	}

	.m-sm-177 {
		margin: 11.0625rem !important
	}

	.mt-sm-177,
	.my-sm-177 {
		margin-top: 11.0625rem !important
	}

	.mr-sm-177,
	.mx-sm-177 {
		margin-right: 11.0625rem !important
	}

	.mb-sm-177,
	.my-sm-177 {
		margin-bottom: 11.0625rem !important
	}

	.ml-sm-177,
	.mx-sm-177 {
		margin-left: 11.0625rem !important
	}

	.m-sm-178 {
		margin: 11.125rem !important
	}

	.mt-sm-178,
	.my-sm-178 {
		margin-top: 11.125rem !important
	}

	.mr-sm-178,
	.mx-sm-178 {
		margin-right: 11.125rem !important
	}

	.mb-sm-178,
	.my-sm-178 {
		margin-bottom: 11.125rem !important
	}

	.ml-sm-178,
	.mx-sm-178 {
		margin-left: 11.125rem !important
	}

	.m-sm-179 {
		margin: 11.1875rem !important
	}

	.mt-sm-179,
	.my-sm-179 {
		margin-top: 11.1875rem !important
	}

	.mr-sm-179,
	.mx-sm-179 {
		margin-right: 11.1875rem !important
	}

	.mb-sm-179,
	.my-sm-179 {
		margin-bottom: 11.1875rem !important
	}

	.ml-sm-179,
	.mx-sm-179 {
		margin-left: 11.1875rem !important
	}

	.m-sm-180 {
		margin: 11.25rem !important
	}

	.mt-sm-180,
	.my-sm-180 {
		margin-top: 11.25rem !important
	}

	.mr-sm-180,
	.mx-sm-180 {
		margin-right: 11.25rem !important
	}

	.mb-sm-180,
	.my-sm-180 {
		margin-bottom: 11.25rem !important
	}

	.ml-sm-180,
	.mx-sm-180 {
		margin-left: 11.25rem !important
	}

	.m-sm-181 {
		margin: 11.3125rem !important
	}

	.mt-sm-181,
	.my-sm-181 {
		margin-top: 11.3125rem !important
	}

	.mr-sm-181,
	.mx-sm-181 {
		margin-right: 11.3125rem !important
	}

	.mb-sm-181,
	.my-sm-181 {
		margin-bottom: 11.3125rem !important
	}

	.ml-sm-181,
	.mx-sm-181 {
		margin-left: 11.3125rem !important
	}

	.m-sm-182 {
		margin: 11.375rem !important
	}

	.mt-sm-182,
	.my-sm-182 {
		margin-top: 11.375rem !important
	}

	.mr-sm-182,
	.mx-sm-182 {
		margin-right: 11.375rem !important
	}

	.mb-sm-182,
	.my-sm-182 {
		margin-bottom: 11.375rem !important
	}

	.ml-sm-182,
	.mx-sm-182 {
		margin-left: 11.375rem !important
	}

	.m-sm-183 {
		margin: 11.4375rem !important
	}

	.mt-sm-183,
	.my-sm-183 {
		margin-top: 11.4375rem !important
	}

	.mr-sm-183,
	.mx-sm-183 {
		margin-right: 11.4375rem !important
	}

	.mb-sm-183,
	.my-sm-183 {
		margin-bottom: 11.4375rem !important
	}

	.ml-sm-183,
	.mx-sm-183 {
		margin-left: 11.4375rem !important
	}

	.m-sm-184 {
		margin: 11.5rem !important
	}

	.mt-sm-184,
	.my-sm-184 {
		margin-top: 11.5rem !important
	}

	.mr-sm-184,
	.mx-sm-184 {
		margin-right: 11.5rem !important
	}

	.mb-sm-184,
	.my-sm-184 {
		margin-bottom: 11.5rem !important
	}

	.ml-sm-184,
	.mx-sm-184 {
		margin-left: 11.5rem !important
	}

	.m-sm-185 {
		margin: 11.5625rem !important
	}

	.mt-sm-185,
	.my-sm-185 {
		margin-top: 11.5625rem !important
	}

	.mr-sm-185,
	.mx-sm-185 {
		margin-right: 11.5625rem !important
	}

	.mb-sm-185,
	.my-sm-185 {
		margin-bottom: 11.5625rem !important
	}

	.ml-sm-185,
	.mx-sm-185 {
		margin-left: 11.5625rem !important
	}

	.m-sm-186 {
		margin: 11.625rem !important
	}

	.mt-sm-186,
	.my-sm-186 {
		margin-top: 11.625rem !important
	}

	.mr-sm-186,
	.mx-sm-186 {
		margin-right: 11.625rem !important
	}

	.mb-sm-186,
	.my-sm-186 {
		margin-bottom: 11.625rem !important
	}

	.ml-sm-186,
	.mx-sm-186 {
		margin-left: 11.625rem !important
	}

	.m-sm-187 {
		margin: 11.6875rem !important
	}

	.mt-sm-187,
	.my-sm-187 {
		margin-top: 11.6875rem !important
	}

	.mr-sm-187,
	.mx-sm-187 {
		margin-right: 11.6875rem !important
	}

	.mb-sm-187,
	.my-sm-187 {
		margin-bottom: 11.6875rem !important
	}

	.ml-sm-187,
	.mx-sm-187 {
		margin-left: 11.6875rem !important
	}

	.m-sm-188 {
		margin: 11.75rem !important
	}

	.mt-sm-188,
	.my-sm-188 {
		margin-top: 11.75rem !important
	}

	.mr-sm-188,
	.mx-sm-188 {
		margin-right: 11.75rem !important
	}

	.mb-sm-188,
	.my-sm-188 {
		margin-bottom: 11.75rem !important
	}

	.ml-sm-188,
	.mx-sm-188 {
		margin-left: 11.75rem !important
	}

	.m-sm-189 {
		margin: 11.8125rem !important
	}

	.mt-sm-189,
	.my-sm-189 {
		margin-top: 11.8125rem !important
	}

	.mr-sm-189,
	.mx-sm-189 {
		margin-right: 11.8125rem !important
	}

	.mb-sm-189,
	.my-sm-189 {
		margin-bottom: 11.8125rem !important
	}

	.ml-sm-189,
	.mx-sm-189 {
		margin-left: 11.8125rem !important
	}

	.m-sm-190 {
		margin: 11.875rem !important
	}

	.mt-sm-190,
	.my-sm-190 {
		margin-top: 11.875rem !important
	}

	.mr-sm-190,
	.mx-sm-190 {
		margin-right: 11.875rem !important
	}

	.mb-sm-190,
	.my-sm-190 {
		margin-bottom: 11.875rem !important
	}

	.ml-sm-190,
	.mx-sm-190 {
		margin-left: 11.875rem !important
	}

	.m-sm-191 {
		margin: 11.9375rem !important
	}

	.mt-sm-191,
	.my-sm-191 {
		margin-top: 11.9375rem !important
	}

	.mr-sm-191,
	.mx-sm-191 {
		margin-right: 11.9375rem !important
	}

	.mb-sm-191,
	.my-sm-191 {
		margin-bottom: 11.9375rem !important
	}

	.ml-sm-191,
	.mx-sm-191 {
		margin-left: 11.9375rem !important
	}

	.m-sm-192 {
		margin: 12rem !important
	}

	.mt-sm-192,
	.my-sm-192 {
		margin-top: 12rem !important
	}

	.mr-sm-192,
	.mx-sm-192 {
		margin-right: 12rem !important
	}

	.mb-sm-192,
	.my-sm-192 {
		margin-bottom: 12rem !important
	}

	.ml-sm-192,
	.mx-sm-192 {
		margin-left: 12rem !important
	}

	.m-sm-193 {
		margin: 12.0625rem !important
	}

	.mt-sm-193,
	.my-sm-193 {
		margin-top: 12.0625rem !important
	}

	.mr-sm-193,
	.mx-sm-193 {
		margin-right: 12.0625rem !important
	}

	.mb-sm-193,
	.my-sm-193 {
		margin-bottom: 12.0625rem !important
	}

	.ml-sm-193,
	.mx-sm-193 {
		margin-left: 12.0625rem !important
	}

	.m-sm-194 {
		margin: 12.125rem !important
	}

	.mt-sm-194,
	.my-sm-194 {
		margin-top: 12.125rem !important
	}

	.mr-sm-194,
	.mx-sm-194 {
		margin-right: 12.125rem !important
	}

	.mb-sm-194,
	.my-sm-194 {
		margin-bottom: 12.125rem !important
	}

	.ml-sm-194,
	.mx-sm-194 {
		margin-left: 12.125rem !important
	}

	.m-sm-195 {
		margin: 12.1875rem !important
	}

	.mt-sm-195,
	.my-sm-195 {
		margin-top: 12.1875rem !important
	}

	.mr-sm-195,
	.mx-sm-195 {
		margin-right: 12.1875rem !important
	}

	.mb-sm-195,
	.my-sm-195 {
		margin-bottom: 12.1875rem !important
	}

	.ml-sm-195,
	.mx-sm-195 {
		margin-left: 12.1875rem !important
	}

	.m-sm-196 {
		margin: 12.25rem !important
	}

	.mt-sm-196,
	.my-sm-196 {
		margin-top: 12.25rem !important
	}

	.mr-sm-196,
	.mx-sm-196 {
		margin-right: 12.25rem !important
	}

	.mb-sm-196,
	.my-sm-196 {
		margin-bottom: 12.25rem !important
	}

	.ml-sm-196,
	.mx-sm-196 {
		margin-left: 12.25rem !important
	}

	.m-sm-197 {
		margin: 12.3125rem !important
	}

	.mt-sm-197,
	.my-sm-197 {
		margin-top: 12.3125rem !important
	}

	.mr-sm-197,
	.mx-sm-197 {
		margin-right: 12.3125rem !important
	}

	.mb-sm-197,
	.my-sm-197 {
		margin-bottom: 12.3125rem !important
	}

	.ml-sm-197,
	.mx-sm-197 {
		margin-left: 12.3125rem !important
	}

	.m-sm-198 {
		margin: 12.375rem !important
	}

	.mt-sm-198,
	.my-sm-198 {
		margin-top: 12.375rem !important
	}

	.mr-sm-198,
	.mx-sm-198 {
		margin-right: 12.375rem !important
	}

	.mb-sm-198,
	.my-sm-198 {
		margin-bottom: 12.375rem !important
	}

	.ml-sm-198,
	.mx-sm-198 {
		margin-left: 12.375rem !important
	}

	.m-sm-199 {
		margin: 12.4375rem !important
	}

	.mt-sm-199,
	.my-sm-199 {
		margin-top: 12.4375rem !important
	}

	.mr-sm-199,
	.mx-sm-199 {
		margin-right: 12.4375rem !important
	}

	.mb-sm-199,
	.my-sm-199 {
		margin-bottom: 12.4375rem !important
	}

	.ml-sm-199,
	.mx-sm-199 {
		margin-left: 12.4375rem !important
	}

	.m-sm-200 {
		margin: 12.5rem !important
	}

	.mt-sm-200,
	.my-sm-200 {
		margin-top: 12.5rem !important
	}

	.mr-sm-200,
	.mx-sm-200 {
		margin-right: 12.5rem !important
	}

	.mb-sm-200,
	.my-sm-200 {
		margin-bottom: 12.5rem !important
	}

	.ml-sm-200,
	.mx-sm-200 {
		margin-left: 12.5rem !important
	}

	.p-sm-0 {
		padding: 0 !important
	}

	.pt-sm-0,
	.py-sm-0 {
		padding-top: 0 !important
	}

	.pr-sm-0,
	.px-sm-0 {
		padding-right: 0 !important
	}

	.pb-sm-0,
	.py-sm-0 {
		padding-bottom: 0 !important
	}

	.pl-sm-0,
	.px-sm-0 {
		padding-left: 0 !important
	}

	.p-sm-1 {
		padding: .0625rem !important
	}

	.pt-sm-1,
	.py-sm-1 {
		padding-top: .0625rem !important
	}

	.pr-sm-1,
	.px-sm-1 {
		padding-right: .0625rem !important
	}

	.pb-sm-1,
	.py-sm-1 {
		padding-bottom: .0625rem !important
	}

	.pl-sm-1,
	.px-sm-1 {
		padding-left: .0625rem !important
	}

	.p-sm-2 {
		padding: .125rem !important
	}

	.pt-sm-2,
	.py-sm-2 {
		padding-top: .125rem !important
	}

	.pr-sm-2,
	.px-sm-2 {
		padding-right: .125rem !important
	}

	.pb-sm-2,
	.py-sm-2 {
		padding-bottom: .125rem !important
	}

	.pl-sm-2,
	.px-sm-2 {
		padding-left: .125rem !important
	}

	.p-sm-3 {
		padding: .1875rem !important
	}

	.pt-sm-3,
	.py-sm-3 {
		padding-top: .1875rem !important
	}

	.pr-sm-3,
	.px-sm-3 {
		padding-right: .1875rem !important
	}

	.pb-sm-3,
	.py-sm-3 {
		padding-bottom: .1875rem !important
	}

	.pl-sm-3,
	.px-sm-3 {
		padding-left: .1875rem !important
	}

	.p-sm-4 {
		padding: .25rem !important
	}

	.pt-sm-4,
	.py-sm-4 {
		padding-top: .25rem !important
	}

	.pr-sm-4,
	.px-sm-4 {
		padding-right: .25rem !important
	}

	.pb-sm-4,
	.py-sm-4 {
		padding-bottom: .25rem !important
	}

	.pl-sm-4,
	.px-sm-4 {
		padding-left: .25rem !important
	}

	.p-sm-5 {
		padding: .3125rem !important
	}

	.pt-sm-5,
	.py-sm-5 {
		padding-top: .3125rem !important
	}

	.pr-sm-5,
	.px-sm-5 {
		padding-right: .3125rem !important
	}

	.pb-sm-5,
	.py-sm-5 {
		padding-bottom: .3125rem !important
	}

	.pl-sm-5,
	.px-sm-5 {
		padding-left: .3125rem !important
	}

	.p-sm-6 {
		padding: .375rem !important
	}

	.pt-sm-6,
	.py-sm-6 {
		padding-top: .375rem !important
	}

	.pr-sm-6,
	.px-sm-6 {
		padding-right: .375rem !important
	}

	.pb-sm-6,
	.py-sm-6 {
		padding-bottom: .375rem !important
	}

	.pl-sm-6,
	.px-sm-6 {
		padding-left: .375rem !important
	}

	.p-sm-7 {
		padding: .4375rem !important
	}

	.pt-sm-7,
	.py-sm-7 {
		padding-top: .4375rem !important
	}

	.pr-sm-7,
	.px-sm-7 {
		padding-right: .4375rem !important
	}

	.pb-sm-7,
	.py-sm-7 {
		padding-bottom: .4375rem !important
	}

	.pl-sm-7,
	.px-sm-7 {
		padding-left: .4375rem !important
	}

	.p-sm-8 {
		padding: .5rem !important
	}

	.pt-sm-8,
	.py-sm-8 {
		padding-top: .5rem !important
	}

	.pr-sm-8,
	.px-sm-8 {
		padding-right: .5rem !important
	}

	.pb-sm-8,
	.py-sm-8 {
		padding-bottom: .5rem !important
	}

	.pl-sm-8,
	.px-sm-8 {
		padding-left: .5rem !important
	}

	.p-sm-9 {
		padding: .5625rem !important
	}

	.pt-sm-9,
	.py-sm-9 {
		padding-top: .5625rem !important
	}

	.pr-sm-9,
	.px-sm-9 {
		padding-right: .5625rem !important
	}

	.pb-sm-9,
	.py-sm-9 {
		padding-bottom: .5625rem !important
	}

	.pl-sm-9,
	.px-sm-9 {
		padding-left: .5625rem !important
	}

	.p-sm-10 {
		padding: .625rem !important
	}

	.pt-sm-10,
	.py-sm-10 {
		padding-top: .625rem !important
	}

	.pr-sm-10,
	.px-sm-10 {
		padding-right: .625rem !important
	}

	.pb-sm-10,
	.py-sm-10 {
		padding-bottom: .625rem !important
	}

	.pl-sm-10,
	.px-sm-10 {
		padding-left: .625rem !important
	}

	.p-sm-11 {
		padding: .6875rem !important
	}

	.pt-sm-11,
	.py-sm-11 {
		padding-top: .6875rem !important
	}

	.pr-sm-11,
	.px-sm-11 {
		padding-right: .6875rem !important
	}

	.pb-sm-11,
	.py-sm-11 {
		padding-bottom: .6875rem !important
	}

	.pl-sm-11,
	.px-sm-11 {
		padding-left: .6875rem !important
	}

	.p-sm-12 {
		padding: .75rem !important
	}

	.pt-sm-12,
	.py-sm-12 {
		padding-top: .75rem !important
	}

	.pr-sm-12,
	.px-sm-12 {
		padding-right: .75rem !important
	}

	.pb-sm-12,
	.py-sm-12 {
		padding-bottom: .75rem !important
	}

	.pl-sm-12,
	.px-sm-12 {
		padding-left: .75rem !important
	}

	.p-sm-13 {
		padding: .8125rem !important
	}

	.pt-sm-13,
	.py-sm-13 {
		padding-top: .8125rem !important
	}

	.pr-sm-13,
	.px-sm-13 {
		padding-right: .8125rem !important
	}

	.pb-sm-13,
	.py-sm-13 {
		padding-bottom: .8125rem !important
	}

	.pl-sm-13,
	.px-sm-13 {
		padding-left: .8125rem !important
	}

	.p-sm-14 {
		padding: .875rem !important
	}

	.pt-sm-14,
	.py-sm-14 {
		padding-top: .875rem !important
	}

	.pr-sm-14,
	.px-sm-14 {
		padding-right: .875rem !important
	}

	.pb-sm-14,
	.py-sm-14 {
		padding-bottom: .875rem !important
	}

	.pl-sm-14,
	.px-sm-14 {
		padding-left: .875rem !important
	}

	.p-sm-15 {
		padding: .9375rem !important
	}

	.pt-sm-15,
	.py-sm-15 {
		padding-top: .9375rem !important
	}

	.pr-sm-15,
	.px-sm-15 {
		padding-right: .9375rem !important
	}

	.pb-sm-15,
	.py-sm-15 {
		padding-bottom: .9375rem !important
	}

	.pl-sm-15,
	.px-sm-15 {
		padding-left: .9375rem !important
	}

	.p-sm-16 {
		padding: 1rem !important
	}

	.pt-sm-16,
	.py-sm-16 {
		padding-top: 1rem !important
	}

	.pr-sm-16,
	.px-sm-16 {
		padding-right: 1rem !important
	}

	.pb-sm-16,
	.py-sm-16 {
		padding-bottom: 1rem !important
	}

	.pl-sm-16,
	.px-sm-16 {
		padding-left: 1rem !important
	}

	.p-sm-17 {
		padding: 1.0625rem !important
	}

	.pt-sm-17,
	.py-sm-17 {
		padding-top: 1.0625rem !important
	}

	.pr-sm-17,
	.px-sm-17 {
		padding-right: 1.0625rem !important
	}

	.pb-sm-17,
	.py-sm-17 {
		padding-bottom: 1.0625rem !important
	}

	.pl-sm-17,
	.px-sm-17 {
		padding-left: 1.0625rem !important
	}

	.p-sm-18 {
		padding: 1.125rem !important
	}

	.pt-sm-18,
	.py-sm-18 {
		padding-top: 1.125rem !important
	}

	.pr-sm-18,
	.px-sm-18 {
		padding-right: 1.125rem !important
	}

	.pb-sm-18,
	.py-sm-18 {
		padding-bottom: 1.125rem !important
	}

	.pl-sm-18,
	.px-sm-18 {
		padding-left: 1.125rem !important
	}

	.p-sm-19 {
		padding: 1.1875rem !important
	}

	.pt-sm-19,
	.py-sm-19 {
		padding-top: 1.1875rem !important
	}

	.pr-sm-19,
	.px-sm-19 {
		padding-right: 1.1875rem !important
	}

	.pb-sm-19,
	.py-sm-19 {
		padding-bottom: 1.1875rem !important
	}

	.pl-sm-19,
	.px-sm-19 {
		padding-left: 1.1875rem !important
	}

	.p-sm-20 {
		padding: 1.25rem !important
	}

	.pt-sm-20,
	.py-sm-20 {
		padding-top: 1.25rem !important
	}

	.pr-sm-20,
	.px-sm-20 {
		padding-right: 1.25rem !important
	}

	.pb-sm-20,
	.py-sm-20 {
		padding-bottom: 1.25rem !important
	}

	.pl-sm-20,
	.px-sm-20 {
		padding-left: 1.25rem !important
	}

	.p-sm-21 {
		padding: 1.3125rem !important
	}

	.pt-sm-21,
	.py-sm-21 {
		padding-top: 1.3125rem !important
	}

	.pr-sm-21,
	.px-sm-21 {
		padding-right: 1.3125rem !important
	}

	.pb-sm-21,
	.py-sm-21 {
		padding-bottom: 1.3125rem !important
	}

	.pl-sm-21,
	.px-sm-21 {
		padding-left: 1.3125rem !important
	}

	.p-sm-22 {
		padding: 1.375rem !important
	}

	.pt-sm-22,
	.py-sm-22 {
		padding-top: 1.375rem !important
	}

	.pr-sm-22,
	.px-sm-22 {
		padding-right: 1.375rem !important
	}

	.pb-sm-22,
	.py-sm-22 {
		padding-bottom: 1.375rem !important
	}

	.pl-sm-22,
	.px-sm-22 {
		padding-left: 1.375rem !important
	}

	.p-sm-23 {
		padding: 1.4375rem !important
	}

	.pt-sm-23,
	.py-sm-23 {
		padding-top: 1.4375rem !important
	}

	.pr-sm-23,
	.px-sm-23 {
		padding-right: 1.4375rem !important
	}

	.pb-sm-23,
	.py-sm-23 {
		padding-bottom: 1.4375rem !important
	}

	.pl-sm-23,
	.px-sm-23 {
		padding-left: 1.4375rem !important
	}

	.p-sm-24 {
		padding: 1.5rem !important
	}

	.pt-sm-24,
	.py-sm-24 {
		padding-top: 1.5rem !important
	}

	.pr-sm-24,
	.px-sm-24 {
		padding-right: 1.5rem !important
	}

	.pb-sm-24,
	.py-sm-24 {
		padding-bottom: 1.5rem !important
	}

	.pl-sm-24,
	.px-sm-24 {
		padding-left: 1.5rem !important
	}

	.p-sm-25 {
		padding: 1.5625rem !important
	}

	.pt-sm-25,
	.py-sm-25 {
		padding-top: 1.5625rem !important
	}

	.pr-sm-25,
	.px-sm-25 {
		padding-right: 1.5625rem !important
	}

	.pb-sm-25,
	.py-sm-25 {
		padding-bottom: 1.5625rem !important
	}

	.pl-sm-25,
	.px-sm-25 {
		padding-left: 1.5625rem !important
	}

	.p-sm-26 {
		padding: 1.625rem !important
	}

	.pt-sm-26,
	.py-sm-26 {
		padding-top: 1.625rem !important
	}

	.pr-sm-26,
	.px-sm-26 {
		padding-right: 1.625rem !important
	}

	.pb-sm-26,
	.py-sm-26 {
		padding-bottom: 1.625rem !important
	}

	.pl-sm-26,
	.px-sm-26 {
		padding-left: 1.625rem !important
	}

	.p-sm-27 {
		padding: 1.6875rem !important
	}

	.pt-sm-27,
	.py-sm-27 {
		padding-top: 1.6875rem !important
	}

	.pr-sm-27,
	.px-sm-27 {
		padding-right: 1.6875rem !important
	}

	.pb-sm-27,
	.py-sm-27 {
		padding-bottom: 1.6875rem !important
	}

	.pl-sm-27,
	.px-sm-27 {
		padding-left: 1.6875rem !important
	}

	.p-sm-28 {
		padding: 1.75rem !important
	}

	.pt-sm-28,
	.py-sm-28 {
		padding-top: 1.75rem !important
	}

	.pr-sm-28,
	.px-sm-28 {
		padding-right: 1.75rem !important
	}

	.pb-sm-28,
	.py-sm-28 {
		padding-bottom: 1.75rem !important
	}

	.pl-sm-28,
	.px-sm-28 {
		padding-left: 1.75rem !important
	}

	.p-sm-29 {
		padding: 1.8125rem !important
	}

	.pt-sm-29,
	.py-sm-29 {
		padding-top: 1.8125rem !important
	}

	.pr-sm-29,
	.px-sm-29 {
		padding-right: 1.8125rem !important
	}

	.pb-sm-29,
	.py-sm-29 {
		padding-bottom: 1.8125rem !important
	}

	.pl-sm-29,
	.px-sm-29 {
		padding-left: 1.8125rem !important
	}

	.p-sm-30 {
		padding: 1.875rem !important
	}

	.pt-sm-30,
	.py-sm-30 {
		padding-top: 1.875rem !important
	}

	.pr-sm-30,
	.px-sm-30 {
		padding-right: 1.875rem !important
	}

	.pb-sm-30,
	.py-sm-30 {
		padding-bottom: 1.875rem !important
	}

	.pl-sm-30,
	.px-sm-30 {
		padding-left: 1.875rem !important
	}

	.p-sm-31 {
		padding: 1.9375rem !important
	}

	.pt-sm-31,
	.py-sm-31 {
		padding-top: 1.9375rem !important
	}

	.pr-sm-31,
	.px-sm-31 {
		padding-right: 1.9375rem !important
	}

	.pb-sm-31,
	.py-sm-31 {
		padding-bottom: 1.9375rem !important
	}

	.pl-sm-31,
	.px-sm-31 {
		padding-left: 1.9375rem !important
	}

	.p-sm-32 {
		padding: 2rem !important
	}

	.pt-sm-32,
	.py-sm-32 {
		padding-top: 2rem !important
	}

	.pr-sm-32,
	.px-sm-32 {
		padding-right: 2rem !important
	}

	.pb-sm-32,
	.py-sm-32 {
		padding-bottom: 2rem !important
	}

	.pl-sm-32,
	.px-sm-32 {
		padding-left: 2rem !important
	}

	.p-sm-33 {
		padding: 2.0625rem !important
	}

	.pt-sm-33,
	.py-sm-33 {
		padding-top: 2.0625rem !important
	}

	.pr-sm-33,
	.px-sm-33 {
		padding-right: 2.0625rem !important
	}

	.pb-sm-33,
	.py-sm-33 {
		padding-bottom: 2.0625rem !important
	}

	.pl-sm-33,
	.px-sm-33 {
		padding-left: 2.0625rem !important
	}

	.p-sm-34 {
		padding: 2.125rem !important
	}

	.pt-sm-34,
	.py-sm-34 {
		padding-top: 2.125rem !important
	}

	.pr-sm-34,
	.px-sm-34 {
		padding-right: 2.125rem !important
	}

	.pb-sm-34,
	.py-sm-34 {
		padding-bottom: 2.125rem !important
	}

	.pl-sm-34,
	.px-sm-34 {
		padding-left: 2.125rem !important
	}

	.p-sm-35 {
		padding: 2.1875rem !important
	}

	.pt-sm-35,
	.py-sm-35 {
		padding-top: 2.1875rem !important
	}

	.pr-sm-35,
	.px-sm-35 {
		padding-right: 2.1875rem !important
	}

	.pb-sm-35,
	.py-sm-35 {
		padding-bottom: 2.1875rem !important
	}

	.pl-sm-35,
	.px-sm-35 {
		padding-left: 2.1875rem !important
	}

	.p-sm-36 {
		padding: 2.25rem !important
	}

	.pt-sm-36,
	.py-sm-36 {
		padding-top: 2.25rem !important
	}

	.pr-sm-36,
	.px-sm-36 {
		padding-right: 2.25rem !important
	}

	.pb-sm-36,
	.py-sm-36 {
		padding-bottom: 2.25rem !important
	}

	.pl-sm-36,
	.px-sm-36 {
		padding-left: 2.25rem !important
	}

	.p-sm-37 {
		padding: 2.3125rem !important
	}

	.pt-sm-37,
	.py-sm-37 {
		padding-top: 2.3125rem !important
	}

	.pr-sm-37,
	.px-sm-37 {
		padding-right: 2.3125rem !important
	}

	.pb-sm-37,
	.py-sm-37 {
		padding-bottom: 2.3125rem !important
	}

	.pl-sm-37,
	.px-sm-37 {
		padding-left: 2.3125rem !important
	}

	.p-sm-38 {
		padding: 2.375rem !important
	}

	.pt-sm-38,
	.py-sm-38 {
		padding-top: 2.375rem !important
	}

	.pr-sm-38,
	.px-sm-38 {
		padding-right: 2.375rem !important
	}

	.pb-sm-38,
	.py-sm-38 {
		padding-bottom: 2.375rem !important
	}

	.pl-sm-38,
	.px-sm-38 {
		padding-left: 2.375rem !important
	}

	.p-sm-39 {
		padding: 2.4375rem !important
	}

	.pt-sm-39,
	.py-sm-39 {
		padding-top: 2.4375rem !important
	}

	.pr-sm-39,
	.px-sm-39 {
		padding-right: 2.4375rem !important
	}

	.pb-sm-39,
	.py-sm-39 {
		padding-bottom: 2.4375rem !important
	}

	.pl-sm-39,
	.px-sm-39 {
		padding-left: 2.4375rem !important
	}

	.p-sm-40 {
		padding: 2.5rem !important
	}

	.pt-sm-40,
	.py-sm-40 {
		padding-top: 2.5rem !important
	}

	.pr-sm-40,
	.px-sm-40 {
		padding-right: 2.5rem !important
	}

	.pb-sm-40,
	.py-sm-40 {
		padding-bottom: 2.5rem !important
	}

	.pl-sm-40,
	.px-sm-40 {
		padding-left: 2.5rem !important
	}

	.p-sm-41 {
		padding: 2.5625rem !important
	}

	.pt-sm-41,
	.py-sm-41 {
		padding-top: 2.5625rem !important
	}

	.pr-sm-41,
	.px-sm-41 {
		padding-right: 2.5625rem !important
	}

	.pb-sm-41,
	.py-sm-41 {
		padding-bottom: 2.5625rem !important
	}

	.pl-sm-41,
	.px-sm-41 {
		padding-left: 2.5625rem !important
	}

	.p-sm-42 {
		padding: 2.625rem !important
	}

	.pt-sm-42,
	.py-sm-42 {
		padding-top: 2.625rem !important
	}

	.pr-sm-42,
	.px-sm-42 {
		padding-right: 2.625rem !important
	}

	.pb-sm-42,
	.py-sm-42 {
		padding-bottom: 2.625rem !important
	}

	.pl-sm-42,
	.px-sm-42 {
		padding-left: 2.625rem !important
	}

	.p-sm-43 {
		padding: 2.6875rem !important
	}

	.pt-sm-43,
	.py-sm-43 {
		padding-top: 2.6875rem !important
	}

	.pr-sm-43,
	.px-sm-43 {
		padding-right: 2.6875rem !important
	}

	.pb-sm-43,
	.py-sm-43 {
		padding-bottom: 2.6875rem !important
	}

	.pl-sm-43,
	.px-sm-43 {
		padding-left: 2.6875rem !important
	}

	.p-sm-44 {
		padding: 2.75rem !important
	}

	.pt-sm-44,
	.py-sm-44 {
		padding-top: 2.75rem !important
	}

	.pr-sm-44,
	.px-sm-44 {
		padding-right: 2.75rem !important
	}

	.pb-sm-44,
	.py-sm-44 {
		padding-bottom: 2.75rem !important
	}

	.pl-sm-44,
	.px-sm-44 {
		padding-left: 2.75rem !important
	}

	.p-sm-45 {
		padding: 2.8125rem !important
	}

	.pt-sm-45,
	.py-sm-45 {
		padding-top: 2.8125rem !important
	}

	.pr-sm-45,
	.px-sm-45 {
		padding-right: 2.8125rem !important
	}

	.pb-sm-45,
	.py-sm-45 {
		padding-bottom: 2.8125rem !important
	}

	.pl-sm-45,
	.px-sm-45 {
		padding-left: 2.8125rem !important
	}

	.p-sm-46 {
		padding: 2.875rem !important
	}

	.pt-sm-46,
	.py-sm-46 {
		padding-top: 2.875rem !important
	}

	.pr-sm-46,
	.px-sm-46 {
		padding-right: 2.875rem !important
	}

	.pb-sm-46,
	.py-sm-46 {
		padding-bottom: 2.875rem !important
	}

	.pl-sm-46,
	.px-sm-46 {
		padding-left: 2.875rem !important
	}

	.p-sm-47 {
		padding: 2.9375rem !important
	}

	.pt-sm-47,
	.py-sm-47 {
		padding-top: 2.9375rem !important
	}

	.pr-sm-47,
	.px-sm-47 {
		padding-right: 2.9375rem !important
	}

	.pb-sm-47,
	.py-sm-47 {
		padding-bottom: 2.9375rem !important
	}

	.pl-sm-47,
	.px-sm-47 {
		padding-left: 2.9375rem !important
	}

	.p-sm-48 {
		padding: 3rem !important
	}

	.pt-sm-48,
	.py-sm-48 {
		padding-top: 3rem !important
	}

	.pr-sm-48,
	.px-sm-48 {
		padding-right: 3rem !important
	}

	.pb-sm-48,
	.py-sm-48 {
		padding-bottom: 3rem !important
	}

	.pl-sm-48,
	.px-sm-48 {
		padding-left: 3rem !important
	}

	.p-sm-49 {
		padding: 3.0625rem !important
	}

	.pt-sm-49,
	.py-sm-49 {
		padding-top: 3.0625rem !important
	}

	.pr-sm-49,
	.px-sm-49 {
		padding-right: 3.0625rem !important
	}

	.pb-sm-49,
	.py-sm-49 {
		padding-bottom: 3.0625rem !important
	}

	.pl-sm-49,
	.px-sm-49 {
		padding-left: 3.0625rem !important
	}

	.p-sm-50 {
		padding: 3.125rem !important
	}

	.pt-sm-50,
	.py-sm-50 {
		padding-top: 3.125rem !important
	}

	.pr-sm-50,
	.px-sm-50 {
		padding-right: 3.125rem !important
	}

	.pb-sm-50,
	.py-sm-50 {
		padding-bottom: 3.125rem !important
	}

	.pl-sm-50,
	.px-sm-50 {
		padding-left: 3.125rem !important
	}

	.p-sm-51 {
		padding: 3.1875rem !important
	}

	.pt-sm-51,
	.py-sm-51 {
		padding-top: 3.1875rem !important
	}

	.pr-sm-51,
	.px-sm-51 {
		padding-right: 3.1875rem !important
	}

	.pb-sm-51,
	.py-sm-51 {
		padding-bottom: 3.1875rem !important
	}

	.pl-sm-51,
	.px-sm-51 {
		padding-left: 3.1875rem !important
	}

	.p-sm-52 {
		padding: 3.25rem !important
	}

	.pt-sm-52,
	.py-sm-52 {
		padding-top: 3.25rem !important
	}

	.pr-sm-52,
	.px-sm-52 {
		padding-right: 3.25rem !important
	}

	.pb-sm-52,
	.py-sm-52 {
		padding-bottom: 3.25rem !important
	}

	.pl-sm-52,
	.px-sm-52 {
		padding-left: 3.25rem !important
	}

	.p-sm-53 {
		padding: 3.3125rem !important
	}

	.pt-sm-53,
	.py-sm-53 {
		padding-top: 3.3125rem !important
	}

	.pr-sm-53,
	.px-sm-53 {
		padding-right: 3.3125rem !important
	}

	.pb-sm-53,
	.py-sm-53 {
		padding-bottom: 3.3125rem !important
	}

	.pl-sm-53,
	.px-sm-53 {
		padding-left: 3.3125rem !important
	}

	.p-sm-54 {
		padding: 3.375rem !important
	}

	.pt-sm-54,
	.py-sm-54 {
		padding-top: 3.375rem !important
	}

	.pr-sm-54,
	.px-sm-54 {
		padding-right: 3.375rem !important
	}

	.pb-sm-54,
	.py-sm-54 {
		padding-bottom: 3.375rem !important
	}

	.pl-sm-54,
	.px-sm-54 {
		padding-left: 3.375rem !important
	}

	.p-sm-55 {
		padding: 3.4375rem !important
	}

	.pt-sm-55,
	.py-sm-55 {
		padding-top: 3.4375rem !important
	}

	.pr-sm-55,
	.px-sm-55 {
		padding-right: 3.4375rem !important
	}

	.pb-sm-55,
	.py-sm-55 {
		padding-bottom: 3.4375rem !important
	}

	.pl-sm-55,
	.px-sm-55 {
		padding-left: 3.4375rem !important
	}

	.p-sm-56 {
		padding: 3.5rem !important
	}

	.pt-sm-56,
	.py-sm-56 {
		padding-top: 3.5rem !important
	}

	.pr-sm-56,
	.px-sm-56 {
		padding-right: 3.5rem !important
	}

	.pb-sm-56,
	.py-sm-56 {
		padding-bottom: 3.5rem !important
	}

	.pl-sm-56,
	.px-sm-56 {
		padding-left: 3.5rem !important
	}

	.p-sm-57 {
		padding: 3.5625rem !important
	}

	.pt-sm-57,
	.py-sm-57 {
		padding-top: 3.5625rem !important
	}

	.pr-sm-57,
	.px-sm-57 {
		padding-right: 3.5625rem !important
	}

	.pb-sm-57,
	.py-sm-57 {
		padding-bottom: 3.5625rem !important
	}

	.pl-sm-57,
	.px-sm-57 {
		padding-left: 3.5625rem !important
	}

	.p-sm-58 {
		padding: 3.625rem !important
	}

	.pt-sm-58,
	.py-sm-58 {
		padding-top: 3.625rem !important
	}

	.pr-sm-58,
	.px-sm-58 {
		padding-right: 3.625rem !important
	}

	.pb-sm-58,
	.py-sm-58 {
		padding-bottom: 3.625rem !important
	}

	.pl-sm-58,
	.px-sm-58 {
		padding-left: 3.625rem !important
	}

	.p-sm-59 {
		padding: 3.6875rem !important
	}

	.pt-sm-59,
	.py-sm-59 {
		padding-top: 3.6875rem !important
	}

	.pr-sm-59,
	.px-sm-59 {
		padding-right: 3.6875rem !important
	}

	.pb-sm-59,
	.py-sm-59 {
		padding-bottom: 3.6875rem !important
	}

	.pl-sm-59,
	.px-sm-59 {
		padding-left: 3.6875rem !important
	}

	.p-sm-60 {
		padding: 3.75rem !important
	}

	.pt-sm-60,
	.py-sm-60 {
		padding-top: 3.75rem !important
	}

	.pr-sm-60,
	.px-sm-60 {
		padding-right: 3.75rem !important
	}

	.pb-sm-60,
	.py-sm-60 {
		padding-bottom: 3.75rem !important
	}

	.pl-sm-60,
	.px-sm-60 {
		padding-left: 3.75rem !important
	}

	.p-sm-61 {
		padding: 3.8125rem !important
	}

	.pt-sm-61,
	.py-sm-61 {
		padding-top: 3.8125rem !important
	}

	.pr-sm-61,
	.px-sm-61 {
		padding-right: 3.8125rem !important
	}

	.pb-sm-61,
	.py-sm-61 {
		padding-bottom: 3.8125rem !important
	}

	.pl-sm-61,
	.px-sm-61 {
		padding-left: 3.8125rem !important
	}

	.p-sm-62 {
		padding: 3.875rem !important
	}

	.pt-sm-62,
	.py-sm-62 {
		padding-top: 3.875rem !important
	}

	.pr-sm-62,
	.px-sm-62 {
		padding-right: 3.875rem !important
	}

	.pb-sm-62,
	.py-sm-62 {
		padding-bottom: 3.875rem !important
	}

	.pl-sm-62,
	.px-sm-62 {
		padding-left: 3.875rem !important
	}

	.p-sm-63 {
		padding: 3.9375rem !important
	}

	.pt-sm-63,
	.py-sm-63 {
		padding-top: 3.9375rem !important
	}

	.pr-sm-63,
	.px-sm-63 {
		padding-right: 3.9375rem !important
	}

	.pb-sm-63,
	.py-sm-63 {
		padding-bottom: 3.9375rem !important
	}

	.pl-sm-63,
	.px-sm-63 {
		padding-left: 3.9375rem !important
	}

	.p-sm-64 {
		padding: 4rem !important
	}

	.pt-sm-64,
	.py-sm-64 {
		padding-top: 4rem !important
	}

	.pr-sm-64,
	.px-sm-64 {
		padding-right: 4rem !important
	}

	.pb-sm-64,
	.py-sm-64 {
		padding-bottom: 4rem !important
	}

	.pl-sm-64,
	.px-sm-64 {
		padding-left: 4rem !important
	}

	.p-sm-65 {
		padding: 4.0625rem !important
	}

	.pt-sm-65,
	.py-sm-65 {
		padding-top: 4.0625rem !important
	}

	.pr-sm-65,
	.px-sm-65 {
		padding-right: 4.0625rem !important
	}

	.pb-sm-65,
	.py-sm-65 {
		padding-bottom: 4.0625rem !important
	}

	.pl-sm-65,
	.px-sm-65 {
		padding-left: 4.0625rem !important
	}

	.p-sm-66 {
		padding: 4.125rem !important
	}

	.pt-sm-66,
	.py-sm-66 {
		padding-top: 4.125rem !important
	}

	.pr-sm-66,
	.px-sm-66 {
		padding-right: 4.125rem !important
	}

	.pb-sm-66,
	.py-sm-66 {
		padding-bottom: 4.125rem !important
	}

	.pl-sm-66,
	.px-sm-66 {
		padding-left: 4.125rem !important
	}

	.p-sm-67 {
		padding: 4.1875rem !important
	}

	.pt-sm-67,
	.py-sm-67 {
		padding-top: 4.1875rem !important
	}

	.pr-sm-67,
	.px-sm-67 {
		padding-right: 4.1875rem !important
	}

	.pb-sm-67,
	.py-sm-67 {
		padding-bottom: 4.1875rem !important
	}

	.pl-sm-67,
	.px-sm-67 {
		padding-left: 4.1875rem !important
	}

	.p-sm-68 {
		padding: 4.25rem !important
	}

	.pt-sm-68,
	.py-sm-68 {
		padding-top: 4.25rem !important
	}

	.pr-sm-68,
	.px-sm-68 {
		padding-right: 4.25rem !important
	}

	.pb-sm-68,
	.py-sm-68 {
		padding-bottom: 4.25rem !important
	}

	.pl-sm-68,
	.px-sm-68 {
		padding-left: 4.25rem !important
	}

	.p-sm-69 {
		padding: 4.3125rem !important
	}

	.pt-sm-69,
	.py-sm-69 {
		padding-top: 4.3125rem !important
	}

	.pr-sm-69,
	.px-sm-69 {
		padding-right: 4.3125rem !important
	}

	.pb-sm-69,
	.py-sm-69 {
		padding-bottom: 4.3125rem !important
	}

	.pl-sm-69,
	.px-sm-69 {
		padding-left: 4.3125rem !important
	}

	.p-sm-70 {
		padding: 4.375rem !important
	}

	.pt-sm-70,
	.py-sm-70 {
		padding-top: 4.375rem !important
	}

	.pr-sm-70,
	.px-sm-70 {
		padding-right: 4.375rem !important
	}

	.pb-sm-70,
	.py-sm-70 {
		padding-bottom: 4.375rem !important
	}

	.pl-sm-70,
	.px-sm-70 {
		padding-left: 4.375rem !important
	}

	.p-sm-71 {
		padding: 4.4375rem !important
	}

	.pt-sm-71,
	.py-sm-71 {
		padding-top: 4.4375rem !important
	}

	.pr-sm-71,
	.px-sm-71 {
		padding-right: 4.4375rem !important
	}

	.pb-sm-71,
	.py-sm-71 {
		padding-bottom: 4.4375rem !important
	}

	.pl-sm-71,
	.px-sm-71 {
		padding-left: 4.4375rem !important
	}

	.p-sm-72 {
		padding: 4.5rem !important
	}

	.pt-sm-72,
	.py-sm-72 {
		padding-top: 4.5rem !important
	}

	.pr-sm-72,
	.px-sm-72 {
		padding-right: 4.5rem !important
	}

	.pb-sm-72,
	.py-sm-72 {
		padding-bottom: 4.5rem !important
	}

	.pl-sm-72,
	.px-sm-72 {
		padding-left: 4.5rem !important
	}

	.p-sm-73 {
		padding: 4.5625rem !important
	}

	.pt-sm-73,
	.py-sm-73 {
		padding-top: 4.5625rem !important
	}

	.pr-sm-73,
	.px-sm-73 {
		padding-right: 4.5625rem !important
	}

	.pb-sm-73,
	.py-sm-73 {
		padding-bottom: 4.5625rem !important
	}

	.pl-sm-73,
	.px-sm-73 {
		padding-left: 4.5625rem !important
	}

	.p-sm-74 {
		padding: 4.625rem !important
	}

	.pt-sm-74,
	.py-sm-74 {
		padding-top: 4.625rem !important
	}

	.pr-sm-74,
	.px-sm-74 {
		padding-right: 4.625rem !important
	}

	.pb-sm-74,
	.py-sm-74 {
		padding-bottom: 4.625rem !important
	}

	.pl-sm-74,
	.px-sm-74 {
		padding-left: 4.625rem !important
	}

	.p-sm-75 {
		padding: 4.6875rem !important
	}

	.pt-sm-75,
	.py-sm-75 {
		padding-top: 4.6875rem !important
	}

	.pr-sm-75,
	.px-sm-75 {
		padding-right: 4.6875rem !important
	}

	.pb-sm-75,
	.py-sm-75 {
		padding-bottom: 4.6875rem !important
	}

	.pl-sm-75,
	.px-sm-75 {
		padding-left: 4.6875rem !important
	}

	.p-sm-76 {
		padding: 4.75rem !important
	}

	.pt-sm-76,
	.py-sm-76 {
		padding-top: 4.75rem !important
	}

	.pr-sm-76,
	.px-sm-76 {
		padding-right: 4.75rem !important
	}

	.pb-sm-76,
	.py-sm-76 {
		padding-bottom: 4.75rem !important
	}

	.pl-sm-76,
	.px-sm-76 {
		padding-left: 4.75rem !important
	}

	.p-sm-77 {
		padding: 4.8125rem !important
	}

	.pt-sm-77,
	.py-sm-77 {
		padding-top: 4.8125rem !important
	}

	.pr-sm-77,
	.px-sm-77 {
		padding-right: 4.8125rem !important
	}

	.pb-sm-77,
	.py-sm-77 {
		padding-bottom: 4.8125rem !important
	}

	.pl-sm-77,
	.px-sm-77 {
		padding-left: 4.8125rem !important
	}

	.p-sm-78 {
		padding: 4.875rem !important
	}

	.pt-sm-78,
	.py-sm-78 {
		padding-top: 4.875rem !important
	}

	.pr-sm-78,
	.px-sm-78 {
		padding-right: 4.875rem !important
	}

	.pb-sm-78,
	.py-sm-78 {
		padding-bottom: 4.875rem !important
	}

	.pl-sm-78,
	.px-sm-78 {
		padding-left: 4.875rem !important
	}

	.p-sm-79 {
		padding: 4.9375rem !important
	}

	.pt-sm-79,
	.py-sm-79 {
		padding-top: 4.9375rem !important
	}

	.pr-sm-79,
	.px-sm-79 {
		padding-right: 4.9375rem !important
	}

	.pb-sm-79,
	.py-sm-79 {
		padding-bottom: 4.9375rem !important
	}

	.pl-sm-79,
	.px-sm-79 {
		padding-left: 4.9375rem !important
	}

	.p-sm-80 {
		padding: 5rem !important
	}

	.pt-sm-80,
	.py-sm-80 {
		padding-top: 5rem !important
	}

	.pr-sm-80,
	.px-sm-80 {
		padding-right: 5rem !important
	}

	.pb-sm-80,
	.py-sm-80 {
		padding-bottom: 5rem !important
	}

	.pl-sm-80,
	.px-sm-80 {
		padding-left: 5rem !important
	}

	.p-sm-81 {
		padding: 5.0625rem !important
	}

	.pt-sm-81,
	.py-sm-81 {
		padding-top: 5.0625rem !important
	}

	.pr-sm-81,
	.px-sm-81 {
		padding-right: 5.0625rem !important
	}

	.pb-sm-81,
	.py-sm-81 {
		padding-bottom: 5.0625rem !important
	}

	.pl-sm-81,
	.px-sm-81 {
		padding-left: 5.0625rem !important
	}

	.p-sm-82 {
		padding: 5.125rem !important
	}

	.pt-sm-82,
	.py-sm-82 {
		padding-top: 5.125rem !important
	}

	.pr-sm-82,
	.px-sm-82 {
		padding-right: 5.125rem !important
	}

	.pb-sm-82,
	.py-sm-82 {
		padding-bottom: 5.125rem !important
	}

	.pl-sm-82,
	.px-sm-82 {
		padding-left: 5.125rem !important
	}

	.p-sm-83 {
		padding: 5.1875rem !important
	}

	.pt-sm-83,
	.py-sm-83 {
		padding-top: 5.1875rem !important
	}

	.pr-sm-83,
	.px-sm-83 {
		padding-right: 5.1875rem !important
	}

	.pb-sm-83,
	.py-sm-83 {
		padding-bottom: 5.1875rem !important
	}

	.pl-sm-83,
	.px-sm-83 {
		padding-left: 5.1875rem !important
	}

	.p-sm-84 {
		padding: 5.25rem !important
	}

	.pt-sm-84,
	.py-sm-84 {
		padding-top: 5.25rem !important
	}

	.pr-sm-84,
	.px-sm-84 {
		padding-right: 5.25rem !important
	}

	.pb-sm-84,
	.py-sm-84 {
		padding-bottom: 5.25rem !important
	}

	.pl-sm-84,
	.px-sm-84 {
		padding-left: 5.25rem !important
	}

	.p-sm-85 {
		padding: 5.3125rem !important
	}

	.pt-sm-85,
	.py-sm-85 {
		padding-top: 5.3125rem !important
	}

	.pr-sm-85,
	.px-sm-85 {
		padding-right: 5.3125rem !important
	}

	.pb-sm-85,
	.py-sm-85 {
		padding-bottom: 5.3125rem !important
	}

	.pl-sm-85,
	.px-sm-85 {
		padding-left: 5.3125rem !important
	}

	.p-sm-86 {
		padding: 5.375rem !important
	}

	.pt-sm-86,
	.py-sm-86 {
		padding-top: 5.375rem !important
	}

	.pr-sm-86,
	.px-sm-86 {
		padding-right: 5.375rem !important
	}

	.pb-sm-86,
	.py-sm-86 {
		padding-bottom: 5.375rem !important
	}

	.pl-sm-86,
	.px-sm-86 {
		padding-left: 5.375rem !important
	}

	.p-sm-87 {
		padding: 5.4375rem !important
	}

	.pt-sm-87,
	.py-sm-87 {
		padding-top: 5.4375rem !important
	}

	.pr-sm-87,
	.px-sm-87 {
		padding-right: 5.4375rem !important
	}

	.pb-sm-87,
	.py-sm-87 {
		padding-bottom: 5.4375rem !important
	}

	.pl-sm-87,
	.px-sm-87 {
		padding-left: 5.4375rem !important
	}

	.p-sm-88 {
		padding: 5.5rem !important
	}

	.pt-sm-88,
	.py-sm-88 {
		padding-top: 5.5rem !important
	}

	.pr-sm-88,
	.px-sm-88 {
		padding-right: 5.5rem !important
	}

	.pb-sm-88,
	.py-sm-88 {
		padding-bottom: 5.5rem !important
	}

	.pl-sm-88,
	.px-sm-88 {
		padding-left: 5.5rem !important
	}

	.p-sm-89 {
		padding: 5.5625rem !important
	}

	.pt-sm-89,
	.py-sm-89 {
		padding-top: 5.5625rem !important
	}

	.pr-sm-89,
	.px-sm-89 {
		padding-right: 5.5625rem !important
	}

	.pb-sm-89,
	.py-sm-89 {
		padding-bottom: 5.5625rem !important
	}

	.pl-sm-89,
	.px-sm-89 {
		padding-left: 5.5625rem !important
	}

	.p-sm-90 {
		padding: 5.625rem !important
	}

	.pt-sm-90,
	.py-sm-90 {
		padding-top: 5.625rem !important
	}

	.pr-sm-90,
	.px-sm-90 {
		padding-right: 5.625rem !important
	}

	.pb-sm-90,
	.py-sm-90 {
		padding-bottom: 5.625rem !important
	}

	.pl-sm-90,
	.px-sm-90 {
		padding-left: 5.625rem !important
	}

	.p-sm-91 {
		padding: 5.6875rem !important
	}

	.pt-sm-91,
	.py-sm-91 {
		padding-top: 5.6875rem !important
	}

	.pr-sm-91,
	.px-sm-91 {
		padding-right: 5.6875rem !important
	}

	.pb-sm-91,
	.py-sm-91 {
		padding-bottom: 5.6875rem !important
	}

	.pl-sm-91,
	.px-sm-91 {
		padding-left: 5.6875rem !important
	}

	.p-sm-92 {
		padding: 5.75rem !important
	}

	.pt-sm-92,
	.py-sm-92 {
		padding-top: 5.75rem !important
	}

	.pr-sm-92,
	.px-sm-92 {
		padding-right: 5.75rem !important
	}

	.pb-sm-92,
	.py-sm-92 {
		padding-bottom: 5.75rem !important
	}

	.pl-sm-92,
	.px-sm-92 {
		padding-left: 5.75rem !important
	}

	.p-sm-93 {
		padding: 5.8125rem !important
	}

	.pt-sm-93,
	.py-sm-93 {
		padding-top: 5.8125rem !important
	}

	.pr-sm-93,
	.px-sm-93 {
		padding-right: 5.8125rem !important
	}

	.pb-sm-93,
	.py-sm-93 {
		padding-bottom: 5.8125rem !important
	}

	.pl-sm-93,
	.px-sm-93 {
		padding-left: 5.8125rem !important
	}

	.p-sm-94 {
		padding: 5.875rem !important
	}

	.pt-sm-94,
	.py-sm-94 {
		padding-top: 5.875rem !important
	}

	.pr-sm-94,
	.px-sm-94 {
		padding-right: 5.875rem !important
	}

	.pb-sm-94,
	.py-sm-94 {
		padding-bottom: 5.875rem !important
	}

	.pl-sm-94,
	.px-sm-94 {
		padding-left: 5.875rem !important
	}

	.p-sm-95 {
		padding: 5.9375rem !important
	}

	.pt-sm-95,
	.py-sm-95 {
		padding-top: 5.9375rem !important
	}

	.pr-sm-95,
	.px-sm-95 {
		padding-right: 5.9375rem !important
	}

	.pb-sm-95,
	.py-sm-95 {
		padding-bottom: 5.9375rem !important
	}

	.pl-sm-95,
	.px-sm-95 {
		padding-left: 5.9375rem !important
	}

	.p-sm-96 {
		padding: 6rem !important
	}

	.pt-sm-96,
	.py-sm-96 {
		padding-top: 6rem !important
	}

	.pr-sm-96,
	.px-sm-96 {
		padding-right: 6rem !important
	}

	.pb-sm-96,
	.py-sm-96 {
		padding-bottom: 6rem !important
	}

	.pl-sm-96,
	.px-sm-96 {
		padding-left: 6rem !important
	}

	.p-sm-97 {
		padding: 6.0625rem !important
	}

	.pt-sm-97,
	.py-sm-97 {
		padding-top: 6.0625rem !important
	}

	.pr-sm-97,
	.px-sm-97 {
		padding-right: 6.0625rem !important
	}

	.pb-sm-97,
	.py-sm-97 {
		padding-bottom: 6.0625rem !important
	}

	.pl-sm-97,
	.px-sm-97 {
		padding-left: 6.0625rem !important
	}

	.p-sm-98 {
		padding: 6.125rem !important
	}

	.pt-sm-98,
	.py-sm-98 {
		padding-top: 6.125rem !important
	}

	.pr-sm-98,
	.px-sm-98 {
		padding-right: 6.125rem !important
	}

	.pb-sm-98,
	.py-sm-98 {
		padding-bottom: 6.125rem !important
	}

	.pl-sm-98,
	.px-sm-98 {
		padding-left: 6.125rem !important
	}

	.p-sm-99 {
		padding: 6.1875rem !important
	}

	.pt-sm-99,
	.py-sm-99 {
		padding-top: 6.1875rem !important
	}

	.pr-sm-99,
	.px-sm-99 {
		padding-right: 6.1875rem !important
	}

	.pb-sm-99,
	.py-sm-99 {
		padding-bottom: 6.1875rem !important
	}

	.pl-sm-99,
	.px-sm-99 {
		padding-left: 6.1875rem !important
	}

	.p-sm-100 {
		padding: 6.25rem !important
	}

	.pt-sm-100,
	.py-sm-100 {
		padding-top: 6.25rem !important
	}

	.pr-sm-100,
	.px-sm-100 {
		padding-right: 6.25rem !important
	}

	.pb-sm-100,
	.py-sm-100 {
		padding-bottom: 6.25rem !important
	}

	.pl-sm-100,
	.px-sm-100 {
		padding-left: 6.25rem !important
	}

	.p-sm-101 {
		padding: 6.3125rem !important
	}

	.pt-sm-101,
	.py-sm-101 {
		padding-top: 6.3125rem !important
	}

	.pr-sm-101,
	.px-sm-101 {
		padding-right: 6.3125rem !important
	}

	.pb-sm-101,
	.py-sm-101 {
		padding-bottom: 6.3125rem !important
	}

	.pl-sm-101,
	.px-sm-101 {
		padding-left: 6.3125rem !important
	}

	.p-sm-102 {
		padding: 6.375rem !important
	}

	.pt-sm-102,
	.py-sm-102 {
		padding-top: 6.375rem !important
	}

	.pr-sm-102,
	.px-sm-102 {
		padding-right: 6.375rem !important
	}

	.pb-sm-102,
	.py-sm-102 {
		padding-bottom: 6.375rem !important
	}

	.pl-sm-102,
	.px-sm-102 {
		padding-left: 6.375rem !important
	}

	.p-sm-103 {
		padding: 6.4375rem !important
	}

	.pt-sm-103,
	.py-sm-103 {
		padding-top: 6.4375rem !important
	}

	.pr-sm-103,
	.px-sm-103 {
		padding-right: 6.4375rem !important
	}

	.pb-sm-103,
	.py-sm-103 {
		padding-bottom: 6.4375rem !important
	}

	.pl-sm-103,
	.px-sm-103 {
		padding-left: 6.4375rem !important
	}

	.p-sm-104 {
		padding: 6.5rem !important
	}

	.pt-sm-104,
	.py-sm-104 {
		padding-top: 6.5rem !important
	}

	.pr-sm-104,
	.px-sm-104 {
		padding-right: 6.5rem !important
	}

	.pb-sm-104,
	.py-sm-104 {
		padding-bottom: 6.5rem !important
	}

	.pl-sm-104,
	.px-sm-104 {
		padding-left: 6.5rem !important
	}

	.p-sm-105 {
		padding: 6.5625rem !important
	}

	.pt-sm-105,
	.py-sm-105 {
		padding-top: 6.5625rem !important
	}

	.pr-sm-105,
	.px-sm-105 {
		padding-right: 6.5625rem !important
	}

	.pb-sm-105,
	.py-sm-105 {
		padding-bottom: 6.5625rem !important
	}

	.pl-sm-105,
	.px-sm-105 {
		padding-left: 6.5625rem !important
	}

	.p-sm-106 {
		padding: 6.625rem !important
	}

	.pt-sm-106,
	.py-sm-106 {
		padding-top: 6.625rem !important
	}

	.pr-sm-106,
	.px-sm-106 {
		padding-right: 6.625rem !important
	}

	.pb-sm-106,
	.py-sm-106 {
		padding-bottom: 6.625rem !important
	}

	.pl-sm-106,
	.px-sm-106 {
		padding-left: 6.625rem !important
	}

	.p-sm-107 {
		padding: 6.6875rem !important
	}

	.pt-sm-107,
	.py-sm-107 {
		padding-top: 6.6875rem !important
	}

	.pr-sm-107,
	.px-sm-107 {
		padding-right: 6.6875rem !important
	}

	.pb-sm-107,
	.py-sm-107 {
		padding-bottom: 6.6875rem !important
	}

	.pl-sm-107,
	.px-sm-107 {
		padding-left: 6.6875rem !important
	}

	.p-sm-108 {
		padding: 6.75rem !important
	}

	.pt-sm-108,
	.py-sm-108 {
		padding-top: 6.75rem !important
	}

	.pr-sm-108,
	.px-sm-108 {
		padding-right: 6.75rem !important
	}

	.pb-sm-108,
	.py-sm-108 {
		padding-bottom: 6.75rem !important
	}

	.pl-sm-108,
	.px-sm-108 {
		padding-left: 6.75rem !important
	}

	.p-sm-109 {
		padding: 6.8125rem !important
	}

	.pt-sm-109,
	.py-sm-109 {
		padding-top: 6.8125rem !important
	}

	.pr-sm-109,
	.px-sm-109 {
		padding-right: 6.8125rem !important
	}

	.pb-sm-109,
	.py-sm-109 {
		padding-bottom: 6.8125rem !important
	}

	.pl-sm-109,
	.px-sm-109 {
		padding-left: 6.8125rem !important
	}

	.p-sm-110 {
		padding: 6.875rem !important
	}

	.pt-sm-110,
	.py-sm-110 {
		padding-top: 6.875rem !important
	}

	.pr-sm-110,
	.px-sm-110 {
		padding-right: 6.875rem !important
	}

	.pb-sm-110,
	.py-sm-110 {
		padding-bottom: 6.875rem !important
	}

	.pl-sm-110,
	.px-sm-110 {
		padding-left: 6.875rem !important
	}

	.p-sm-111 {
		padding: 6.9375rem !important
	}

	.pt-sm-111,
	.py-sm-111 {
		padding-top: 6.9375rem !important
	}

	.pr-sm-111,
	.px-sm-111 {
		padding-right: 6.9375rem !important
	}

	.pb-sm-111,
	.py-sm-111 {
		padding-bottom: 6.9375rem !important
	}

	.pl-sm-111,
	.px-sm-111 {
		padding-left: 6.9375rem !important
	}

	.p-sm-112 {
		padding: 7rem !important
	}

	.pt-sm-112,
	.py-sm-112 {
		padding-top: 7rem !important
	}

	.pr-sm-112,
	.px-sm-112 {
		padding-right: 7rem !important
	}

	.pb-sm-112,
	.py-sm-112 {
		padding-bottom: 7rem !important
	}

	.pl-sm-112,
	.px-sm-112 {
		padding-left: 7rem !important
	}

	.p-sm-113 {
		padding: 7.0625rem !important
	}

	.pt-sm-113,
	.py-sm-113 {
		padding-top: 7.0625rem !important
	}

	.pr-sm-113,
	.px-sm-113 {
		padding-right: 7.0625rem !important
	}

	.pb-sm-113,
	.py-sm-113 {
		padding-bottom: 7.0625rem !important
	}

	.pl-sm-113,
	.px-sm-113 {
		padding-left: 7.0625rem !important
	}

	.p-sm-114 {
		padding: 7.125rem !important
	}

	.pt-sm-114,
	.py-sm-114 {
		padding-top: 7.125rem !important
	}

	.pr-sm-114,
	.px-sm-114 {
		padding-right: 7.125rem !important
	}

	.pb-sm-114,
	.py-sm-114 {
		padding-bottom: 7.125rem !important
	}

	.pl-sm-114,
	.px-sm-114 {
		padding-left: 7.125rem !important
	}

	.p-sm-115 {
		padding: 7.1875rem !important
	}

	.pt-sm-115,
	.py-sm-115 {
		padding-top: 7.1875rem !important
	}

	.pr-sm-115,
	.px-sm-115 {
		padding-right: 7.1875rem !important
	}

	.pb-sm-115,
	.py-sm-115 {
		padding-bottom: 7.1875rem !important
	}

	.pl-sm-115,
	.px-sm-115 {
		padding-left: 7.1875rem !important
	}

	.p-sm-116 {
		padding: 7.25rem !important
	}

	.pt-sm-116,
	.py-sm-116 {
		padding-top: 7.25rem !important
	}

	.pr-sm-116,
	.px-sm-116 {
		padding-right: 7.25rem !important
	}

	.pb-sm-116,
	.py-sm-116 {
		padding-bottom: 7.25rem !important
	}

	.pl-sm-116,
	.px-sm-116 {
		padding-left: 7.25rem !important
	}

	.p-sm-117 {
		padding: 7.3125rem !important
	}

	.pt-sm-117,
	.py-sm-117 {
		padding-top: 7.3125rem !important
	}

	.pr-sm-117,
	.px-sm-117 {
		padding-right: 7.3125rem !important
	}

	.pb-sm-117,
	.py-sm-117 {
		padding-bottom: 7.3125rem !important
	}

	.pl-sm-117,
	.px-sm-117 {
		padding-left: 7.3125rem !important
	}

	.p-sm-118 {
		padding: 7.375rem !important
	}

	.pt-sm-118,
	.py-sm-118 {
		padding-top: 7.375rem !important
	}

	.pr-sm-118,
	.px-sm-118 {
		padding-right: 7.375rem !important
	}

	.pb-sm-118,
	.py-sm-118 {
		padding-bottom: 7.375rem !important
	}

	.pl-sm-118,
	.px-sm-118 {
		padding-left: 7.375rem !important
	}

	.p-sm-119 {
		padding: 7.4375rem !important
	}

	.pt-sm-119,
	.py-sm-119 {
		padding-top: 7.4375rem !important
	}

	.pr-sm-119,
	.px-sm-119 {
		padding-right: 7.4375rem !important
	}

	.pb-sm-119,
	.py-sm-119 {
		padding-bottom: 7.4375rem !important
	}

	.pl-sm-119,
	.px-sm-119 {
		padding-left: 7.4375rem !important
	}

	.p-sm-120 {
		padding: 7.5rem !important
	}

	.pt-sm-120,
	.py-sm-120 {
		padding-top: 7.5rem !important
	}

	.pr-sm-120,
	.px-sm-120 {
		padding-right: 7.5rem !important
	}

	.pb-sm-120,
	.py-sm-120 {
		padding-bottom: 7.5rem !important
	}

	.pl-sm-120,
	.px-sm-120 {
		padding-left: 7.5rem !important
	}

	.p-sm-121 {
		padding: 7.5625rem !important
	}

	.pt-sm-121,
	.py-sm-121 {
		padding-top: 7.5625rem !important
	}

	.pr-sm-121,
	.px-sm-121 {
		padding-right: 7.5625rem !important
	}

	.pb-sm-121,
	.py-sm-121 {
		padding-bottom: 7.5625rem !important
	}

	.pl-sm-121,
	.px-sm-121 {
		padding-left: 7.5625rem !important
	}

	.p-sm-122 {
		padding: 7.625rem !important
	}

	.pt-sm-122,
	.py-sm-122 {
		padding-top: 7.625rem !important
	}

	.pr-sm-122,
	.px-sm-122 {
		padding-right: 7.625rem !important
	}

	.pb-sm-122,
	.py-sm-122 {
		padding-bottom: 7.625rem !important
	}

	.pl-sm-122,
	.px-sm-122 {
		padding-left: 7.625rem !important
	}

	.p-sm-123 {
		padding: 7.6875rem !important
	}

	.pt-sm-123,
	.py-sm-123 {
		padding-top: 7.6875rem !important
	}

	.pr-sm-123,
	.px-sm-123 {
		padding-right: 7.6875rem !important
	}

	.pb-sm-123,
	.py-sm-123 {
		padding-bottom: 7.6875rem !important
	}

	.pl-sm-123,
	.px-sm-123 {
		padding-left: 7.6875rem !important
	}

	.p-sm-124 {
		padding: 7.75rem !important
	}

	.pt-sm-124,
	.py-sm-124 {
		padding-top: 7.75rem !important
	}

	.pr-sm-124,
	.px-sm-124 {
		padding-right: 7.75rem !important
	}

	.pb-sm-124,
	.py-sm-124 {
		padding-bottom: 7.75rem !important
	}

	.pl-sm-124,
	.px-sm-124 {
		padding-left: 7.75rem !important
	}

	.p-sm-125 {
		padding: 7.8125rem !important
	}

	.pt-sm-125,
	.py-sm-125 {
		padding-top: 7.8125rem !important
	}

	.pr-sm-125,
	.px-sm-125 {
		padding-right: 7.8125rem !important
	}

	.pb-sm-125,
	.py-sm-125 {
		padding-bottom: 7.8125rem !important
	}

	.pl-sm-125,
	.px-sm-125 {
		padding-left: 7.8125rem !important
	}

	.p-sm-126 {
		padding: 7.875rem !important
	}

	.pt-sm-126,
	.py-sm-126 {
		padding-top: 7.875rem !important
	}

	.pr-sm-126,
	.px-sm-126 {
		padding-right: 7.875rem !important
	}

	.pb-sm-126,
	.py-sm-126 {
		padding-bottom: 7.875rem !important
	}

	.pl-sm-126,
	.px-sm-126 {
		padding-left: 7.875rem !important
	}

	.p-sm-127 {
		padding: 7.9375rem !important
	}

	.pt-sm-127,
	.py-sm-127 {
		padding-top: 7.9375rem !important
	}

	.pr-sm-127,
	.px-sm-127 {
		padding-right: 7.9375rem !important
	}

	.pb-sm-127,
	.py-sm-127 {
		padding-bottom: 7.9375rem !important
	}

	.pl-sm-127,
	.px-sm-127 {
		padding-left: 7.9375rem !important
	}

	.p-sm-128 {
		padding: 8rem !important
	}

	.pt-sm-128,
	.py-sm-128 {
		padding-top: 8rem !important
	}

	.pr-sm-128,
	.px-sm-128 {
		padding-right: 8rem !important
	}

	.pb-sm-128,
	.py-sm-128 {
		padding-bottom: 8rem !important
	}

	.pl-sm-128,
	.px-sm-128 {
		padding-left: 8rem !important
	}

	.p-sm-129 {
		padding: 8.0625rem !important
	}

	.pt-sm-129,
	.py-sm-129 {
		padding-top: 8.0625rem !important
	}

	.pr-sm-129,
	.px-sm-129 {
		padding-right: 8.0625rem !important
	}

	.pb-sm-129,
	.py-sm-129 {
		padding-bottom: 8.0625rem !important
	}

	.pl-sm-129,
	.px-sm-129 {
		padding-left: 8.0625rem !important
	}

	.p-sm-130 {
		padding: 8.125rem !important
	}

	.pt-sm-130,
	.py-sm-130 {
		padding-top: 8.125rem !important
	}

	.pr-sm-130,
	.px-sm-130 {
		padding-right: 8.125rem !important
	}

	.pb-sm-130,
	.py-sm-130 {
		padding-bottom: 8.125rem !important
	}

	.pl-sm-130,
	.px-sm-130 {
		padding-left: 8.125rem !important
	}

	.p-sm-131 {
		padding: 8.1875rem !important
	}

	.pt-sm-131,
	.py-sm-131 {
		padding-top: 8.1875rem !important
	}

	.pr-sm-131,
	.px-sm-131 {
		padding-right: 8.1875rem !important
	}

	.pb-sm-131,
	.py-sm-131 {
		padding-bottom: 8.1875rem !important
	}

	.pl-sm-131,
	.px-sm-131 {
		padding-left: 8.1875rem !important
	}

	.p-sm-132 {
		padding: 8.25rem !important
	}

	.pt-sm-132,
	.py-sm-132 {
		padding-top: 8.25rem !important
	}

	.pr-sm-132,
	.px-sm-132 {
		padding-right: 8.25rem !important
	}

	.pb-sm-132,
	.py-sm-132 {
		padding-bottom: 8.25rem !important
	}

	.pl-sm-132,
	.px-sm-132 {
		padding-left: 8.25rem !important
	}

	.p-sm-133 {
		padding: 8.3125rem !important
	}

	.pt-sm-133,
	.py-sm-133 {
		padding-top: 8.3125rem !important
	}

	.pr-sm-133,
	.px-sm-133 {
		padding-right: 8.3125rem !important
	}

	.pb-sm-133,
	.py-sm-133 {
		padding-bottom: 8.3125rem !important
	}

	.pl-sm-133,
	.px-sm-133 {
		padding-left: 8.3125rem !important
	}

	.p-sm-134 {
		padding: 8.375rem !important
	}

	.pt-sm-134,
	.py-sm-134 {
		padding-top: 8.375rem !important
	}

	.pr-sm-134,
	.px-sm-134 {
		padding-right: 8.375rem !important
	}

	.pb-sm-134,
	.py-sm-134 {
		padding-bottom: 8.375rem !important
	}

	.pl-sm-134,
	.px-sm-134 {
		padding-left: 8.375rem !important
	}

	.p-sm-135 {
		padding: 8.4375rem !important
	}

	.pt-sm-135,
	.py-sm-135 {
		padding-top: 8.4375rem !important
	}

	.pr-sm-135,
	.px-sm-135 {
		padding-right: 8.4375rem !important
	}

	.pb-sm-135,
	.py-sm-135 {
		padding-bottom: 8.4375rem !important
	}

	.pl-sm-135,
	.px-sm-135 {
		padding-left: 8.4375rem !important
	}

	.p-sm-136 {
		padding: 8.5rem !important
	}

	.pt-sm-136,
	.py-sm-136 {
		padding-top: 8.5rem !important
	}

	.pr-sm-136,
	.px-sm-136 {
		padding-right: 8.5rem !important
	}

	.pb-sm-136,
	.py-sm-136 {
		padding-bottom: 8.5rem !important
	}

	.pl-sm-136,
	.px-sm-136 {
		padding-left: 8.5rem !important
	}

	.p-sm-137 {
		padding: 8.5625rem !important
	}

	.pt-sm-137,
	.py-sm-137 {
		padding-top: 8.5625rem !important
	}

	.pr-sm-137,
	.px-sm-137 {
		padding-right: 8.5625rem !important
	}

	.pb-sm-137,
	.py-sm-137 {
		padding-bottom: 8.5625rem !important
	}

	.pl-sm-137,
	.px-sm-137 {
		padding-left: 8.5625rem !important
	}

	.p-sm-138 {
		padding: 8.625rem !important
	}

	.pt-sm-138,
	.py-sm-138 {
		padding-top: 8.625rem !important
	}

	.pr-sm-138,
	.px-sm-138 {
		padding-right: 8.625rem !important
	}

	.pb-sm-138,
	.py-sm-138 {
		padding-bottom: 8.625rem !important
	}

	.pl-sm-138,
	.px-sm-138 {
		padding-left: 8.625rem !important
	}

	.p-sm-139 {
		padding: 8.6875rem !important
	}

	.pt-sm-139,
	.py-sm-139 {
		padding-top: 8.6875rem !important
	}

	.pr-sm-139,
	.px-sm-139 {
		padding-right: 8.6875rem !important
	}

	.pb-sm-139,
	.py-sm-139 {
		padding-bottom: 8.6875rem !important
	}

	.pl-sm-139,
	.px-sm-139 {
		padding-left: 8.6875rem !important
	}

	.p-sm-140 {
		padding: 8.75rem !important
	}

	.pt-sm-140,
	.py-sm-140 {
		padding-top: 8.75rem !important
	}

	.pr-sm-140,
	.px-sm-140 {
		padding-right: 8.75rem !important
	}

	.pb-sm-140,
	.py-sm-140 {
		padding-bottom: 8.75rem !important
	}

	.pl-sm-140,
	.px-sm-140 {
		padding-left: 8.75rem !important
	}

	.p-sm-141 {
		padding: 8.8125rem !important
	}

	.pt-sm-141,
	.py-sm-141 {
		padding-top: 8.8125rem !important
	}

	.pr-sm-141,
	.px-sm-141 {
		padding-right: 8.8125rem !important
	}

	.pb-sm-141,
	.py-sm-141 {
		padding-bottom: 8.8125rem !important
	}

	.pl-sm-141,
	.px-sm-141 {
		padding-left: 8.8125rem !important
	}

	.p-sm-142 {
		padding: 8.875rem !important
	}

	.pt-sm-142,
	.py-sm-142 {
		padding-top: 8.875rem !important
	}

	.pr-sm-142,
	.px-sm-142 {
		padding-right: 8.875rem !important
	}

	.pb-sm-142,
	.py-sm-142 {
		padding-bottom: 8.875rem !important
	}

	.pl-sm-142,
	.px-sm-142 {
		padding-left: 8.875rem !important
	}

	.p-sm-143 {
		padding: 8.9375rem !important
	}

	.pt-sm-143,
	.py-sm-143 {
		padding-top: 8.9375rem !important
	}

	.pr-sm-143,
	.px-sm-143 {
		padding-right: 8.9375rem !important
	}

	.pb-sm-143,
	.py-sm-143 {
		padding-bottom: 8.9375rem !important
	}

	.pl-sm-143,
	.px-sm-143 {
		padding-left: 8.9375rem !important
	}

	.p-sm-144 {
		padding: 9rem !important
	}

	.pt-sm-144,
	.py-sm-144 {
		padding-top: 9rem !important
	}

	.pr-sm-144,
	.px-sm-144 {
		padding-right: 9rem !important
	}

	.pb-sm-144,
	.py-sm-144 {
		padding-bottom: 9rem !important
	}

	.pl-sm-144,
	.px-sm-144 {
		padding-left: 9rem !important
	}

	.p-sm-145 {
		padding: 9.0625rem !important
	}

	.pt-sm-145,
	.py-sm-145 {
		padding-top: 9.0625rem !important
	}

	.pr-sm-145,
	.px-sm-145 {
		padding-right: 9.0625rem !important
	}

	.pb-sm-145,
	.py-sm-145 {
		padding-bottom: 9.0625rem !important
	}

	.pl-sm-145,
	.px-sm-145 {
		padding-left: 9.0625rem !important
	}

	.p-sm-146 {
		padding: 9.125rem !important
	}

	.pt-sm-146,
	.py-sm-146 {
		padding-top: 9.125rem !important
	}

	.pr-sm-146,
	.px-sm-146 {
		padding-right: 9.125rem !important
	}

	.pb-sm-146,
	.py-sm-146 {
		padding-bottom: 9.125rem !important
	}

	.pl-sm-146,
	.px-sm-146 {
		padding-left: 9.125rem !important
	}

	.p-sm-147 {
		padding: 9.1875rem !important
	}

	.pt-sm-147,
	.py-sm-147 {
		padding-top: 9.1875rem !important
	}

	.pr-sm-147,
	.px-sm-147 {
		padding-right: 9.1875rem !important
	}

	.pb-sm-147,
	.py-sm-147 {
		padding-bottom: 9.1875rem !important
	}

	.pl-sm-147,
	.px-sm-147 {
		padding-left: 9.1875rem !important
	}

	.p-sm-148 {
		padding: 9.25rem !important
	}

	.pt-sm-148,
	.py-sm-148 {
		padding-top: 9.25rem !important
	}

	.pr-sm-148,
	.px-sm-148 {
		padding-right: 9.25rem !important
	}

	.pb-sm-148,
	.py-sm-148 {
		padding-bottom: 9.25rem !important
	}

	.pl-sm-148,
	.px-sm-148 {
		padding-left: 9.25rem !important
	}

	.p-sm-149 {
		padding: 9.3125rem !important
	}

	.pt-sm-149,
	.py-sm-149 {
		padding-top: 9.3125rem !important
	}

	.pr-sm-149,
	.px-sm-149 {
		padding-right: 9.3125rem !important
	}

	.pb-sm-149,
	.py-sm-149 {
		padding-bottom: 9.3125rem !important
	}

	.pl-sm-149,
	.px-sm-149 {
		padding-left: 9.3125rem !important
	}

	.p-sm-150 {
		padding: 9.375rem !important
	}

	.pt-sm-150,
	.py-sm-150 {
		padding-top: 9.375rem !important
	}

	.pr-sm-150,
	.px-sm-150 {
		padding-right: 9.375rem !important
	}

	.pb-sm-150,
	.py-sm-150 {
		padding-bottom: 9.375rem !important
	}

	.pl-sm-150,
	.px-sm-150 {
		padding-left: 9.375rem !important
	}

	.p-sm-151 {
		padding: 9.4375rem !important
	}

	.pt-sm-151,
	.py-sm-151 {
		padding-top: 9.4375rem !important
	}

	.pr-sm-151,
	.px-sm-151 {
		padding-right: 9.4375rem !important
	}

	.pb-sm-151,
	.py-sm-151 {
		padding-bottom: 9.4375rem !important
	}

	.pl-sm-151,
	.px-sm-151 {
		padding-left: 9.4375rem !important
	}

	.p-sm-152 {
		padding: 9.5rem !important
	}

	.pt-sm-152,
	.py-sm-152 {
		padding-top: 9.5rem !important
	}

	.pr-sm-152,
	.px-sm-152 {
		padding-right: 9.5rem !important
	}

	.pb-sm-152,
	.py-sm-152 {
		padding-bottom: 9.5rem !important
	}

	.pl-sm-152,
	.px-sm-152 {
		padding-left: 9.5rem !important
	}

	.p-sm-153 {
		padding: 9.5625rem !important
	}

	.pt-sm-153,
	.py-sm-153 {
		padding-top: 9.5625rem !important
	}

	.pr-sm-153,
	.px-sm-153 {
		padding-right: 9.5625rem !important
	}

	.pb-sm-153,
	.py-sm-153 {
		padding-bottom: 9.5625rem !important
	}

	.pl-sm-153,
	.px-sm-153 {
		padding-left: 9.5625rem !important
	}

	.p-sm-154 {
		padding: 9.625rem !important
	}

	.pt-sm-154,
	.py-sm-154 {
		padding-top: 9.625rem !important
	}

	.pr-sm-154,
	.px-sm-154 {
		padding-right: 9.625rem !important
	}

	.pb-sm-154,
	.py-sm-154 {
		padding-bottom: 9.625rem !important
	}

	.pl-sm-154,
	.px-sm-154 {
		padding-left: 9.625rem !important
	}

	.p-sm-155 {
		padding: 9.6875rem !important
	}

	.pt-sm-155,
	.py-sm-155 {
		padding-top: 9.6875rem !important
	}

	.pr-sm-155,
	.px-sm-155 {
		padding-right: 9.6875rem !important
	}

	.pb-sm-155,
	.py-sm-155 {
		padding-bottom: 9.6875rem !important
	}

	.pl-sm-155,
	.px-sm-155 {
		padding-left: 9.6875rem !important
	}

	.p-sm-156 {
		padding: 9.75rem !important
	}

	.pt-sm-156,
	.py-sm-156 {
		padding-top: 9.75rem !important
	}

	.pr-sm-156,
	.px-sm-156 {
		padding-right: 9.75rem !important
	}

	.pb-sm-156,
	.py-sm-156 {
		padding-bottom: 9.75rem !important
	}

	.pl-sm-156,
	.px-sm-156 {
		padding-left: 9.75rem !important
	}

	.p-sm-157 {
		padding: 9.8125rem !important
	}

	.pt-sm-157,
	.py-sm-157 {
		padding-top: 9.8125rem !important
	}

	.pr-sm-157,
	.px-sm-157 {
		padding-right: 9.8125rem !important
	}

	.pb-sm-157,
	.py-sm-157 {
		padding-bottom: 9.8125rem !important
	}

	.pl-sm-157,
	.px-sm-157 {
		padding-left: 9.8125rem !important
	}

	.p-sm-158 {
		padding: 9.875rem !important
	}

	.pt-sm-158,
	.py-sm-158 {
		padding-top: 9.875rem !important
	}

	.pr-sm-158,
	.px-sm-158 {
		padding-right: 9.875rem !important
	}

	.pb-sm-158,
	.py-sm-158 {
		padding-bottom: 9.875rem !important
	}

	.pl-sm-158,
	.px-sm-158 {
		padding-left: 9.875rem !important
	}

	.p-sm-159 {
		padding: 9.9375rem !important
	}

	.pt-sm-159,
	.py-sm-159 {
		padding-top: 9.9375rem !important
	}

	.pr-sm-159,
	.px-sm-159 {
		padding-right: 9.9375rem !important
	}

	.pb-sm-159,
	.py-sm-159 {
		padding-bottom: 9.9375rem !important
	}

	.pl-sm-159,
	.px-sm-159 {
		padding-left: 9.9375rem !important
	}

	.p-sm-160 {
		padding: 10rem !important
	}

	.pt-sm-160,
	.py-sm-160 {
		padding-top: 10rem !important
	}

	.pr-sm-160,
	.px-sm-160 {
		padding-right: 10rem !important
	}

	.pb-sm-160,
	.py-sm-160 {
		padding-bottom: 10rem !important
	}

	.pl-sm-160,
	.px-sm-160 {
		padding-left: 10rem !important
	}

	.p-sm-161 {
		padding: 10.0625rem !important
	}

	.pt-sm-161,
	.py-sm-161 {
		padding-top: 10.0625rem !important
	}

	.pr-sm-161,
	.px-sm-161 {
		padding-right: 10.0625rem !important
	}

	.pb-sm-161,
	.py-sm-161 {
		padding-bottom: 10.0625rem !important
	}

	.pl-sm-161,
	.px-sm-161 {
		padding-left: 10.0625rem !important
	}

	.p-sm-162 {
		padding: 10.125rem !important
	}

	.pt-sm-162,
	.py-sm-162 {
		padding-top: 10.125rem !important
	}

	.pr-sm-162,
	.px-sm-162 {
		padding-right: 10.125rem !important
	}

	.pb-sm-162,
	.py-sm-162 {
		padding-bottom: 10.125rem !important
	}

	.pl-sm-162,
	.px-sm-162 {
		padding-left: 10.125rem !important
	}

	.p-sm-163 {
		padding: 10.1875rem !important
	}

	.pt-sm-163,
	.py-sm-163 {
		padding-top: 10.1875rem !important
	}

	.pr-sm-163,
	.px-sm-163 {
		padding-right: 10.1875rem !important
	}

	.pb-sm-163,
	.py-sm-163 {
		padding-bottom: 10.1875rem !important
	}

	.pl-sm-163,
	.px-sm-163 {
		padding-left: 10.1875rem !important
	}

	.p-sm-164 {
		padding: 10.25rem !important
	}

	.pt-sm-164,
	.py-sm-164 {
		padding-top: 10.25rem !important
	}

	.pr-sm-164,
	.px-sm-164 {
		padding-right: 10.25rem !important
	}

	.pb-sm-164,
	.py-sm-164 {
		padding-bottom: 10.25rem !important
	}

	.pl-sm-164,
	.px-sm-164 {
		padding-left: 10.25rem !important
	}

	.p-sm-165 {
		padding: 10.3125rem !important
	}

	.pt-sm-165,
	.py-sm-165 {
		padding-top: 10.3125rem !important
	}

	.pr-sm-165,
	.px-sm-165 {
		padding-right: 10.3125rem !important
	}

	.pb-sm-165,
	.py-sm-165 {
		padding-bottom: 10.3125rem !important
	}

	.pl-sm-165,
	.px-sm-165 {
		padding-left: 10.3125rem !important
	}

	.p-sm-166 {
		padding: 10.375rem !important
	}

	.pt-sm-166,
	.py-sm-166 {
		padding-top: 10.375rem !important
	}

	.pr-sm-166,
	.px-sm-166 {
		padding-right: 10.375rem !important
	}

	.pb-sm-166,
	.py-sm-166 {
		padding-bottom: 10.375rem !important
	}

	.pl-sm-166,
	.px-sm-166 {
		padding-left: 10.375rem !important
	}

	.p-sm-167 {
		padding: 10.4375rem !important
	}

	.pt-sm-167,
	.py-sm-167 {
		padding-top: 10.4375rem !important
	}

	.pr-sm-167,
	.px-sm-167 {
		padding-right: 10.4375rem !important
	}

	.pb-sm-167,
	.py-sm-167 {
		padding-bottom: 10.4375rem !important
	}

	.pl-sm-167,
	.px-sm-167 {
		padding-left: 10.4375rem !important
	}

	.p-sm-168 {
		padding: 10.5rem !important
	}

	.pt-sm-168,
	.py-sm-168 {
		padding-top: 10.5rem !important
	}

	.pr-sm-168,
	.px-sm-168 {
		padding-right: 10.5rem !important
	}

	.pb-sm-168,
	.py-sm-168 {
		padding-bottom: 10.5rem !important
	}

	.pl-sm-168,
	.px-sm-168 {
		padding-left: 10.5rem !important
	}

	.p-sm-169 {
		padding: 10.5625rem !important
	}

	.pt-sm-169,
	.py-sm-169 {
		padding-top: 10.5625rem !important
	}

	.pr-sm-169,
	.px-sm-169 {
		padding-right: 10.5625rem !important
	}

	.pb-sm-169,
	.py-sm-169 {
		padding-bottom: 10.5625rem !important
	}

	.pl-sm-169,
	.px-sm-169 {
		padding-left: 10.5625rem !important
	}

	.p-sm-170 {
		padding: 10.625rem !important
	}

	.pt-sm-170,
	.py-sm-170 {
		padding-top: 10.625rem !important
	}

	.pr-sm-170,
	.px-sm-170 {
		padding-right: 10.625rem !important
	}

	.pb-sm-170,
	.py-sm-170 {
		padding-bottom: 10.625rem !important
	}

	.pl-sm-170,
	.px-sm-170 {
		padding-left: 10.625rem !important
	}

	.p-sm-171 {
		padding: 10.6875rem !important
	}

	.pt-sm-171,
	.py-sm-171 {
		padding-top: 10.6875rem !important
	}

	.pr-sm-171,
	.px-sm-171 {
		padding-right: 10.6875rem !important
	}

	.pb-sm-171,
	.py-sm-171 {
		padding-bottom: 10.6875rem !important
	}

	.pl-sm-171,
	.px-sm-171 {
		padding-left: 10.6875rem !important
	}

	.p-sm-172 {
		padding: 10.75rem !important
	}

	.pt-sm-172,
	.py-sm-172 {
		padding-top: 10.75rem !important
	}

	.pr-sm-172,
	.px-sm-172 {
		padding-right: 10.75rem !important
	}

	.pb-sm-172,
	.py-sm-172 {
		padding-bottom: 10.75rem !important
	}

	.pl-sm-172,
	.px-sm-172 {
		padding-left: 10.75rem !important
	}

	.p-sm-173 {
		padding: 10.8125rem !important
	}

	.pt-sm-173,
	.py-sm-173 {
		padding-top: 10.8125rem !important
	}

	.pr-sm-173,
	.px-sm-173 {
		padding-right: 10.8125rem !important
	}

	.pb-sm-173,
	.py-sm-173 {
		padding-bottom: 10.8125rem !important
	}

	.pl-sm-173,
	.px-sm-173 {
		padding-left: 10.8125rem !important
	}

	.p-sm-174 {
		padding: 10.875rem !important
	}

	.pt-sm-174,
	.py-sm-174 {
		padding-top: 10.875rem !important
	}

	.pr-sm-174,
	.px-sm-174 {
		padding-right: 10.875rem !important
	}

	.pb-sm-174,
	.py-sm-174 {
		padding-bottom: 10.875rem !important
	}

	.pl-sm-174,
	.px-sm-174 {
		padding-left: 10.875rem !important
	}

	.p-sm-175 {
		padding: 10.9375rem !important
	}

	.pt-sm-175,
	.py-sm-175 {
		padding-top: 10.9375rem !important
	}

	.pr-sm-175,
	.px-sm-175 {
		padding-right: 10.9375rem !important
	}

	.pb-sm-175,
	.py-sm-175 {
		padding-bottom: 10.9375rem !important
	}

	.pl-sm-175,
	.px-sm-175 {
		padding-left: 10.9375rem !important
	}

	.p-sm-176 {
		padding: 11rem !important
	}

	.pt-sm-176,
	.py-sm-176 {
		padding-top: 11rem !important
	}

	.pr-sm-176,
	.px-sm-176 {
		padding-right: 11rem !important
	}

	.pb-sm-176,
	.py-sm-176 {
		padding-bottom: 11rem !important
	}

	.pl-sm-176,
	.px-sm-176 {
		padding-left: 11rem !important
	}

	.p-sm-177 {
		padding: 11.0625rem !important
	}

	.pt-sm-177,
	.py-sm-177 {
		padding-top: 11.0625rem !important
	}

	.pr-sm-177,
	.px-sm-177 {
		padding-right: 11.0625rem !important
	}

	.pb-sm-177,
	.py-sm-177 {
		padding-bottom: 11.0625rem !important
	}

	.pl-sm-177,
	.px-sm-177 {
		padding-left: 11.0625rem !important
	}

	.p-sm-178 {
		padding: 11.125rem !important
	}

	.pt-sm-178,
	.py-sm-178 {
		padding-top: 11.125rem !important
	}

	.pr-sm-178,
	.px-sm-178 {
		padding-right: 11.125rem !important
	}

	.pb-sm-178,
	.py-sm-178 {
		padding-bottom: 11.125rem !important
	}

	.pl-sm-178,
	.px-sm-178 {
		padding-left: 11.125rem !important
	}

	.p-sm-179 {
		padding: 11.1875rem !important
	}

	.pt-sm-179,
	.py-sm-179 {
		padding-top: 11.1875rem !important
	}

	.pr-sm-179,
	.px-sm-179 {
		padding-right: 11.1875rem !important
	}

	.pb-sm-179,
	.py-sm-179 {
		padding-bottom: 11.1875rem !important
	}

	.pl-sm-179,
	.px-sm-179 {
		padding-left: 11.1875rem !important
	}

	.p-sm-180 {
		padding: 11.25rem !important
	}

	.pt-sm-180,
	.py-sm-180 {
		padding-top: 11.25rem !important
	}

	.pr-sm-180,
	.px-sm-180 {
		padding-right: 11.25rem !important
	}

	.pb-sm-180,
	.py-sm-180 {
		padding-bottom: 11.25rem !important
	}

	.pl-sm-180,
	.px-sm-180 {
		padding-left: 11.25rem !important
	}

	.p-sm-181 {
		padding: 11.3125rem !important
	}

	.pt-sm-181,
	.py-sm-181 {
		padding-top: 11.3125rem !important
	}

	.pr-sm-181,
	.px-sm-181 {
		padding-right: 11.3125rem !important
	}

	.pb-sm-181,
	.py-sm-181 {
		padding-bottom: 11.3125rem !important
	}

	.pl-sm-181,
	.px-sm-181 {
		padding-left: 11.3125rem !important
	}

	.p-sm-182 {
		padding: 11.375rem !important
	}

	.pt-sm-182,
	.py-sm-182 {
		padding-top: 11.375rem !important
	}

	.pr-sm-182,
	.px-sm-182 {
		padding-right: 11.375rem !important
	}

	.pb-sm-182,
	.py-sm-182 {
		padding-bottom: 11.375rem !important
	}

	.pl-sm-182,
	.px-sm-182 {
		padding-left: 11.375rem !important
	}

	.p-sm-183 {
		padding: 11.4375rem !important
	}

	.pt-sm-183,
	.py-sm-183 {
		padding-top: 11.4375rem !important
	}

	.pr-sm-183,
	.px-sm-183 {
		padding-right: 11.4375rem !important
	}

	.pb-sm-183,
	.py-sm-183 {
		padding-bottom: 11.4375rem !important
	}

	.pl-sm-183,
	.px-sm-183 {
		padding-left: 11.4375rem !important
	}

	.p-sm-184 {
		padding: 11.5rem !important
	}

	.pt-sm-184,
	.py-sm-184 {
		padding-top: 11.5rem !important
	}

	.pr-sm-184,
	.px-sm-184 {
		padding-right: 11.5rem !important
	}

	.pb-sm-184,
	.py-sm-184 {
		padding-bottom: 11.5rem !important
	}

	.pl-sm-184,
	.px-sm-184 {
		padding-left: 11.5rem !important
	}

	.p-sm-185 {
		padding: 11.5625rem !important
	}

	.pt-sm-185,
	.py-sm-185 {
		padding-top: 11.5625rem !important
	}

	.pr-sm-185,
	.px-sm-185 {
		padding-right: 11.5625rem !important
	}

	.pb-sm-185,
	.py-sm-185 {
		padding-bottom: 11.5625rem !important
	}

	.pl-sm-185,
	.px-sm-185 {
		padding-left: 11.5625rem !important
	}

	.p-sm-186 {
		padding: 11.625rem !important
	}

	.pt-sm-186,
	.py-sm-186 {
		padding-top: 11.625rem !important
	}

	.pr-sm-186,
	.px-sm-186 {
		padding-right: 11.625rem !important
	}

	.pb-sm-186,
	.py-sm-186 {
		padding-bottom: 11.625rem !important
	}

	.pl-sm-186,
	.px-sm-186 {
		padding-left: 11.625rem !important
	}

	.p-sm-187 {
		padding: 11.6875rem !important
	}

	.pt-sm-187,
	.py-sm-187 {
		padding-top: 11.6875rem !important
	}

	.pr-sm-187,
	.px-sm-187 {
		padding-right: 11.6875rem !important
	}

	.pb-sm-187,
	.py-sm-187 {
		padding-bottom: 11.6875rem !important
	}

	.pl-sm-187,
	.px-sm-187 {
		padding-left: 11.6875rem !important
	}

	.p-sm-188 {
		padding: 11.75rem !important
	}

	.pt-sm-188,
	.py-sm-188 {
		padding-top: 11.75rem !important
	}

	.pr-sm-188,
	.px-sm-188 {
		padding-right: 11.75rem !important
	}

	.pb-sm-188,
	.py-sm-188 {
		padding-bottom: 11.75rem !important
	}

	.pl-sm-188,
	.px-sm-188 {
		padding-left: 11.75rem !important
	}

	.p-sm-189 {
		padding: 11.8125rem !important
	}

	.pt-sm-189,
	.py-sm-189 {
		padding-top: 11.8125rem !important
	}

	.pr-sm-189,
	.px-sm-189 {
		padding-right: 11.8125rem !important
	}

	.pb-sm-189,
	.py-sm-189 {
		padding-bottom: 11.8125rem !important
	}

	.pl-sm-189,
	.px-sm-189 {
		padding-left: 11.8125rem !important
	}

	.p-sm-190 {
		padding: 11.875rem !important
	}

	.pt-sm-190,
	.py-sm-190 {
		padding-top: 11.875rem !important
	}

	.pr-sm-190,
	.px-sm-190 {
		padding-right: 11.875rem !important
	}

	.pb-sm-190,
	.py-sm-190 {
		padding-bottom: 11.875rem !important
	}

	.pl-sm-190,
	.px-sm-190 {
		padding-left: 11.875rem !important
	}

	.p-sm-191 {
		padding: 11.9375rem !important
	}

	.pt-sm-191,
	.py-sm-191 {
		padding-top: 11.9375rem !important
	}

	.pr-sm-191,
	.px-sm-191 {
		padding-right: 11.9375rem !important
	}

	.pb-sm-191,
	.py-sm-191 {
		padding-bottom: 11.9375rem !important
	}

	.pl-sm-191,
	.px-sm-191 {
		padding-left: 11.9375rem !important
	}

	.p-sm-192 {
		padding: 12rem !important
	}

	.pt-sm-192,
	.py-sm-192 {
		padding-top: 12rem !important
	}

	.pr-sm-192,
	.px-sm-192 {
		padding-right: 12rem !important
	}

	.pb-sm-192,
	.py-sm-192 {
		padding-bottom: 12rem !important
	}

	.pl-sm-192,
	.px-sm-192 {
		padding-left: 12rem !important
	}

	.p-sm-193 {
		padding: 12.0625rem !important
	}

	.pt-sm-193,
	.py-sm-193 {
		padding-top: 12.0625rem !important
	}

	.pr-sm-193,
	.px-sm-193 {
		padding-right: 12.0625rem !important
	}

	.pb-sm-193,
	.py-sm-193 {
		padding-bottom: 12.0625rem !important
	}

	.pl-sm-193,
	.px-sm-193 {
		padding-left: 12.0625rem !important
	}

	.p-sm-194 {
		padding: 12.125rem !important
	}

	.pt-sm-194,
	.py-sm-194 {
		padding-top: 12.125rem !important
	}

	.pr-sm-194,
	.px-sm-194 {
		padding-right: 12.125rem !important
	}

	.pb-sm-194,
	.py-sm-194 {
		padding-bottom: 12.125rem !important
	}

	.pl-sm-194,
	.px-sm-194 {
		padding-left: 12.125rem !important
	}

	.p-sm-195 {
		padding: 12.1875rem !important
	}

	.pt-sm-195,
	.py-sm-195 {
		padding-top: 12.1875rem !important
	}

	.pr-sm-195,
	.px-sm-195 {
		padding-right: 12.1875rem !important
	}

	.pb-sm-195,
	.py-sm-195 {
		padding-bottom: 12.1875rem !important
	}

	.pl-sm-195,
	.px-sm-195 {
		padding-left: 12.1875rem !important
	}

	.p-sm-196 {
		padding: 12.25rem !important
	}

	.pt-sm-196,
	.py-sm-196 {
		padding-top: 12.25rem !important
	}

	.pr-sm-196,
	.px-sm-196 {
		padding-right: 12.25rem !important
	}

	.pb-sm-196,
	.py-sm-196 {
		padding-bottom: 12.25rem !important
	}

	.pl-sm-196,
	.px-sm-196 {
		padding-left: 12.25rem !important
	}

	.p-sm-197 {
		padding: 12.3125rem !important
	}

	.pt-sm-197,
	.py-sm-197 {
		padding-top: 12.3125rem !important
	}

	.pr-sm-197,
	.px-sm-197 {
		padding-right: 12.3125rem !important
	}

	.pb-sm-197,
	.py-sm-197 {
		padding-bottom: 12.3125rem !important
	}

	.pl-sm-197,
	.px-sm-197 {
		padding-left: 12.3125rem !important
	}

	.p-sm-198 {
		padding: 12.375rem !important
	}

	.pt-sm-198,
	.py-sm-198 {
		padding-top: 12.375rem !important
	}

	.pr-sm-198,
	.px-sm-198 {
		padding-right: 12.375rem !important
	}

	.pb-sm-198,
	.py-sm-198 {
		padding-bottom: 12.375rem !important
	}

	.pl-sm-198,
	.px-sm-198 {
		padding-left: 12.375rem !important
	}

	.p-sm-199 {
		padding: 12.4375rem !important
	}

	.pt-sm-199,
	.py-sm-199 {
		padding-top: 12.4375rem !important
	}

	.pr-sm-199,
	.px-sm-199 {
		padding-right: 12.4375rem !important
	}

	.pb-sm-199,
	.py-sm-199 {
		padding-bottom: 12.4375rem !important
	}

	.pl-sm-199,
	.px-sm-199 {
		padding-left: 12.4375rem !important
	}

	.p-sm-200 {
		padding: 12.5rem !important
	}

	.pt-sm-200,
	.py-sm-200 {
		padding-top: 12.5rem !important
	}

	.pr-sm-200,
	.px-sm-200 {
		padding-right: 12.5rem !important
	}

	.pb-sm-200,
	.py-sm-200 {
		padding-bottom: 12.5rem !important
	}

	.pl-sm-200,
	.px-sm-200 {
		padding-left: 12.5rem !important
	}

	.p-sm-auto {
		padding: auto !important
	}

	.pt-sm-auto,
	.py-sm-auto {
		padding-top: auto !important
	}

	.pr-sm-auto,
	.px-sm-auto {
		padding-right: auto !important
	}

	.pb-sm-auto,
	.py-sm-auto {
		padding-bottom: auto !important
	}

	.pl-sm-auto,
	.px-sm-auto {
		padding-left: auto !important
	}

	.m-sm-auto {
		margin: auto !important
	}

	.mt-sm-auto,
	.my-sm-auto {
		margin-top: auto !important
	}

	.mr-sm-auto,
	.mx-sm-auto {
		margin-right: auto !important
	}

	.mb-sm-auto,
	.my-sm-auto {
		margin-bottom: auto !important
	}

	.ml-sm-auto,
	.mx-sm-auto {
		margin-left: auto !important
	}
}

@media (min-width:768px) {
	.m-md-0 {
		margin: 0 !important
	}

	.mt-md-0,
	.my-md-0 {
		margin-top: 0 !important
	}

	.mr-md-0,
	.mx-md-0 {
		margin-right: 0 !important
	}

	.mb-md-0,
	.my-md-0 {
		margin-bottom: 0 !important
	}

	.ml-md-0,
	.mx-md-0 {
		margin-left: 0 !important
	}

	.m-md-1 {
		margin: .0625rem !important
	}

	.mt-md-1,
	.my-md-1 {
		margin-top: .0625rem !important
	}

	.mr-md-1,
	.mx-md-1 {
		margin-right: .0625rem !important
	}

	.mb-md-1,
	.my-md-1 {
		margin-bottom: .0625rem !important
	}

	.ml-md-1,
	.mx-md-1 {
		margin-left: .0625rem !important
	}

	.m-md-2 {
		margin: .125rem !important
	}

	.mt-md-2,
	.my-md-2 {
		margin-top: .125rem !important
	}

	.mr-md-2,
	.mx-md-2 {
		margin-right: .125rem !important
	}

	.mb-md-2,
	.my-md-2 {
		margin-bottom: .125rem !important
	}

	.ml-md-2,
	.mx-md-2 {
		margin-left: .125rem !important
	}

	.m-md-3 {
		margin: .1875rem !important
	}

	.mt-md-3,
	.my-md-3 {
		margin-top: .1875rem !important
	}

	.mr-md-3,
	.mx-md-3 {
		margin-right: .1875rem !important
	}

	.mb-md-3,
	.my-md-3 {
		margin-bottom: .1875rem !important
	}

	.ml-md-3,
	.mx-md-3 {
		margin-left: .1875rem !important
	}

	.m-md-4 {
		margin: .25rem !important
	}

	.mt-md-4,
	.my-md-4 {
		margin-top: .25rem !important
	}

	.mr-md-4,
	.mx-md-4 {
		margin-right: .25rem !important
	}

	.mb-md-4,
	.my-md-4 {
		margin-bottom: .25rem !important
	}

	.ml-md-4,
	.mx-md-4 {
		margin-left: .25rem !important
	}

	.m-md-5 {
		margin: .3125rem !important
	}

	.mt-md-5,
	.my-md-5 {
		margin-top: .3125rem !important
	}

	.mr-md-5,
	.mx-md-5 {
		margin-right: .3125rem !important
	}

	.mb-md-5,
	.my-md-5 {
		margin-bottom: .3125rem !important
	}

	.ml-md-5,
	.mx-md-5 {
		margin-left: .3125rem !important
	}

	.m-md-6 {
		margin: .375rem !important
	}

	.mt-md-6,
	.my-md-6 {
		margin-top: .375rem !important
	}

	.mr-md-6,
	.mx-md-6 {
		margin-right: .375rem !important
	}

	.mb-md-6,
	.my-md-6 {
		margin-bottom: .375rem !important
	}

	.ml-md-6,
	.mx-md-6 {
		margin-left: .375rem !important
	}

	.m-md-7 {
		margin: .4375rem !important
	}

	.mt-md-7,
	.my-md-7 {
		margin-top: .4375rem !important
	}

	.mr-md-7,
	.mx-md-7 {
		margin-right: .4375rem !important
	}

	.mb-md-7,
	.my-md-7 {
		margin-bottom: .4375rem !important
	}

	.ml-md-7,
	.mx-md-7 {
		margin-left: .4375rem !important
	}

	.m-md-8 {
		margin: .5rem !important
	}

	.mt-md-8,
	.my-md-8 {
		margin-top: .5rem !important
	}

	.mr-md-8,
	.mx-md-8 {
		margin-right: .5rem !important
	}

	.mb-md-8,
	.my-md-8 {
		margin-bottom: .5rem !important
	}

	.ml-md-8,
	.mx-md-8 {
		margin-left: .5rem !important
	}

	.m-md-9 {
		margin: .5625rem !important
	}

	.mt-md-9,
	.my-md-9 {
		margin-top: .5625rem !important
	}

	.mr-md-9,
	.mx-md-9 {
		margin-right: .5625rem !important
	}

	.mb-md-9,
	.my-md-9 {
		margin-bottom: .5625rem !important
	}

	.ml-md-9,
	.mx-md-9 {
		margin-left: .5625rem !important
	}

	.m-md-10 {
		margin: .625rem !important
	}

	.mt-md-10,
	.my-md-10 {
		margin-top: .625rem !important
	}

	.mr-md-10,
	.mx-md-10 {
		margin-right: .625rem !important
	}

	.mb-md-10,
	.my-md-10 {
		margin-bottom: .625rem !important
	}

	.ml-md-10,
	.mx-md-10 {
		margin-left: .625rem !important
	}

	.m-md-11 {
		margin: .6875rem !important
	}

	.mt-md-11,
	.my-md-11 {
		margin-top: .6875rem !important
	}

	.mr-md-11,
	.mx-md-11 {
		margin-right: .6875rem !important
	}

	.mb-md-11,
	.my-md-11 {
		margin-bottom: .6875rem !important
	}

	.ml-md-11,
	.mx-md-11 {
		margin-left: .6875rem !important
	}

	.m-md-12 {
		margin: .75rem !important
	}

	.mt-md-12,
	.my-md-12 {
		margin-top: .75rem !important
	}

	.mr-md-12,
	.mx-md-12 {
		margin-right: .75rem !important
	}

	.mb-md-12,
	.my-md-12 {
		margin-bottom: .75rem !important
	}

	.ml-md-12,
	.mx-md-12 {
		margin-left: .75rem !important
	}

	.m-md-13 {
		margin: .8125rem !important
	}

	.mt-md-13,
	.my-md-13 {
		margin-top: .8125rem !important
	}

	.mr-md-13,
	.mx-md-13 {
		margin-right: .8125rem !important
	}

	.mb-md-13,
	.my-md-13 {
		margin-bottom: .8125rem !important
	}

	.ml-md-13,
	.mx-md-13 {
		margin-left: .8125rem !important
	}

	.m-md-14 {
		margin: .875rem !important
	}

	.mt-md-14,
	.my-md-14 {
		margin-top: .875rem !important
	}

	.mr-md-14,
	.mx-md-14 {
		margin-right: .875rem !important
	}

	.mb-md-14,
	.my-md-14 {
		margin-bottom: .875rem !important
	}

	.ml-md-14,
	.mx-md-14 {
		margin-left: .875rem !important
	}

	.m-md-15 {
		margin: .9375rem !important
	}

	.mt-md-15,
	.my-md-15 {
		margin-top: .9375rem !important
	}

	.mr-md-15,
	.mx-md-15 {
		margin-right: .9375rem !important
	}

	.mb-md-15,
	.my-md-15 {
		margin-bottom: .9375rem !important
	}

	.ml-md-15,
	.mx-md-15 {
		margin-left: .9375rem !important
	}

	.m-md-16 {
		margin: 1rem !important
	}

	.mt-md-16,
	.my-md-16 {
		margin-top: 1rem !important
	}

	.mr-md-16,
	.mx-md-16 {
		margin-right: 1rem !important
	}

	.mb-md-16,
	.my-md-16 {
		margin-bottom: 1rem !important
	}

	.ml-md-16,
	.mx-md-16 {
		margin-left: 1rem !important
	}

	.m-md-17 {
		margin: 1.0625rem !important
	}

	.mt-md-17,
	.my-md-17 {
		margin-top: 1.0625rem !important
	}

	.mr-md-17,
	.mx-md-17 {
		margin-right: 1.0625rem !important
	}

	.mb-md-17,
	.my-md-17 {
		margin-bottom: 1.0625rem !important
	}

	.ml-md-17,
	.mx-md-17 {
		margin-left: 1.0625rem !important
	}

	.m-md-18 {
		margin: 1.125rem !important
	}

	.mt-md-18,
	.my-md-18 {
		margin-top: 1.125rem !important
	}

	.mr-md-18,
	.mx-md-18 {
		margin-right: 1.125rem !important
	}

	.mb-md-18,
	.my-md-18 {
		margin-bottom: 1.125rem !important
	}

	.ml-md-18,
	.mx-md-18 {
		margin-left: 1.125rem !important
	}

	.m-md-19 {
		margin: 1.1875rem !important
	}

	.mt-md-19,
	.my-md-19 {
		margin-top: 1.1875rem !important
	}

	.mr-md-19,
	.mx-md-19 {
		margin-right: 1.1875rem !important
	}

	.mb-md-19,
	.my-md-19 {
		margin-bottom: 1.1875rem !important
	}

	.ml-md-19,
	.mx-md-19 {
		margin-left: 1.1875rem !important
	}

	.m-md-20 {
		margin: 1.25rem !important
	}

	.mt-md-20,
	.my-md-20 {
		margin-top: 1.25rem !important
	}

	.mr-md-20,
	.mx-md-20 {
		margin-right: 1.25rem !important
	}

	.mb-md-20,
	.my-md-20 {
		margin-bottom: 1.25rem !important
	}

	.ml-md-20,
	.mx-md-20 {
		margin-left: 1.25rem !important
	}

	.m-md-21 {
		margin: 1.3125rem !important
	}

	.mt-md-21,
	.my-md-21 {
		margin-top: 1.3125rem !important
	}

	.mr-md-21,
	.mx-md-21 {
		margin-right: 1.3125rem !important
	}

	.mb-md-21,
	.my-md-21 {
		margin-bottom: 1.3125rem !important
	}

	.ml-md-21,
	.mx-md-21 {
		margin-left: 1.3125rem !important
	}

	.m-md-22 {
		margin: 1.375rem !important
	}

	.mt-md-22,
	.my-md-22 {
		margin-top: 1.375rem !important
	}

	.mr-md-22,
	.mx-md-22 {
		margin-right: 1.375rem !important
	}

	.mb-md-22,
	.my-md-22 {
		margin-bottom: 1.375rem !important
	}

	.ml-md-22,
	.mx-md-22 {
		margin-left: 1.375rem !important
	}

	.m-md-23 {
		margin: 1.4375rem !important
	}

	.mt-md-23,
	.my-md-23 {
		margin-top: 1.4375rem !important
	}

	.mr-md-23,
	.mx-md-23 {
		margin-right: 1.4375rem !important
	}

	.mb-md-23,
	.my-md-23 {
		margin-bottom: 1.4375rem !important
	}

	.ml-md-23,
	.mx-md-23 {
		margin-left: 1.4375rem !important
	}

	.m-md-24 {
		margin: 1.5rem !important
	}

	.mt-md-24,
	.my-md-24 {
		margin-top: 1.5rem !important
	}

	.mr-md-24,
	.mx-md-24 {
		margin-right: 1.5rem !important
	}

	.mb-md-24,
	.my-md-24 {
		margin-bottom: 1.5rem !important
	}

	.ml-md-24,
	.mx-md-24 {
		margin-left: 1.5rem !important
	}

	.m-md-25 {
		margin: 1.5625rem !important
	}

	.mt-md-25,
	.my-md-25 {
		margin-top: 1.5625rem !important
	}

	.mr-md-25,
	.mx-md-25 {
		margin-right: 1.5625rem !important
	}

	.mb-md-25,
	.my-md-25 {
		margin-bottom: 1.5625rem !important
	}

	.ml-md-25,
	.mx-md-25 {
		margin-left: 1.5625rem !important
	}

	.m-md-26 {
		margin: 1.625rem !important
	}

	.mt-md-26,
	.my-md-26 {
		margin-top: 1.625rem !important
	}

	.mr-md-26,
	.mx-md-26 {
		margin-right: 1.625rem !important
	}

	.mb-md-26,
	.my-md-26 {
		margin-bottom: 1.625rem !important
	}

	.ml-md-26,
	.mx-md-26 {
		margin-left: 1.625rem !important
	}

	.m-md-27 {
		margin: 1.6875rem !important
	}

	.mt-md-27,
	.my-md-27 {
		margin-top: 1.6875rem !important
	}

	.mr-md-27,
	.mx-md-27 {
		margin-right: 1.6875rem !important
	}

	.mb-md-27,
	.my-md-27 {
		margin-bottom: 1.6875rem !important
	}

	.ml-md-27,
	.mx-md-27 {
		margin-left: 1.6875rem !important
	}

	.m-md-28 {
		margin: 1.75rem !important
	}

	.mt-md-28,
	.my-md-28 {
		margin-top: 1.75rem !important
	}

	.mr-md-28,
	.mx-md-28 {
		margin-right: 1.75rem !important
	}

	.mb-md-28,
	.my-md-28 {
		margin-bottom: 1.75rem !important
	}

	.ml-md-28,
	.mx-md-28 {
		margin-left: 1.75rem !important
	}

	.m-md-29 {
		margin: 1.8125rem !important
	}

	.mt-md-29,
	.my-md-29 {
		margin-top: 1.8125rem !important
	}

	.mr-md-29,
	.mx-md-29 {
		margin-right: 1.8125rem !important
	}

	.mb-md-29,
	.my-md-29 {
		margin-bottom: 1.8125rem !important
	}

	.ml-md-29,
	.mx-md-29 {
		margin-left: 1.8125rem !important
	}

	.m-md-30 {
		margin: 1.875rem !important
	}

	.mt-md-30,
	.my-md-30 {
		margin-top: 1.875rem !important
	}

	.mr-md-30,
	.mx-md-30 {
		margin-right: 1.875rem !important
	}

	.mb-md-30,
	.my-md-30 {
		margin-bottom: 1.875rem !important
	}

	.ml-md-30,
	.mx-md-30 {
		margin-left: 1.875rem !important
	}

	.m-md-31 {
		margin: 1.9375rem !important
	}

	.mt-md-31,
	.my-md-31 {
		margin-top: 1.9375rem !important
	}

	.mr-md-31,
	.mx-md-31 {
		margin-right: 1.9375rem !important
	}

	.mb-md-31,
	.my-md-31 {
		margin-bottom: 1.9375rem !important
	}

	.ml-md-31,
	.mx-md-31 {
		margin-left: 1.9375rem !important
	}

	.m-md-32 {
		margin: 2rem !important
	}

	.mt-md-32,
	.my-md-32 {
		margin-top: 2rem !important
	}

	.mr-md-32,
	.mx-md-32 {
		margin-right: 2rem !important
	}

	.mb-md-32,
	.my-md-32 {
		margin-bottom: 2rem !important
	}

	.ml-md-32,
	.mx-md-32 {
		margin-left: 2rem !important
	}

	.m-md-33 {
		margin: 2.0625rem !important
	}

	.mt-md-33,
	.my-md-33 {
		margin-top: 2.0625rem !important
	}

	.mr-md-33,
	.mx-md-33 {
		margin-right: 2.0625rem !important
	}

	.mb-md-33,
	.my-md-33 {
		margin-bottom: 2.0625rem !important
	}

	.ml-md-33,
	.mx-md-33 {
		margin-left: 2.0625rem !important
	}

	.m-md-34 {
		margin: 2.125rem !important
	}

	.mt-md-34,
	.my-md-34 {
		margin-top: 2.125rem !important
	}

	.mr-md-34,
	.mx-md-34 {
		margin-right: 2.125rem !important
	}

	.mb-md-34,
	.my-md-34 {
		margin-bottom: 2.125rem !important
	}

	.ml-md-34,
	.mx-md-34 {
		margin-left: 2.125rem !important
	}

	.m-md-35 {
		margin: 2.1875rem !important
	}

	.mt-md-35,
	.my-md-35 {
		margin-top: 2.1875rem !important
	}

	.mr-md-35,
	.mx-md-35 {
		margin-right: 2.1875rem !important
	}

	.mb-md-35,
	.my-md-35 {
		margin-bottom: 2.1875rem !important
	}

	.ml-md-35,
	.mx-md-35 {
		margin-left: 2.1875rem !important
	}

	.m-md-36 {
		margin: 2.25rem !important
	}

	.mt-md-36,
	.my-md-36 {
		margin-top: 2.25rem !important
	}

	.mr-md-36,
	.mx-md-36 {
		margin-right: 2.25rem !important
	}

	.mb-md-36,
	.my-md-36 {
		margin-bottom: 2.25rem !important
	}

	.ml-md-36,
	.mx-md-36 {
		margin-left: 2.25rem !important
	}

	.m-md-37 {
		margin: 2.3125rem !important
	}

	.mt-md-37,
	.my-md-37 {
		margin-top: 2.3125rem !important
	}

	.mr-md-37,
	.mx-md-37 {
		margin-right: 2.3125rem !important
	}

	.mb-md-37,
	.my-md-37 {
		margin-bottom: 2.3125rem !important
	}

	.ml-md-37,
	.mx-md-37 {
		margin-left: 2.3125rem !important
	}

	.m-md-38 {
		margin: 2.375rem !important
	}

	.mt-md-38,
	.my-md-38 {
		margin-top: 2.375rem !important
	}

	.mr-md-38,
	.mx-md-38 {
		margin-right: 2.375rem !important
	}

	.mb-md-38,
	.my-md-38 {
		margin-bottom: 2.375rem !important
	}

	.ml-md-38,
	.mx-md-38 {
		margin-left: 2.375rem !important
	}

	.m-md-39 {
		margin: 2.4375rem !important
	}

	.mt-md-39,
	.my-md-39 {
		margin-top: 2.4375rem !important
	}

	.mr-md-39,
	.mx-md-39 {
		margin-right: 2.4375rem !important
	}

	.mb-md-39,
	.my-md-39 {
		margin-bottom: 2.4375rem !important
	}

	.ml-md-39,
	.mx-md-39 {
		margin-left: 2.4375rem !important
	}

	.m-md-40 {
		margin: 2.5rem !important
	}

	.mt-md-40,
	.my-md-40 {
		margin-top: 2.5rem !important
	}

	.mr-md-40,
	.mx-md-40 {
		margin-right: 2.5rem !important
	}

	.mb-md-40,
	.my-md-40 {
		margin-bottom: 2.5rem !important
	}

	.ml-md-40,
	.mx-md-40 {
		margin-left: 2.5rem !important
	}

	.m-md-41 {
		margin: 2.5625rem !important
	}

	.mt-md-41,
	.my-md-41 {
		margin-top: 2.5625rem !important
	}

	.mr-md-41,
	.mx-md-41 {
		margin-right: 2.5625rem !important
	}

	.mb-md-41,
	.my-md-41 {
		margin-bottom: 2.5625rem !important
	}

	.ml-md-41,
	.mx-md-41 {
		margin-left: 2.5625rem !important
	}

	.m-md-42 {
		margin: 2.625rem !important
	}

	.mt-md-42,
	.my-md-42 {
		margin-top: 2.625rem !important
	}

	.mr-md-42,
	.mx-md-42 {
		margin-right: 2.625rem !important
	}

	.mb-md-42,
	.my-md-42 {
		margin-bottom: 2.625rem !important
	}

	.ml-md-42,
	.mx-md-42 {
		margin-left: 2.625rem !important
	}

	.m-md-43 {
		margin: 2.6875rem !important
	}

	.mt-md-43,
	.my-md-43 {
		margin-top: 2.6875rem !important
	}

	.mr-md-43,
	.mx-md-43 {
		margin-right: 2.6875rem !important
	}

	.mb-md-43,
	.my-md-43 {
		margin-bottom: 2.6875rem !important
	}

	.ml-md-43,
	.mx-md-43 {
		margin-left: 2.6875rem !important
	}

	.m-md-44 {
		margin: 2.75rem !important
	}

	.mt-md-44,
	.my-md-44 {
		margin-top: 2.75rem !important
	}

	.mr-md-44,
	.mx-md-44 {
		margin-right: 2.75rem !important
	}

	.mb-md-44,
	.my-md-44 {
		margin-bottom: 2.75rem !important
	}

	.ml-md-44,
	.mx-md-44 {
		margin-left: 2.75rem !important
	}

	.m-md-45 {
		margin: 2.8125rem !important
	}

	.mt-md-45,
	.my-md-45 {
		margin-top: 2.8125rem !important
	}

	.mr-md-45,
	.mx-md-45 {
		margin-right: 2.8125rem !important
	}

	.mb-md-45,
	.my-md-45 {
		margin-bottom: 2.8125rem !important
	}

	.ml-md-45,
	.mx-md-45 {
		margin-left: 2.8125rem !important
	}

	.m-md-46 {
		margin: 2.875rem !important
	}

	.mt-md-46,
	.my-md-46 {
		margin-top: 2.875rem !important
	}

	.mr-md-46,
	.mx-md-46 {
		margin-right: 2.875rem !important
	}

	.mb-md-46,
	.my-md-46 {
		margin-bottom: 2.875rem !important
	}

	.ml-md-46,
	.mx-md-46 {
		margin-left: 2.875rem !important
	}

	.m-md-47 {
		margin: 2.9375rem !important
	}

	.mt-md-47,
	.my-md-47 {
		margin-top: 2.9375rem !important
	}

	.mr-md-47,
	.mx-md-47 {
		margin-right: 2.9375rem !important
	}

	.mb-md-47,
	.my-md-47 {
		margin-bottom: 2.9375rem !important
	}

	.ml-md-47,
	.mx-md-47 {
		margin-left: 2.9375rem !important
	}

	.m-md-48 {
		margin: 3rem !important
	}

	.mt-md-48,
	.my-md-48 {
		margin-top: 3rem !important
	}

	.mr-md-48,
	.mx-md-48 {
		margin-right: 3rem !important
	}

	.mb-md-48,
	.my-md-48 {
		margin-bottom: 3rem !important
	}

	.ml-md-48,
	.mx-md-48 {
		margin-left: 3rem !important
	}

	.m-md-49 {
		margin: 3.0625rem !important
	}

	.mt-md-49,
	.my-md-49 {
		margin-top: 3.0625rem !important
	}

	.mr-md-49,
	.mx-md-49 {
		margin-right: 3.0625rem !important
	}

	.mb-md-49,
	.my-md-49 {
		margin-bottom: 3.0625rem !important
	}

	.ml-md-49,
	.mx-md-49 {
		margin-left: 3.0625rem !important
	}

	.m-md-50 {
		margin: 3.125rem !important
	}

	.mt-md-50,
	.my-md-50 {
		margin-top: 3.125rem !important
	}

	.mr-md-50,
	.mx-md-50 {
		margin-right: 3.125rem !important
	}

	.mb-md-50,
	.my-md-50 {
		margin-bottom: 3.125rem !important
	}

	.ml-md-50,
	.mx-md-50 {
		margin-left: 3.125rem !important
	}

	.m-md-51 {
		margin: 3.1875rem !important
	}

	.mt-md-51,
	.my-md-51 {
		margin-top: 3.1875rem !important
	}

	.mr-md-51,
	.mx-md-51 {
		margin-right: 3.1875rem !important
	}

	.mb-md-51,
	.my-md-51 {
		margin-bottom: 3.1875rem !important
	}

	.ml-md-51,
	.mx-md-51 {
		margin-left: 3.1875rem !important
	}

	.m-md-52 {
		margin: 3.25rem !important
	}

	.mt-md-52,
	.my-md-52 {
		margin-top: 3.25rem !important
	}

	.mr-md-52,
	.mx-md-52 {
		margin-right: 3.25rem !important
	}

	.mb-md-52,
	.my-md-52 {
		margin-bottom: 3.25rem !important
	}

	.ml-md-52,
	.mx-md-52 {
		margin-left: 3.25rem !important
	}

	.m-md-53 {
		margin: 3.3125rem !important
	}

	.mt-md-53,
	.my-md-53 {
		margin-top: 3.3125rem !important
	}

	.mr-md-53,
	.mx-md-53 {
		margin-right: 3.3125rem !important
	}

	.mb-md-53,
	.my-md-53 {
		margin-bottom: 3.3125rem !important
	}

	.ml-md-53,
	.mx-md-53 {
		margin-left: 3.3125rem !important
	}

	.m-md-54 {
		margin: 3.375rem !important
	}

	.mt-md-54,
	.my-md-54 {
		margin-top: 3.375rem !important
	}

	.mr-md-54,
	.mx-md-54 {
		margin-right: 3.375rem !important
	}

	.mb-md-54,
	.my-md-54 {
		margin-bottom: 3.375rem !important
	}

	.ml-md-54,
	.mx-md-54 {
		margin-left: 3.375rem !important
	}

	.m-md-55 {
		margin: 3.4375rem !important
	}

	.mt-md-55,
	.my-md-55 {
		margin-top: 3.4375rem !important
	}

	.mr-md-55,
	.mx-md-55 {
		margin-right: 3.4375rem !important
	}

	.mb-md-55,
	.my-md-55 {
		margin-bottom: 3.4375rem !important
	}

	.ml-md-55,
	.mx-md-55 {
		margin-left: 3.4375rem !important
	}

	.m-md-56 {
		margin: 3.5rem !important
	}

	.mt-md-56,
	.my-md-56 {
		margin-top: 3.5rem !important
	}

	.mr-md-56,
	.mx-md-56 {
		margin-right: 3.5rem !important
	}

	.mb-md-56,
	.my-md-56 {
		margin-bottom: 3.5rem !important
	}

	.ml-md-56,
	.mx-md-56 {
		margin-left: 3.5rem !important
	}

	.m-md-57 {
		margin: 3.5625rem !important
	}

	.mt-md-57,
	.my-md-57 {
		margin-top: 3.5625rem !important
	}

	.mr-md-57,
	.mx-md-57 {
		margin-right: 3.5625rem !important
	}

	.mb-md-57,
	.my-md-57 {
		margin-bottom: 3.5625rem !important
	}

	.ml-md-57,
	.mx-md-57 {
		margin-left: 3.5625rem !important
	}

	.m-md-58 {
		margin: 3.625rem !important
	}

	.mt-md-58,
	.my-md-58 {
		margin-top: 3.625rem !important
	}

	.mr-md-58,
	.mx-md-58 {
		margin-right: 3.625rem !important
	}

	.mb-md-58,
	.my-md-58 {
		margin-bottom: 3.625rem !important
	}

	.ml-md-58,
	.mx-md-58 {
		margin-left: 3.625rem !important
	}

	.m-md-59 {
		margin: 3.6875rem !important
	}

	.mt-md-59,
	.my-md-59 {
		margin-top: 3.6875rem !important
	}

	.mr-md-59,
	.mx-md-59 {
		margin-right: 3.6875rem !important
	}

	.mb-md-59,
	.my-md-59 {
		margin-bottom: 3.6875rem !important
	}

	.ml-md-59,
	.mx-md-59 {
		margin-left: 3.6875rem !important
	}

	.m-md-60 {
		margin: 3.75rem !important
	}

	.mt-md-60,
	.my-md-60 {
		margin-top: 3.75rem !important
	}

	.mr-md-60,
	.mx-md-60 {
		margin-right: 3.75rem !important
	}

	.mb-md-60,
	.my-md-60 {
		margin-bottom: 3.75rem !important
	}

	.ml-md-60,
	.mx-md-60 {
		margin-left: 3.75rem !important
	}

	.m-md-61 {
		margin: 3.8125rem !important
	}

	.mt-md-61,
	.my-md-61 {
		margin-top: 3.8125rem !important
	}

	.mr-md-61,
	.mx-md-61 {
		margin-right: 3.8125rem !important
	}

	.mb-md-61,
	.my-md-61 {
		margin-bottom: 3.8125rem !important
	}

	.ml-md-61,
	.mx-md-61 {
		margin-left: 3.8125rem !important
	}

	.m-md-62 {
		margin: 3.875rem !important
	}

	.mt-md-62,
	.my-md-62 {
		margin-top: 3.875rem !important
	}

	.mr-md-62,
	.mx-md-62 {
		margin-right: 3.875rem !important
	}

	.mb-md-62,
	.my-md-62 {
		margin-bottom: 3.875rem !important
	}

	.ml-md-62,
	.mx-md-62 {
		margin-left: 3.875rem !important
	}

	.m-md-63 {
		margin: 3.9375rem !important
	}

	.mt-md-63,
	.my-md-63 {
		margin-top: 3.9375rem !important
	}

	.mr-md-63,
	.mx-md-63 {
		margin-right: 3.9375rem !important
	}

	.mb-md-63,
	.my-md-63 {
		margin-bottom: 3.9375rem !important
	}

	.ml-md-63,
	.mx-md-63 {
		margin-left: 3.9375rem !important
	}

	.m-md-64 {
		margin: 4rem !important
	}

	.mt-md-64,
	.my-md-64 {
		margin-top: 4rem !important
	}

	.mr-md-64,
	.mx-md-64 {
		margin-right: 4rem !important
	}

	.mb-md-64,
	.my-md-64 {
		margin-bottom: 4rem !important
	}

	.ml-md-64,
	.mx-md-64 {
		margin-left: 4rem !important
	}

	.m-md-65 {
		margin: 4.0625rem !important
	}

	.mt-md-65,
	.my-md-65 {
		margin-top: 4.0625rem !important
	}

	.mr-md-65,
	.mx-md-65 {
		margin-right: 4.0625rem !important
	}

	.mb-md-65,
	.my-md-65 {
		margin-bottom: 4.0625rem !important
	}

	.ml-md-65,
	.mx-md-65 {
		margin-left: 4.0625rem !important
	}

	.m-md-66 {
		margin: 4.125rem !important
	}

	.mt-md-66,
	.my-md-66 {
		margin-top: 4.125rem !important
	}

	.mr-md-66,
	.mx-md-66 {
		margin-right: 4.125rem !important
	}

	.mb-md-66,
	.my-md-66 {
		margin-bottom: 4.125rem !important
	}

	.ml-md-66,
	.mx-md-66 {
		margin-left: 4.125rem !important
	}

	.m-md-67 {
		margin: 4.1875rem !important
	}

	.mt-md-67,
	.my-md-67 {
		margin-top: 4.1875rem !important
	}

	.mr-md-67,
	.mx-md-67 {
		margin-right: 4.1875rem !important
	}

	.mb-md-67,
	.my-md-67 {
		margin-bottom: 4.1875rem !important
	}

	.ml-md-67,
	.mx-md-67 {
		margin-left: 4.1875rem !important
	}

	.m-md-68 {
		margin: 4.25rem !important
	}

	.mt-md-68,
	.my-md-68 {
		margin-top: 4.25rem !important
	}

	.mr-md-68,
	.mx-md-68 {
		margin-right: 4.25rem !important
	}

	.mb-md-68,
	.my-md-68 {
		margin-bottom: 4.25rem !important
	}

	.ml-md-68,
	.mx-md-68 {
		margin-left: 4.25rem !important
	}

	.m-md-69 {
		margin: 4.3125rem !important
	}

	.mt-md-69,
	.my-md-69 {
		margin-top: 4.3125rem !important
	}

	.mr-md-69,
	.mx-md-69 {
		margin-right: 4.3125rem !important
	}

	.mb-md-69,
	.my-md-69 {
		margin-bottom: 4.3125rem !important
	}

	.ml-md-69,
	.mx-md-69 {
		margin-left: 4.3125rem !important
	}

	.m-md-70 {
		margin: 4.375rem !important
	}

	.mt-md-70,
	.my-md-70 {
		margin-top: 4.375rem !important
	}

	.mr-md-70,
	.mx-md-70 {
		margin-right: 4.375rem !important
	}

	.mb-md-70,
	.my-md-70 {
		margin-bottom: 4.375rem !important
	}

	.ml-md-70,
	.mx-md-70 {
		margin-left: 4.375rem !important
	}

	.m-md-71 {
		margin: 4.4375rem !important
	}

	.mt-md-71,
	.my-md-71 {
		margin-top: 4.4375rem !important
	}

	.mr-md-71,
	.mx-md-71 {
		margin-right: 4.4375rem !important
	}

	.mb-md-71,
	.my-md-71 {
		margin-bottom: 4.4375rem !important
	}

	.ml-md-71,
	.mx-md-71 {
		margin-left: 4.4375rem !important
	}

	.m-md-72 {
		margin: 4.5rem !important
	}

	.mt-md-72,
	.my-md-72 {
		margin-top: 4.5rem !important
	}

	.mr-md-72,
	.mx-md-72 {
		margin-right: 4.5rem !important
	}

	.mb-md-72,
	.my-md-72 {
		margin-bottom: 4.5rem !important
	}

	.ml-md-72,
	.mx-md-72 {
		margin-left: 4.5rem !important
	}

	.m-md-73 {
		margin: 4.5625rem !important
	}

	.mt-md-73,
	.my-md-73 {
		margin-top: 4.5625rem !important
	}

	.mr-md-73,
	.mx-md-73 {
		margin-right: 4.5625rem !important
	}

	.mb-md-73,
	.my-md-73 {
		margin-bottom: 4.5625rem !important
	}

	.ml-md-73,
	.mx-md-73 {
		margin-left: 4.5625rem !important
	}

	.m-md-74 {
		margin: 4.625rem !important
	}

	.mt-md-74,
	.my-md-74 {
		margin-top: 4.625rem !important
	}

	.mr-md-74,
	.mx-md-74 {
		margin-right: 4.625rem !important
	}

	.mb-md-74,
	.my-md-74 {
		margin-bottom: 4.625rem !important
	}

	.ml-md-74,
	.mx-md-74 {
		margin-left: 4.625rem !important
	}

	.m-md-75 {
		margin: 4.6875rem !important
	}

	.mt-md-75,
	.my-md-75 {
		margin-top: 4.6875rem !important
	}

	.mr-md-75,
	.mx-md-75 {
		margin-right: 4.6875rem !important
	}

	.mb-md-75,
	.my-md-75 {
		margin-bottom: 4.6875rem !important
	}

	.ml-md-75,
	.mx-md-75 {
		margin-left: 4.6875rem !important
	}

	.m-md-76 {
		margin: 4.75rem !important
	}

	.mt-md-76,
	.my-md-76 {
		margin-top: 4.75rem !important
	}

	.mr-md-76,
	.mx-md-76 {
		margin-right: 4.75rem !important
	}

	.mb-md-76,
	.my-md-76 {
		margin-bottom: 4.75rem !important
	}

	.ml-md-76,
	.mx-md-76 {
		margin-left: 4.75rem !important
	}

	.m-md-77 {
		margin: 4.8125rem !important
	}

	.mt-md-77,
	.my-md-77 {
		margin-top: 4.8125rem !important
	}

	.mr-md-77,
	.mx-md-77 {
		margin-right: 4.8125rem !important
	}

	.mb-md-77,
	.my-md-77 {
		margin-bottom: 4.8125rem !important
	}

	.ml-md-77,
	.mx-md-77 {
		margin-left: 4.8125rem !important
	}

	.m-md-78 {
		margin: 4.875rem !important
	}

	.mt-md-78,
	.my-md-78 {
		margin-top: 4.875rem !important
	}

	.mr-md-78,
	.mx-md-78 {
		margin-right: 4.875rem !important
	}

	.mb-md-78,
	.my-md-78 {
		margin-bottom: 4.875rem !important
	}

	.ml-md-78,
	.mx-md-78 {
		margin-left: 4.875rem !important
	}

	.m-md-79 {
		margin: 4.9375rem !important
	}

	.mt-md-79,
	.my-md-79 {
		margin-top: 4.9375rem !important
	}

	.mr-md-79,
	.mx-md-79 {
		margin-right: 4.9375rem !important
	}

	.mb-md-79,
	.my-md-79 {
		margin-bottom: 4.9375rem !important
	}

	.ml-md-79,
	.mx-md-79 {
		margin-left: 4.9375rem !important
	}

	.m-md-80 {
		margin: 5rem !important
	}

	.mt-md-80,
	.my-md-80 {
		margin-top: 5rem !important
	}

	.mr-md-80,
	.mx-md-80 {
		margin-right: 5rem !important
	}

	.mb-md-80,
	.my-md-80 {
		margin-bottom: 5rem !important
	}

	.ml-md-80,
	.mx-md-80 {
		margin-left: 5rem !important
	}

	.m-md-81 {
		margin: 5.0625rem !important
	}

	.mt-md-81,
	.my-md-81 {
		margin-top: 5.0625rem !important
	}

	.mr-md-81,
	.mx-md-81 {
		margin-right: 5.0625rem !important
	}

	.mb-md-81,
	.my-md-81 {
		margin-bottom: 5.0625rem !important
	}

	.ml-md-81,
	.mx-md-81 {
		margin-left: 5.0625rem !important
	}

	.m-md-82 {
		margin: 5.125rem !important
	}

	.mt-md-82,
	.my-md-82 {
		margin-top: 5.125rem !important
	}

	.mr-md-82,
	.mx-md-82 {
		margin-right: 5.125rem !important
	}

	.mb-md-82,
	.my-md-82 {
		margin-bottom: 5.125rem !important
	}

	.ml-md-82,
	.mx-md-82 {
		margin-left: 5.125rem !important
	}

	.m-md-83 {
		margin: 5.1875rem !important
	}

	.mt-md-83,
	.my-md-83 {
		margin-top: 5.1875rem !important
	}

	.mr-md-83,
	.mx-md-83 {
		margin-right: 5.1875rem !important
	}

	.mb-md-83,
	.my-md-83 {
		margin-bottom: 5.1875rem !important
	}

	.ml-md-83,
	.mx-md-83 {
		margin-left: 5.1875rem !important
	}

	.m-md-84 {
		margin: 5.25rem !important
	}

	.mt-md-84,
	.my-md-84 {
		margin-top: 5.25rem !important
	}

	.mr-md-84,
	.mx-md-84 {
		margin-right: 5.25rem !important
	}

	.mb-md-84,
	.my-md-84 {
		margin-bottom: 5.25rem !important
	}

	.ml-md-84,
	.mx-md-84 {
		margin-left: 5.25rem !important
	}

	.m-md-85 {
		margin: 5.3125rem !important
	}

	.mt-md-85,
	.my-md-85 {
		margin-top: 5.3125rem !important
	}

	.mr-md-85,
	.mx-md-85 {
		margin-right: 5.3125rem !important
	}

	.mb-md-85,
	.my-md-85 {
		margin-bottom: 5.3125rem !important
	}

	.ml-md-85,
	.mx-md-85 {
		margin-left: 5.3125rem !important
	}

	.m-md-86 {
		margin: 5.375rem !important
	}

	.mt-md-86,
	.my-md-86 {
		margin-top: 5.375rem !important
	}

	.mr-md-86,
	.mx-md-86 {
		margin-right: 5.375rem !important
	}

	.mb-md-86,
	.my-md-86 {
		margin-bottom: 5.375rem !important
	}

	.ml-md-86,
	.mx-md-86 {
		margin-left: 5.375rem !important
	}

	.m-md-87 {
		margin: 5.4375rem !important
	}

	.mt-md-87,
	.my-md-87 {
		margin-top: 5.4375rem !important
	}

	.mr-md-87,
	.mx-md-87 {
		margin-right: 5.4375rem !important
	}

	.mb-md-87,
	.my-md-87 {
		margin-bottom: 5.4375rem !important
	}

	.ml-md-87,
	.mx-md-87 {
		margin-left: 5.4375rem !important
	}

	.m-md-88 {
		margin: 5.5rem !important
	}

	.mt-md-88,
	.my-md-88 {
		margin-top: 5.5rem !important
	}

	.mr-md-88,
	.mx-md-88 {
		margin-right: 5.5rem !important
	}

	.mb-md-88,
	.my-md-88 {
		margin-bottom: 5.5rem !important
	}

	.ml-md-88,
	.mx-md-88 {
		margin-left: 5.5rem !important
	}

	.m-md-89 {
		margin: 5.5625rem !important
	}

	.mt-md-89,
	.my-md-89 {
		margin-top: 5.5625rem !important
	}

	.mr-md-89,
	.mx-md-89 {
		margin-right: 5.5625rem !important
	}

	.mb-md-89,
	.my-md-89 {
		margin-bottom: 5.5625rem !important
	}

	.ml-md-89,
	.mx-md-89 {
		margin-left: 5.5625rem !important
	}

	.m-md-90 {
		margin: 5.625rem !important
	}

	.mt-md-90,
	.my-md-90 {
		margin-top: 5.625rem !important
	}

	.mr-md-90,
	.mx-md-90 {
		margin-right: 5.625rem !important
	}

	.mb-md-90,
	.my-md-90 {
		margin-bottom: 5.625rem !important
	}

	.ml-md-90,
	.mx-md-90 {
		margin-left: 5.625rem !important
	}

	.m-md-91 {
		margin: 5.6875rem !important
	}

	.mt-md-91,
	.my-md-91 {
		margin-top: 5.6875rem !important
	}

	.mr-md-91,
	.mx-md-91 {
		margin-right: 5.6875rem !important
	}

	.mb-md-91,
	.my-md-91 {
		margin-bottom: 5.6875rem !important
	}

	.ml-md-91,
	.mx-md-91 {
		margin-left: 5.6875rem !important
	}

	.m-md-92 {
		margin: 5.75rem !important
	}

	.mt-md-92,
	.my-md-92 {
		margin-top: 5.75rem !important
	}

	.mr-md-92,
	.mx-md-92 {
		margin-right: 5.75rem !important
	}

	.mb-md-92,
	.my-md-92 {
		margin-bottom: 5.75rem !important
	}

	.ml-md-92,
	.mx-md-92 {
		margin-left: 5.75rem !important
	}

	.m-md-93 {
		margin: 5.8125rem !important
	}

	.mt-md-93,
	.my-md-93 {
		margin-top: 5.8125rem !important
	}

	.mr-md-93,
	.mx-md-93 {
		margin-right: 5.8125rem !important
	}

	.mb-md-93,
	.my-md-93 {
		margin-bottom: 5.8125rem !important
	}

	.ml-md-93,
	.mx-md-93 {
		margin-left: 5.8125rem !important
	}

	.m-md-94 {
		margin: 5.875rem !important
	}

	.mt-md-94,
	.my-md-94 {
		margin-top: 5.875rem !important
	}

	.mr-md-94,
	.mx-md-94 {
		margin-right: 5.875rem !important
	}

	.mb-md-94,
	.my-md-94 {
		margin-bottom: 5.875rem !important
	}

	.ml-md-94,
	.mx-md-94 {
		margin-left: 5.875rem !important
	}

	.m-md-95 {
		margin: 5.9375rem !important
	}

	.mt-md-95,
	.my-md-95 {
		margin-top: 5.9375rem !important
	}

	.mr-md-95,
	.mx-md-95 {
		margin-right: 5.9375rem !important
	}

	.mb-md-95,
	.my-md-95 {
		margin-bottom: 5.9375rem !important
	}

	.ml-md-95,
	.mx-md-95 {
		margin-left: 5.9375rem !important
	}

	.m-md-96 {
		margin: 6rem !important
	}

	.mt-md-96,
	.my-md-96 {
		margin-top: 6rem !important
	}

	.mr-md-96,
	.mx-md-96 {
		margin-right: 6rem !important
	}

	.mb-md-96,
	.my-md-96 {
		margin-bottom: 6rem !important
	}

	.ml-md-96,
	.mx-md-96 {
		margin-left: 6rem !important
	}

	.m-md-97 {
		margin: 6.0625rem !important
	}

	.mt-md-97,
	.my-md-97 {
		margin-top: 6.0625rem !important
	}

	.mr-md-97,
	.mx-md-97 {
		margin-right: 6.0625rem !important
	}

	.mb-md-97,
	.my-md-97 {
		margin-bottom: 6.0625rem !important
	}

	.ml-md-97,
	.mx-md-97 {
		margin-left: 6.0625rem !important
	}

	.m-md-98 {
		margin: 6.125rem !important
	}

	.mt-md-98,
	.my-md-98 {
		margin-top: 6.125rem !important
	}

	.mr-md-98,
	.mx-md-98 {
		margin-right: 6.125rem !important
	}

	.mb-md-98,
	.my-md-98 {
		margin-bottom: 6.125rem !important
	}

	.ml-md-98,
	.mx-md-98 {
		margin-left: 6.125rem !important
	}

	.m-md-99 {
		margin: 6.1875rem !important
	}

	.mt-md-99,
	.my-md-99 {
		margin-top: 6.1875rem !important
	}

	.mr-md-99,
	.mx-md-99 {
		margin-right: 6.1875rem !important
	}

	.mb-md-99,
	.my-md-99 {
		margin-bottom: 6.1875rem !important
	}

	.ml-md-99,
	.mx-md-99 {
		margin-left: 6.1875rem !important
	}

	.m-md-100 {
		margin: 6.25rem !important
	}

	.mt-md-100,
	.my-md-100 {
		margin-top: 6.25rem !important
	}

	.mr-md-100,
	.mx-md-100 {
		margin-right: 6.25rem !important
	}

	.mb-md-100,
	.my-md-100 {
		margin-bottom: 6.25rem !important
	}

	.ml-md-100,
	.mx-md-100 {
		margin-left: 6.25rem !important
	}

	.m-md-101 {
		margin: 6.3125rem !important
	}

	.mt-md-101,
	.my-md-101 {
		margin-top: 6.3125rem !important
	}

	.mr-md-101,
	.mx-md-101 {
		margin-right: 6.3125rem !important
	}

	.mb-md-101,
	.my-md-101 {
		margin-bottom: 6.3125rem !important
	}

	.ml-md-101,
	.mx-md-101 {
		margin-left: 6.3125rem !important
	}

	.m-md-102 {
		margin: 6.375rem !important
	}

	.mt-md-102,
	.my-md-102 {
		margin-top: 6.375rem !important
	}

	.mr-md-102,
	.mx-md-102 {
		margin-right: 6.375rem !important
	}

	.mb-md-102,
	.my-md-102 {
		margin-bottom: 6.375rem !important
	}

	.ml-md-102,
	.mx-md-102 {
		margin-left: 6.375rem !important
	}

	.m-md-103 {
		margin: 6.4375rem !important
	}

	.mt-md-103,
	.my-md-103 {
		margin-top: 6.4375rem !important
	}

	.mr-md-103,
	.mx-md-103 {
		margin-right: 6.4375rem !important
	}

	.mb-md-103,
	.my-md-103 {
		margin-bottom: 6.4375rem !important
	}

	.ml-md-103,
	.mx-md-103 {
		margin-left: 6.4375rem !important
	}

	.m-md-104 {
		margin: 6.5rem !important
	}

	.mt-md-104,
	.my-md-104 {
		margin-top: 6.5rem !important
	}

	.mr-md-104,
	.mx-md-104 {
		margin-right: 6.5rem !important
	}

	.mb-md-104,
	.my-md-104 {
		margin-bottom: 6.5rem !important
	}

	.ml-md-104,
	.mx-md-104 {
		margin-left: 6.5rem !important
	}

	.m-md-105 {
		margin: 6.5625rem !important
	}

	.mt-md-105,
	.my-md-105 {
		margin-top: 6.5625rem !important
	}

	.mr-md-105,
	.mx-md-105 {
		margin-right: 6.5625rem !important
	}

	.mb-md-105,
	.my-md-105 {
		margin-bottom: 6.5625rem !important
	}

	.ml-md-105,
	.mx-md-105 {
		margin-left: 6.5625rem !important
	}

	.m-md-106 {
		margin: 6.625rem !important
	}

	.mt-md-106,
	.my-md-106 {
		margin-top: 6.625rem !important
	}

	.mr-md-106,
	.mx-md-106 {
		margin-right: 6.625rem !important
	}

	.mb-md-106,
	.my-md-106 {
		margin-bottom: 6.625rem !important
	}

	.ml-md-106,
	.mx-md-106 {
		margin-left: 6.625rem !important
	}

	.m-md-107 {
		margin: 6.6875rem !important
	}

	.mt-md-107,
	.my-md-107 {
		margin-top: 6.6875rem !important
	}

	.mr-md-107,
	.mx-md-107 {
		margin-right: 6.6875rem !important
	}

	.mb-md-107,
	.my-md-107 {
		margin-bottom: 6.6875rem !important
	}

	.ml-md-107,
	.mx-md-107 {
		margin-left: 6.6875rem !important
	}

	.m-md-108 {
		margin: 6.75rem !important
	}

	.mt-md-108,
	.my-md-108 {
		margin-top: 6.75rem !important
	}

	.mr-md-108,
	.mx-md-108 {
		margin-right: 6.75rem !important
	}

	.mb-md-108,
	.my-md-108 {
		margin-bottom: 6.75rem !important
	}

	.ml-md-108,
	.mx-md-108 {
		margin-left: 6.75rem !important
	}

	.m-md-109 {
		margin: 6.8125rem !important
	}

	.mt-md-109,
	.my-md-109 {
		margin-top: 6.8125rem !important
	}

	.mr-md-109,
	.mx-md-109 {
		margin-right: 6.8125rem !important
	}

	.mb-md-109,
	.my-md-109 {
		margin-bottom: 6.8125rem !important
	}

	.ml-md-109,
	.mx-md-109 {
		margin-left: 6.8125rem !important
	}

	.m-md-110 {
		margin: 6.875rem !important
	}

	.mt-md-110,
	.my-md-110 {
		margin-top: 6.875rem !important
	}

	.mr-md-110,
	.mx-md-110 {
		margin-right: 6.875rem !important
	}

	.mb-md-110,
	.my-md-110 {
		margin-bottom: 6.875rem !important
	}

	.ml-md-110,
	.mx-md-110 {
		margin-left: 6.875rem !important
	}

	.m-md-111 {
		margin: 6.9375rem !important
	}

	.mt-md-111,
	.my-md-111 {
		margin-top: 6.9375rem !important
	}

	.mr-md-111,
	.mx-md-111 {
		margin-right: 6.9375rem !important
	}

	.mb-md-111,
	.my-md-111 {
		margin-bottom: 6.9375rem !important
	}

	.ml-md-111,
	.mx-md-111 {
		margin-left: 6.9375rem !important
	}

	.m-md-112 {
		margin: 7rem !important
	}

	.mt-md-112,
	.my-md-112 {
		margin-top: 7rem !important
	}

	.mr-md-112,
	.mx-md-112 {
		margin-right: 7rem !important
	}

	.mb-md-112,
	.my-md-112 {
		margin-bottom: 7rem !important
	}

	.ml-md-112,
	.mx-md-112 {
		margin-left: 7rem !important
	}

	.m-md-113 {
		margin: 7.0625rem !important
	}

	.mt-md-113,
	.my-md-113 {
		margin-top: 7.0625rem !important
	}

	.mr-md-113,
	.mx-md-113 {
		margin-right: 7.0625rem !important
	}

	.mb-md-113,
	.my-md-113 {
		margin-bottom: 7.0625rem !important
	}

	.ml-md-113,
	.mx-md-113 {
		margin-left: 7.0625rem !important
	}

	.m-md-114 {
		margin: 7.125rem !important
	}

	.mt-md-114,
	.my-md-114 {
		margin-top: 7.125rem !important
	}

	.mr-md-114,
	.mx-md-114 {
		margin-right: 7.125rem !important
	}

	.mb-md-114,
	.my-md-114 {
		margin-bottom: 7.125rem !important
	}

	.ml-md-114,
	.mx-md-114 {
		margin-left: 7.125rem !important
	}

	.m-md-115 {
		margin: 7.1875rem !important
	}

	.mt-md-115,
	.my-md-115 {
		margin-top: 7.1875rem !important
	}

	.mr-md-115,
	.mx-md-115 {
		margin-right: 7.1875rem !important
	}

	.mb-md-115,
	.my-md-115 {
		margin-bottom: 7.1875rem !important
	}

	.ml-md-115,
	.mx-md-115 {
		margin-left: 7.1875rem !important
	}

	.m-md-116 {
		margin: 7.25rem !important
	}

	.mt-md-116,
	.my-md-116 {
		margin-top: 7.25rem !important
	}

	.mr-md-116,
	.mx-md-116 {
		margin-right: 7.25rem !important
	}

	.mb-md-116,
	.my-md-116 {
		margin-bottom: 7.25rem !important
	}

	.ml-md-116,
	.mx-md-116 {
		margin-left: 7.25rem !important
	}

	.m-md-117 {
		margin: 7.3125rem !important
	}

	.mt-md-117,
	.my-md-117 {
		margin-top: 7.3125rem !important
	}

	.mr-md-117,
	.mx-md-117 {
		margin-right: 7.3125rem !important
	}

	.mb-md-117,
	.my-md-117 {
		margin-bottom: 7.3125rem !important
	}

	.ml-md-117,
	.mx-md-117 {
		margin-left: 7.3125rem !important
	}

	.m-md-118 {
		margin: 7.375rem !important
	}

	.mt-md-118,
	.my-md-118 {
		margin-top: 7.375rem !important
	}

	.mr-md-118,
	.mx-md-118 {
		margin-right: 7.375rem !important
	}

	.mb-md-118,
	.my-md-118 {
		margin-bottom: 7.375rem !important
	}

	.ml-md-118,
	.mx-md-118 {
		margin-left: 7.375rem !important
	}

	.m-md-119 {
		margin: 7.4375rem !important
	}

	.mt-md-119,
	.my-md-119 {
		margin-top: 7.4375rem !important
	}

	.mr-md-119,
	.mx-md-119 {
		margin-right: 7.4375rem !important
	}

	.mb-md-119,
	.my-md-119 {
		margin-bottom: 7.4375rem !important
	}

	.ml-md-119,
	.mx-md-119 {
		margin-left: 7.4375rem !important
	}

	.m-md-120 {
		margin: 7.5rem !important
	}

	.mt-md-120,
	.my-md-120 {
		margin-top: 7.5rem !important
	}

	.mr-md-120,
	.mx-md-120 {
		margin-right: 7.5rem !important
	}

	.mb-md-120,
	.my-md-120 {
		margin-bottom: 7.5rem !important
	}

	.ml-md-120,
	.mx-md-120 {
		margin-left: 7.5rem !important
	}

	.m-md-121 {
		margin: 7.5625rem !important
	}

	.mt-md-121,
	.my-md-121 {
		margin-top: 7.5625rem !important
	}

	.mr-md-121,
	.mx-md-121 {
		margin-right: 7.5625rem !important
	}

	.mb-md-121,
	.my-md-121 {
		margin-bottom: 7.5625rem !important
	}

	.ml-md-121,
	.mx-md-121 {
		margin-left: 7.5625rem !important
	}

	.m-md-122 {
		margin: 7.625rem !important
	}

	.mt-md-122,
	.my-md-122 {
		margin-top: 7.625rem !important
	}

	.mr-md-122,
	.mx-md-122 {
		margin-right: 7.625rem !important
	}

	.mb-md-122,
	.my-md-122 {
		margin-bottom: 7.625rem !important
	}

	.ml-md-122,
	.mx-md-122 {
		margin-left: 7.625rem !important
	}

	.m-md-123 {
		margin: 7.6875rem !important
	}

	.mt-md-123,
	.my-md-123 {
		margin-top: 7.6875rem !important
	}

	.mr-md-123,
	.mx-md-123 {
		margin-right: 7.6875rem !important
	}

	.mb-md-123,
	.my-md-123 {
		margin-bottom: 7.6875rem !important
	}

	.ml-md-123,
	.mx-md-123 {
		margin-left: 7.6875rem !important
	}

	.m-md-124 {
		margin: 7.75rem !important
	}

	.mt-md-124,
	.my-md-124 {
		margin-top: 7.75rem !important
	}

	.mr-md-124,
	.mx-md-124 {
		margin-right: 7.75rem !important
	}

	.mb-md-124,
	.my-md-124 {
		margin-bottom: 7.75rem !important
	}

	.ml-md-124,
	.mx-md-124 {
		margin-left: 7.75rem !important
	}

	.m-md-125 {
		margin: 7.8125rem !important
	}

	.mt-md-125,
	.my-md-125 {
		margin-top: 7.8125rem !important
	}

	.mr-md-125,
	.mx-md-125 {
		margin-right: 7.8125rem !important
	}

	.mb-md-125,
	.my-md-125 {
		margin-bottom: 7.8125rem !important
	}

	.ml-md-125,
	.mx-md-125 {
		margin-left: 7.8125rem !important
	}

	.m-md-126 {
		margin: 7.875rem !important
	}

	.mt-md-126,
	.my-md-126 {
		margin-top: 7.875rem !important
	}

	.mr-md-126,
	.mx-md-126 {
		margin-right: 7.875rem !important
	}

	.mb-md-126,
	.my-md-126 {
		margin-bottom: 7.875rem !important
	}

	.ml-md-126,
	.mx-md-126 {
		margin-left: 7.875rem !important
	}

	.m-md-127 {
		margin: 7.9375rem !important
	}

	.mt-md-127,
	.my-md-127 {
		margin-top: 7.9375rem !important
	}

	.mr-md-127,
	.mx-md-127 {
		margin-right: 7.9375rem !important
	}

	.mb-md-127,
	.my-md-127 {
		margin-bottom: 7.9375rem !important
	}

	.ml-md-127,
	.mx-md-127 {
		margin-left: 7.9375rem !important
	}

	.m-md-128 {
		margin: 8rem !important
	}

	.mt-md-128,
	.my-md-128 {
		margin-top: 8rem !important
	}

	.mr-md-128,
	.mx-md-128 {
		margin-right: 8rem !important
	}

	.mb-md-128,
	.my-md-128 {
		margin-bottom: 8rem !important
	}

	.ml-md-128,
	.mx-md-128 {
		margin-left: 8rem !important
	}

	.m-md-129 {
		margin: 8.0625rem !important
	}

	.mt-md-129,
	.my-md-129 {
		margin-top: 8.0625rem !important
	}

	.mr-md-129,
	.mx-md-129 {
		margin-right: 8.0625rem !important
	}

	.mb-md-129,
	.my-md-129 {
		margin-bottom: 8.0625rem !important
	}

	.ml-md-129,
	.mx-md-129 {
		margin-left: 8.0625rem !important
	}

	.m-md-130 {
		margin: 8.125rem !important
	}

	.mt-md-130,
	.my-md-130 {
		margin-top: 8.125rem !important
	}

	.mr-md-130,
	.mx-md-130 {
		margin-right: 8.125rem !important
	}

	.mb-md-130,
	.my-md-130 {
		margin-bottom: 8.125rem !important
	}

	.ml-md-130,
	.mx-md-130 {
		margin-left: 8.125rem !important
	}

	.m-md-131 {
		margin: 8.1875rem !important
	}

	.mt-md-131,
	.my-md-131 {
		margin-top: 8.1875rem !important
	}

	.mr-md-131,
	.mx-md-131 {
		margin-right: 8.1875rem !important
	}

	.mb-md-131,
	.my-md-131 {
		margin-bottom: 8.1875rem !important
	}

	.ml-md-131,
	.mx-md-131 {
		margin-left: 8.1875rem !important
	}

	.m-md-132 {
		margin: 8.25rem !important
	}

	.mt-md-132,
	.my-md-132 {
		margin-top: 8.25rem !important
	}

	.mr-md-132,
	.mx-md-132 {
		margin-right: 8.25rem !important
	}

	.mb-md-132,
	.my-md-132 {
		margin-bottom: 8.25rem !important
	}

	.ml-md-132,
	.mx-md-132 {
		margin-left: 8.25rem !important
	}

	.m-md-133 {
		margin: 8.3125rem !important
	}

	.mt-md-133,
	.my-md-133 {
		margin-top: 8.3125rem !important
	}

	.mr-md-133,
	.mx-md-133 {
		margin-right: 8.3125rem !important
	}

	.mb-md-133,
	.my-md-133 {
		margin-bottom: 8.3125rem !important
	}

	.ml-md-133,
	.mx-md-133 {
		margin-left: 8.3125rem !important
	}

	.m-md-134 {
		margin: 8.375rem !important
	}

	.mt-md-134,
	.my-md-134 {
		margin-top: 8.375rem !important
	}

	.mr-md-134,
	.mx-md-134 {
		margin-right: 8.375rem !important
	}

	.mb-md-134,
	.my-md-134 {
		margin-bottom: 8.375rem !important
	}

	.ml-md-134,
	.mx-md-134 {
		margin-left: 8.375rem !important
	}

	.m-md-135 {
		margin: 8.4375rem !important
	}

	.mt-md-135,
	.my-md-135 {
		margin-top: 8.4375rem !important
	}

	.mr-md-135,
	.mx-md-135 {
		margin-right: 8.4375rem !important
	}

	.mb-md-135,
	.my-md-135 {
		margin-bottom: 8.4375rem !important
	}

	.ml-md-135,
	.mx-md-135 {
		margin-left: 8.4375rem !important
	}

	.m-md-136 {
		margin: 8.5rem !important
	}

	.mt-md-136,
	.my-md-136 {
		margin-top: 8.5rem !important
	}

	.mr-md-136,
	.mx-md-136 {
		margin-right: 8.5rem !important
	}

	.mb-md-136,
	.my-md-136 {
		margin-bottom: 8.5rem !important
	}

	.ml-md-136,
	.mx-md-136 {
		margin-left: 8.5rem !important
	}

	.m-md-137 {
		margin: 8.5625rem !important
	}

	.mt-md-137,
	.my-md-137 {
		margin-top: 8.5625rem !important
	}

	.mr-md-137,
	.mx-md-137 {
		margin-right: 8.5625rem !important
	}

	.mb-md-137,
	.my-md-137 {
		margin-bottom: 8.5625rem !important
	}

	.ml-md-137,
	.mx-md-137 {
		margin-left: 8.5625rem !important
	}

	.m-md-138 {
		margin: 8.625rem !important
	}

	.mt-md-138,
	.my-md-138 {
		margin-top: 8.625rem !important
	}

	.mr-md-138,
	.mx-md-138 {
		margin-right: 8.625rem !important
	}

	.mb-md-138,
	.my-md-138 {
		margin-bottom: 8.625rem !important
	}

	.ml-md-138,
	.mx-md-138 {
		margin-left: 8.625rem !important
	}

	.m-md-139 {
		margin: 8.6875rem !important
	}

	.mt-md-139,
	.my-md-139 {
		margin-top: 8.6875rem !important
	}

	.mr-md-139,
	.mx-md-139 {
		margin-right: 8.6875rem !important
	}

	.mb-md-139,
	.my-md-139 {
		margin-bottom: 8.6875rem !important
	}

	.ml-md-139,
	.mx-md-139 {
		margin-left: 8.6875rem !important
	}

	.m-md-140 {
		margin: 8.75rem !important
	}

	.mt-md-140,
	.my-md-140 {
		margin-top: 8.75rem !important
	}

	.mr-md-140,
	.mx-md-140 {
		margin-right: 8.75rem !important
	}

	.mb-md-140,
	.my-md-140 {
		margin-bottom: 8.75rem !important
	}

	.ml-md-140,
	.mx-md-140 {
		margin-left: 8.75rem !important
	}

	.m-md-141 {
		margin: 8.8125rem !important
	}

	.mt-md-141,
	.my-md-141 {
		margin-top: 8.8125rem !important
	}

	.mr-md-141,
	.mx-md-141 {
		margin-right: 8.8125rem !important
	}

	.mb-md-141,
	.my-md-141 {
		margin-bottom: 8.8125rem !important
	}

	.ml-md-141,
	.mx-md-141 {
		margin-left: 8.8125rem !important
	}

	.m-md-142 {
		margin: 8.875rem !important
	}

	.mt-md-142,
	.my-md-142 {
		margin-top: 8.875rem !important
	}

	.mr-md-142,
	.mx-md-142 {
		margin-right: 8.875rem !important
	}

	.mb-md-142,
	.my-md-142 {
		margin-bottom: 8.875rem !important
	}

	.ml-md-142,
	.mx-md-142 {
		margin-left: 8.875rem !important
	}

	.m-md-143 {
		margin: 8.9375rem !important
	}

	.mt-md-143,
	.my-md-143 {
		margin-top: 8.9375rem !important
	}

	.mr-md-143,
	.mx-md-143 {
		margin-right: 8.9375rem !important
	}

	.mb-md-143,
	.my-md-143 {
		margin-bottom: 8.9375rem !important
	}

	.ml-md-143,
	.mx-md-143 {
		margin-left: 8.9375rem !important
	}

	.m-md-144 {
		margin: 9rem !important
	}

	.mt-md-144,
	.my-md-144 {
		margin-top: 9rem !important
	}

	.mr-md-144,
	.mx-md-144 {
		margin-right: 9rem !important
	}

	.mb-md-144,
	.my-md-144 {
		margin-bottom: 9rem !important
	}

	.ml-md-144,
	.mx-md-144 {
		margin-left: 9rem !important
	}

	.m-md-145 {
		margin: 9.0625rem !important
	}

	.mt-md-145,
	.my-md-145 {
		margin-top: 9.0625rem !important
	}

	.mr-md-145,
	.mx-md-145 {
		margin-right: 9.0625rem !important
	}

	.mb-md-145,
	.my-md-145 {
		margin-bottom: 9.0625rem !important
	}

	.ml-md-145,
	.mx-md-145 {
		margin-left: 9.0625rem !important
	}

	.m-md-146 {
		margin: 9.125rem !important
	}

	.mt-md-146,
	.my-md-146 {
		margin-top: 9.125rem !important
	}

	.mr-md-146,
	.mx-md-146 {
		margin-right: 9.125rem !important
	}

	.mb-md-146,
	.my-md-146 {
		margin-bottom: 9.125rem !important
	}

	.ml-md-146,
	.mx-md-146 {
		margin-left: 9.125rem !important
	}

	.m-md-147 {
		margin: 9.1875rem !important
	}

	.mt-md-147,
	.my-md-147 {
		margin-top: 9.1875rem !important
	}

	.mr-md-147,
	.mx-md-147 {
		margin-right: 9.1875rem !important
	}

	.mb-md-147,
	.my-md-147 {
		margin-bottom: 9.1875rem !important
	}

	.ml-md-147,
	.mx-md-147 {
		margin-left: 9.1875rem !important
	}

	.m-md-148 {
		margin: 9.25rem !important
	}

	.mt-md-148,
	.my-md-148 {
		margin-top: 9.25rem !important
	}

	.mr-md-148,
	.mx-md-148 {
		margin-right: 9.25rem !important
	}

	.mb-md-148,
	.my-md-148 {
		margin-bottom: 9.25rem !important
	}

	.ml-md-148,
	.mx-md-148 {
		margin-left: 9.25rem !important
	}

	.m-md-149 {
		margin: 9.3125rem !important
	}

	.mt-md-149,
	.my-md-149 {
		margin-top: 9.3125rem !important
	}

	.mr-md-149,
	.mx-md-149 {
		margin-right: 9.3125rem !important
	}

	.mb-md-149,
	.my-md-149 {
		margin-bottom: 9.3125rem !important
	}

	.ml-md-149,
	.mx-md-149 {
		margin-left: 9.3125rem !important
	}

	.m-md-150 {
		margin: 9.375rem !important
	}

	.mt-md-150,
	.my-md-150 {
		margin-top: 9.375rem !important
	}

	.mr-md-150,
	.mx-md-150 {
		margin-right: 9.375rem !important
	}

	.mb-md-150,
	.my-md-150 {
		margin-bottom: 9.375rem !important
	}

	.ml-md-150,
	.mx-md-150 {
		margin-left: 9.375rem !important
	}

	.m-md-151 {
		margin: 9.4375rem !important
	}

	.mt-md-151,
	.my-md-151 {
		margin-top: 9.4375rem !important
	}

	.mr-md-151,
	.mx-md-151 {
		margin-right: 9.4375rem !important
	}

	.mb-md-151,
	.my-md-151 {
		margin-bottom: 9.4375rem !important
	}

	.ml-md-151,
	.mx-md-151 {
		margin-left: 9.4375rem !important
	}

	.m-md-152 {
		margin: 9.5rem !important
	}

	.mt-md-152,
	.my-md-152 {
		margin-top: 9.5rem !important
	}

	.mr-md-152,
	.mx-md-152 {
		margin-right: 9.5rem !important
	}

	.mb-md-152,
	.my-md-152 {
		margin-bottom: 9.5rem !important
	}

	.ml-md-152,
	.mx-md-152 {
		margin-left: 9.5rem !important
	}

	.m-md-153 {
		margin: 9.5625rem !important
	}

	.mt-md-153,
	.my-md-153 {
		margin-top: 9.5625rem !important
	}

	.mr-md-153,
	.mx-md-153 {
		margin-right: 9.5625rem !important
	}

	.mb-md-153,
	.my-md-153 {
		margin-bottom: 9.5625rem !important
	}

	.ml-md-153,
	.mx-md-153 {
		margin-left: 9.5625rem !important
	}

	.m-md-154 {
		margin: 9.625rem !important
	}

	.mt-md-154,
	.my-md-154 {
		margin-top: 9.625rem !important
	}

	.mr-md-154,
	.mx-md-154 {
		margin-right: 9.625rem !important
	}

	.mb-md-154,
	.my-md-154 {
		margin-bottom: 9.625rem !important
	}

	.ml-md-154,
	.mx-md-154 {
		margin-left: 9.625rem !important
	}

	.m-md-155 {
		margin: 9.6875rem !important
	}

	.mt-md-155,
	.my-md-155 {
		margin-top: 9.6875rem !important
	}

	.mr-md-155,
	.mx-md-155 {
		margin-right: 9.6875rem !important
	}

	.mb-md-155,
	.my-md-155 {
		margin-bottom: 9.6875rem !important
	}

	.ml-md-155,
	.mx-md-155 {
		margin-left: 9.6875rem !important
	}

	.m-md-156 {
		margin: 9.75rem !important
	}

	.mt-md-156,
	.my-md-156 {
		margin-top: 9.75rem !important
	}

	.mr-md-156,
	.mx-md-156 {
		margin-right: 9.75rem !important
	}

	.mb-md-156,
	.my-md-156 {
		margin-bottom: 9.75rem !important
	}

	.ml-md-156,
	.mx-md-156 {
		margin-left: 9.75rem !important
	}

	.m-md-157 {
		margin: 9.8125rem !important
	}

	.mt-md-157,
	.my-md-157 {
		margin-top: 9.8125rem !important
	}

	.mr-md-157,
	.mx-md-157 {
		margin-right: 9.8125rem !important
	}

	.mb-md-157,
	.my-md-157 {
		margin-bottom: 9.8125rem !important
	}

	.ml-md-157,
	.mx-md-157 {
		margin-left: 9.8125rem !important
	}

	.m-md-158 {
		margin: 9.875rem !important
	}

	.mt-md-158,
	.my-md-158 {
		margin-top: 9.875rem !important
	}

	.mr-md-158,
	.mx-md-158 {
		margin-right: 9.875rem !important
	}

	.mb-md-158,
	.my-md-158 {
		margin-bottom: 9.875rem !important
	}

	.ml-md-158,
	.mx-md-158 {
		margin-left: 9.875rem !important
	}

	.m-md-159 {
		margin: 9.9375rem !important
	}

	.mt-md-159,
	.my-md-159 {
		margin-top: 9.9375rem !important
	}

	.mr-md-159,
	.mx-md-159 {
		margin-right: 9.9375rem !important
	}

	.mb-md-159,
	.my-md-159 {
		margin-bottom: 9.9375rem !important
	}

	.ml-md-159,
	.mx-md-159 {
		margin-left: 9.9375rem !important
	}

	.m-md-160 {
		margin: 10rem !important
	}

	.mt-md-160,
	.my-md-160 {
		margin-top: 10rem !important
	}

	.mr-md-160,
	.mx-md-160 {
		margin-right: 10rem !important
	}

	.mb-md-160,
	.my-md-160 {
		margin-bottom: 10rem !important
	}

	.ml-md-160,
	.mx-md-160 {
		margin-left: 10rem !important
	}

	.m-md-161 {
		margin: 10.0625rem !important
	}

	.mt-md-161,
	.my-md-161 {
		margin-top: 10.0625rem !important
	}

	.mr-md-161,
	.mx-md-161 {
		margin-right: 10.0625rem !important
	}

	.mb-md-161,
	.my-md-161 {
		margin-bottom: 10.0625rem !important
	}

	.ml-md-161,
	.mx-md-161 {
		margin-left: 10.0625rem !important
	}

	.m-md-162 {
		margin: 10.125rem !important
	}

	.mt-md-162,
	.my-md-162 {
		margin-top: 10.125rem !important
	}

	.mr-md-162,
	.mx-md-162 {
		margin-right: 10.125rem !important
	}

	.mb-md-162,
	.my-md-162 {
		margin-bottom: 10.125rem !important
	}

	.ml-md-162,
	.mx-md-162 {
		margin-left: 10.125rem !important
	}

	.m-md-163 {
		margin: 10.1875rem !important
	}

	.mt-md-163,
	.my-md-163 {
		margin-top: 10.1875rem !important
	}

	.mr-md-163,
	.mx-md-163 {
		margin-right: 10.1875rem !important
	}

	.mb-md-163,
	.my-md-163 {
		margin-bottom: 10.1875rem !important
	}

	.ml-md-163,
	.mx-md-163 {
		margin-left: 10.1875rem !important
	}

	.m-md-164 {
		margin: 10.25rem !important
	}

	.mt-md-164,
	.my-md-164 {
		margin-top: 10.25rem !important
	}

	.mr-md-164,
	.mx-md-164 {
		margin-right: 10.25rem !important
	}

	.mb-md-164,
	.my-md-164 {
		margin-bottom: 10.25rem !important
	}

	.ml-md-164,
	.mx-md-164 {
		margin-left: 10.25rem !important
	}

	.m-md-165 {
		margin: 10.3125rem !important
	}

	.mt-md-165,
	.my-md-165 {
		margin-top: 10.3125rem !important
	}

	.mr-md-165,
	.mx-md-165 {
		margin-right: 10.3125rem !important
	}

	.mb-md-165,
	.my-md-165 {
		margin-bottom: 10.3125rem !important
	}

	.ml-md-165,
	.mx-md-165 {
		margin-left: 10.3125rem !important
	}

	.m-md-166 {
		margin: 10.375rem !important
	}

	.mt-md-166,
	.my-md-166 {
		margin-top: 10.375rem !important
	}

	.mr-md-166,
	.mx-md-166 {
		margin-right: 10.375rem !important
	}

	.mb-md-166,
	.my-md-166 {
		margin-bottom: 10.375rem !important
	}

	.ml-md-166,
	.mx-md-166 {
		margin-left: 10.375rem !important
	}

	.m-md-167 {
		margin: 10.4375rem !important
	}

	.mt-md-167,
	.my-md-167 {
		margin-top: 10.4375rem !important
	}

	.mr-md-167,
	.mx-md-167 {
		margin-right: 10.4375rem !important
	}

	.mb-md-167,
	.my-md-167 {
		margin-bottom: 10.4375rem !important
	}

	.ml-md-167,
	.mx-md-167 {
		margin-left: 10.4375rem !important
	}

	.m-md-168 {
		margin: 10.5rem !important
	}

	.mt-md-168,
	.my-md-168 {
		margin-top: 10.5rem !important
	}

	.mr-md-168,
	.mx-md-168 {
		margin-right: 10.5rem !important
	}

	.mb-md-168,
	.my-md-168 {
		margin-bottom: 10.5rem !important
	}

	.ml-md-168,
	.mx-md-168 {
		margin-left: 10.5rem !important
	}

	.m-md-169 {
		margin: 10.5625rem !important
	}

	.mt-md-169,
	.my-md-169 {
		margin-top: 10.5625rem !important
	}

	.mr-md-169,
	.mx-md-169 {
		margin-right: 10.5625rem !important
	}

	.mb-md-169,
	.my-md-169 {
		margin-bottom: 10.5625rem !important
	}

	.ml-md-169,
	.mx-md-169 {
		margin-left: 10.5625rem !important
	}

	.m-md-170 {
		margin: 10.625rem !important
	}

	.mt-md-170,
	.my-md-170 {
		margin-top: 10.625rem !important
	}

	.mr-md-170,
	.mx-md-170 {
		margin-right: 10.625rem !important
	}

	.mb-md-170,
	.my-md-170 {
		margin-bottom: 10.625rem !important
	}

	.ml-md-170,
	.mx-md-170 {
		margin-left: 10.625rem !important
	}

	.m-md-171 {
		margin: 10.6875rem !important
	}

	.mt-md-171,
	.my-md-171 {
		margin-top: 10.6875rem !important
	}

	.mr-md-171,
	.mx-md-171 {
		margin-right: 10.6875rem !important
	}

	.mb-md-171,
	.my-md-171 {
		margin-bottom: 10.6875rem !important
	}

	.ml-md-171,
	.mx-md-171 {
		margin-left: 10.6875rem !important
	}

	.m-md-172 {
		margin: 10.75rem !important
	}

	.mt-md-172,
	.my-md-172 {
		margin-top: 10.75rem !important
	}

	.mr-md-172,
	.mx-md-172 {
		margin-right: 10.75rem !important
	}

	.mb-md-172,
	.my-md-172 {
		margin-bottom: 10.75rem !important
	}

	.ml-md-172,
	.mx-md-172 {
		margin-left: 10.75rem !important
	}

	.m-md-173 {
		margin: 10.8125rem !important
	}

	.mt-md-173,
	.my-md-173 {
		margin-top: 10.8125rem !important
	}

	.mr-md-173,
	.mx-md-173 {
		margin-right: 10.8125rem !important
	}

	.mb-md-173,
	.my-md-173 {
		margin-bottom: 10.8125rem !important
	}

	.ml-md-173,
	.mx-md-173 {
		margin-left: 10.8125rem !important
	}

	.m-md-174 {
		margin: 10.875rem !important
	}

	.mt-md-174,
	.my-md-174 {
		margin-top: 10.875rem !important
	}

	.mr-md-174,
	.mx-md-174 {
		margin-right: 10.875rem !important
	}

	.mb-md-174,
	.my-md-174 {
		margin-bottom: 10.875rem !important
	}

	.ml-md-174,
	.mx-md-174 {
		margin-left: 10.875rem !important
	}

	.m-md-175 {
		margin: 10.9375rem !important
	}

	.mt-md-175,
	.my-md-175 {
		margin-top: 10.9375rem !important
	}

	.mr-md-175,
	.mx-md-175 {
		margin-right: 10.9375rem !important
	}

	.mb-md-175,
	.my-md-175 {
		margin-bottom: 10.9375rem !important
	}

	.ml-md-175,
	.mx-md-175 {
		margin-left: 10.9375rem !important
	}

	.m-md-176 {
		margin: 11rem !important
	}

	.mt-md-176,
	.my-md-176 {
		margin-top: 11rem !important
	}

	.mr-md-176,
	.mx-md-176 {
		margin-right: 11rem !important
	}

	.mb-md-176,
	.my-md-176 {
		margin-bottom: 11rem !important
	}

	.ml-md-176,
	.mx-md-176 {
		margin-left: 11rem !important
	}

	.m-md-177 {
		margin: 11.0625rem !important
	}

	.mt-md-177,
	.my-md-177 {
		margin-top: 11.0625rem !important
	}

	.mr-md-177,
	.mx-md-177 {
		margin-right: 11.0625rem !important
	}

	.mb-md-177,
	.my-md-177 {
		margin-bottom: 11.0625rem !important
	}

	.ml-md-177,
	.mx-md-177 {
		margin-left: 11.0625rem !important
	}

	.m-md-178 {
		margin: 11.125rem !important
	}

	.mt-md-178,
	.my-md-178 {
		margin-top: 11.125rem !important
	}

	.mr-md-178,
	.mx-md-178 {
		margin-right: 11.125rem !important
	}

	.mb-md-178,
	.my-md-178 {
		margin-bottom: 11.125rem !important
	}

	.ml-md-178,
	.mx-md-178 {
		margin-left: 11.125rem !important
	}

	.m-md-179 {
		margin: 11.1875rem !important
	}

	.mt-md-179,
	.my-md-179 {
		margin-top: 11.1875rem !important
	}

	.mr-md-179,
	.mx-md-179 {
		margin-right: 11.1875rem !important
	}

	.mb-md-179,
	.my-md-179 {
		margin-bottom: 11.1875rem !important
	}

	.ml-md-179,
	.mx-md-179 {
		margin-left: 11.1875rem !important
	}

	.m-md-180 {
		margin: 11.25rem !important
	}

	.mt-md-180,
	.my-md-180 {
		margin-top: 11.25rem !important
	}

	.mr-md-180,
	.mx-md-180 {
		margin-right: 11.25rem !important
	}

	.mb-md-180,
	.my-md-180 {
		margin-bottom: 11.25rem !important
	}

	.ml-md-180,
	.mx-md-180 {
		margin-left: 11.25rem !important
	}

	.m-md-181 {
		margin: 11.3125rem !important
	}

	.mt-md-181,
	.my-md-181 {
		margin-top: 11.3125rem !important
	}

	.mr-md-181,
	.mx-md-181 {
		margin-right: 11.3125rem !important
	}

	.mb-md-181,
	.my-md-181 {
		margin-bottom: 11.3125rem !important
	}

	.ml-md-181,
	.mx-md-181 {
		margin-left: 11.3125rem !important
	}

	.m-md-182 {
		margin: 11.375rem !important
	}

	.mt-md-182,
	.my-md-182 {
		margin-top: 11.375rem !important
	}

	.mr-md-182,
	.mx-md-182 {
		margin-right: 11.375rem !important
	}

	.mb-md-182,
	.my-md-182 {
		margin-bottom: 11.375rem !important
	}

	.ml-md-182,
	.mx-md-182 {
		margin-left: 11.375rem !important
	}

	.m-md-183 {
		margin: 11.4375rem !important
	}

	.mt-md-183,
	.my-md-183 {
		margin-top: 11.4375rem !important
	}

	.mr-md-183,
	.mx-md-183 {
		margin-right: 11.4375rem !important
	}

	.mb-md-183,
	.my-md-183 {
		margin-bottom: 11.4375rem !important
	}

	.ml-md-183,
	.mx-md-183 {
		margin-left: 11.4375rem !important
	}

	.m-md-184 {
		margin: 11.5rem !important
	}

	.mt-md-184,
	.my-md-184 {
		margin-top: 11.5rem !important
	}

	.mr-md-184,
	.mx-md-184 {
		margin-right: 11.5rem !important
	}

	.mb-md-184,
	.my-md-184 {
		margin-bottom: 11.5rem !important
	}

	.ml-md-184,
	.mx-md-184 {
		margin-left: 11.5rem !important
	}

	.m-md-185 {
		margin: 11.5625rem !important
	}

	.mt-md-185,
	.my-md-185 {
		margin-top: 11.5625rem !important
	}

	.mr-md-185,
	.mx-md-185 {
		margin-right: 11.5625rem !important
	}

	.mb-md-185,
	.my-md-185 {
		margin-bottom: 11.5625rem !important
	}

	.ml-md-185,
	.mx-md-185 {
		margin-left: 11.5625rem !important
	}

	.m-md-186 {
		margin: 11.625rem !important
	}

	.mt-md-186,
	.my-md-186 {
		margin-top: 11.625rem !important
	}

	.mr-md-186,
	.mx-md-186 {
		margin-right: 11.625rem !important
	}

	.mb-md-186,
	.my-md-186 {
		margin-bottom: 11.625rem !important
	}

	.ml-md-186,
	.mx-md-186 {
		margin-left: 11.625rem !important
	}

	.m-md-187 {
		margin: 11.6875rem !important
	}

	.mt-md-187,
	.my-md-187 {
		margin-top: 11.6875rem !important
	}

	.mr-md-187,
	.mx-md-187 {
		margin-right: 11.6875rem !important
	}

	.mb-md-187,
	.my-md-187 {
		margin-bottom: 11.6875rem !important
	}

	.ml-md-187,
	.mx-md-187 {
		margin-left: 11.6875rem !important
	}

	.m-md-188 {
		margin: 11.75rem !important
	}

	.mt-md-188,
	.my-md-188 {
		margin-top: 11.75rem !important
	}

	.mr-md-188,
	.mx-md-188 {
		margin-right: 11.75rem !important
	}

	.mb-md-188,
	.my-md-188 {
		margin-bottom: 11.75rem !important
	}

	.ml-md-188,
	.mx-md-188 {
		margin-left: 11.75rem !important
	}

	.m-md-189 {
		margin: 11.8125rem !important
	}

	.mt-md-189,
	.my-md-189 {
		margin-top: 11.8125rem !important
	}

	.mr-md-189,
	.mx-md-189 {
		margin-right: 11.8125rem !important
	}

	.mb-md-189,
	.my-md-189 {
		margin-bottom: 11.8125rem !important
	}

	.ml-md-189,
	.mx-md-189 {
		margin-left: 11.8125rem !important
	}

	.m-md-190 {
		margin: 11.875rem !important
	}

	.mt-md-190,
	.my-md-190 {
		margin-top: 11.875rem !important
	}

	.mr-md-190,
	.mx-md-190 {
		margin-right: 11.875rem !important
	}

	.mb-md-190,
	.my-md-190 {
		margin-bottom: 11.875rem !important
	}

	.ml-md-190,
	.mx-md-190 {
		margin-left: 11.875rem !important
	}

	.m-md-191 {
		margin: 11.9375rem !important
	}

	.mt-md-191,
	.my-md-191 {
		margin-top: 11.9375rem !important
	}

	.mr-md-191,
	.mx-md-191 {
		margin-right: 11.9375rem !important
	}

	.mb-md-191,
	.my-md-191 {
		margin-bottom: 11.9375rem !important
	}

	.ml-md-191,
	.mx-md-191 {
		margin-left: 11.9375rem !important
	}

	.m-md-192 {
		margin: 12rem !important
	}

	.mt-md-192,
	.my-md-192 {
		margin-top: 12rem !important
	}

	.mr-md-192,
	.mx-md-192 {
		margin-right: 12rem !important
	}

	.mb-md-192,
	.my-md-192 {
		margin-bottom: 12rem !important
	}

	.ml-md-192,
	.mx-md-192 {
		margin-left: 12rem !important
	}

	.m-md-193 {
		margin: 12.0625rem !important
	}

	.mt-md-193,
	.my-md-193 {
		margin-top: 12.0625rem !important
	}

	.mr-md-193,
	.mx-md-193 {
		margin-right: 12.0625rem !important
	}

	.mb-md-193,
	.my-md-193 {
		margin-bottom: 12.0625rem !important
	}

	.ml-md-193,
	.mx-md-193 {
		margin-left: 12.0625rem !important
	}

	.m-md-194 {
		margin: 12.125rem !important
	}

	.mt-md-194,
	.my-md-194 {
		margin-top: 12.125rem !important
	}

	.mr-md-194,
	.mx-md-194 {
		margin-right: 12.125rem !important
	}

	.mb-md-194,
	.my-md-194 {
		margin-bottom: 12.125rem !important
	}

	.ml-md-194,
	.mx-md-194 {
		margin-left: 12.125rem !important
	}

	.m-md-195 {
		margin: 12.1875rem !important
	}

	.mt-md-195,
	.my-md-195 {
		margin-top: 12.1875rem !important
	}

	.mr-md-195,
	.mx-md-195 {
		margin-right: 12.1875rem !important
	}

	.mb-md-195,
	.my-md-195 {
		margin-bottom: 12.1875rem !important
	}

	.ml-md-195,
	.mx-md-195 {
		margin-left: 12.1875rem !important
	}

	.m-md-196 {
		margin: 12.25rem !important
	}

	.mt-md-196,
	.my-md-196 {
		margin-top: 12.25rem !important
	}

	.mr-md-196,
	.mx-md-196 {
		margin-right: 12.25rem !important
	}

	.mb-md-196,
	.my-md-196 {
		margin-bottom: 12.25rem !important
	}

	.ml-md-196,
	.mx-md-196 {
		margin-left: 12.25rem !important
	}

	.m-md-197 {
		margin: 12.3125rem !important
	}

	.mt-md-197,
	.my-md-197 {
		margin-top: 12.3125rem !important
	}

	.mr-md-197,
	.mx-md-197 {
		margin-right: 12.3125rem !important
	}

	.mb-md-197,
	.my-md-197 {
		margin-bottom: 12.3125rem !important
	}

	.ml-md-197,
	.mx-md-197 {
		margin-left: 12.3125rem !important
	}

	.m-md-198 {
		margin: 12.375rem !important
	}

	.mt-md-198,
	.my-md-198 {
		margin-top: 12.375rem !important
	}

	.mr-md-198,
	.mx-md-198 {
		margin-right: 12.375rem !important
	}

	.mb-md-198,
	.my-md-198 {
		margin-bottom: 12.375rem !important
	}

	.ml-md-198,
	.mx-md-198 {
		margin-left: 12.375rem !important
	}

	.m-md-199 {
		margin: 12.4375rem !important
	}

	.mt-md-199,
	.my-md-199 {
		margin-top: 12.4375rem !important
	}

	.mr-md-199,
	.mx-md-199 {
		margin-right: 12.4375rem !important
	}

	.mb-md-199,
	.my-md-199 {
		margin-bottom: 12.4375rem !important
	}

	.ml-md-199,
	.mx-md-199 {
		margin-left: 12.4375rem !important
	}

	.m-md-200 {
		margin: 12.5rem !important
	}

	.mt-md-200,
	.my-md-200 {
		margin-top: 12.5rem !important
	}

	.mr-md-200,
	.mx-md-200 {
		margin-right: 12.5rem !important
	}

	.mb-md-200,
	.my-md-200 {
		margin-bottom: 12.5rem !important
	}

	.ml-md-200,
	.mx-md-200 {
		margin-left: 12.5rem !important
	}

	.p-md-0 {
		padding: 0 !important
	}

	.pt-md-0,
	.py-md-0 {
		padding-top: 0 !important
	}

	.pr-md-0,
	.px-md-0 {
		padding-right: 0 !important
	}

	.pb-md-0,
	.py-md-0 {
		padding-bottom: 0 !important
	}

	.pl-md-0,
	.px-md-0 {
		padding-left: 0 !important
	}

	.p-md-1 {
		padding: .0625rem !important
	}

	.pt-md-1,
	.py-md-1 {
		padding-top: .0625rem !important
	}

	.pr-md-1,
	.px-md-1 {
		padding-right: .0625rem !important
	}

	.pb-md-1,
	.py-md-1 {
		padding-bottom: .0625rem !important
	}

	.pl-md-1,
	.px-md-1 {
		padding-left: .0625rem !important
	}

	.p-md-2 {
		padding: .125rem !important
	}

	.pt-md-2,
	.py-md-2 {
		padding-top: .125rem !important
	}

	.pr-md-2,
	.px-md-2 {
		padding-right: .125rem !important
	}

	.pb-md-2,
	.py-md-2 {
		padding-bottom: .125rem !important
	}

	.pl-md-2,
	.px-md-2 {
		padding-left: .125rem !important
	}

	.p-md-3 {
		padding: .1875rem !important
	}

	.pt-md-3,
	.py-md-3 {
		padding-top: .1875rem !important
	}

	.pr-md-3,
	.px-md-3 {
		padding-right: .1875rem !important
	}

	.pb-md-3,
	.py-md-3 {
		padding-bottom: .1875rem !important
	}

	.pl-md-3,
	.px-md-3 {
		padding-left: .1875rem !important
	}

	.p-md-4 {
		padding: .25rem !important
	}

	.pt-md-4,
	.py-md-4 {
		padding-top: .25rem !important
	}

	.pr-md-4,
	.px-md-4 {
		padding-right: .25rem !important
	}

	.pb-md-4,
	.py-md-4 {
		padding-bottom: .25rem !important
	}

	.pl-md-4,
	.px-md-4 {
		padding-left: .25rem !important
	}

	.p-md-5 {
		padding: .3125rem !important
	}

	.pt-md-5,
	.py-md-5 {
		padding-top: .3125rem !important
	}

	.pr-md-5,
	.px-md-5 {
		padding-right: .3125rem !important
	}

	.pb-md-5,
	.py-md-5 {
		padding-bottom: .3125rem !important
	}

	.pl-md-5,
	.px-md-5 {
		padding-left: .3125rem !important
	}

	.p-md-6 {
		padding: .375rem !important
	}

	.pt-md-6,
	.py-md-6 {
		padding-top: .375rem !important
	}

	.pr-md-6,
	.px-md-6 {
		padding-right: .375rem !important
	}

	.pb-md-6,
	.py-md-6 {
		padding-bottom: .375rem !important
	}

	.pl-md-6,
	.px-md-6 {
		padding-left: .375rem !important
	}

	.p-md-7 {
		padding: .4375rem !important
	}

	.pt-md-7,
	.py-md-7 {
		padding-top: .4375rem !important
	}

	.pr-md-7,
	.px-md-7 {
		padding-right: .4375rem !important
	}

	.pb-md-7,
	.py-md-7 {
		padding-bottom: .4375rem !important
	}

	.pl-md-7,
	.px-md-7 {
		padding-left: .4375rem !important
	}

	.p-md-8 {
		padding: .5rem !important
	}

	.pt-md-8,
	.py-md-8 {
		padding-top: .5rem !important
	}

	.pr-md-8,
	.px-md-8 {
		padding-right: .5rem !important
	}

	.pb-md-8,
	.py-md-8 {
		padding-bottom: .5rem !important
	}

	.pl-md-8,
	.px-md-8 {
		padding-left: .5rem !important
	}

	.p-md-9 {
		padding: .5625rem !important
	}

	.pt-md-9,
	.py-md-9 {
		padding-top: .5625rem !important
	}

	.pr-md-9,
	.px-md-9 {
		padding-right: .5625rem !important
	}

	.pb-md-9,
	.py-md-9 {
		padding-bottom: .5625rem !important
	}

	.pl-md-9,
	.px-md-9 {
		padding-left: .5625rem !important
	}

	.p-md-10 {
		padding: .625rem !important
	}

	.pt-md-10,
	.py-md-10 {
		padding-top: .625rem !important
	}

	.pr-md-10,
	.px-md-10 {
		padding-right: .625rem !important
	}

	.pb-md-10,
	.py-md-10 {
		padding-bottom: .625rem !important
	}

	.pl-md-10,
	.px-md-10 {
		padding-left: .625rem !important
	}

	.p-md-11 {
		padding: .6875rem !important
	}

	.pt-md-11,
	.py-md-11 {
		padding-top: .6875rem !important
	}

	.pr-md-11,
	.px-md-11 {
		padding-right: .6875rem !important
	}

	.pb-md-11,
	.py-md-11 {
		padding-bottom: .6875rem !important
	}

	.pl-md-11,
	.px-md-11 {
		padding-left: .6875rem !important
	}

	.p-md-12 {
		padding: .75rem !important
	}

	.pt-md-12,
	.py-md-12 {
		padding-top: .75rem !important
	}

	.pr-md-12,
	.px-md-12 {
		padding-right: .75rem !important
	}

	.pb-md-12,
	.py-md-12 {
		padding-bottom: .75rem !important
	}

	.pl-md-12,
	.px-md-12 {
		padding-left: .75rem !important
	}

	.p-md-13 {
		padding: .8125rem !important
	}

	.pt-md-13,
	.py-md-13 {
		padding-top: .8125rem !important
	}

	.pr-md-13,
	.px-md-13 {
		padding-right: .8125rem !important
	}

	.pb-md-13,
	.py-md-13 {
		padding-bottom: .8125rem !important
	}

	.pl-md-13,
	.px-md-13 {
		padding-left: .8125rem !important
	}

	.p-md-14 {
		padding: .875rem !important
	}

	.pt-md-14,
	.py-md-14 {
		padding-top: .875rem !important
	}

	.pr-md-14,
	.px-md-14 {
		padding-right: .875rem !important
	}

	.pb-md-14,
	.py-md-14 {
		padding-bottom: .875rem !important
	}

	.pl-md-14,
	.px-md-14 {
		padding-left: .875rem !important
	}

	.p-md-15 {
		padding: .9375rem !important
	}

	.pt-md-15,
	.py-md-15 {
		padding-top: .9375rem !important
	}

	.pr-md-15,
	.px-md-15 {
		padding-right: .9375rem !important
	}

	.pb-md-15,
	.py-md-15 {
		padding-bottom: .9375rem !important
	}

	.pl-md-15,
	.px-md-15 {
		padding-left: .9375rem !important
	}

	.p-md-16 {
		padding: 1rem !important
	}

	.pt-md-16,
	.py-md-16 {
		padding-top: 1rem !important
	}

	.pr-md-16,
	.px-md-16 {
		padding-right: 1rem !important
	}

	.pb-md-16,
	.py-md-16 {
		padding-bottom: 1rem !important
	}

	.pl-md-16,
	.px-md-16 {
		padding-left: 1rem !important
	}

	.p-md-17 {
		padding: 1.0625rem !important
	}

	.pt-md-17,
	.py-md-17 {
		padding-top: 1.0625rem !important
	}

	.pr-md-17,
	.px-md-17 {
		padding-right: 1.0625rem !important
	}

	.pb-md-17,
	.py-md-17 {
		padding-bottom: 1.0625rem !important
	}

	.pl-md-17,
	.px-md-17 {
		padding-left: 1.0625rem !important
	}

	.p-md-18 {
		padding: 1.125rem !important
	}

	.pt-md-18,
	.py-md-18 {
		padding-top: 1.125rem !important
	}

	.pr-md-18,
	.px-md-18 {
		padding-right: 1.125rem !important
	}

	.pb-md-18,
	.py-md-18 {
		padding-bottom: 1.125rem !important
	}

	.pl-md-18,
	.px-md-18 {
		padding-left: 1.125rem !important
	}

	.p-md-19 {
		padding: 1.1875rem !important
	}

	.pt-md-19,
	.py-md-19 {
		padding-top: 1.1875rem !important
	}

	.pr-md-19,
	.px-md-19 {
		padding-right: 1.1875rem !important
	}

	.pb-md-19,
	.py-md-19 {
		padding-bottom: 1.1875rem !important
	}

	.pl-md-19,
	.px-md-19 {
		padding-left: 1.1875rem !important
	}

	.p-md-20 {
		padding: 1.25rem !important
	}

	.pt-md-20,
	.py-md-20 {
		padding-top: 1.25rem !important
	}

	.pr-md-20,
	.px-md-20 {
		padding-right: 1.25rem !important
	}

	.pb-md-20,
	.py-md-20 {
		padding-bottom: 1.25rem !important
	}

	.pl-md-20,
	.px-md-20 {
		padding-left: 1.25rem !important
	}

	.p-md-21 {
		padding: 1.3125rem !important
	}

	.pt-md-21,
	.py-md-21 {
		padding-top: 1.3125rem !important
	}

	.pr-md-21,
	.px-md-21 {
		padding-right: 1.3125rem !important
	}

	.pb-md-21,
	.py-md-21 {
		padding-bottom: 1.3125rem !important
	}

	.pl-md-21,
	.px-md-21 {
		padding-left: 1.3125rem !important
	}

	.p-md-22 {
		padding: 1.375rem !important
	}

	.pt-md-22,
	.py-md-22 {
		padding-top: 1.375rem !important
	}

	.pr-md-22,
	.px-md-22 {
		padding-right: 1.375rem !important
	}

	.pb-md-22,
	.py-md-22 {
		padding-bottom: 1.375rem !important
	}

	.pl-md-22,
	.px-md-22 {
		padding-left: 1.375rem !important
	}

	.p-md-23 {
		padding: 1.4375rem !important
	}

	.pt-md-23,
	.py-md-23 {
		padding-top: 1.4375rem !important
	}

	.pr-md-23,
	.px-md-23 {
		padding-right: 1.4375rem !important
	}

	.pb-md-23,
	.py-md-23 {
		padding-bottom: 1.4375rem !important
	}

	.pl-md-23,
	.px-md-23 {
		padding-left: 1.4375rem !important
	}

	.p-md-24 {
		padding: 1.5rem !important
	}

	.pt-md-24,
	.py-md-24 {
		padding-top: 1.5rem !important
	}

	.pr-md-24,
	.px-md-24 {
		padding-right: 1.5rem !important
	}

	.pb-md-24,
	.py-md-24 {
		padding-bottom: 1.5rem !important
	}

	.pl-md-24,
	.px-md-24 {
		padding-left: 1.5rem !important
	}

	.p-md-25 {
		padding: 1.5625rem !important
	}

	.pt-md-25,
	.py-md-25 {
		padding-top: 1.5625rem !important
	}

	.pr-md-25,
	.px-md-25 {
		padding-right: 1.5625rem !important
	}

	.pb-md-25,
	.py-md-25 {
		padding-bottom: 1.5625rem !important
	}

	.pl-md-25,
	.px-md-25 {
		padding-left: 1.5625rem !important
	}

	.p-md-26 {
		padding: 1.625rem !important
	}

	.pt-md-26,
	.py-md-26 {
		padding-top: 1.625rem !important
	}

	.pr-md-26,
	.px-md-26 {
		padding-right: 1.625rem !important
	}

	.pb-md-26,
	.py-md-26 {
		padding-bottom: 1.625rem !important
	}

	.pl-md-26,
	.px-md-26 {
		padding-left: 1.625rem !important
	}

	.p-md-27 {
		padding: 1.6875rem !important
	}

	.pt-md-27,
	.py-md-27 {
		padding-top: 1.6875rem !important
	}

	.pr-md-27,
	.px-md-27 {
		padding-right: 1.6875rem !important
	}

	.pb-md-27,
	.py-md-27 {
		padding-bottom: 1.6875rem !important
	}

	.pl-md-27,
	.px-md-27 {
		padding-left: 1.6875rem !important
	}

	.p-md-28 {
		padding: 1.75rem !important
	}

	.pt-md-28,
	.py-md-28 {
		padding-top: 1.75rem !important
	}

	.pr-md-28,
	.px-md-28 {
		padding-right: 1.75rem !important
	}

	.pb-md-28,
	.py-md-28 {
		padding-bottom: 1.75rem !important
	}

	.pl-md-28,
	.px-md-28 {
		padding-left: 1.75rem !important
	}

	.p-md-29 {
		padding: 1.8125rem !important
	}

	.pt-md-29,
	.py-md-29 {
		padding-top: 1.8125rem !important
	}

	.pr-md-29,
	.px-md-29 {
		padding-right: 1.8125rem !important
	}

	.pb-md-29,
	.py-md-29 {
		padding-bottom: 1.8125rem !important
	}

	.pl-md-29,
	.px-md-29 {
		padding-left: 1.8125rem !important
	}

	.p-md-30 {
		padding: 1.875rem !important
	}

	.pt-md-30,
	.py-md-30 {
		padding-top: 1.875rem !important
	}

	.pr-md-30,
	.px-md-30 {
		padding-right: 1.875rem !important
	}

	.pb-md-30,
	.py-md-30 {
		padding-bottom: 1.875rem !important
	}

	.pl-md-30,
	.px-md-30 {
		padding-left: 1.875rem !important
	}

	.p-md-31 {
		padding: 1.9375rem !important
	}

	.pt-md-31,
	.py-md-31 {
		padding-top: 1.9375rem !important
	}

	.pr-md-31,
	.px-md-31 {
		padding-right: 1.9375rem !important
	}

	.pb-md-31,
	.py-md-31 {
		padding-bottom: 1.9375rem !important
	}

	.pl-md-31,
	.px-md-31 {
		padding-left: 1.9375rem !important
	}

	.p-md-32 {
		padding: 2rem !important
	}

	.pt-md-32,
	.py-md-32 {
		padding-top: 2rem !important
	}

	.pr-md-32,
	.px-md-32 {
		padding-right: 2rem !important
	}

	.pb-md-32,
	.py-md-32 {
		padding-bottom: 2rem !important
	}

	.pl-md-32,
	.px-md-32 {
		padding-left: 2rem !important
	}

	.p-md-33 {
		padding: 2.0625rem !important
	}

	.pt-md-33,
	.py-md-33 {
		padding-top: 2.0625rem !important
	}

	.pr-md-33,
	.px-md-33 {
		padding-right: 2.0625rem !important
	}

	.pb-md-33,
	.py-md-33 {
		padding-bottom: 2.0625rem !important
	}

	.pl-md-33,
	.px-md-33 {
		padding-left: 2.0625rem !important
	}

	.p-md-34 {
		padding: 2.125rem !important
	}

	.pt-md-34,
	.py-md-34 {
		padding-top: 2.125rem !important
	}

	.pr-md-34,
	.px-md-34 {
		padding-right: 2.125rem !important
	}

	.pb-md-34,
	.py-md-34 {
		padding-bottom: 2.125rem !important
	}

	.pl-md-34,
	.px-md-34 {
		padding-left: 2.125rem !important
	}

	.p-md-35 {
		padding: 2.1875rem !important
	}

	.pt-md-35,
	.py-md-35 {
		padding-top: 2.1875rem !important
	}

	.pr-md-35,
	.px-md-35 {
		padding-right: 2.1875rem !important
	}

	.pb-md-35,
	.py-md-35 {
		padding-bottom: 2.1875rem !important
	}

	.pl-md-35,
	.px-md-35 {
		padding-left: 2.1875rem !important
	}

	.p-md-36 {
		padding: 2.25rem !important
	}

	.pt-md-36,
	.py-md-36 {
		padding-top: 2.25rem !important
	}

	.pr-md-36,
	.px-md-36 {
		padding-right: 2.25rem !important
	}

	.pb-md-36,
	.py-md-36 {
		padding-bottom: 2.25rem !important
	}

	.pl-md-36,
	.px-md-36 {
		padding-left: 2.25rem !important
	}

	.p-md-37 {
		padding: 2.3125rem !important
	}

	.pt-md-37,
	.py-md-37 {
		padding-top: 2.3125rem !important
	}

	.pr-md-37,
	.px-md-37 {
		padding-right: 2.3125rem !important
	}

	.pb-md-37,
	.py-md-37 {
		padding-bottom: 2.3125rem !important
	}

	.pl-md-37,
	.px-md-37 {
		padding-left: 2.3125rem !important
	}

	.p-md-38 {
		padding: 2.375rem !important
	}

	.pt-md-38,
	.py-md-38 {
		padding-top: 2.375rem !important
	}

	.pr-md-38,
	.px-md-38 {
		padding-right: 2.375rem !important
	}

	.pb-md-38,
	.py-md-38 {
		padding-bottom: 2.375rem !important
	}

	.pl-md-38,
	.px-md-38 {
		padding-left: 2.375rem !important
	}

	.p-md-39 {
		padding: 2.4375rem !important
	}

	.pt-md-39,
	.py-md-39 {
		padding-top: 2.4375rem !important
	}

	.pr-md-39,
	.px-md-39 {
		padding-right: 2.4375rem !important
	}

	.pb-md-39,
	.py-md-39 {
		padding-bottom: 2.4375rem !important
	}

	.pl-md-39,
	.px-md-39 {
		padding-left: 2.4375rem !important
	}

	.p-md-40 {
		padding: 2.5rem !important
	}

	.pt-md-40,
	.py-md-40 {
		padding-top: 2.5rem !important
	}

	.pr-md-40,
	.px-md-40 {
		padding-right: 2.5rem !important
	}

	.pb-md-40,
	.py-md-40 {
		padding-bottom: 2.5rem !important
	}

	.pl-md-40,
	.px-md-40 {
		padding-left: 2.5rem !important
	}

	.p-md-41 {
		padding: 2.5625rem !important
	}

	.pt-md-41,
	.py-md-41 {
		padding-top: 2.5625rem !important
	}

	.pr-md-41,
	.px-md-41 {
		padding-right: 2.5625rem !important
	}

	.pb-md-41,
	.py-md-41 {
		padding-bottom: 2.5625rem !important
	}

	.pl-md-41,
	.px-md-41 {
		padding-left: 2.5625rem !important
	}

	.p-md-42 {
		padding: 2.625rem !important
	}

	.pt-md-42,
	.py-md-42 {
		padding-top: 2.625rem !important
	}

	.pr-md-42,
	.px-md-42 {
		padding-right: 2.625rem !important
	}

	.pb-md-42,
	.py-md-42 {
		padding-bottom: 2.625rem !important
	}

	.pl-md-42,
	.px-md-42 {
		padding-left: 2.625rem !important
	}

	.p-md-43 {
		padding: 2.6875rem !important
	}

	.pt-md-43,
	.py-md-43 {
		padding-top: 2.6875rem !important
	}

	.pr-md-43,
	.px-md-43 {
		padding-right: 2.6875rem !important
	}

	.pb-md-43,
	.py-md-43 {
		padding-bottom: 2.6875rem !important
	}

	.pl-md-43,
	.px-md-43 {
		padding-left: 2.6875rem !important
	}

	.p-md-44 {
		padding: 2.75rem !important
	}

	.pt-md-44,
	.py-md-44 {
		padding-top: 2.75rem !important
	}

	.pr-md-44,
	.px-md-44 {
		padding-right: 2.75rem !important
	}

	.pb-md-44,
	.py-md-44 {
		padding-bottom: 2.75rem !important
	}

	.pl-md-44,
	.px-md-44 {
		padding-left: 2.75rem !important
	}

	.p-md-45 {
		padding: 2.8125rem !important
	}

	.pt-md-45,
	.py-md-45 {
		padding-top: 2.8125rem !important
	}

	.pr-md-45,
	.px-md-45 {
		padding-right: 2.8125rem !important
	}

	.pb-md-45,
	.py-md-45 {
		padding-bottom: 2.8125rem !important
	}

	.pl-md-45,
	.px-md-45 {
		padding-left: 2.8125rem !important
	}

	.p-md-46 {
		padding: 2.875rem !important
	}

	.pt-md-46,
	.py-md-46 {
		padding-top: 2.875rem !important
	}

	.pr-md-46,
	.px-md-46 {
		padding-right: 2.875rem !important
	}

	.pb-md-46,
	.py-md-46 {
		padding-bottom: 2.875rem !important
	}

	.pl-md-46,
	.px-md-46 {
		padding-left: 2.875rem !important
	}

	.p-md-47 {
		padding: 2.9375rem !important
	}

	.pt-md-47,
	.py-md-47 {
		padding-top: 2.9375rem !important
	}

	.pr-md-47,
	.px-md-47 {
		padding-right: 2.9375rem !important
	}

	.pb-md-47,
	.py-md-47 {
		padding-bottom: 2.9375rem !important
	}

	.pl-md-47,
	.px-md-47 {
		padding-left: 2.9375rem !important
	}

	.p-md-48 {
		padding: 3rem !important
	}

	.pt-md-48,
	.py-md-48 {
		padding-top: 3rem !important
	}

	.pr-md-48,
	.px-md-48 {
		padding-right: 3rem !important
	}

	.pb-md-48,
	.py-md-48 {
		padding-bottom: 3rem !important
	}

	.pl-md-48,
	.px-md-48 {
		padding-left: 3rem !important
	}

	.p-md-49 {
		padding: 3.0625rem !important
	}

	.pt-md-49,
	.py-md-49 {
		padding-top: 3.0625rem !important
	}

	.pr-md-49,
	.px-md-49 {
		padding-right: 3.0625rem !important
	}

	.pb-md-49,
	.py-md-49 {
		padding-bottom: 3.0625rem !important
	}

	.pl-md-49,
	.px-md-49 {
		padding-left: 3.0625rem !important
	}

	.p-md-50 {
		padding: 3.125rem !important
	}

	.pt-md-50,
	.py-md-50 {
		padding-top: 3.125rem !important
	}

	.pr-md-50,
	.px-md-50 {
		padding-right: 3.125rem !important
	}

	.pb-md-50,
	.py-md-50 {
		padding-bottom: 3.125rem !important
	}

	.pl-md-50,
	.px-md-50 {
		padding-left: 3.125rem !important
	}

	.p-md-51 {
		padding: 3.1875rem !important
	}

	.pt-md-51,
	.py-md-51 {
		padding-top: 3.1875rem !important
	}

	.pr-md-51,
	.px-md-51 {
		padding-right: 3.1875rem !important
	}

	.pb-md-51,
	.py-md-51 {
		padding-bottom: 3.1875rem !important
	}

	.pl-md-51,
	.px-md-51 {
		padding-left: 3.1875rem !important
	}

	.p-md-52 {
		padding: 3.25rem !important
	}

	.pt-md-52,
	.py-md-52 {
		padding-top: 3.25rem !important
	}

	.pr-md-52,
	.px-md-52 {
		padding-right: 3.25rem !important
	}

	.pb-md-52,
	.py-md-52 {
		padding-bottom: 3.25rem !important
	}

	.pl-md-52,
	.px-md-52 {
		padding-left: 3.25rem !important
	}

	.p-md-53 {
		padding: 3.3125rem !important
	}

	.pt-md-53,
	.py-md-53 {
		padding-top: 3.3125rem !important
	}

	.pr-md-53,
	.px-md-53 {
		padding-right: 3.3125rem !important
	}

	.pb-md-53,
	.py-md-53 {
		padding-bottom: 3.3125rem !important
	}

	.pl-md-53,
	.px-md-53 {
		padding-left: 3.3125rem !important
	}

	.p-md-54 {
		padding: 3.375rem !important
	}

	.pt-md-54,
	.py-md-54 {
		padding-top: 3.375rem !important
	}

	.pr-md-54,
	.px-md-54 {
		padding-right: 3.375rem !important
	}

	.pb-md-54,
	.py-md-54 {
		padding-bottom: 3.375rem !important
	}

	.pl-md-54,
	.px-md-54 {
		padding-left: 3.375rem !important
	}

	.p-md-55 {
		padding: 3.4375rem !important
	}

	.pt-md-55,
	.py-md-55 {
		padding-top: 3.4375rem !important
	}

	.pr-md-55,
	.px-md-55 {
		padding-right: 3.4375rem !important
	}

	.pb-md-55,
	.py-md-55 {
		padding-bottom: 3.4375rem !important
	}

	.pl-md-55,
	.px-md-55 {
		padding-left: 3.4375rem !important
	}

	.p-md-56 {
		padding: 3.5rem !important
	}

	.pt-md-56,
	.py-md-56 {
		padding-top: 3.5rem !important
	}

	.pr-md-56,
	.px-md-56 {
		padding-right: 3.5rem !important
	}

	.pb-md-56,
	.py-md-56 {
		padding-bottom: 3.5rem !important
	}

	.pl-md-56,
	.px-md-56 {
		padding-left: 3.5rem !important
	}

	.p-md-57 {
		padding: 3.5625rem !important
	}

	.pt-md-57,
	.py-md-57 {
		padding-top: 3.5625rem !important
	}

	.pr-md-57,
	.px-md-57 {
		padding-right: 3.5625rem !important
	}

	.pb-md-57,
	.py-md-57 {
		padding-bottom: 3.5625rem !important
	}

	.pl-md-57,
	.px-md-57 {
		padding-left: 3.5625rem !important
	}

	.p-md-58 {
		padding: 3.625rem !important
	}

	.pt-md-58,
	.py-md-58 {
		padding-top: 3.625rem !important
	}

	.pr-md-58,
	.px-md-58 {
		padding-right: 3.625rem !important
	}

	.pb-md-58,
	.py-md-58 {
		padding-bottom: 3.625rem !important
	}

	.pl-md-58,
	.px-md-58 {
		padding-left: 3.625rem !important
	}

	.p-md-59 {
		padding: 3.6875rem !important
	}

	.pt-md-59,
	.py-md-59 {
		padding-top: 3.6875rem !important
	}

	.pr-md-59,
	.px-md-59 {
		padding-right: 3.6875rem !important
	}

	.pb-md-59,
	.py-md-59 {
		padding-bottom: 3.6875rem !important
	}

	.pl-md-59,
	.px-md-59 {
		padding-left: 3.6875rem !important
	}

	.p-md-60 {
		padding: 3.75rem !important
	}

	.pt-md-60,
	.py-md-60 {
		padding-top: 3.75rem !important
	}

	.pr-md-60,
	.px-md-60 {
		padding-right: 3.75rem !important
	}

	.pb-md-60,
	.py-md-60 {
		padding-bottom: 3.75rem !important
	}

	.pl-md-60,
	.px-md-60 {
		padding-left: 3.75rem !important
	}

	.p-md-61 {
		padding: 3.8125rem !important
	}

	.pt-md-61,
	.py-md-61 {
		padding-top: 3.8125rem !important
	}

	.pr-md-61,
	.px-md-61 {
		padding-right: 3.8125rem !important
	}

	.pb-md-61,
	.py-md-61 {
		padding-bottom: 3.8125rem !important
	}

	.pl-md-61,
	.px-md-61 {
		padding-left: 3.8125rem !important
	}

	.p-md-62 {
		padding: 3.875rem !important
	}

	.pt-md-62,
	.py-md-62 {
		padding-top: 3.875rem !important
	}

	.pr-md-62,
	.px-md-62 {
		padding-right: 3.875rem !important
	}

	.pb-md-62,
	.py-md-62 {
		padding-bottom: 3.875rem !important
	}

	.pl-md-62,
	.px-md-62 {
		padding-left: 3.875rem !important
	}

	.p-md-63 {
		padding: 3.9375rem !important
	}

	.pt-md-63,
	.py-md-63 {
		padding-top: 3.9375rem !important
	}

	.pr-md-63,
	.px-md-63 {
		padding-right: 3.9375rem !important
	}

	.pb-md-63,
	.py-md-63 {
		padding-bottom: 3.9375rem !important
	}

	.pl-md-63,
	.px-md-63 {
		padding-left: 3.9375rem !important
	}

	.p-md-64 {
		padding: 4rem !important
	}

	.pt-md-64,
	.py-md-64 {
		padding-top: 4rem !important
	}

	.pr-md-64,
	.px-md-64 {
		padding-right: 4rem !important
	}

	.pb-md-64,
	.py-md-64 {
		padding-bottom: 4rem !important
	}

	.pl-md-64,
	.px-md-64 {
		padding-left: 4rem !important
	}

	.p-md-65 {
		padding: 4.0625rem !important
	}

	.pt-md-65,
	.py-md-65 {
		padding-top: 4.0625rem !important
	}

	.pr-md-65,
	.px-md-65 {
		padding-right: 4.0625rem !important
	}

	.pb-md-65,
	.py-md-65 {
		padding-bottom: 4.0625rem !important
	}

	.pl-md-65,
	.px-md-65 {
		padding-left: 4.0625rem !important
	}

	.p-md-66 {
		padding: 4.125rem !important
	}

	.pt-md-66,
	.py-md-66 {
		padding-top: 4.125rem !important
	}

	.pr-md-66,
	.px-md-66 {
		padding-right: 4.125rem !important
	}

	.pb-md-66,
	.py-md-66 {
		padding-bottom: 4.125rem !important
	}

	.pl-md-66,
	.px-md-66 {
		padding-left: 4.125rem !important
	}

	.p-md-67 {
		padding: 4.1875rem !important
	}

	.pt-md-67,
	.py-md-67 {
		padding-top: 4.1875rem !important
	}

	.pr-md-67,
	.px-md-67 {
		padding-right: 4.1875rem !important
	}

	.pb-md-67,
	.py-md-67 {
		padding-bottom: 4.1875rem !important
	}

	.pl-md-67,
	.px-md-67 {
		padding-left: 4.1875rem !important
	}

	.p-md-68 {
		padding: 4.25rem !important
	}

	.pt-md-68,
	.py-md-68 {
		padding-top: 4.25rem !important
	}

	.pr-md-68,
	.px-md-68 {
		padding-right: 4.25rem !important
	}

	.pb-md-68,
	.py-md-68 {
		padding-bottom: 4.25rem !important
	}

	.pl-md-68,
	.px-md-68 {
		padding-left: 4.25rem !important
	}

	.p-md-69 {
		padding: 4.3125rem !important
	}

	.pt-md-69,
	.py-md-69 {
		padding-top: 4.3125rem !important
	}

	.pr-md-69,
	.px-md-69 {
		padding-right: 4.3125rem !important
	}

	.pb-md-69,
	.py-md-69 {
		padding-bottom: 4.3125rem !important
	}

	.pl-md-69,
	.px-md-69 {
		padding-left: 4.3125rem !important
	}

	.p-md-70 {
		padding: 4.375rem !important
	}

	.pt-md-70,
	.py-md-70 {
		padding-top: 4.375rem !important
	}

	.pr-md-70,
	.px-md-70 {
		padding-right: 4.375rem !important
	}

	.pb-md-70,
	.py-md-70 {
		padding-bottom: 4.375rem !important
	}

	.pl-md-70,
	.px-md-70 {
		padding-left: 4.375rem !important
	}

	.p-md-71 {
		padding: 4.4375rem !important
	}

	.pt-md-71,
	.py-md-71 {
		padding-top: 4.4375rem !important
	}

	.pr-md-71,
	.px-md-71 {
		padding-right: 4.4375rem !important
	}

	.pb-md-71,
	.py-md-71 {
		padding-bottom: 4.4375rem !important
	}

	.pl-md-71,
	.px-md-71 {
		padding-left: 4.4375rem !important
	}

	.p-md-72 {
		padding: 4.5rem !important
	}

	.pt-md-72,
	.py-md-72 {
		padding-top: 4.5rem !important
	}

	.pr-md-72,
	.px-md-72 {
		padding-right: 4.5rem !important
	}

	.pb-md-72,
	.py-md-72 {
		padding-bottom: 4.5rem !important
	}

	.pl-md-72,
	.px-md-72 {
		padding-left: 4.5rem !important
	}

	.p-md-73 {
		padding: 4.5625rem !important
	}

	.pt-md-73,
	.py-md-73 {
		padding-top: 4.5625rem !important
	}

	.pr-md-73,
	.px-md-73 {
		padding-right: 4.5625rem !important
	}

	.pb-md-73,
	.py-md-73 {
		padding-bottom: 4.5625rem !important
	}

	.pl-md-73,
	.px-md-73 {
		padding-left: 4.5625rem !important
	}

	.p-md-74 {
		padding: 4.625rem !important
	}

	.pt-md-74,
	.py-md-74 {
		padding-top: 4.625rem !important
	}

	.pr-md-74,
	.px-md-74 {
		padding-right: 4.625rem !important
	}

	.pb-md-74,
	.py-md-74 {
		padding-bottom: 4.625rem !important
	}

	.pl-md-74,
	.px-md-74 {
		padding-left: 4.625rem !important
	}

	.p-md-75 {
		padding: 4.6875rem !important
	}

	.pt-md-75,
	.py-md-75 {
		padding-top: 4.6875rem !important
	}

	.pr-md-75,
	.px-md-75 {
		padding-right: 4.6875rem !important
	}

	.pb-md-75,
	.py-md-75 {
		padding-bottom: 4.6875rem !important
	}

	.pl-md-75,
	.px-md-75 {
		padding-left: 4.6875rem !important
	}

	.p-md-76 {
		padding: 4.75rem !important
	}

	.pt-md-76,
	.py-md-76 {
		padding-top: 4.75rem !important
	}

	.pr-md-76,
	.px-md-76 {
		padding-right: 4.75rem !important
	}

	.pb-md-76,
	.py-md-76 {
		padding-bottom: 4.75rem !important
	}

	.pl-md-76,
	.px-md-76 {
		padding-left: 4.75rem !important
	}

	.p-md-77 {
		padding: 4.8125rem !important
	}

	.pt-md-77,
	.py-md-77 {
		padding-top: 4.8125rem !important
	}

	.pr-md-77,
	.px-md-77 {
		padding-right: 4.8125rem !important
	}

	.pb-md-77,
	.py-md-77 {
		padding-bottom: 4.8125rem !important
	}

	.pl-md-77,
	.px-md-77 {
		padding-left: 4.8125rem !important
	}

	.p-md-78 {
		padding: 4.875rem !important
	}

	.pt-md-78,
	.py-md-78 {
		padding-top: 4.875rem !important
	}

	.pr-md-78,
	.px-md-78 {
		padding-right: 4.875rem !important
	}

	.pb-md-78,
	.py-md-78 {
		padding-bottom: 4.875rem !important
	}

	.pl-md-78,
	.px-md-78 {
		padding-left: 4.875rem !important
	}

	.p-md-79 {
		padding: 4.9375rem !important
	}

	.pt-md-79,
	.py-md-79 {
		padding-top: 4.9375rem !important
	}

	.pr-md-79,
	.px-md-79 {
		padding-right: 4.9375rem !important
	}

	.pb-md-79,
	.py-md-79 {
		padding-bottom: 4.9375rem !important
	}

	.pl-md-79,
	.px-md-79 {
		padding-left: 4.9375rem !important
	}

	.p-md-80 {
		padding: 5rem !important
	}

	.pt-md-80,
	.py-md-80 {
		padding-top: 5rem !important
	}

	.pr-md-80,
	.px-md-80 {
		padding-right: 5rem !important
	}

	.pb-md-80,
	.py-md-80 {
		padding-bottom: 5rem !important
	}

	.pl-md-80,
	.px-md-80 {
		padding-left: 5rem !important
	}

	.p-md-81 {
		padding: 5.0625rem !important
	}

	.pt-md-81,
	.py-md-81 {
		padding-top: 5.0625rem !important
	}

	.pr-md-81,
	.px-md-81 {
		padding-right: 5.0625rem !important
	}

	.pb-md-81,
	.py-md-81 {
		padding-bottom: 5.0625rem !important
	}

	.pl-md-81,
	.px-md-81 {
		padding-left: 5.0625rem !important
	}

	.p-md-82 {
		padding: 5.125rem !important
	}

	.pt-md-82,
	.py-md-82 {
		padding-top: 5.125rem !important
	}

	.pr-md-82,
	.px-md-82 {
		padding-right: 5.125rem !important
	}

	.pb-md-82,
	.py-md-82 {
		padding-bottom: 5.125rem !important
	}

	.pl-md-82,
	.px-md-82 {
		padding-left: 5.125rem !important
	}

	.p-md-83 {
		padding: 5.1875rem !important
	}

	.pt-md-83,
	.py-md-83 {
		padding-top: 5.1875rem !important
	}

	.pr-md-83,
	.px-md-83 {
		padding-right: 5.1875rem !important
	}

	.pb-md-83,
	.py-md-83 {
		padding-bottom: 5.1875rem !important
	}

	.pl-md-83,
	.px-md-83 {
		padding-left: 5.1875rem !important
	}

	.p-md-84 {
		padding: 5.25rem !important
	}

	.pt-md-84,
	.py-md-84 {
		padding-top: 5.25rem !important
	}

	.pr-md-84,
	.px-md-84 {
		padding-right: 5.25rem !important
	}

	.pb-md-84,
	.py-md-84 {
		padding-bottom: 5.25rem !important
	}

	.pl-md-84,
	.px-md-84 {
		padding-left: 5.25rem !important
	}

	.p-md-85 {
		padding: 5.3125rem !important
	}

	.pt-md-85,
	.py-md-85 {
		padding-top: 5.3125rem !important
	}

	.pr-md-85,
	.px-md-85 {
		padding-right: 5.3125rem !important
	}

	.pb-md-85,
	.py-md-85 {
		padding-bottom: 5.3125rem !important
	}

	.pl-md-85,
	.px-md-85 {
		padding-left: 5.3125rem !important
	}

	.p-md-86 {
		padding: 5.375rem !important
	}

	.pt-md-86,
	.py-md-86 {
		padding-top: 5.375rem !important
	}

	.pr-md-86,
	.px-md-86 {
		padding-right: 5.375rem !important
	}

	.pb-md-86,
	.py-md-86 {
		padding-bottom: 5.375rem !important
	}

	.pl-md-86,
	.px-md-86 {
		padding-left: 5.375rem !important
	}

	.p-md-87 {
		padding: 5.4375rem !important
	}

	.pt-md-87,
	.py-md-87 {
		padding-top: 5.4375rem !important
	}

	.pr-md-87,
	.px-md-87 {
		padding-right: 5.4375rem !important
	}

	.pb-md-87,
	.py-md-87 {
		padding-bottom: 5.4375rem !important
	}

	.pl-md-87,
	.px-md-87 {
		padding-left: 5.4375rem !important
	}

	.p-md-88 {
		padding: 5.5rem !important
	}

	.pt-md-88,
	.py-md-88 {
		padding-top: 5.5rem !important
	}

	.pr-md-88,
	.px-md-88 {
		padding-right: 5.5rem !important
	}

	.pb-md-88,
	.py-md-88 {
		padding-bottom: 5.5rem !important
	}

	.pl-md-88,
	.px-md-88 {
		padding-left: 5.5rem !important
	}

	.p-md-89 {
		padding: 5.5625rem !important
	}

	.pt-md-89,
	.py-md-89 {
		padding-top: 5.5625rem !important
	}

	.pr-md-89,
	.px-md-89 {
		padding-right: 5.5625rem !important
	}

	.pb-md-89,
	.py-md-89 {
		padding-bottom: 5.5625rem !important
	}

	.pl-md-89,
	.px-md-89 {
		padding-left: 5.5625rem !important
	}

	.p-md-90 {
		padding: 5.625rem !important
	}

	.pt-md-90,
	.py-md-90 {
		padding-top: 5.625rem !important
	}

	.pr-md-90,
	.px-md-90 {
		padding-right: 5.625rem !important
	}

	.pb-md-90,
	.py-md-90 {
		padding-bottom: 5.625rem !important
	}

	.pl-md-90,
	.px-md-90 {
		padding-left: 5.625rem !important
	}

	.p-md-91 {
		padding: 5.6875rem !important
	}

	.pt-md-91,
	.py-md-91 {
		padding-top: 5.6875rem !important
	}

	.pr-md-91,
	.px-md-91 {
		padding-right: 5.6875rem !important
	}

	.pb-md-91,
	.py-md-91 {
		padding-bottom: 5.6875rem !important
	}

	.pl-md-91,
	.px-md-91 {
		padding-left: 5.6875rem !important
	}

	.p-md-92 {
		padding: 5.75rem !important
	}

	.pt-md-92,
	.py-md-92 {
		padding-top: 5.75rem !important
	}

	.pr-md-92,
	.px-md-92 {
		padding-right: 5.75rem !important
	}

	.pb-md-92,
	.py-md-92 {
		padding-bottom: 5.75rem !important
	}

	.pl-md-92,
	.px-md-92 {
		padding-left: 5.75rem !important
	}

	.p-md-93 {
		padding: 5.8125rem !important
	}

	.pt-md-93,
	.py-md-93 {
		padding-top: 5.8125rem !important
	}

	.pr-md-93,
	.px-md-93 {
		padding-right: 5.8125rem !important
	}

	.pb-md-93,
	.py-md-93 {
		padding-bottom: 5.8125rem !important
	}

	.pl-md-93,
	.px-md-93 {
		padding-left: 5.8125rem !important
	}

	.p-md-94 {
		padding: 5.875rem !important
	}

	.pt-md-94,
	.py-md-94 {
		padding-top: 5.875rem !important
	}

	.pr-md-94,
	.px-md-94 {
		padding-right: 5.875rem !important
	}

	.pb-md-94,
	.py-md-94 {
		padding-bottom: 5.875rem !important
	}

	.pl-md-94,
	.px-md-94 {
		padding-left: 5.875rem !important
	}

	.p-md-95 {
		padding: 5.9375rem !important
	}

	.pt-md-95,
	.py-md-95 {
		padding-top: 5.9375rem !important
	}

	.pr-md-95,
	.px-md-95 {
		padding-right: 5.9375rem !important
	}

	.pb-md-95,
	.py-md-95 {
		padding-bottom: 5.9375rem !important
	}

	.pl-md-95,
	.px-md-95 {
		padding-left: 5.9375rem !important
	}

	.p-md-96 {
		padding: 6rem !important
	}

	.pt-md-96,
	.py-md-96 {
		padding-top: 6rem !important
	}

	.pr-md-96,
	.px-md-96 {
		padding-right: 6rem !important
	}

	.pb-md-96,
	.py-md-96 {
		padding-bottom: 6rem !important
	}

	.pl-md-96,
	.px-md-96 {
		padding-left: 6rem !important
	}

	.p-md-97 {
		padding: 6.0625rem !important
	}

	.pt-md-97,
	.py-md-97 {
		padding-top: 6.0625rem !important
	}

	.pr-md-97,
	.px-md-97 {
		padding-right: 6.0625rem !important
	}

	.pb-md-97,
	.py-md-97 {
		padding-bottom: 6.0625rem !important
	}

	.pl-md-97,
	.px-md-97 {
		padding-left: 6.0625rem !important
	}

	.p-md-98 {
		padding: 6.125rem !important
	}

	.pt-md-98,
	.py-md-98 {
		padding-top: 6.125rem !important
	}

	.pr-md-98,
	.px-md-98 {
		padding-right: 6.125rem !important
	}

	.pb-md-98,
	.py-md-98 {
		padding-bottom: 6.125rem !important
	}

	.pl-md-98,
	.px-md-98 {
		padding-left: 6.125rem !important
	}

	.p-md-99 {
		padding: 6.1875rem !important
	}

	.pt-md-99,
	.py-md-99 {
		padding-top: 6.1875rem !important
	}

	.pr-md-99,
	.px-md-99 {
		padding-right: 6.1875rem !important
	}

	.pb-md-99,
	.py-md-99 {
		padding-bottom: 6.1875rem !important
	}

	.pl-md-99,
	.px-md-99 {
		padding-left: 6.1875rem !important
	}

	.p-md-100 {
		padding: 6.25rem !important
	}

	.pt-md-100,
	.py-md-100 {
		padding-top: 6.25rem !important
	}

	.pr-md-100,
	.px-md-100 {
		padding-right: 6.25rem !important
	}

	.pb-md-100,
	.py-md-100 {
		padding-bottom: 6.25rem !important
	}

	.pl-md-100,
	.px-md-100 {
		padding-left: 6.25rem !important
	}

	.p-md-101 {
		padding: 6.3125rem !important
	}

	.pt-md-101,
	.py-md-101 {
		padding-top: 6.3125rem !important
	}

	.pr-md-101,
	.px-md-101 {
		padding-right: 6.3125rem !important
	}

	.pb-md-101,
	.py-md-101 {
		padding-bottom: 6.3125rem !important
	}

	.pl-md-101,
	.px-md-101 {
		padding-left: 6.3125rem !important
	}

	.p-md-102 {
		padding: 6.375rem !important
	}

	.pt-md-102,
	.py-md-102 {
		padding-top: 6.375rem !important
	}

	.pr-md-102,
	.px-md-102 {
		padding-right: 6.375rem !important
	}

	.pb-md-102,
	.py-md-102 {
		padding-bottom: 6.375rem !important
	}

	.pl-md-102,
	.px-md-102 {
		padding-left: 6.375rem !important
	}

	.p-md-103 {
		padding: 6.4375rem !important
	}

	.pt-md-103,
	.py-md-103 {
		padding-top: 6.4375rem !important
	}

	.pr-md-103,
	.px-md-103 {
		padding-right: 6.4375rem !important
	}

	.pb-md-103,
	.py-md-103 {
		padding-bottom: 6.4375rem !important
	}

	.pl-md-103,
	.px-md-103 {
		padding-left: 6.4375rem !important
	}

	.p-md-104 {
		padding: 6.5rem !important
	}

	.pt-md-104,
	.py-md-104 {
		padding-top: 6.5rem !important
	}

	.pr-md-104,
	.px-md-104 {
		padding-right: 6.5rem !important
	}

	.pb-md-104,
	.py-md-104 {
		padding-bottom: 6.5rem !important
	}

	.pl-md-104,
	.px-md-104 {
		padding-left: 6.5rem !important
	}

	.p-md-105 {
		padding: 6.5625rem !important
	}

	.pt-md-105,
	.py-md-105 {
		padding-top: 6.5625rem !important
	}

	.pr-md-105,
	.px-md-105 {
		padding-right: 6.5625rem !important
	}

	.pb-md-105,
	.py-md-105 {
		padding-bottom: 6.5625rem !important
	}

	.pl-md-105,
	.px-md-105 {
		padding-left: 6.5625rem !important
	}

	.p-md-106 {
		padding: 6.625rem !important
	}

	.pt-md-106,
	.py-md-106 {
		padding-top: 6.625rem !important
	}

	.pr-md-106,
	.px-md-106 {
		padding-right: 6.625rem !important
	}

	.pb-md-106,
	.py-md-106 {
		padding-bottom: 6.625rem !important
	}

	.pl-md-106,
	.px-md-106 {
		padding-left: 6.625rem !important
	}

	.p-md-107 {
		padding: 6.6875rem !important
	}

	.pt-md-107,
	.py-md-107 {
		padding-top: 6.6875rem !important
	}

	.pr-md-107,
	.px-md-107 {
		padding-right: 6.6875rem !important
	}

	.pb-md-107,
	.py-md-107 {
		padding-bottom: 6.6875rem !important
	}

	.pl-md-107,
	.px-md-107 {
		padding-left: 6.6875rem !important
	}

	.p-md-108 {
		padding: 6.75rem !important
	}

	.pt-md-108,
	.py-md-108 {
		padding-top: 6.75rem !important
	}

	.pr-md-108,
	.px-md-108 {
		padding-right: 6.75rem !important
	}

	.pb-md-108,
	.py-md-108 {
		padding-bottom: 6.75rem !important
	}

	.pl-md-108,
	.px-md-108 {
		padding-left: 6.75rem !important
	}

	.p-md-109 {
		padding: 6.8125rem !important
	}

	.pt-md-109,
	.py-md-109 {
		padding-top: 6.8125rem !important
	}

	.pr-md-109,
	.px-md-109 {
		padding-right: 6.8125rem !important
	}

	.pb-md-109,
	.py-md-109 {
		padding-bottom: 6.8125rem !important
	}

	.pl-md-109,
	.px-md-109 {
		padding-left: 6.8125rem !important
	}

	.p-md-110 {
		padding: 6.875rem !important
	}

	.pt-md-110,
	.py-md-110 {
		padding-top: 6.875rem !important
	}

	.pr-md-110,
	.px-md-110 {
		padding-right: 6.875rem !important
	}

	.pb-md-110,
	.py-md-110 {
		padding-bottom: 6.875rem !important
	}

	.pl-md-110,
	.px-md-110 {
		padding-left: 6.875rem !important
	}

	.p-md-111 {
		padding: 6.9375rem !important
	}

	.pt-md-111,
	.py-md-111 {
		padding-top: 6.9375rem !important
	}

	.pr-md-111,
	.px-md-111 {
		padding-right: 6.9375rem !important
	}

	.pb-md-111,
	.py-md-111 {
		padding-bottom: 6.9375rem !important
	}

	.pl-md-111,
	.px-md-111 {
		padding-left: 6.9375rem !important
	}

	.p-md-112 {
		padding: 7rem !important
	}

	.pt-md-112,
	.py-md-112 {
		padding-top: 7rem !important
	}

	.pr-md-112,
	.px-md-112 {
		padding-right: 7rem !important
	}

	.pb-md-112,
	.py-md-112 {
		padding-bottom: 7rem !important
	}

	.pl-md-112,
	.px-md-112 {
		padding-left: 7rem !important
	}

	.p-md-113 {
		padding: 7.0625rem !important
	}

	.pt-md-113,
	.py-md-113 {
		padding-top: 7.0625rem !important
	}

	.pr-md-113,
	.px-md-113 {
		padding-right: 7.0625rem !important
	}

	.pb-md-113,
	.py-md-113 {
		padding-bottom: 7.0625rem !important
	}

	.pl-md-113,
	.px-md-113 {
		padding-left: 7.0625rem !important
	}

	.p-md-114 {
		padding: 7.125rem !important
	}

	.pt-md-114,
	.py-md-114 {
		padding-top: 7.125rem !important
	}

	.pr-md-114,
	.px-md-114 {
		padding-right: 7.125rem !important
	}

	.pb-md-114,
	.py-md-114 {
		padding-bottom: 7.125rem !important
	}

	.pl-md-114,
	.px-md-114 {
		padding-left: 7.125rem !important
	}

	.p-md-115 {
		padding: 7.1875rem !important
	}

	.pt-md-115,
	.py-md-115 {
		padding-top: 7.1875rem !important
	}

	.pr-md-115,
	.px-md-115 {
		padding-right: 7.1875rem !important
	}

	.pb-md-115,
	.py-md-115 {
		padding-bottom: 7.1875rem !important
	}

	.pl-md-115,
	.px-md-115 {
		padding-left: 7.1875rem !important
	}

	.p-md-116 {
		padding: 7.25rem !important
	}

	.pt-md-116,
	.py-md-116 {
		padding-top: 7.25rem !important
	}

	.pr-md-116,
	.px-md-116 {
		padding-right: 7.25rem !important
	}

	.pb-md-116,
	.py-md-116 {
		padding-bottom: 7.25rem !important
	}

	.pl-md-116,
	.px-md-116 {
		padding-left: 7.25rem !important
	}

	.p-md-117 {
		padding: 7.3125rem !important
	}

	.pt-md-117,
	.py-md-117 {
		padding-top: 7.3125rem !important
	}

	.pr-md-117,
	.px-md-117 {
		padding-right: 7.3125rem !important
	}

	.pb-md-117,
	.py-md-117 {
		padding-bottom: 7.3125rem !important
	}

	.pl-md-117,
	.px-md-117 {
		padding-left: 7.3125rem !important
	}

	.p-md-118 {
		padding: 7.375rem !important
	}

	.pt-md-118,
	.py-md-118 {
		padding-top: 7.375rem !important
	}

	.pr-md-118,
	.px-md-118 {
		padding-right: 7.375rem !important
	}

	.pb-md-118,
	.py-md-118 {
		padding-bottom: 7.375rem !important
	}

	.pl-md-118,
	.px-md-118 {
		padding-left: 7.375rem !important
	}

	.p-md-119 {
		padding: 7.4375rem !important
	}

	.pt-md-119,
	.py-md-119 {
		padding-top: 7.4375rem !important
	}

	.pr-md-119,
	.px-md-119 {
		padding-right: 7.4375rem !important
	}

	.pb-md-119,
	.py-md-119 {
		padding-bottom: 7.4375rem !important
	}

	.pl-md-119,
	.px-md-119 {
		padding-left: 7.4375rem !important
	}

	.p-md-120 {
		padding: 7.5rem !important
	}

	.pt-md-120,
	.py-md-120 {
		padding-top: 7.5rem !important
	}

	.pr-md-120,
	.px-md-120 {
		padding-right: 7.5rem !important
	}

	.pb-md-120,
	.py-md-120 {
		padding-bottom: 7.5rem !important
	}

	.pl-md-120,
	.px-md-120 {
		padding-left: 7.5rem !important
	}

	.p-md-121 {
		padding: 7.5625rem !important
	}

	.pt-md-121,
	.py-md-121 {
		padding-top: 7.5625rem !important
	}

	.pr-md-121,
	.px-md-121 {
		padding-right: 7.5625rem !important
	}

	.pb-md-121,
	.py-md-121 {
		padding-bottom: 7.5625rem !important
	}

	.pl-md-121,
	.px-md-121 {
		padding-left: 7.5625rem !important
	}

	.p-md-122 {
		padding: 7.625rem !important
	}

	.pt-md-122,
	.py-md-122 {
		padding-top: 7.625rem !important
	}

	.pr-md-122,
	.px-md-122 {
		padding-right: 7.625rem !important
	}

	.pb-md-122,
	.py-md-122 {
		padding-bottom: 7.625rem !important
	}

	.pl-md-122,
	.px-md-122 {
		padding-left: 7.625rem !important
	}

	.p-md-123 {
		padding: 7.6875rem !important
	}

	.pt-md-123,
	.py-md-123 {
		padding-top: 7.6875rem !important
	}

	.pr-md-123,
	.px-md-123 {
		padding-right: 7.6875rem !important
	}

	.pb-md-123,
	.py-md-123 {
		padding-bottom: 7.6875rem !important
	}

	.pl-md-123,
	.px-md-123 {
		padding-left: 7.6875rem !important
	}

	.p-md-124 {
		padding: 7.75rem !important
	}

	.pt-md-124,
	.py-md-124 {
		padding-top: 7.75rem !important
	}

	.pr-md-124,
	.px-md-124 {
		padding-right: 7.75rem !important
	}

	.pb-md-124,
	.py-md-124 {
		padding-bottom: 7.75rem !important
	}

	.pl-md-124,
	.px-md-124 {
		padding-left: 7.75rem !important
	}

	.p-md-125 {
		padding: 7.8125rem !important
	}

	.pt-md-125,
	.py-md-125 {
		padding-top: 7.8125rem !important
	}

	.pr-md-125,
	.px-md-125 {
		padding-right: 7.8125rem !important
	}

	.pb-md-125,
	.py-md-125 {
		padding-bottom: 7.8125rem !important
	}

	.pl-md-125,
	.px-md-125 {
		padding-left: 7.8125rem !important
	}

	.p-md-126 {
		padding: 7.875rem !important
	}

	.pt-md-126,
	.py-md-126 {
		padding-top: 7.875rem !important
	}

	.pr-md-126,
	.px-md-126 {
		padding-right: 7.875rem !important
	}

	.pb-md-126,
	.py-md-126 {
		padding-bottom: 7.875rem !important
	}

	.pl-md-126,
	.px-md-126 {
		padding-left: 7.875rem !important
	}

	.p-md-127 {
		padding: 7.9375rem !important
	}

	.pt-md-127,
	.py-md-127 {
		padding-top: 7.9375rem !important
	}

	.pr-md-127,
	.px-md-127 {
		padding-right: 7.9375rem !important
	}

	.pb-md-127,
	.py-md-127 {
		padding-bottom: 7.9375rem !important
	}

	.pl-md-127,
	.px-md-127 {
		padding-left: 7.9375rem !important
	}

	.p-md-128 {
		padding: 8rem !important
	}

	.pt-md-128,
	.py-md-128 {
		padding-top: 8rem !important
	}

	.pr-md-128,
	.px-md-128 {
		padding-right: 8rem !important
	}

	.pb-md-128,
	.py-md-128 {
		padding-bottom: 8rem !important
	}

	.pl-md-128,
	.px-md-128 {
		padding-left: 8rem !important
	}

	.p-md-129 {
		padding: 8.0625rem !important
	}

	.pt-md-129,
	.py-md-129 {
		padding-top: 8.0625rem !important
	}

	.pr-md-129,
	.px-md-129 {
		padding-right: 8.0625rem !important
	}

	.pb-md-129,
	.py-md-129 {
		padding-bottom: 8.0625rem !important
	}

	.pl-md-129,
	.px-md-129 {
		padding-left: 8.0625rem !important
	}

	.p-md-130 {
		padding: 8.125rem !important
	}

	.pt-md-130,
	.py-md-130 {
		padding-top: 8.125rem !important
	}

	.pr-md-130,
	.px-md-130 {
		padding-right: 8.125rem !important
	}

	.pb-md-130,
	.py-md-130 {
		padding-bottom: 8.125rem !important
	}

	.pl-md-130,
	.px-md-130 {
		padding-left: 8.125rem !important
	}

	.p-md-131 {
		padding: 8.1875rem !important
	}

	.pt-md-131,
	.py-md-131 {
		padding-top: 8.1875rem !important
	}

	.pr-md-131,
	.px-md-131 {
		padding-right: 8.1875rem !important
	}

	.pb-md-131,
	.py-md-131 {
		padding-bottom: 8.1875rem !important
	}

	.pl-md-131,
	.px-md-131 {
		padding-left: 8.1875rem !important
	}

	.p-md-132 {
		padding: 8.25rem !important
	}

	.pt-md-132,
	.py-md-132 {
		padding-top: 8.25rem !important
	}

	.pr-md-132,
	.px-md-132 {
		padding-right: 8.25rem !important
	}

	.pb-md-132,
	.py-md-132 {
		padding-bottom: 8.25rem !important
	}

	.pl-md-132,
	.px-md-132 {
		padding-left: 8.25rem !important
	}

	.p-md-133 {
		padding: 8.3125rem !important
	}

	.pt-md-133,
	.py-md-133 {
		padding-top: 8.3125rem !important
	}

	.pr-md-133,
	.px-md-133 {
		padding-right: 8.3125rem !important
	}

	.pb-md-133,
	.py-md-133 {
		padding-bottom: 8.3125rem !important
	}

	.pl-md-133,
	.px-md-133 {
		padding-left: 8.3125rem !important
	}

	.p-md-134 {
		padding: 8.375rem !important
	}

	.pt-md-134,
	.py-md-134 {
		padding-top: 8.375rem !important
	}

	.pr-md-134,
	.px-md-134 {
		padding-right: 8.375rem !important
	}

	.pb-md-134,
	.py-md-134 {
		padding-bottom: 8.375rem !important
	}

	.pl-md-134,
	.px-md-134 {
		padding-left: 8.375rem !important
	}

	.p-md-135 {
		padding: 8.4375rem !important
	}

	.pt-md-135,
	.py-md-135 {
		padding-top: 8.4375rem !important
	}

	.pr-md-135,
	.px-md-135 {
		padding-right: 8.4375rem !important
	}

	.pb-md-135,
	.py-md-135 {
		padding-bottom: 8.4375rem !important
	}

	.pl-md-135,
	.px-md-135 {
		padding-left: 8.4375rem !important
	}

	.p-md-136 {
		padding: 8.5rem !important
	}

	.pt-md-136,
	.py-md-136 {
		padding-top: 8.5rem !important
	}

	.pr-md-136,
	.px-md-136 {
		padding-right: 8.5rem !important
	}

	.pb-md-136,
	.py-md-136 {
		padding-bottom: 8.5rem !important
	}

	.pl-md-136,
	.px-md-136 {
		padding-left: 8.5rem !important
	}

	.p-md-137 {
		padding: 8.5625rem !important
	}

	.pt-md-137,
	.py-md-137 {
		padding-top: 8.5625rem !important
	}

	.pr-md-137,
	.px-md-137 {
		padding-right: 8.5625rem !important
	}

	.pb-md-137,
	.py-md-137 {
		padding-bottom: 8.5625rem !important
	}

	.pl-md-137,
	.px-md-137 {
		padding-left: 8.5625rem !important
	}

	.p-md-138 {
		padding: 8.625rem !important
	}

	.pt-md-138,
	.py-md-138 {
		padding-top: 8.625rem !important
	}

	.pr-md-138,
	.px-md-138 {
		padding-right: 8.625rem !important
	}

	.pb-md-138,
	.py-md-138 {
		padding-bottom: 8.625rem !important
	}

	.pl-md-138,
	.px-md-138 {
		padding-left: 8.625rem !important
	}

	.p-md-139 {
		padding: 8.6875rem !important
	}

	.pt-md-139,
	.py-md-139 {
		padding-top: 8.6875rem !important
	}

	.pr-md-139,
	.px-md-139 {
		padding-right: 8.6875rem !important
	}

	.pb-md-139,
	.py-md-139 {
		padding-bottom: 8.6875rem !important
	}

	.pl-md-139,
	.px-md-139 {
		padding-left: 8.6875rem !important
	}

	.p-md-140 {
		padding: 8.75rem !important
	}

	.pt-md-140,
	.py-md-140 {
		padding-top: 8.75rem !important
	}

	.pr-md-140,
	.px-md-140 {
		padding-right: 8.75rem !important
	}

	.pb-md-140,
	.py-md-140 {
		padding-bottom: 8.75rem !important
	}

	.pl-md-140,
	.px-md-140 {
		padding-left: 8.75rem !important
	}

	.p-md-141 {
		padding: 8.8125rem !important
	}

	.pt-md-141,
	.py-md-141 {
		padding-top: 8.8125rem !important
	}

	.pr-md-141,
	.px-md-141 {
		padding-right: 8.8125rem !important
	}

	.pb-md-141,
	.py-md-141 {
		padding-bottom: 8.8125rem !important
	}

	.pl-md-141,
	.px-md-141 {
		padding-left: 8.8125rem !important
	}

	.p-md-142 {
		padding: 8.875rem !important
	}

	.pt-md-142,
	.py-md-142 {
		padding-top: 8.875rem !important
	}

	.pr-md-142,
	.px-md-142 {
		padding-right: 8.875rem !important
	}

	.pb-md-142,
	.py-md-142 {
		padding-bottom: 8.875rem !important
	}

	.pl-md-142,
	.px-md-142 {
		padding-left: 8.875rem !important
	}

	.p-md-143 {
		padding: 8.9375rem !important
	}

	.pt-md-143,
	.py-md-143 {
		padding-top: 8.9375rem !important
	}

	.pr-md-143,
	.px-md-143 {
		padding-right: 8.9375rem !important
	}

	.pb-md-143,
	.py-md-143 {
		padding-bottom: 8.9375rem !important
	}

	.pl-md-143,
	.px-md-143 {
		padding-left: 8.9375rem !important
	}

	.p-md-144 {
		padding: 9rem !important
	}

	.pt-md-144,
	.py-md-144 {
		padding-top: 9rem !important
	}

	.pr-md-144,
	.px-md-144 {
		padding-right: 9rem !important
	}

	.pb-md-144,
	.py-md-144 {
		padding-bottom: 9rem !important
	}

	.pl-md-144,
	.px-md-144 {
		padding-left: 9rem !important
	}

	.p-md-145 {
		padding: 9.0625rem !important
	}

	.pt-md-145,
	.py-md-145 {
		padding-top: 9.0625rem !important
	}

	.pr-md-145,
	.px-md-145 {
		padding-right: 9.0625rem !important
	}

	.pb-md-145,
	.py-md-145 {
		padding-bottom: 9.0625rem !important
	}

	.pl-md-145,
	.px-md-145 {
		padding-left: 9.0625rem !important
	}

	.p-md-146 {
		padding: 9.125rem !important
	}

	.pt-md-146,
	.py-md-146 {
		padding-top: 9.125rem !important
	}

	.pr-md-146,
	.px-md-146 {
		padding-right: 9.125rem !important
	}

	.pb-md-146,
	.py-md-146 {
		padding-bottom: 9.125rem !important
	}

	.pl-md-146,
	.px-md-146 {
		padding-left: 9.125rem !important
	}

	.p-md-147 {
		padding: 9.1875rem !important
	}

	.pt-md-147,
	.py-md-147 {
		padding-top: 9.1875rem !important
	}

	.pr-md-147,
	.px-md-147 {
		padding-right: 9.1875rem !important
	}

	.pb-md-147,
	.py-md-147 {
		padding-bottom: 9.1875rem !important
	}

	.pl-md-147,
	.px-md-147 {
		padding-left: 9.1875rem !important
	}

	.p-md-148 {
		padding: 9.25rem !important
	}

	.pt-md-148,
	.py-md-148 {
		padding-top: 9.25rem !important
	}

	.pr-md-148,
	.px-md-148 {
		padding-right: 9.25rem !important
	}

	.pb-md-148,
	.py-md-148 {
		padding-bottom: 9.25rem !important
	}

	.pl-md-148,
	.px-md-148 {
		padding-left: 9.25rem !important
	}

	.p-md-149 {
		padding: 9.3125rem !important
	}

	.pt-md-149,
	.py-md-149 {
		padding-top: 9.3125rem !important
	}

	.pr-md-149,
	.px-md-149 {
		padding-right: 9.3125rem !important
	}

	.pb-md-149,
	.py-md-149 {
		padding-bottom: 9.3125rem !important
	}

	.pl-md-149,
	.px-md-149 {
		padding-left: 9.3125rem !important
	}

	.p-md-150 {
		padding: 9.375rem !important
	}

	.pt-md-150,
	.py-md-150 {
		padding-top: 9.375rem !important
	}

	.pr-md-150,
	.px-md-150 {
		padding-right: 9.375rem !important
	}

	.pb-md-150,
	.py-md-150 {
		padding-bottom: 9.375rem !important
	}

	.pl-md-150,
	.px-md-150 {
		padding-left: 9.375rem !important
	}

	.p-md-151 {
		padding: 9.4375rem !important
	}

	.pt-md-151,
	.py-md-151 {
		padding-top: 9.4375rem !important
	}

	.pr-md-151,
	.px-md-151 {
		padding-right: 9.4375rem !important
	}

	.pb-md-151,
	.py-md-151 {
		padding-bottom: 9.4375rem !important
	}

	.pl-md-151,
	.px-md-151 {
		padding-left: 9.4375rem !important
	}

	.p-md-152 {
		padding: 9.5rem !important
	}

	.pt-md-152,
	.py-md-152 {
		padding-top: 9.5rem !important
	}

	.pr-md-152,
	.px-md-152 {
		padding-right: 9.5rem !important
	}

	.pb-md-152,
	.py-md-152 {
		padding-bottom: 9.5rem !important
	}

	.pl-md-152,
	.px-md-152 {
		padding-left: 9.5rem !important
	}

	.p-md-153 {
		padding: 9.5625rem !important
	}

	.pt-md-153,
	.py-md-153 {
		padding-top: 9.5625rem !important
	}

	.pr-md-153,
	.px-md-153 {
		padding-right: 9.5625rem !important
	}

	.pb-md-153,
	.py-md-153 {
		padding-bottom: 9.5625rem !important
	}

	.pl-md-153,
	.px-md-153 {
		padding-left: 9.5625rem !important
	}

	.p-md-154 {
		padding: 9.625rem !important
	}

	.pt-md-154,
	.py-md-154 {
		padding-top: 9.625rem !important
	}

	.pr-md-154,
	.px-md-154 {
		padding-right: 9.625rem !important
	}

	.pb-md-154,
	.py-md-154 {
		padding-bottom: 9.625rem !important
	}

	.pl-md-154,
	.px-md-154 {
		padding-left: 9.625rem !important
	}

	.p-md-155 {
		padding: 9.6875rem !important
	}

	.pt-md-155,
	.py-md-155 {
		padding-top: 9.6875rem !important
	}

	.pr-md-155,
	.px-md-155 {
		padding-right: 9.6875rem !important
	}

	.pb-md-155,
	.py-md-155 {
		padding-bottom: 9.6875rem !important
	}

	.pl-md-155,
	.px-md-155 {
		padding-left: 9.6875rem !important
	}

	.p-md-156 {
		padding: 9.75rem !important
	}

	.pt-md-156,
	.py-md-156 {
		padding-top: 9.75rem !important
	}

	.pr-md-156,
	.px-md-156 {
		padding-right: 9.75rem !important
	}

	.pb-md-156,
	.py-md-156 {
		padding-bottom: 9.75rem !important
	}

	.pl-md-156,
	.px-md-156 {
		padding-left: 9.75rem !important
	}

	.p-md-157 {
		padding: 9.8125rem !important
	}

	.pt-md-157,
	.py-md-157 {
		padding-top: 9.8125rem !important
	}

	.pr-md-157,
	.px-md-157 {
		padding-right: 9.8125rem !important
	}

	.pb-md-157,
	.py-md-157 {
		padding-bottom: 9.8125rem !important
	}

	.pl-md-157,
	.px-md-157 {
		padding-left: 9.8125rem !important
	}

	.p-md-158 {
		padding: 9.875rem !important
	}

	.pt-md-158,
	.py-md-158 {
		padding-top: 9.875rem !important
	}

	.pr-md-158,
	.px-md-158 {
		padding-right: 9.875rem !important
	}

	.pb-md-158,
	.py-md-158 {
		padding-bottom: 9.875rem !important
	}

	.pl-md-158,
	.px-md-158 {
		padding-left: 9.875rem !important
	}

	.p-md-159 {
		padding: 9.9375rem !important
	}

	.pt-md-159,
	.py-md-159 {
		padding-top: 9.9375rem !important
	}

	.pr-md-159,
	.px-md-159 {
		padding-right: 9.9375rem !important
	}

	.pb-md-159,
	.py-md-159 {
		padding-bottom: 9.9375rem !important
	}

	.pl-md-159,
	.px-md-159 {
		padding-left: 9.9375rem !important
	}

	.p-md-160 {
		padding: 10rem !important
	}

	.pt-md-160,
	.py-md-160 {
		padding-top: 10rem !important
	}

	.pr-md-160,
	.px-md-160 {
		padding-right: 10rem !important
	}

	.pb-md-160,
	.py-md-160 {
		padding-bottom: 10rem !important
	}

	.pl-md-160,
	.px-md-160 {
		padding-left: 10rem !important
	}

	.p-md-161 {
		padding: 10.0625rem !important
	}

	.pt-md-161,
	.py-md-161 {
		padding-top: 10.0625rem !important
	}

	.pr-md-161,
	.px-md-161 {
		padding-right: 10.0625rem !important
	}

	.pb-md-161,
	.py-md-161 {
		padding-bottom: 10.0625rem !important
	}

	.pl-md-161,
	.px-md-161 {
		padding-left: 10.0625rem !important
	}

	.p-md-162 {
		padding: 10.125rem !important
	}

	.pt-md-162,
	.py-md-162 {
		padding-top: 10.125rem !important
	}

	.pr-md-162,
	.px-md-162 {
		padding-right: 10.125rem !important
	}

	.pb-md-162,
	.py-md-162 {
		padding-bottom: 10.125rem !important
	}

	.pl-md-162,
	.px-md-162 {
		padding-left: 10.125rem !important
	}

	.p-md-163 {
		padding: 10.1875rem !important
	}

	.pt-md-163,
	.py-md-163 {
		padding-top: 10.1875rem !important
	}

	.pr-md-163,
	.px-md-163 {
		padding-right: 10.1875rem !important
	}

	.pb-md-163,
	.py-md-163 {
		padding-bottom: 10.1875rem !important
	}

	.pl-md-163,
	.px-md-163 {
		padding-left: 10.1875rem !important
	}

	.p-md-164 {
		padding: 10.25rem !important
	}

	.pt-md-164,
	.py-md-164 {
		padding-top: 10.25rem !important
	}

	.pr-md-164,
	.px-md-164 {
		padding-right: 10.25rem !important
	}

	.pb-md-164,
	.py-md-164 {
		padding-bottom: 10.25rem !important
	}

	.pl-md-164,
	.px-md-164 {
		padding-left: 10.25rem !important
	}

	.p-md-165 {
		padding: 10.3125rem !important
	}

	.pt-md-165,
	.py-md-165 {
		padding-top: 10.3125rem !important
	}

	.pr-md-165,
	.px-md-165 {
		padding-right: 10.3125rem !important
	}

	.pb-md-165,
	.py-md-165 {
		padding-bottom: 10.3125rem !important
	}

	.pl-md-165,
	.px-md-165 {
		padding-left: 10.3125rem !important
	}

	.p-md-166 {
		padding: 10.375rem !important
	}

	.pt-md-166,
	.py-md-166 {
		padding-top: 10.375rem !important
	}

	.pr-md-166,
	.px-md-166 {
		padding-right: 10.375rem !important
	}

	.pb-md-166,
	.py-md-166 {
		padding-bottom: 10.375rem !important
	}

	.pl-md-166,
	.px-md-166 {
		padding-left: 10.375rem !important
	}

	.p-md-167 {
		padding: 10.4375rem !important
	}

	.pt-md-167,
	.py-md-167 {
		padding-top: 10.4375rem !important
	}

	.pr-md-167,
	.px-md-167 {
		padding-right: 10.4375rem !important
	}

	.pb-md-167,
	.py-md-167 {
		padding-bottom: 10.4375rem !important
	}

	.pl-md-167,
	.px-md-167 {
		padding-left: 10.4375rem !important
	}

	.p-md-168 {
		padding: 10.5rem !important
	}

	.pt-md-168,
	.py-md-168 {
		padding-top: 10.5rem !important
	}

	.pr-md-168,
	.px-md-168 {
		padding-right: 10.5rem !important
	}

	.pb-md-168,
	.py-md-168 {
		padding-bottom: 10.5rem !important
	}

	.pl-md-168,
	.px-md-168 {
		padding-left: 10.5rem !important
	}

	.p-md-169 {
		padding: 10.5625rem !important
	}

	.pt-md-169,
	.py-md-169 {
		padding-top: 10.5625rem !important
	}

	.pr-md-169,
	.px-md-169 {
		padding-right: 10.5625rem !important
	}

	.pb-md-169,
	.py-md-169 {
		padding-bottom: 10.5625rem !important
	}

	.pl-md-169,
	.px-md-169 {
		padding-left: 10.5625rem !important
	}

	.p-md-170 {
		padding: 10.625rem !important
	}

	.pt-md-170,
	.py-md-170 {
		padding-top: 10.625rem !important
	}

	.pr-md-170,
	.px-md-170 {
		padding-right: 10.625rem !important
	}

	.pb-md-170,
	.py-md-170 {
		padding-bottom: 10.625rem !important
	}

	.pl-md-170,
	.px-md-170 {
		padding-left: 10.625rem !important
	}

	.p-md-171 {
		padding: 10.6875rem !important
	}

	.pt-md-171,
	.py-md-171 {
		padding-top: 10.6875rem !important
	}

	.pr-md-171,
	.px-md-171 {
		padding-right: 10.6875rem !important
	}

	.pb-md-171,
	.py-md-171 {
		padding-bottom: 10.6875rem !important
	}

	.pl-md-171,
	.px-md-171 {
		padding-left: 10.6875rem !important
	}

	.p-md-172 {
		padding: 10.75rem !important
	}

	.pt-md-172,
	.py-md-172 {
		padding-top: 10.75rem !important
	}

	.pr-md-172,
	.px-md-172 {
		padding-right: 10.75rem !important
	}

	.pb-md-172,
	.py-md-172 {
		padding-bottom: 10.75rem !important
	}

	.pl-md-172,
	.px-md-172 {
		padding-left: 10.75rem !important
	}

	.p-md-173 {
		padding: 10.8125rem !important
	}

	.pt-md-173,
	.py-md-173 {
		padding-top: 10.8125rem !important
	}

	.pr-md-173,
	.px-md-173 {
		padding-right: 10.8125rem !important
	}

	.pb-md-173,
	.py-md-173 {
		padding-bottom: 10.8125rem !important
	}

	.pl-md-173,
	.px-md-173 {
		padding-left: 10.8125rem !important
	}

	.p-md-174 {
		padding: 10.875rem !important
	}

	.pt-md-174,
	.py-md-174 {
		padding-top: 10.875rem !important
	}

	.pr-md-174,
	.px-md-174 {
		padding-right: 10.875rem !important
	}

	.pb-md-174,
	.py-md-174 {
		padding-bottom: 10.875rem !important
	}

	.pl-md-174,
	.px-md-174 {
		padding-left: 10.875rem !important
	}

	.p-md-175 {
		padding: 10.9375rem !important
	}

	.pt-md-175,
	.py-md-175 {
		padding-top: 10.9375rem !important
	}

	.pr-md-175,
	.px-md-175 {
		padding-right: 10.9375rem !important
	}

	.pb-md-175,
	.py-md-175 {
		padding-bottom: 10.9375rem !important
	}

	.pl-md-175,
	.px-md-175 {
		padding-left: 10.9375rem !important
	}

	.p-md-176 {
		padding: 11rem !important
	}

	.pt-md-176,
	.py-md-176 {
		padding-top: 11rem !important
	}

	.pr-md-176,
	.px-md-176 {
		padding-right: 11rem !important
	}

	.pb-md-176,
	.py-md-176 {
		padding-bottom: 11rem !important
	}

	.pl-md-176,
	.px-md-176 {
		padding-left: 11rem !important
	}

	.p-md-177 {
		padding: 11.0625rem !important
	}

	.pt-md-177,
	.py-md-177 {
		padding-top: 11.0625rem !important
	}

	.pr-md-177,
	.px-md-177 {
		padding-right: 11.0625rem !important
	}

	.pb-md-177,
	.py-md-177 {
		padding-bottom: 11.0625rem !important
	}

	.pl-md-177,
	.px-md-177 {
		padding-left: 11.0625rem !important
	}

	.p-md-178 {
		padding: 11.125rem !important
	}

	.pt-md-178,
	.py-md-178 {
		padding-top: 11.125rem !important
	}

	.pr-md-178,
	.px-md-178 {
		padding-right: 11.125rem !important
	}

	.pb-md-178,
	.py-md-178 {
		padding-bottom: 11.125rem !important
	}

	.pl-md-178,
	.px-md-178 {
		padding-left: 11.125rem !important
	}

	.p-md-179 {
		padding: 11.1875rem !important
	}

	.pt-md-179,
	.py-md-179 {
		padding-top: 11.1875rem !important
	}

	.pr-md-179,
	.px-md-179 {
		padding-right: 11.1875rem !important
	}

	.pb-md-179,
	.py-md-179 {
		padding-bottom: 11.1875rem !important
	}

	.pl-md-179,
	.px-md-179 {
		padding-left: 11.1875rem !important
	}

	.p-md-180 {
		padding: 11.25rem !important
	}

	.pt-md-180,
	.py-md-180 {
		padding-top: 11.25rem !important
	}

	.pr-md-180,
	.px-md-180 {
		padding-right: 11.25rem !important
	}

	.pb-md-180,
	.py-md-180 {
		padding-bottom: 11.25rem !important
	}

	.pl-md-180,
	.px-md-180 {
		padding-left: 11.25rem !important
	}

	.p-md-181 {
		padding: 11.3125rem !important
	}

	.pt-md-181,
	.py-md-181 {
		padding-top: 11.3125rem !important
	}

	.pr-md-181,
	.px-md-181 {
		padding-right: 11.3125rem !important
	}

	.pb-md-181,
	.py-md-181 {
		padding-bottom: 11.3125rem !important
	}

	.pl-md-181,
	.px-md-181 {
		padding-left: 11.3125rem !important
	}

	.p-md-182 {
		padding: 11.375rem !important
	}

	.pt-md-182,
	.py-md-182 {
		padding-top: 11.375rem !important
	}

	.pr-md-182,
	.px-md-182 {
		padding-right: 11.375rem !important
	}

	.pb-md-182,
	.py-md-182 {
		padding-bottom: 11.375rem !important
	}

	.pl-md-182,
	.px-md-182 {
		padding-left: 11.375rem !important
	}

	.p-md-183 {
		padding: 11.4375rem !important
	}

	.pt-md-183,
	.py-md-183 {
		padding-top: 11.4375rem !important
	}

	.pr-md-183,
	.px-md-183 {
		padding-right: 11.4375rem !important
	}

	.pb-md-183,
	.py-md-183 {
		padding-bottom: 11.4375rem !important
	}

	.pl-md-183,
	.px-md-183 {
		padding-left: 11.4375rem !important
	}

	.p-md-184 {
		padding: 11.5rem !important
	}

	.pt-md-184,
	.py-md-184 {
		padding-top: 11.5rem !important
	}

	.pr-md-184,
	.px-md-184 {
		padding-right: 11.5rem !important
	}

	.pb-md-184,
	.py-md-184 {
		padding-bottom: 11.5rem !important
	}

	.pl-md-184,
	.px-md-184 {
		padding-left: 11.5rem !important
	}

	.p-md-185 {
		padding: 11.5625rem !important
	}

	.pt-md-185,
	.py-md-185 {
		padding-top: 11.5625rem !important
	}

	.pr-md-185,
	.px-md-185 {
		padding-right: 11.5625rem !important
	}

	.pb-md-185,
	.py-md-185 {
		padding-bottom: 11.5625rem !important
	}

	.pl-md-185,
	.px-md-185 {
		padding-left: 11.5625rem !important
	}

	.p-md-186 {
		padding: 11.625rem !important
	}

	.pt-md-186,
	.py-md-186 {
		padding-top: 11.625rem !important
	}

	.pr-md-186,
	.px-md-186 {
		padding-right: 11.625rem !important
	}

	.pb-md-186,
	.py-md-186 {
		padding-bottom: 11.625rem !important
	}

	.pl-md-186,
	.px-md-186 {
		padding-left: 11.625rem !important
	}

	.p-md-187 {
		padding: 11.6875rem !important
	}

	.pt-md-187,
	.py-md-187 {
		padding-top: 11.6875rem !important
	}

	.pr-md-187,
	.px-md-187 {
		padding-right: 11.6875rem !important
	}

	.pb-md-187,
	.py-md-187 {
		padding-bottom: 11.6875rem !important
	}

	.pl-md-187,
	.px-md-187 {
		padding-left: 11.6875rem !important
	}

	.p-md-188 {
		padding: 11.75rem !important
	}

	.pt-md-188,
	.py-md-188 {
		padding-top: 11.75rem !important
	}

	.pr-md-188,
	.px-md-188 {
		padding-right: 11.75rem !important
	}

	.pb-md-188,
	.py-md-188 {
		padding-bottom: 11.75rem !important
	}

	.pl-md-188,
	.px-md-188 {
		padding-left: 11.75rem !important
	}

	.p-md-189 {
		padding: 11.8125rem !important
	}

	.pt-md-189,
	.py-md-189 {
		padding-top: 11.8125rem !important
	}

	.pr-md-189,
	.px-md-189 {
		padding-right: 11.8125rem !important
	}

	.pb-md-189,
	.py-md-189 {
		padding-bottom: 11.8125rem !important
	}

	.pl-md-189,
	.px-md-189 {
		padding-left: 11.8125rem !important
	}

	.p-md-190 {
		padding: 11.875rem !important
	}

	.pt-md-190,
	.py-md-190 {
		padding-top: 11.875rem !important
	}

	.pr-md-190,
	.px-md-190 {
		padding-right: 11.875rem !important
	}

	.pb-md-190,
	.py-md-190 {
		padding-bottom: 11.875rem !important
	}

	.pl-md-190,
	.px-md-190 {
		padding-left: 11.875rem !important
	}

	.p-md-191 {
		padding: 11.9375rem !important
	}

	.pt-md-191,
	.py-md-191 {
		padding-top: 11.9375rem !important
	}

	.pr-md-191,
	.px-md-191 {
		padding-right: 11.9375rem !important
	}

	.pb-md-191,
	.py-md-191 {
		padding-bottom: 11.9375rem !important
	}

	.pl-md-191,
	.px-md-191 {
		padding-left: 11.9375rem !important
	}

	.p-md-192 {
		padding: 12rem !important
	}

	.pt-md-192,
	.py-md-192 {
		padding-top: 12rem !important
	}

	.pr-md-192,
	.px-md-192 {
		padding-right: 12rem !important
	}

	.pb-md-192,
	.py-md-192 {
		padding-bottom: 12rem !important
	}

	.pl-md-192,
	.px-md-192 {
		padding-left: 12rem !important
	}

	.p-md-193 {
		padding: 12.0625rem !important
	}

	.pt-md-193,
	.py-md-193 {
		padding-top: 12.0625rem !important
	}

	.pr-md-193,
	.px-md-193 {
		padding-right: 12.0625rem !important
	}

	.pb-md-193,
	.py-md-193 {
		padding-bottom: 12.0625rem !important
	}

	.pl-md-193,
	.px-md-193 {
		padding-left: 12.0625rem !important
	}

	.p-md-194 {
		padding: 12.125rem !important
	}

	.pt-md-194,
	.py-md-194 {
		padding-top: 12.125rem !important
	}

	.pr-md-194,
	.px-md-194 {
		padding-right: 12.125rem !important
	}

	.pb-md-194,
	.py-md-194 {
		padding-bottom: 12.125rem !important
	}

	.pl-md-194,
	.px-md-194 {
		padding-left: 12.125rem !important
	}

	.p-md-195 {
		padding: 12.1875rem !important
	}

	.pt-md-195,
	.py-md-195 {
		padding-top: 12.1875rem !important
	}

	.pr-md-195,
	.px-md-195 {
		padding-right: 12.1875rem !important
	}

	.pb-md-195,
	.py-md-195 {
		padding-bottom: 12.1875rem !important
	}

	.pl-md-195,
	.px-md-195 {
		padding-left: 12.1875rem !important
	}

	.p-md-196 {
		padding: 12.25rem !important
	}

	.pt-md-196,
	.py-md-196 {
		padding-top: 12.25rem !important
	}

	.pr-md-196,
	.px-md-196 {
		padding-right: 12.25rem !important
	}

	.pb-md-196,
	.py-md-196 {
		padding-bottom: 12.25rem !important
	}

	.pl-md-196,
	.px-md-196 {
		padding-left: 12.25rem !important
	}

	.p-md-197 {
		padding: 12.3125rem !important
	}

	.pt-md-197,
	.py-md-197 {
		padding-top: 12.3125rem !important
	}

	.pr-md-197,
	.px-md-197 {
		padding-right: 12.3125rem !important
	}

	.pb-md-197,
	.py-md-197 {
		padding-bottom: 12.3125rem !important
	}

	.pl-md-197,
	.px-md-197 {
		padding-left: 12.3125rem !important
	}

	.p-md-198 {
		padding: 12.375rem !important
	}

	.pt-md-198,
	.py-md-198 {
		padding-top: 12.375rem !important
	}

	.pr-md-198,
	.px-md-198 {
		padding-right: 12.375rem !important
	}

	.pb-md-198,
	.py-md-198 {
		padding-bottom: 12.375rem !important
	}

	.pl-md-198,
	.px-md-198 {
		padding-left: 12.375rem !important
	}

	.p-md-199 {
		padding: 12.4375rem !important
	}

	.pt-md-199,
	.py-md-199 {
		padding-top: 12.4375rem !important
	}

	.pr-md-199,
	.px-md-199 {
		padding-right: 12.4375rem !important
	}

	.pb-md-199,
	.py-md-199 {
		padding-bottom: 12.4375rem !important
	}

	.pl-md-199,
	.px-md-199 {
		padding-left: 12.4375rem !important
	}

	.p-md-200 {
		padding: 12.5rem !important
	}

	.pt-md-200,
	.py-md-200 {
		padding-top: 12.5rem !important
	}

	.pr-md-200,
	.px-md-200 {
		padding-right: 12.5rem !important
	}

	.pb-md-200,
	.py-md-200 {
		padding-bottom: 12.5rem !important
	}

	.pl-md-200,
	.px-md-200 {
		padding-left: 12.5rem !important
	}

	.p-md-auto {
		padding: auto !important
	}

	.pt-md-auto,
	.py-md-auto {
		padding-top: auto !important
	}

	.pr-md-auto,
	.px-md-auto {
		padding-right: auto !important
	}

	.pb-md-auto,
	.py-md-auto {
		padding-bottom: auto !important
	}

	.pl-md-auto,
	.px-md-auto {
		padding-left: auto !important
	}

	.m-md-auto {
		margin: auto !important
	}

	.mt-md-auto,
	.my-md-auto {
		margin-top: auto !important
	}

	.mr-md-auto,
	.mx-md-auto {
		margin-right: auto !important
	}

	.mb-md-auto,
	.my-md-auto {
		margin-bottom: auto !important
	}

	.ml-md-auto,
	.mx-md-auto {
		margin-left: auto !important
	}
}

@media (min-width:992px) {
	.m-lg-0 {
		margin: 0 !important
	}

	.mt-lg-0,
	.my-lg-0 {
		margin-top: 0 !important
	}

	.mr-lg-0,
	.mx-lg-0 {
		margin-right: 0 !important
	}

	.mb-lg-0,
	.my-lg-0 {
		margin-bottom: 0 !important
	}

	.ml-lg-0,
	.mx-lg-0 {
		margin-left: 0 !important
	}

	.m-lg-1 {
		margin: .0625rem !important
	}

	.mt-lg-1,
	.my-lg-1 {
		margin-top: .0625rem !important
	}

	.mr-lg-1,
	.mx-lg-1 {
		margin-right: .0625rem !important
	}

	.mb-lg-1,
	.my-lg-1 {
		margin-bottom: .0625rem !important
	}

	.ml-lg-1,
	.mx-lg-1 {
		margin-left: .0625rem !important
	}

	.m-lg-2 {
		margin: .125rem !important
	}

	.mt-lg-2,
	.my-lg-2 {
		margin-top: .125rem !important
	}

	.mr-lg-2,
	.mx-lg-2 {
		margin-right: .125rem !important
	}

	.mb-lg-2,
	.my-lg-2 {
		margin-bottom: .125rem !important
	}

	.ml-lg-2,
	.mx-lg-2 {
		margin-left: .125rem !important
	}

	.m-lg-3 {
		margin: .1875rem !important
	}

	.mt-lg-3,
	.my-lg-3 {
		margin-top: .1875rem !important
	}

	.mr-lg-3,
	.mx-lg-3 {
		margin-right: .1875rem !important
	}

	.mb-lg-3,
	.my-lg-3 {
		margin-bottom: .1875rem !important
	}

	.ml-lg-3,
	.mx-lg-3 {
		margin-left: .1875rem !important
	}

	.m-lg-4 {
		margin: .25rem !important
	}

	.mt-lg-4,
	.my-lg-4 {
		margin-top: .25rem !important
	}

	.mr-lg-4,
	.mx-lg-4 {
		margin-right: .25rem !important
	}

	.mb-lg-4,
	.my-lg-4 {
		margin-bottom: .25rem !important
	}

	.ml-lg-4,
	.mx-lg-4 {
		margin-left: .25rem !important
	}

	.m-lg-5 {
		margin: .3125rem !important
	}

	.mt-lg-5,
	.my-lg-5 {
		margin-top: .3125rem !important
	}

	.mr-lg-5,
	.mx-lg-5 {
		margin-right: .3125rem !important
	}

	.mb-lg-5,
	.my-lg-5 {
		margin-bottom: .3125rem !important
	}

	.ml-lg-5,
	.mx-lg-5 {
		margin-left: .3125rem !important
	}

	.m-lg-6 {
		margin: .375rem !important
	}

	.mt-lg-6,
	.my-lg-6 {
		margin-top: .375rem !important
	}

	.mr-lg-6,
	.mx-lg-6 {
		margin-right: .375rem !important
	}

	.mb-lg-6,
	.my-lg-6 {
		margin-bottom: .375rem !important
	}

	.ml-lg-6,
	.mx-lg-6 {
		margin-left: .375rem !important
	}

	.m-lg-7 {
		margin: .4375rem !important
	}

	.mt-lg-7,
	.my-lg-7 {
		margin-top: .4375rem !important
	}

	.mr-lg-7,
	.mx-lg-7 {
		margin-right: .4375rem !important
	}

	.mb-lg-7,
	.my-lg-7 {
		margin-bottom: .4375rem !important
	}

	.ml-lg-7,
	.mx-lg-7 {
		margin-left: .4375rem !important
	}

	.m-lg-8 {
		margin: .5rem !important
	}

	.mt-lg-8,
	.my-lg-8 {
		margin-top: .5rem !important
	}

	.mr-lg-8,
	.mx-lg-8 {
		margin-right: .5rem !important
	}

	.mb-lg-8,
	.my-lg-8 {
		margin-bottom: .5rem !important
	}

	.ml-lg-8,
	.mx-lg-8 {
		margin-left: .5rem !important
	}

	.m-lg-9 {
		margin: .5625rem !important
	}

	.mt-lg-9,
	.my-lg-9 {
		margin-top: .5625rem !important
	}

	.mr-lg-9,
	.mx-lg-9 {
		margin-right: .5625rem !important
	}

	.mb-lg-9,
	.my-lg-9 {
		margin-bottom: .5625rem !important
	}

	.ml-lg-9,
	.mx-lg-9 {
		margin-left: .5625rem !important
	}

	.m-lg-10 {
		margin: .625rem !important
	}

	.mt-lg-10,
	.my-lg-10 {
		margin-top: .625rem !important
	}

	.mr-lg-10,
	.mx-lg-10 {
		margin-right: .625rem !important
	}

	.mb-lg-10,
	.my-lg-10 {
		margin-bottom: .625rem !important
	}

	.ml-lg-10,
	.mx-lg-10 {
		margin-left: .625rem !important
	}

	.m-lg-11 {
		margin: .6875rem !important
	}

	.mt-lg-11,
	.my-lg-11 {
		margin-top: .6875rem !important
	}

	.mr-lg-11,
	.mx-lg-11 {
		margin-right: .6875rem !important
	}

	.mb-lg-11,
	.my-lg-11 {
		margin-bottom: .6875rem !important
	}

	.ml-lg-11,
	.mx-lg-11 {
		margin-left: .6875rem !important
	}

	.m-lg-12 {
		margin: .75rem !important
	}

	.mt-lg-12,
	.my-lg-12 {
		margin-top: .75rem !important
	}

	.mr-lg-12,
	.mx-lg-12 {
		margin-right: .75rem !important
	}

	.mb-lg-12,
	.my-lg-12 {
		margin-bottom: .75rem !important
	}

	.ml-lg-12,
	.mx-lg-12 {
		margin-left: .75rem !important
	}

	.m-lg-13 {
		margin: .8125rem !important
	}

	.mt-lg-13,
	.my-lg-13 {
		margin-top: .8125rem !important
	}

	.mr-lg-13,
	.mx-lg-13 {
		margin-right: .8125rem !important
	}

	.mb-lg-13,
	.my-lg-13 {
		margin-bottom: .8125rem !important
	}

	.ml-lg-13,
	.mx-lg-13 {
		margin-left: .8125rem !important
	}

	.m-lg-14 {
		margin: .875rem !important
	}

	.mt-lg-14,
	.my-lg-14 {
		margin-top: .875rem !important
	}

	.mr-lg-14,
	.mx-lg-14 {
		margin-right: .875rem !important
	}

	.mb-lg-14,
	.my-lg-14 {
		margin-bottom: .875rem !important
	}

	.ml-lg-14,
	.mx-lg-14 {
		margin-left: .875rem !important
	}

	.m-lg-15 {
		margin: .9375rem !important
	}

	.mt-lg-15,
	.my-lg-15 {
		margin-top: .9375rem !important
	}

	.mr-lg-15,
	.mx-lg-15 {
		margin-right: .9375rem !important
	}

	.mb-lg-15,
	.my-lg-15 {
		margin-bottom: .9375rem !important
	}

	.ml-lg-15,
	.mx-lg-15 {
		margin-left: .9375rem !important
	}

	.m-lg-16 {
		margin: 1rem !important
	}

	.mt-lg-16,
	.my-lg-16 {
		margin-top: 1rem !important
	}

	.mr-lg-16,
	.mx-lg-16 {
		margin-right: 1rem !important
	}

	.mb-lg-16,
	.my-lg-16 {
		margin-bottom: 1rem !important
	}

	.ml-lg-16,
	.mx-lg-16 {
		margin-left: 1rem !important
	}

	.m-lg-17 {
		margin: 1.0625rem !important
	}

	.mt-lg-17,
	.my-lg-17 {
		margin-top: 1.0625rem !important
	}

	.mr-lg-17,
	.mx-lg-17 {
		margin-right: 1.0625rem !important
	}

	.mb-lg-17,
	.my-lg-17 {
		margin-bottom: 1.0625rem !important
	}

	.ml-lg-17,
	.mx-lg-17 {
		margin-left: 1.0625rem !important
	}

	.m-lg-18 {
		margin: 1.125rem !important
	}

	.mt-lg-18,
	.my-lg-18 {
		margin-top: 1.125rem !important
	}

	.mr-lg-18,
	.mx-lg-18 {
		margin-right: 1.125rem !important
	}

	.mb-lg-18,
	.my-lg-18 {
		margin-bottom: 1.125rem !important
	}

	.ml-lg-18,
	.mx-lg-18 {
		margin-left: 1.125rem !important
	}

	.m-lg-19 {
		margin: 1.1875rem !important
	}

	.mt-lg-19,
	.my-lg-19 {
		margin-top: 1.1875rem !important
	}

	.mr-lg-19,
	.mx-lg-19 {
		margin-right: 1.1875rem !important
	}

	.mb-lg-19,
	.my-lg-19 {
		margin-bottom: 1.1875rem !important
	}

	.ml-lg-19,
	.mx-lg-19 {
		margin-left: 1.1875rem !important
	}

	.m-lg-20 {
		margin: 1.25rem !important
	}

	.mt-lg-20,
	.my-lg-20 {
		margin-top: 1.25rem !important
	}

	.mr-lg-20,
	.mx-lg-20 {
		margin-right: 1.25rem !important
	}

	.mb-lg-20,
	.my-lg-20 {
		margin-bottom: 1.25rem !important
	}

	.ml-lg-20,
	.mx-lg-20 {
		margin-left: 1.25rem !important
	}

	.m-lg-21 {
		margin: 1.3125rem !important
	}

	.mt-lg-21,
	.my-lg-21 {
		margin-top: 1.3125rem !important
	}

	.mr-lg-21,
	.mx-lg-21 {
		margin-right: 1.3125rem !important
	}

	.mb-lg-21,
	.my-lg-21 {
		margin-bottom: 1.3125rem !important
	}

	.ml-lg-21,
	.mx-lg-21 {
		margin-left: 1.3125rem !important
	}

	.m-lg-22 {
		margin: 1.375rem !important
	}

	.mt-lg-22,
	.my-lg-22 {
		margin-top: 1.375rem !important
	}

	.mr-lg-22,
	.mx-lg-22 {
		margin-right: 1.375rem !important
	}

	.mb-lg-22,
	.my-lg-22 {
		margin-bottom: 1.375rem !important
	}

	.ml-lg-22,
	.mx-lg-22 {
		margin-left: 1.375rem !important
	}

	.m-lg-23 {
		margin: 1.4375rem !important
	}

	.mt-lg-23,
	.my-lg-23 {
		margin-top: 1.4375rem !important
	}

	.mr-lg-23,
	.mx-lg-23 {
		margin-right: 1.4375rem !important
	}

	.mb-lg-23,
	.my-lg-23 {
		margin-bottom: 1.4375rem !important
	}

	.ml-lg-23,
	.mx-lg-23 {
		margin-left: 1.4375rem !important
	}

	.m-lg-24 {
		margin: 1.5rem !important
	}

	.mt-lg-24,
	.my-lg-24 {
		margin-top: 1.5rem !important
	}

	.mr-lg-24,
	.mx-lg-24 {
		margin-right: 1.5rem !important
	}

	.mb-lg-24,
	.my-lg-24 {
		margin-bottom: 1.5rem !important
	}

	.ml-lg-24,
	.mx-lg-24 {
		margin-left: 1.5rem !important
	}

	.m-lg-25 {
		margin: 1.5625rem !important
	}

	.mt-lg-25,
	.my-lg-25 {
		margin-top: 1.5625rem !important
	}

	.mr-lg-25,
	.mx-lg-25 {
		margin-right: 1.5625rem !important
	}

	.mb-lg-25,
	.my-lg-25 {
		margin-bottom: 1.5625rem !important
	}

	.ml-lg-25,
	.mx-lg-25 {
		margin-left: 1.5625rem !important
	}

	.m-lg-26 {
		margin: 1.625rem !important
	}

	.mt-lg-26,
	.my-lg-26 {
		margin-top: 1.625rem !important
	}

	.mr-lg-26,
	.mx-lg-26 {
		margin-right: 1.625rem !important
	}

	.mb-lg-26,
	.my-lg-26 {
		margin-bottom: 1.625rem !important
	}

	.ml-lg-26,
	.mx-lg-26 {
		margin-left: 1.625rem !important
	}

	.m-lg-27 {
		margin: 1.6875rem !important
	}

	.mt-lg-27,
	.my-lg-27 {
		margin-top: 1.6875rem !important
	}

	.mr-lg-27,
	.mx-lg-27 {
		margin-right: 1.6875rem !important
	}

	.mb-lg-27,
	.my-lg-27 {
		margin-bottom: 1.6875rem !important
	}

	.ml-lg-27,
	.mx-lg-27 {
		margin-left: 1.6875rem !important
	}

	.m-lg-28 {
		margin: 1.75rem !important
	}

	.mt-lg-28,
	.my-lg-28 {
		margin-top: 1.75rem !important
	}

	.mr-lg-28,
	.mx-lg-28 {
		margin-right: 1.75rem !important
	}

	.mb-lg-28,
	.my-lg-28 {
		margin-bottom: 1.75rem !important
	}

	.ml-lg-28,
	.mx-lg-28 {
		margin-left: 1.75rem !important
	}

	.m-lg-29 {
		margin: 1.8125rem !important
	}

	.mt-lg-29,
	.my-lg-29 {
		margin-top: 1.8125rem !important
	}

	.mr-lg-29,
	.mx-lg-29 {
		margin-right: 1.8125rem !important
	}

	.mb-lg-29,
	.my-lg-29 {
		margin-bottom: 1.8125rem !important
	}

	.ml-lg-29,
	.mx-lg-29 {
		margin-left: 1.8125rem !important
	}

	.m-lg-30 {
		margin: 1.875rem !important
	}

	.mt-lg-30,
	.my-lg-30 {
		margin-top: 1.875rem !important
	}

	.mr-lg-30,
	.mx-lg-30 {
		margin-right: 1.875rem !important
	}

	.mb-lg-30,
	.my-lg-30 {
		margin-bottom: 1.875rem !important
	}

	.ml-lg-30,
	.mx-lg-30 {
		margin-left: 1.875rem !important
	}

	.m-lg-31 {
		margin: 1.9375rem !important
	}

	.mt-lg-31,
	.my-lg-31 {
		margin-top: 1.9375rem !important
	}

	.mr-lg-31,
	.mx-lg-31 {
		margin-right: 1.9375rem !important
	}

	.mb-lg-31,
	.my-lg-31 {
		margin-bottom: 1.9375rem !important
	}

	.ml-lg-31,
	.mx-lg-31 {
		margin-left: 1.9375rem !important
	}

	.m-lg-32 {
		margin: 2rem !important
	}

	.mt-lg-32,
	.my-lg-32 {
		margin-top: 2rem !important
	}

	.mr-lg-32,
	.mx-lg-32 {
		margin-right: 2rem !important
	}

	.mb-lg-32,
	.my-lg-32 {
		margin-bottom: 2rem !important
	}

	.ml-lg-32,
	.mx-lg-32 {
		margin-left: 2rem !important
	}

	.m-lg-33 {
		margin: 2.0625rem !important
	}

	.mt-lg-33,
	.my-lg-33 {
		margin-top: 2.0625rem !important
	}

	.mr-lg-33,
	.mx-lg-33 {
		margin-right: 2.0625rem !important
	}

	.mb-lg-33,
	.my-lg-33 {
		margin-bottom: 2.0625rem !important
	}

	.ml-lg-33,
	.mx-lg-33 {
		margin-left: 2.0625rem !important
	}

	.m-lg-34 {
		margin: 2.125rem !important
	}

	.mt-lg-34,
	.my-lg-34 {
		margin-top: 2.125rem !important
	}

	.mr-lg-34,
	.mx-lg-34 {
		margin-right: 2.125rem !important
	}

	.mb-lg-34,
	.my-lg-34 {
		margin-bottom: 2.125rem !important
	}

	.ml-lg-34,
	.mx-lg-34 {
		margin-left: 2.125rem !important
	}

	.m-lg-35 {
		margin: 2.1875rem !important
	}

	.mt-lg-35,
	.my-lg-35 {
		margin-top: 2.1875rem !important
	}

	.mr-lg-35,
	.mx-lg-35 {
		margin-right: 2.1875rem !important
	}

	.mb-lg-35,
	.my-lg-35 {
		margin-bottom: 2.1875rem !important
	}

	.ml-lg-35,
	.mx-lg-35 {
		margin-left: 2.1875rem !important
	}

	.m-lg-36 {
		margin: 2.25rem !important
	}

	.mt-lg-36,
	.my-lg-36 {
		margin-top: 2.25rem !important
	}

	.mr-lg-36,
	.mx-lg-36 {
		margin-right: 2.25rem !important
	}

	.mb-lg-36,
	.my-lg-36 {
		margin-bottom: 2.25rem !important
	}

	.ml-lg-36,
	.mx-lg-36 {
		margin-left: 2.25rem !important
	}

	.m-lg-37 {
		margin: 2.3125rem !important
	}

	.mt-lg-37,
	.my-lg-37 {
		margin-top: 2.3125rem !important
	}

	.mr-lg-37,
	.mx-lg-37 {
		margin-right: 2.3125rem !important
	}

	.mb-lg-37,
	.my-lg-37 {
		margin-bottom: 2.3125rem !important
	}

	.ml-lg-37,
	.mx-lg-37 {
		margin-left: 2.3125rem !important
	}

	.m-lg-38 {
		margin: 2.375rem !important
	}

	.mt-lg-38,
	.my-lg-38 {
		margin-top: 2.375rem !important
	}

	.mr-lg-38,
	.mx-lg-38 {
		margin-right: 2.375rem !important
	}

	.mb-lg-38,
	.my-lg-38 {
		margin-bottom: 2.375rem !important
	}

	.ml-lg-38,
	.mx-lg-38 {
		margin-left: 2.375rem !important
	}

	.m-lg-39 {
		margin: 2.4375rem !important
	}

	.mt-lg-39,
	.my-lg-39 {
		margin-top: 2.4375rem !important
	}

	.mr-lg-39,
	.mx-lg-39 {
		margin-right: 2.4375rem !important
	}

	.mb-lg-39,
	.my-lg-39 {
		margin-bottom: 2.4375rem !important
	}

	.ml-lg-39,
	.mx-lg-39 {
		margin-left: 2.4375rem !important
	}

	.m-lg-40 {
		margin: 2.5rem !important
	}

	.mt-lg-40,
	.my-lg-40 {
		margin-top: 2.5rem !important
	}

	.mr-lg-40,
	.mx-lg-40 {
		margin-right: 2.5rem !important
	}

	.mb-lg-40,
	.my-lg-40 {
		margin-bottom: 2.5rem !important
	}

	.ml-lg-40,
	.mx-lg-40 {
		margin-left: 2.5rem !important
	}

	.m-lg-41 {
		margin: 2.5625rem !important
	}

	.mt-lg-41,
	.my-lg-41 {
		margin-top: 2.5625rem !important
	}

	.mr-lg-41,
	.mx-lg-41 {
		margin-right: 2.5625rem !important
	}

	.mb-lg-41,
	.my-lg-41 {
		margin-bottom: 2.5625rem !important
	}

	.ml-lg-41,
	.mx-lg-41 {
		margin-left: 2.5625rem !important
	}

	.m-lg-42 {
		margin: 2.625rem !important
	}

	.mt-lg-42,
	.my-lg-42 {
		margin-top: 2.625rem !important
	}

	.mr-lg-42,
	.mx-lg-42 {
		margin-right: 2.625rem !important
	}

	.mb-lg-42,
	.my-lg-42 {
		margin-bottom: 2.625rem !important
	}

	.ml-lg-42,
	.mx-lg-42 {
		margin-left: 2.625rem !important
	}

	.m-lg-43 {
		margin: 2.6875rem !important
	}

	.mt-lg-43,
	.my-lg-43 {
		margin-top: 2.6875rem !important
	}

	.mr-lg-43,
	.mx-lg-43 {
		margin-right: 2.6875rem !important
	}

	.mb-lg-43,
	.my-lg-43 {
		margin-bottom: 2.6875rem !important
	}

	.ml-lg-43,
	.mx-lg-43 {
		margin-left: 2.6875rem !important
	}

	.m-lg-44 {
		margin: 2.75rem !important
	}

	.mt-lg-44,
	.my-lg-44 {
		margin-top: 2.75rem !important
	}

	.mr-lg-44,
	.mx-lg-44 {
		margin-right: 2.75rem !important
	}

	.mb-lg-44,
	.my-lg-44 {
		margin-bottom: 2.75rem !important
	}

	.ml-lg-44,
	.mx-lg-44 {
		margin-left: 2.75rem !important
	}

	.m-lg-45 {
		margin: 2.8125rem !important
	}

	.mt-lg-45,
	.my-lg-45 {
		margin-top: 2.8125rem !important
	}

	.mr-lg-45,
	.mx-lg-45 {
		margin-right: 2.8125rem !important
	}

	.mb-lg-45,
	.my-lg-45 {
		margin-bottom: 2.8125rem !important
	}

	.ml-lg-45,
	.mx-lg-45 {
		margin-left: 2.8125rem !important
	}

	.m-lg-46 {
		margin: 2.875rem !important
	}

	.mt-lg-46,
	.my-lg-46 {
		margin-top: 2.875rem !important
	}

	.mr-lg-46,
	.mx-lg-46 {
		margin-right: 2.875rem !important
	}

	.mb-lg-46,
	.my-lg-46 {
		margin-bottom: 2.875rem !important
	}

	.ml-lg-46,
	.mx-lg-46 {
		margin-left: 2.875rem !important
	}

	.m-lg-47 {
		margin: 2.9375rem !important
	}

	.mt-lg-47,
	.my-lg-47 {
		margin-top: 2.9375rem !important
	}

	.mr-lg-47,
	.mx-lg-47 {
		margin-right: 2.9375rem !important
	}

	.mb-lg-47,
	.my-lg-47 {
		margin-bottom: 2.9375rem !important
	}

	.ml-lg-47,
	.mx-lg-47 {
		margin-left: 2.9375rem !important
	}

	.m-lg-48 {
		margin: 3rem !important
	}

	.mt-lg-48,
	.my-lg-48 {
		margin-top: 3rem !important
	}

	.mr-lg-48,
	.mx-lg-48 {
		margin-right: 3rem !important
	}

	.mb-lg-48,
	.my-lg-48 {
		margin-bottom: 3rem !important
	}

	.ml-lg-48,
	.mx-lg-48 {
		margin-left: 3rem !important
	}

	.m-lg-49 {
		margin: 3.0625rem !important
	}

	.mt-lg-49,
	.my-lg-49 {
		margin-top: 3.0625rem !important
	}

	.mr-lg-49,
	.mx-lg-49 {
		margin-right: 3.0625rem !important
	}

	.mb-lg-49,
	.my-lg-49 {
		margin-bottom: 3.0625rem !important
	}

	.ml-lg-49,
	.mx-lg-49 {
		margin-left: 3.0625rem !important
	}

	.m-lg-50 {
		margin: 3.125rem !important
	}

	.mt-lg-50,
	.my-lg-50 {
		margin-top: 3.125rem !important
	}

	.mr-lg-50,
	.mx-lg-50 {
		margin-right: 3.125rem !important
	}

	.mb-lg-50,
	.my-lg-50 {
		margin-bottom: 3.125rem !important
	}

	.ml-lg-50,
	.mx-lg-50 {
		margin-left: 3.125rem !important
	}

	.m-lg-51 {
		margin: 3.1875rem !important
	}

	.mt-lg-51,
	.my-lg-51 {
		margin-top: 3.1875rem !important
	}

	.mr-lg-51,
	.mx-lg-51 {
		margin-right: 3.1875rem !important
	}

	.mb-lg-51,
	.my-lg-51 {
		margin-bottom: 3.1875rem !important
	}

	.ml-lg-51,
	.mx-lg-51 {
		margin-left: 3.1875rem !important
	}

	.m-lg-52 {
		margin: 3.25rem !important
	}

	.mt-lg-52,
	.my-lg-52 {
		margin-top: 3.25rem !important
	}

	.mr-lg-52,
	.mx-lg-52 {
		margin-right: 3.25rem !important
	}

	.mb-lg-52,
	.my-lg-52 {
		margin-bottom: 3.25rem !important
	}

	.ml-lg-52,
	.mx-lg-52 {
		margin-left: 3.25rem !important
	}

	.m-lg-53 {
		margin: 3.3125rem !important
	}

	.mt-lg-53,
	.my-lg-53 {
		margin-top: 3.3125rem !important
	}

	.mr-lg-53,
	.mx-lg-53 {
		margin-right: 3.3125rem !important
	}

	.mb-lg-53,
	.my-lg-53 {
		margin-bottom: 3.3125rem !important
	}

	.ml-lg-53,
	.mx-lg-53 {
		margin-left: 3.3125rem !important
	}

	.m-lg-54 {
		margin: 3.375rem !important
	}

	.mt-lg-54,
	.my-lg-54 {
		margin-top: 3.375rem !important
	}

	.mr-lg-54,
	.mx-lg-54 {
		margin-right: 3.375rem !important
	}

	.mb-lg-54,
	.my-lg-54 {
		margin-bottom: 3.375rem !important
	}

	.ml-lg-54,
	.mx-lg-54 {
		margin-left: 3.375rem !important
	}

	.m-lg-55 {
		margin: 3.4375rem !important
	}

	.mt-lg-55,
	.my-lg-55 {
		margin-top: 3.4375rem !important
	}

	.mr-lg-55,
	.mx-lg-55 {
		margin-right: 3.4375rem !important
	}

	.mb-lg-55,
	.my-lg-55 {
		margin-bottom: 3.4375rem !important
	}

	.ml-lg-55,
	.mx-lg-55 {
		margin-left: 3.4375rem !important
	}

	.m-lg-56 {
		margin: 3.5rem !important
	}

	.mt-lg-56,
	.my-lg-56 {
		margin-top: 3.5rem !important
	}

	.mr-lg-56,
	.mx-lg-56 {
		margin-right: 3.5rem !important
	}

	.mb-lg-56,
	.my-lg-56 {
		margin-bottom: 3.5rem !important
	}

	.ml-lg-56,
	.mx-lg-56 {
		margin-left: 3.5rem !important
	}

	.m-lg-57 {
		margin: 3.5625rem !important
	}

	.mt-lg-57,
	.my-lg-57 {
		margin-top: 3.5625rem !important
	}

	.mr-lg-57,
	.mx-lg-57 {
		margin-right: 3.5625rem !important
	}

	.mb-lg-57,
	.my-lg-57 {
		margin-bottom: 3.5625rem !important
	}

	.ml-lg-57,
	.mx-lg-57 {
		margin-left: 3.5625rem !important
	}

	.m-lg-58 {
		margin: 3.625rem !important
	}

	.mt-lg-58,
	.my-lg-58 {
		margin-top: 3.625rem !important
	}

	.mr-lg-58,
	.mx-lg-58 {
		margin-right: 3.625rem !important
	}

	.mb-lg-58,
	.my-lg-58 {
		margin-bottom: 3.625rem !important
	}

	.ml-lg-58,
	.mx-lg-58 {
		margin-left: 3.625rem !important
	}

	.m-lg-59 {
		margin: 3.6875rem !important
	}

	.mt-lg-59,
	.my-lg-59 {
		margin-top: 3.6875rem !important
	}

	.mr-lg-59,
	.mx-lg-59 {
		margin-right: 3.6875rem !important
	}

	.mb-lg-59,
	.my-lg-59 {
		margin-bottom: 3.6875rem !important
	}

	.ml-lg-59,
	.mx-lg-59 {
		margin-left: 3.6875rem !important
	}

	.m-lg-60 {
		margin: 3.75rem !important
	}

	.mt-lg-60,
	.my-lg-60 {
		margin-top: 3.75rem !important
	}

	.mr-lg-60,
	.mx-lg-60 {
		margin-right: 3.75rem !important
	}

	.mb-lg-60,
	.my-lg-60 {
		margin-bottom: 3.75rem !important
	}

	.ml-lg-60,
	.mx-lg-60 {
		margin-left: 3.75rem !important
	}

	.m-lg-61 {
		margin: 3.8125rem !important
	}

	.mt-lg-61,
	.my-lg-61 {
		margin-top: 3.8125rem !important
	}

	.mr-lg-61,
	.mx-lg-61 {
		margin-right: 3.8125rem !important
	}

	.mb-lg-61,
	.my-lg-61 {
		margin-bottom: 3.8125rem !important
	}

	.ml-lg-61,
	.mx-lg-61 {
		margin-left: 3.8125rem !important
	}

	.m-lg-62 {
		margin: 3.875rem !important
	}

	.mt-lg-62,
	.my-lg-62 {
		margin-top: 3.875rem !important
	}

	.mr-lg-62,
	.mx-lg-62 {
		margin-right: 3.875rem !important
	}

	.mb-lg-62,
	.my-lg-62 {
		margin-bottom: 3.875rem !important
	}

	.ml-lg-62,
	.mx-lg-62 {
		margin-left: 3.875rem !important
	}

	.m-lg-63 {
		margin: 3.9375rem !important
	}

	.mt-lg-63,
	.my-lg-63 {
		margin-top: 3.9375rem !important
	}

	.mr-lg-63,
	.mx-lg-63 {
		margin-right: 3.9375rem !important
	}

	.mb-lg-63,
	.my-lg-63 {
		margin-bottom: 3.9375rem !important
	}

	.ml-lg-63,
	.mx-lg-63 {
		margin-left: 3.9375rem !important
	}

	.m-lg-64 {
		margin: 4rem !important
	}

	.mt-lg-64,
	.my-lg-64 {
		margin-top: 4rem !important
	}

	.mr-lg-64,
	.mx-lg-64 {
		margin-right: 4rem !important
	}

	.mb-lg-64,
	.my-lg-64 {
		margin-bottom: 4rem !important
	}

	.ml-lg-64,
	.mx-lg-64 {
		margin-left: 4rem !important
	}

	.m-lg-65 {
		margin: 4.0625rem !important
	}

	.mt-lg-65,
	.my-lg-65 {
		margin-top: 4.0625rem !important
	}

	.mr-lg-65,
	.mx-lg-65 {
		margin-right: 4.0625rem !important
	}

	.mb-lg-65,
	.my-lg-65 {
		margin-bottom: 4.0625rem !important
	}

	.ml-lg-65,
	.mx-lg-65 {
		margin-left: 4.0625rem !important
	}

	.m-lg-66 {
		margin: 4.125rem !important
	}

	.mt-lg-66,
	.my-lg-66 {
		margin-top: 4.125rem !important
	}

	.mr-lg-66,
	.mx-lg-66 {
		margin-right: 4.125rem !important
	}

	.mb-lg-66,
	.my-lg-66 {
		margin-bottom: 4.125rem !important
	}

	.ml-lg-66,
	.mx-lg-66 {
		margin-left: 4.125rem !important
	}

	.m-lg-67 {
		margin: 4.1875rem !important
	}

	.mt-lg-67,
	.my-lg-67 {
		margin-top: 4.1875rem !important
	}

	.mr-lg-67,
	.mx-lg-67 {
		margin-right: 4.1875rem !important
	}

	.mb-lg-67,
	.my-lg-67 {
		margin-bottom: 4.1875rem !important
	}

	.ml-lg-67,
	.mx-lg-67 {
		margin-left: 4.1875rem !important
	}

	.m-lg-68 {
		margin: 4.25rem !important
	}

	.mt-lg-68,
	.my-lg-68 {
		margin-top: 4.25rem !important
	}

	.mr-lg-68,
	.mx-lg-68 {
		margin-right: 4.25rem !important
	}

	.mb-lg-68,
	.my-lg-68 {
		margin-bottom: 4.25rem !important
	}

	.ml-lg-68,
	.mx-lg-68 {
		margin-left: 4.25rem !important
	}

	.m-lg-69 {
		margin: 4.3125rem !important
	}

	.mt-lg-69,
	.my-lg-69 {
		margin-top: 4.3125rem !important
	}

	.mr-lg-69,
	.mx-lg-69 {
		margin-right: 4.3125rem !important
	}

	.mb-lg-69,
	.my-lg-69 {
		margin-bottom: 4.3125rem !important
	}

	.ml-lg-69,
	.mx-lg-69 {
		margin-left: 4.3125rem !important
	}

	.m-lg-70 {
		margin: 4.375rem !important
	}

	.mt-lg-70,
	.my-lg-70 {
		margin-top: 4.375rem !important
	}

	.mr-lg-70,
	.mx-lg-70 {
		margin-right: 4.375rem !important
	}

	.mb-lg-70,
	.my-lg-70 {
		margin-bottom: 4.375rem !important
	}

	.ml-lg-70,
	.mx-lg-70 {
		margin-left: 4.375rem !important
	}

	.m-lg-71 {
		margin: 4.4375rem !important
	}

	.mt-lg-71,
	.my-lg-71 {
		margin-top: 4.4375rem !important
	}

	.mr-lg-71,
	.mx-lg-71 {
		margin-right: 4.4375rem !important
	}

	.mb-lg-71,
	.my-lg-71 {
		margin-bottom: 4.4375rem !important
	}

	.ml-lg-71,
	.mx-lg-71 {
		margin-left: 4.4375rem !important
	}

	.m-lg-72 {
		margin: 4.5rem !important
	}

	.mt-lg-72,
	.my-lg-72 {
		margin-top: 4.5rem !important
	}

	.mr-lg-72,
	.mx-lg-72 {
		margin-right: 4.5rem !important
	}

	.mb-lg-72,
	.my-lg-72 {
		margin-bottom: 4.5rem !important
	}

	.ml-lg-72,
	.mx-lg-72 {
		margin-left: 4.5rem !important
	}

	.m-lg-73 {
		margin: 4.5625rem !important
	}

	.mt-lg-73,
	.my-lg-73 {
		margin-top: 4.5625rem !important
	}

	.mr-lg-73,
	.mx-lg-73 {
		margin-right: 4.5625rem !important
	}

	.mb-lg-73,
	.my-lg-73 {
		margin-bottom: 4.5625rem !important
	}

	.ml-lg-73,
	.mx-lg-73 {
		margin-left: 4.5625rem !important
	}

	.m-lg-74 {
		margin: 4.625rem !important
	}

	.mt-lg-74,
	.my-lg-74 {
		margin-top: 4.625rem !important
	}

	.mr-lg-74,
	.mx-lg-74 {
		margin-right: 4.625rem !important
	}

	.mb-lg-74,
	.my-lg-74 {
		margin-bottom: 4.625rem !important
	}

	.ml-lg-74,
	.mx-lg-74 {
		margin-left: 4.625rem !important
	}

	.m-lg-75 {
		margin: 4.6875rem !important
	}

	.mt-lg-75,
	.my-lg-75 {
		margin-top: 4.6875rem !important
	}

	.mr-lg-75,
	.mx-lg-75 {
		margin-right: 4.6875rem !important
	}

	.mb-lg-75,
	.my-lg-75 {
		margin-bottom: 4.6875rem !important
	}

	.ml-lg-75,
	.mx-lg-75 {
		margin-left: 4.6875rem !important
	}

	.m-lg-76 {
		margin: 4.75rem !important
	}

	.mt-lg-76,
	.my-lg-76 {
		margin-top: 4.75rem !important
	}

	.mr-lg-76,
	.mx-lg-76 {
		margin-right: 4.75rem !important
	}

	.mb-lg-76,
	.my-lg-76 {
		margin-bottom: 4.75rem !important
	}

	.ml-lg-76,
	.mx-lg-76 {
		margin-left: 4.75rem !important
	}

	.m-lg-77 {
		margin: 4.8125rem !important
	}

	.mt-lg-77,
	.my-lg-77 {
		margin-top: 4.8125rem !important
	}

	.mr-lg-77,
	.mx-lg-77 {
		margin-right: 4.8125rem !important
	}

	.mb-lg-77,
	.my-lg-77 {
		margin-bottom: 4.8125rem !important
	}

	.ml-lg-77,
	.mx-lg-77 {
		margin-left: 4.8125rem !important
	}

	.m-lg-78 {
		margin: 4.875rem !important
	}

	.mt-lg-78,
	.my-lg-78 {
		margin-top: 4.875rem !important
	}

	.mr-lg-78,
	.mx-lg-78 {
		margin-right: 4.875rem !important
	}

	.mb-lg-78,
	.my-lg-78 {
		margin-bottom: 4.875rem !important
	}

	.ml-lg-78,
	.mx-lg-78 {
		margin-left: 4.875rem !important
	}

	.m-lg-79 {
		margin: 4.9375rem !important
	}

	.mt-lg-79,
	.my-lg-79 {
		margin-top: 4.9375rem !important
	}

	.mr-lg-79,
	.mx-lg-79 {
		margin-right: 4.9375rem !important
	}

	.mb-lg-79,
	.my-lg-79 {
		margin-bottom: 4.9375rem !important
	}

	.ml-lg-79,
	.mx-lg-79 {
		margin-left: 4.9375rem !important
	}

	.m-lg-80 {
		margin: 5rem !important
	}

	.mt-lg-80,
	.my-lg-80 {
		margin-top: 5rem !important
	}

	.mr-lg-80,
	.mx-lg-80 {
		margin-right: 5rem !important
	}

	.mb-lg-80,
	.my-lg-80 {
		margin-bottom: 5rem !important
	}

	.ml-lg-80,
	.mx-lg-80 {
		margin-left: 5rem !important
	}

	.m-lg-81 {
		margin: 5.0625rem !important
	}

	.mt-lg-81,
	.my-lg-81 {
		margin-top: 5.0625rem !important
	}

	.mr-lg-81,
	.mx-lg-81 {
		margin-right: 5.0625rem !important
	}

	.mb-lg-81,
	.my-lg-81 {
		margin-bottom: 5.0625rem !important
	}

	.ml-lg-81,
	.mx-lg-81 {
		margin-left: 5.0625rem !important
	}

	.m-lg-82 {
		margin: 5.125rem !important
	}

	.mt-lg-82,
	.my-lg-82 {
		margin-top: 5.125rem !important
	}

	.mr-lg-82,
	.mx-lg-82 {
		margin-right: 5.125rem !important
	}

	.mb-lg-82,
	.my-lg-82 {
		margin-bottom: 5.125rem !important
	}

	.ml-lg-82,
	.mx-lg-82 {
		margin-left: 5.125rem !important
	}

	.m-lg-83 {
		margin: 5.1875rem !important
	}

	.mt-lg-83,
	.my-lg-83 {
		margin-top: 5.1875rem !important
	}

	.mr-lg-83,
	.mx-lg-83 {
		margin-right: 5.1875rem !important
	}

	.mb-lg-83,
	.my-lg-83 {
		margin-bottom: 5.1875rem !important
	}

	.ml-lg-83,
	.mx-lg-83 {
		margin-left: 5.1875rem !important
	}

	.m-lg-84 {
		margin: 5.25rem !important
	}

	.mt-lg-84,
	.my-lg-84 {
		margin-top: 5.25rem !important
	}

	.mr-lg-84,
	.mx-lg-84 {
		margin-right: 5.25rem !important
	}

	.mb-lg-84,
	.my-lg-84 {
		margin-bottom: 5.25rem !important
	}

	.ml-lg-84,
	.mx-lg-84 {
		margin-left: 5.25rem !important
	}

	.m-lg-85 {
		margin: 5.3125rem !important
	}

	.mt-lg-85,
	.my-lg-85 {
		margin-top: 5.3125rem !important
	}

	.mr-lg-85,
	.mx-lg-85 {
		margin-right: 5.3125rem !important
	}

	.mb-lg-85,
	.my-lg-85 {
		margin-bottom: 5.3125rem !important
	}

	.ml-lg-85,
	.mx-lg-85 {
		margin-left: 5.3125rem !important
	}

	.m-lg-86 {
		margin: 5.375rem !important
	}

	.mt-lg-86,
	.my-lg-86 {
		margin-top: 5.375rem !important
	}

	.mr-lg-86,
	.mx-lg-86 {
		margin-right: 5.375rem !important
	}

	.mb-lg-86,
	.my-lg-86 {
		margin-bottom: 5.375rem !important
	}

	.ml-lg-86,
	.mx-lg-86 {
		margin-left: 5.375rem !important
	}

	.m-lg-87 {
		margin: 5.4375rem !important
	}

	.mt-lg-87,
	.my-lg-87 {
		margin-top: 5.4375rem !important
	}

	.mr-lg-87,
	.mx-lg-87 {
		margin-right: 5.4375rem !important
	}

	.mb-lg-87,
	.my-lg-87 {
		margin-bottom: 5.4375rem !important
	}

	.ml-lg-87,
	.mx-lg-87 {
		margin-left: 5.4375rem !important
	}

	.m-lg-88 {
		margin: 5.5rem !important
	}

	.mt-lg-88,
	.my-lg-88 {
		margin-top: 5.5rem !important
	}

	.mr-lg-88,
	.mx-lg-88 {
		margin-right: 5.5rem !important
	}

	.mb-lg-88,
	.my-lg-88 {
		margin-bottom: 5.5rem !important
	}

	.ml-lg-88,
	.mx-lg-88 {
		margin-left: 5.5rem !important
	}

	.m-lg-89 {
		margin: 5.5625rem !important
	}

	.mt-lg-89,
	.my-lg-89 {
		margin-top: 5.5625rem !important
	}

	.mr-lg-89,
	.mx-lg-89 {
		margin-right: 5.5625rem !important
	}

	.mb-lg-89,
	.my-lg-89 {
		margin-bottom: 5.5625rem !important
	}

	.ml-lg-89,
	.mx-lg-89 {
		margin-left: 5.5625rem !important
	}

	.m-lg-90 {
		margin: 5.625rem !important
	}

	.mt-lg-90,
	.my-lg-90 {
		margin-top: 5.625rem !important
	}

	.mr-lg-90,
	.mx-lg-90 {
		margin-right: 5.625rem !important
	}

	.mb-lg-90,
	.my-lg-90 {
		margin-bottom: 5.625rem !important
	}

	.ml-lg-90,
	.mx-lg-90 {
		margin-left: 5.625rem !important
	}

	.m-lg-91 {
		margin: 5.6875rem !important
	}

	.mt-lg-91,
	.my-lg-91 {
		margin-top: 5.6875rem !important
	}

	.mr-lg-91,
	.mx-lg-91 {
		margin-right: 5.6875rem !important
	}

	.mb-lg-91,
	.my-lg-91 {
		margin-bottom: 5.6875rem !important
	}

	.ml-lg-91,
	.mx-lg-91 {
		margin-left: 5.6875rem !important
	}

	.m-lg-92 {
		margin: 5.75rem !important
	}

	.mt-lg-92,
	.my-lg-92 {
		margin-top: 5.75rem !important
	}

	.mr-lg-92,
	.mx-lg-92 {
		margin-right: 5.75rem !important
	}

	.mb-lg-92,
	.my-lg-92 {
		margin-bottom: 5.75rem !important
	}

	.ml-lg-92,
	.mx-lg-92 {
		margin-left: 5.75rem !important
	}

	.m-lg-93 {
		margin: 5.8125rem !important
	}

	.mt-lg-93,
	.my-lg-93 {
		margin-top: 5.8125rem !important
	}

	.mr-lg-93,
	.mx-lg-93 {
		margin-right: 5.8125rem !important
	}

	.mb-lg-93,
	.my-lg-93 {
		margin-bottom: 5.8125rem !important
	}

	.ml-lg-93,
	.mx-lg-93 {
		margin-left: 5.8125rem !important
	}

	.m-lg-94 {
		margin: 5.875rem !important
	}

	.mt-lg-94,
	.my-lg-94 {
		margin-top: 5.875rem !important
	}

	.mr-lg-94,
	.mx-lg-94 {
		margin-right: 5.875rem !important
	}

	.mb-lg-94,
	.my-lg-94 {
		margin-bottom: 5.875rem !important
	}

	.ml-lg-94,
	.mx-lg-94 {
		margin-left: 5.875rem !important
	}

	.m-lg-95 {
		margin: 5.9375rem !important
	}

	.mt-lg-95,
	.my-lg-95 {
		margin-top: 5.9375rem !important
	}

	.mr-lg-95,
	.mx-lg-95 {
		margin-right: 5.9375rem !important
	}

	.mb-lg-95,
	.my-lg-95 {
		margin-bottom: 5.9375rem !important
	}

	.ml-lg-95,
	.mx-lg-95 {
		margin-left: 5.9375rem !important
	}

	.m-lg-96 {
		margin: 6rem !important
	}

	.mt-lg-96,
	.my-lg-96 {
		margin-top: 6rem !important
	}

	.mr-lg-96,
	.mx-lg-96 {
		margin-right: 6rem !important
	}

	.mb-lg-96,
	.my-lg-96 {
		margin-bottom: 6rem !important
	}

	.ml-lg-96,
	.mx-lg-96 {
		margin-left: 6rem !important
	}

	.m-lg-97 {
		margin: 6.0625rem !important
	}

	.mt-lg-97,
	.my-lg-97 {
		margin-top: 6.0625rem !important
	}

	.mr-lg-97,
	.mx-lg-97 {
		margin-right: 6.0625rem !important
	}

	.mb-lg-97,
	.my-lg-97 {
		margin-bottom: 6.0625rem !important
	}

	.ml-lg-97,
	.mx-lg-97 {
		margin-left: 6.0625rem !important
	}

	.m-lg-98 {
		margin: 6.125rem !important
	}

	.mt-lg-98,
	.my-lg-98 {
		margin-top: 6.125rem !important
	}

	.mr-lg-98,
	.mx-lg-98 {
		margin-right: 6.125rem !important
	}

	.mb-lg-98,
	.my-lg-98 {
		margin-bottom: 6.125rem !important
	}

	.ml-lg-98,
	.mx-lg-98 {
		margin-left: 6.125rem !important
	}

	.m-lg-99 {
		margin: 6.1875rem !important
	}

	.mt-lg-99,
	.my-lg-99 {
		margin-top: 6.1875rem !important
	}

	.mr-lg-99,
	.mx-lg-99 {
		margin-right: 6.1875rem !important
	}

	.mb-lg-99,
	.my-lg-99 {
		margin-bottom: 6.1875rem !important
	}

	.ml-lg-99,
	.mx-lg-99 {
		margin-left: 6.1875rem !important
	}

	.m-lg-100 {
		margin: 6.25rem !important
	}

	.mt-lg-100,
	.my-lg-100 {
		margin-top: 6.25rem !important
	}

	.mr-lg-100,
	.mx-lg-100 {
		margin-right: 6.25rem !important
	}

	.mb-lg-100,
	.my-lg-100 {
		margin-bottom: 6.25rem !important
	}

	.ml-lg-100,
	.mx-lg-100 {
		margin-left: 6.25rem !important
	}

	.m-lg-101 {
		margin: 6.3125rem !important
	}

	.mt-lg-101,
	.my-lg-101 {
		margin-top: 6.3125rem !important
	}

	.mr-lg-101,
	.mx-lg-101 {
		margin-right: 6.3125rem !important
	}

	.mb-lg-101,
	.my-lg-101 {
		margin-bottom: 6.3125rem !important
	}

	.ml-lg-101,
	.mx-lg-101 {
		margin-left: 6.3125rem !important
	}

	.m-lg-102 {
		margin: 6.375rem !important
	}

	.mt-lg-102,
	.my-lg-102 {
		margin-top: 6.375rem !important
	}

	.mr-lg-102,
	.mx-lg-102 {
		margin-right: 6.375rem !important
	}

	.mb-lg-102,
	.my-lg-102 {
		margin-bottom: 6.375rem !important
	}

	.ml-lg-102,
	.mx-lg-102 {
		margin-left: 6.375rem !important
	}

	.m-lg-103 {
		margin: 6.4375rem !important
	}

	.mt-lg-103,
	.my-lg-103 {
		margin-top: 6.4375rem !important
	}

	.mr-lg-103,
	.mx-lg-103 {
		margin-right: 6.4375rem !important
	}

	.mb-lg-103,
	.my-lg-103 {
		margin-bottom: 6.4375rem !important
	}

	.ml-lg-103,
	.mx-lg-103 {
		margin-left: 6.4375rem !important
	}

	.m-lg-104 {
		margin: 6.5rem !important
	}

	.mt-lg-104,
	.my-lg-104 {
		margin-top: 6.5rem !important
	}

	.mr-lg-104,
	.mx-lg-104 {
		margin-right: 6.5rem !important
	}

	.mb-lg-104,
	.my-lg-104 {
		margin-bottom: 6.5rem !important
	}

	.ml-lg-104,
	.mx-lg-104 {
		margin-left: 6.5rem !important
	}

	.m-lg-105 {
		margin: 6.5625rem !important
	}

	.mt-lg-105,
	.my-lg-105 {
		margin-top: 6.5625rem !important
	}

	.mr-lg-105,
	.mx-lg-105 {
		margin-right: 6.5625rem !important
	}

	.mb-lg-105,
	.my-lg-105 {
		margin-bottom: 6.5625rem !important
	}

	.ml-lg-105,
	.mx-lg-105 {
		margin-left: 6.5625rem !important
	}

	.m-lg-106 {
		margin: 6.625rem !important
	}

	.mt-lg-106,
	.my-lg-106 {
		margin-top: 6.625rem !important
	}

	.mr-lg-106,
	.mx-lg-106 {
		margin-right: 6.625rem !important
	}

	.mb-lg-106,
	.my-lg-106 {
		margin-bottom: 6.625rem !important
	}

	.ml-lg-106,
	.mx-lg-106 {
		margin-left: 6.625rem !important
	}

	.m-lg-107 {
		margin: 6.6875rem !important
	}

	.mt-lg-107,
	.my-lg-107 {
		margin-top: 6.6875rem !important
	}

	.mr-lg-107,
	.mx-lg-107 {
		margin-right: 6.6875rem !important
	}

	.mb-lg-107,
	.my-lg-107 {
		margin-bottom: 6.6875rem !important
	}

	.ml-lg-107,
	.mx-lg-107 {
		margin-left: 6.6875rem !important
	}

	.m-lg-108 {
		margin: 6.75rem !important
	}

	.mt-lg-108,
	.my-lg-108 {
		margin-top: 6.75rem !important
	}

	.mr-lg-108,
	.mx-lg-108 {
		margin-right: 6.75rem !important
	}

	.mb-lg-108,
	.my-lg-108 {
		margin-bottom: 6.75rem !important
	}

	.ml-lg-108,
	.mx-lg-108 {
		margin-left: 6.75rem !important
	}

	.m-lg-109 {
		margin: 6.8125rem !important
	}

	.mt-lg-109,
	.my-lg-109 {
		margin-top: 6.8125rem !important
	}

	.mr-lg-109,
	.mx-lg-109 {
		margin-right: 6.8125rem !important
	}

	.mb-lg-109,
	.my-lg-109 {
		margin-bottom: 6.8125rem !important
	}

	.ml-lg-109,
	.mx-lg-109 {
		margin-left: 6.8125rem !important
	}

	.m-lg-110 {
		margin: 6.875rem !important
	}

	.mt-lg-110,
	.my-lg-110 {
		margin-top: 6.875rem !important
	}

	.mr-lg-110,
	.mx-lg-110 {
		margin-right: 6.875rem !important
	}

	.mb-lg-110,
	.my-lg-110 {
		margin-bottom: 6.875rem !important
	}

	.ml-lg-110,
	.mx-lg-110 {
		margin-left: 6.875rem !important
	}

	.m-lg-111 {
		margin: 6.9375rem !important
	}

	.mt-lg-111,
	.my-lg-111 {
		margin-top: 6.9375rem !important
	}

	.mr-lg-111,
	.mx-lg-111 {
		margin-right: 6.9375rem !important
	}

	.mb-lg-111,
	.my-lg-111 {
		margin-bottom: 6.9375rem !important
	}

	.ml-lg-111,
	.mx-lg-111 {
		margin-left: 6.9375rem !important
	}

	.m-lg-112 {
		margin: 7rem !important
	}

	.mt-lg-112,
	.my-lg-112 {
		margin-top: 7rem !important
	}

	.mr-lg-112,
	.mx-lg-112 {
		margin-right: 7rem !important
	}

	.mb-lg-112,
	.my-lg-112 {
		margin-bottom: 7rem !important
	}

	.ml-lg-112,
	.mx-lg-112 {
		margin-left: 7rem !important
	}

	.m-lg-113 {
		margin: 7.0625rem !important
	}

	.mt-lg-113,
	.my-lg-113 {
		margin-top: 7.0625rem !important
	}

	.mr-lg-113,
	.mx-lg-113 {
		margin-right: 7.0625rem !important
	}

	.mb-lg-113,
	.my-lg-113 {
		margin-bottom: 7.0625rem !important
	}

	.ml-lg-113,
	.mx-lg-113 {
		margin-left: 7.0625rem !important
	}

	.m-lg-114 {
		margin: 7.125rem !important
	}

	.mt-lg-114,
	.my-lg-114 {
		margin-top: 7.125rem !important
	}

	.mr-lg-114,
	.mx-lg-114 {
		margin-right: 7.125rem !important
	}

	.mb-lg-114,
	.my-lg-114 {
		margin-bottom: 7.125rem !important
	}

	.ml-lg-114,
	.mx-lg-114 {
		margin-left: 7.125rem !important
	}

	.m-lg-115 {
		margin: 7.1875rem !important
	}

	.mt-lg-115,
	.my-lg-115 {
		margin-top: 7.1875rem !important
	}

	.mr-lg-115,
	.mx-lg-115 {
		margin-right: 7.1875rem !important
	}

	.mb-lg-115,
	.my-lg-115 {
		margin-bottom: 7.1875rem !important
	}

	.ml-lg-115,
	.mx-lg-115 {
		margin-left: 7.1875rem !important
	}

	.m-lg-116 {
		margin: 7.25rem !important
	}

	.mt-lg-116,
	.my-lg-116 {
		margin-top: 7.25rem !important
	}

	.mr-lg-116,
	.mx-lg-116 {
		margin-right: 7.25rem !important
	}

	.mb-lg-116,
	.my-lg-116 {
		margin-bottom: 7.25rem !important
	}

	.ml-lg-116,
	.mx-lg-116 {
		margin-left: 7.25rem !important
	}

	.m-lg-117 {
		margin: 7.3125rem !important
	}

	.mt-lg-117,
	.my-lg-117 {
		margin-top: 7.3125rem !important
	}

	.mr-lg-117,
	.mx-lg-117 {
		margin-right: 7.3125rem !important
	}

	.mb-lg-117,
	.my-lg-117 {
		margin-bottom: 7.3125rem !important
	}

	.ml-lg-117,
	.mx-lg-117 {
		margin-left: 7.3125rem !important
	}

	.m-lg-118 {
		margin: 7.375rem !important
	}

	.mt-lg-118,
	.my-lg-118 {
		margin-top: 7.375rem !important
	}

	.mr-lg-118,
	.mx-lg-118 {
		margin-right: 7.375rem !important
	}

	.mb-lg-118,
	.my-lg-118 {
		margin-bottom: 7.375rem !important
	}

	.ml-lg-118,
	.mx-lg-118 {
		margin-left: 7.375rem !important
	}

	.m-lg-119 {
		margin: 7.4375rem !important
	}

	.mt-lg-119,
	.my-lg-119 {
		margin-top: 7.4375rem !important
	}

	.mr-lg-119,
	.mx-lg-119 {
		margin-right: 7.4375rem !important
	}

	.mb-lg-119,
	.my-lg-119 {
		margin-bottom: 7.4375rem !important
	}

	.ml-lg-119,
	.mx-lg-119 {
		margin-left: 7.4375rem !important
	}

	.m-lg-120 {
		margin: 7.5rem !important
	}

	.mt-lg-120,
	.my-lg-120 {
		margin-top: 7.5rem !important
	}

	.mr-lg-120,
	.mx-lg-120 {
		margin-right: 7.5rem !important
	}

	.mb-lg-120,
	.my-lg-120 {
		margin-bottom: 7.5rem !important
	}

	.ml-lg-120,
	.mx-lg-120 {
		margin-left: 7.5rem !important
	}

	.m-lg-121 {
		margin: 7.5625rem !important
	}

	.mt-lg-121,
	.my-lg-121 {
		margin-top: 7.5625rem !important
	}

	.mr-lg-121,
	.mx-lg-121 {
		margin-right: 7.5625rem !important
	}

	.mb-lg-121,
	.my-lg-121 {
		margin-bottom: 7.5625rem !important
	}

	.ml-lg-121,
	.mx-lg-121 {
		margin-left: 7.5625rem !important
	}

	.m-lg-122 {
		margin: 7.625rem !important
	}

	.mt-lg-122,
	.my-lg-122 {
		margin-top: 7.625rem !important
	}

	.mr-lg-122,
	.mx-lg-122 {
		margin-right: 7.625rem !important
	}

	.mb-lg-122,
	.my-lg-122 {
		margin-bottom: 7.625rem !important
	}

	.ml-lg-122,
	.mx-lg-122 {
		margin-left: 7.625rem !important
	}

	.m-lg-123 {
		margin: 7.6875rem !important
	}

	.mt-lg-123,
	.my-lg-123 {
		margin-top: 7.6875rem !important
	}

	.mr-lg-123,
	.mx-lg-123 {
		margin-right: 7.6875rem !important
	}

	.mb-lg-123,
	.my-lg-123 {
		margin-bottom: 7.6875rem !important
	}

	.ml-lg-123,
	.mx-lg-123 {
		margin-left: 7.6875rem !important
	}

	.m-lg-124 {
		margin: 7.75rem !important
	}

	.mt-lg-124,
	.my-lg-124 {
		margin-top: 7.75rem !important
	}

	.mr-lg-124,
	.mx-lg-124 {
		margin-right: 7.75rem !important
	}

	.mb-lg-124,
	.my-lg-124 {
		margin-bottom: 7.75rem !important
	}

	.ml-lg-124,
	.mx-lg-124 {
		margin-left: 7.75rem !important
	}

	.m-lg-125 {
		margin: 7.8125rem !important
	}

	.mt-lg-125,
	.my-lg-125 {
		margin-top: 7.8125rem !important
	}

	.mr-lg-125,
	.mx-lg-125 {
		margin-right: 7.8125rem !important
	}

	.mb-lg-125,
	.my-lg-125 {
		margin-bottom: 7.8125rem !important
	}

	.ml-lg-125,
	.mx-lg-125 {
		margin-left: 7.8125rem !important
	}

	.m-lg-126 {
		margin: 7.875rem !important
	}

	.mt-lg-126,
	.my-lg-126 {
		margin-top: 7.875rem !important
	}

	.mr-lg-126,
	.mx-lg-126 {
		margin-right: 7.875rem !important
	}

	.mb-lg-126,
	.my-lg-126 {
		margin-bottom: 7.875rem !important
	}

	.ml-lg-126,
	.mx-lg-126 {
		margin-left: 7.875rem !important
	}

	.m-lg-127 {
		margin: 7.9375rem !important
	}

	.mt-lg-127,
	.my-lg-127 {
		margin-top: 7.9375rem !important
	}

	.mr-lg-127,
	.mx-lg-127 {
		margin-right: 7.9375rem !important
	}

	.mb-lg-127,
	.my-lg-127 {
		margin-bottom: 7.9375rem !important
	}

	.ml-lg-127,
	.mx-lg-127 {
		margin-left: 7.9375rem !important
	}

	.m-lg-128 {
		margin: 8rem !important
	}

	.mt-lg-128,
	.my-lg-128 {
		margin-top: 8rem !important
	}

	.mr-lg-128,
	.mx-lg-128 {
		margin-right: 8rem !important
	}

	.mb-lg-128,
	.my-lg-128 {
		margin-bottom: 8rem !important
	}

	.ml-lg-128,
	.mx-lg-128 {
		margin-left: 8rem !important
	}

	.m-lg-129 {
		margin: 8.0625rem !important
	}

	.mt-lg-129,
	.my-lg-129 {
		margin-top: 8.0625rem !important
	}

	.mr-lg-129,
	.mx-lg-129 {
		margin-right: 8.0625rem !important
	}

	.mb-lg-129,
	.my-lg-129 {
		margin-bottom: 8.0625rem !important
	}

	.ml-lg-129,
	.mx-lg-129 {
		margin-left: 8.0625rem !important
	}

	.m-lg-130 {
		margin: 8.125rem !important
	}

	.mt-lg-130,
	.my-lg-130 {
		margin-top: 8.125rem !important
	}

	.mr-lg-130,
	.mx-lg-130 {
		margin-right: 8.125rem !important
	}

	.mb-lg-130,
	.my-lg-130 {
		margin-bottom: 8.125rem !important
	}

	.ml-lg-130,
	.mx-lg-130 {
		margin-left: 8.125rem !important
	}

	.m-lg-131 {
		margin: 8.1875rem !important
	}

	.mt-lg-131,
	.my-lg-131 {
		margin-top: 8.1875rem !important
	}

	.mr-lg-131,
	.mx-lg-131 {
		margin-right: 8.1875rem !important
	}

	.mb-lg-131,
	.my-lg-131 {
		margin-bottom: 8.1875rem !important
	}

	.ml-lg-131,
	.mx-lg-131 {
		margin-left: 8.1875rem !important
	}

	.m-lg-132 {
		margin: 8.25rem !important
	}

	.mt-lg-132,
	.my-lg-132 {
		margin-top: 8.25rem !important
	}

	.mr-lg-132,
	.mx-lg-132 {
		margin-right: 8.25rem !important
	}

	.mb-lg-132,
	.my-lg-132 {
		margin-bottom: 8.25rem !important
	}

	.ml-lg-132,
	.mx-lg-132 {
		margin-left: 8.25rem !important
	}

	.m-lg-133 {
		margin: 8.3125rem !important
	}

	.mt-lg-133,
	.my-lg-133 {
		margin-top: 8.3125rem !important
	}

	.mr-lg-133,
	.mx-lg-133 {
		margin-right: 8.3125rem !important
	}

	.mb-lg-133,
	.my-lg-133 {
		margin-bottom: 8.3125rem !important
	}

	.ml-lg-133,
	.mx-lg-133 {
		margin-left: 8.3125rem !important
	}

	.m-lg-134 {
		margin: 8.375rem !important
	}

	.mt-lg-134,
	.my-lg-134 {
		margin-top: 8.375rem !important
	}

	.mr-lg-134,
	.mx-lg-134 {
		margin-right: 8.375rem !important
	}

	.mb-lg-134,
	.my-lg-134 {
		margin-bottom: 8.375rem !important
	}

	.ml-lg-134,
	.mx-lg-134 {
		margin-left: 8.375rem !important
	}

	.m-lg-135 {
		margin: 8.4375rem !important
	}

	.mt-lg-135,
	.my-lg-135 {
		margin-top: 8.4375rem !important
	}

	.mr-lg-135,
	.mx-lg-135 {
		margin-right: 8.4375rem !important
	}

	.mb-lg-135,
	.my-lg-135 {
		margin-bottom: 8.4375rem !important
	}

	.ml-lg-135,
	.mx-lg-135 {
		margin-left: 8.4375rem !important
	}

	.m-lg-136 {
		margin: 8.5rem !important
	}

	.mt-lg-136,
	.my-lg-136 {
		margin-top: 8.5rem !important
	}

	.mr-lg-136,
	.mx-lg-136 {
		margin-right: 8.5rem !important
	}

	.mb-lg-136,
	.my-lg-136 {
		margin-bottom: 8.5rem !important
	}

	.ml-lg-136,
	.mx-lg-136 {
		margin-left: 8.5rem !important
	}

	.m-lg-137 {
		margin: 8.5625rem !important
	}

	.mt-lg-137,
	.my-lg-137 {
		margin-top: 8.5625rem !important
	}

	.mr-lg-137,
	.mx-lg-137 {
		margin-right: 8.5625rem !important
	}

	.mb-lg-137,
	.my-lg-137 {
		margin-bottom: 8.5625rem !important
	}

	.ml-lg-137,
	.mx-lg-137 {
		margin-left: 8.5625rem !important
	}

	.m-lg-138 {
		margin: 8.625rem !important
	}

	.mt-lg-138,
	.my-lg-138 {
		margin-top: 8.625rem !important
	}

	.mr-lg-138,
	.mx-lg-138 {
		margin-right: 8.625rem !important
	}

	.mb-lg-138,
	.my-lg-138 {
		margin-bottom: 8.625rem !important
	}

	.ml-lg-138,
	.mx-lg-138 {
		margin-left: 8.625rem !important
	}

	.m-lg-139 {
		margin: 8.6875rem !important
	}

	.mt-lg-139,
	.my-lg-139 {
		margin-top: 8.6875rem !important
	}

	.mr-lg-139,
	.mx-lg-139 {
		margin-right: 8.6875rem !important
	}

	.mb-lg-139,
	.my-lg-139 {
		margin-bottom: 8.6875rem !important
	}

	.ml-lg-139,
	.mx-lg-139 {
		margin-left: 8.6875rem !important
	}

	.m-lg-140 {
		margin: 8.75rem !important
	}

	.mt-lg-140,
	.my-lg-140 {
		margin-top: 8.75rem !important
	}

	.mr-lg-140,
	.mx-lg-140 {
		margin-right: 8.75rem !important
	}

	.mb-lg-140,
	.my-lg-140 {
		margin-bottom: 8.75rem !important
	}

	.ml-lg-140,
	.mx-lg-140 {
		margin-left: 8.75rem !important
	}

	.m-lg-141 {
		margin: 8.8125rem !important
	}

	.mt-lg-141,
	.my-lg-141 {
		margin-top: 8.8125rem !important
	}

	.mr-lg-141,
	.mx-lg-141 {
		margin-right: 8.8125rem !important
	}

	.mb-lg-141,
	.my-lg-141 {
		margin-bottom: 8.8125rem !important
	}

	.ml-lg-141,
	.mx-lg-141 {
		margin-left: 8.8125rem !important
	}

	.m-lg-142 {
		margin: 8.875rem !important
	}

	.mt-lg-142,
	.my-lg-142 {
		margin-top: 8.875rem !important
	}

	.mr-lg-142,
	.mx-lg-142 {
		margin-right: 8.875rem !important
	}

	.mb-lg-142,
	.my-lg-142 {
		margin-bottom: 8.875rem !important
	}

	.ml-lg-142,
	.mx-lg-142 {
		margin-left: 8.875rem !important
	}

	.m-lg-143 {
		margin: 8.9375rem !important
	}

	.mt-lg-143,
	.my-lg-143 {
		margin-top: 8.9375rem !important
	}

	.mr-lg-143,
	.mx-lg-143 {
		margin-right: 8.9375rem !important
	}

	.mb-lg-143,
	.my-lg-143 {
		margin-bottom: 8.9375rem !important
	}

	.ml-lg-143,
	.mx-lg-143 {
		margin-left: 8.9375rem !important
	}

	.m-lg-144 {
		margin: 9rem !important
	}

	.mt-lg-144,
	.my-lg-144 {
		margin-top: 9rem !important
	}

	.mr-lg-144,
	.mx-lg-144 {
		margin-right: 9rem !important
	}

	.mb-lg-144,
	.my-lg-144 {
		margin-bottom: 9rem !important
	}

	.ml-lg-144,
	.mx-lg-144 {
		margin-left: 9rem !important
	}

	.m-lg-145 {
		margin: 9.0625rem !important
	}

	.mt-lg-145,
	.my-lg-145 {
		margin-top: 9.0625rem !important
	}

	.mr-lg-145,
	.mx-lg-145 {
		margin-right: 9.0625rem !important
	}

	.mb-lg-145,
	.my-lg-145 {
		margin-bottom: 9.0625rem !important
	}

	.ml-lg-145,
	.mx-lg-145 {
		margin-left: 9.0625rem !important
	}

	.m-lg-146 {
		margin: 9.125rem !important
	}

	.mt-lg-146,
	.my-lg-146 {
		margin-top: 9.125rem !important
	}

	.mr-lg-146,
	.mx-lg-146 {
		margin-right: 9.125rem !important
	}

	.mb-lg-146,
	.my-lg-146 {
		margin-bottom: 9.125rem !important
	}

	.ml-lg-146,
	.mx-lg-146 {
		margin-left: 9.125rem !important
	}

	.m-lg-147 {
		margin: 9.1875rem !important
	}

	.mt-lg-147,
	.my-lg-147 {
		margin-top: 9.1875rem !important
	}

	.mr-lg-147,
	.mx-lg-147 {
		margin-right: 9.1875rem !important
	}

	.mb-lg-147,
	.my-lg-147 {
		margin-bottom: 9.1875rem !important
	}

	.ml-lg-147,
	.mx-lg-147 {
		margin-left: 9.1875rem !important
	}

	.m-lg-148 {
		margin: 9.25rem !important
	}

	.mt-lg-148,
	.my-lg-148 {
		margin-top: 9.25rem !important
	}

	.mr-lg-148,
	.mx-lg-148 {
		margin-right: 9.25rem !important
	}

	.mb-lg-148,
	.my-lg-148 {
		margin-bottom: 9.25rem !important
	}

	.ml-lg-148,
	.mx-lg-148 {
		margin-left: 9.25rem !important
	}

	.m-lg-149 {
		margin: 9.3125rem !important
	}

	.mt-lg-149,
	.my-lg-149 {
		margin-top: 9.3125rem !important
	}

	.mr-lg-149,
	.mx-lg-149 {
		margin-right: 9.3125rem !important
	}

	.mb-lg-149,
	.my-lg-149 {
		margin-bottom: 9.3125rem !important
	}

	.ml-lg-149,
	.mx-lg-149 {
		margin-left: 9.3125rem !important
	}

	.m-lg-150 {
		margin: 9.375rem !important
	}

	.mt-lg-150,
	.my-lg-150 {
		margin-top: 9.375rem !important
	}

	.mr-lg-150,
	.mx-lg-150 {
		margin-right: 9.375rem !important
	}

	.mb-lg-150,
	.my-lg-150 {
		margin-bottom: 9.375rem !important
	}

	.ml-lg-150,
	.mx-lg-150 {
		margin-left: 9.375rem !important
	}

	.m-lg-151 {
		margin: 9.4375rem !important
	}

	.mt-lg-151,
	.my-lg-151 {
		margin-top: 9.4375rem !important
	}

	.mr-lg-151,
	.mx-lg-151 {
		margin-right: 9.4375rem !important
	}

	.mb-lg-151,
	.my-lg-151 {
		margin-bottom: 9.4375rem !important
	}

	.ml-lg-151,
	.mx-lg-151 {
		margin-left: 9.4375rem !important
	}

	.m-lg-152 {
		margin: 9.5rem !important
	}

	.mt-lg-152,
	.my-lg-152 {
		margin-top: 9.5rem !important
	}

	.mr-lg-152,
	.mx-lg-152 {
		margin-right: 9.5rem !important
	}

	.mb-lg-152,
	.my-lg-152 {
		margin-bottom: 9.5rem !important
	}

	.ml-lg-152,
	.mx-lg-152 {
		margin-left: 9.5rem !important
	}

	.m-lg-153 {
		margin: 9.5625rem !important
	}

	.mt-lg-153,
	.my-lg-153 {
		margin-top: 9.5625rem !important
	}

	.mr-lg-153,
	.mx-lg-153 {
		margin-right: 9.5625rem !important
	}

	.mb-lg-153,
	.my-lg-153 {
		margin-bottom: 9.5625rem !important
	}

	.ml-lg-153,
	.mx-lg-153 {
		margin-left: 9.5625rem !important
	}

	.m-lg-154 {
		margin: 9.625rem !important
	}

	.mt-lg-154,
	.my-lg-154 {
		margin-top: 9.625rem !important
	}

	.mr-lg-154,
	.mx-lg-154 {
		margin-right: 9.625rem !important
	}

	.mb-lg-154,
	.my-lg-154 {
		margin-bottom: 9.625rem !important
	}

	.ml-lg-154,
	.mx-lg-154 {
		margin-left: 9.625rem !important
	}

	.m-lg-155 {
		margin: 9.6875rem !important
	}

	.mt-lg-155,
	.my-lg-155 {
		margin-top: 9.6875rem !important
	}

	.mr-lg-155,
	.mx-lg-155 {
		margin-right: 9.6875rem !important
	}

	.mb-lg-155,
	.my-lg-155 {
		margin-bottom: 9.6875rem !important
	}

	.ml-lg-155,
	.mx-lg-155 {
		margin-left: 9.6875rem !important
	}

	.m-lg-156 {
		margin: 9.75rem !important
	}

	.mt-lg-156,
	.my-lg-156 {
		margin-top: 9.75rem !important
	}

	.mr-lg-156,
	.mx-lg-156 {
		margin-right: 9.75rem !important
	}

	.mb-lg-156,
	.my-lg-156 {
		margin-bottom: 9.75rem !important
	}

	.ml-lg-156,
	.mx-lg-156 {
		margin-left: 9.75rem !important
	}

	.m-lg-157 {
		margin: 9.8125rem !important
	}

	.mt-lg-157,
	.my-lg-157 {
		margin-top: 9.8125rem !important
	}

	.mr-lg-157,
	.mx-lg-157 {
		margin-right: 9.8125rem !important
	}

	.mb-lg-157,
	.my-lg-157 {
		margin-bottom: 9.8125rem !important
	}

	.ml-lg-157,
	.mx-lg-157 {
		margin-left: 9.8125rem !important
	}

	.m-lg-158 {
		margin: 9.875rem !important
	}

	.mt-lg-158,
	.my-lg-158 {
		margin-top: 9.875rem !important
	}

	.mr-lg-158,
	.mx-lg-158 {
		margin-right: 9.875rem !important
	}

	.mb-lg-158,
	.my-lg-158 {
		margin-bottom: 9.875rem !important
	}

	.ml-lg-158,
	.mx-lg-158 {
		margin-left: 9.875rem !important
	}

	.m-lg-159 {
		margin: 9.9375rem !important
	}

	.mt-lg-159,
	.my-lg-159 {
		margin-top: 9.9375rem !important
	}

	.mr-lg-159,
	.mx-lg-159 {
		margin-right: 9.9375rem !important
	}

	.mb-lg-159,
	.my-lg-159 {
		margin-bottom: 9.9375rem !important
	}

	.ml-lg-159,
	.mx-lg-159 {
		margin-left: 9.9375rem !important
	}

	.m-lg-160 {
		margin: 10rem !important
	}

	.mt-lg-160,
	.my-lg-160 {
		margin-top: 10rem !important
	}

	.mr-lg-160,
	.mx-lg-160 {
		margin-right: 10rem !important
	}

	.mb-lg-160,
	.my-lg-160 {
		margin-bottom: 10rem !important
	}

	.ml-lg-160,
	.mx-lg-160 {
		margin-left: 10rem !important
	}

	.m-lg-161 {
		margin: 10.0625rem !important
	}

	.mt-lg-161,
	.my-lg-161 {
		margin-top: 10.0625rem !important
	}

	.mr-lg-161,
	.mx-lg-161 {
		margin-right: 10.0625rem !important
	}

	.mb-lg-161,
	.my-lg-161 {
		margin-bottom: 10.0625rem !important
	}

	.ml-lg-161,
	.mx-lg-161 {
		margin-left: 10.0625rem !important
	}

	.m-lg-162 {
		margin: 10.125rem !important
	}

	.mt-lg-162,
	.my-lg-162 {
		margin-top: 10.125rem !important
	}

	.mr-lg-162,
	.mx-lg-162 {
		margin-right: 10.125rem !important
	}

	.mb-lg-162,
	.my-lg-162 {
		margin-bottom: 10.125rem !important
	}

	.ml-lg-162,
	.mx-lg-162 {
		margin-left: 10.125rem !important
	}

	.m-lg-163 {
		margin: 10.1875rem !important
	}

	.mt-lg-163,
	.my-lg-163 {
		margin-top: 10.1875rem !important
	}

	.mr-lg-163,
	.mx-lg-163 {
		margin-right: 10.1875rem !important
	}

	.mb-lg-163,
	.my-lg-163 {
		margin-bottom: 10.1875rem !important
	}

	.ml-lg-163,
	.mx-lg-163 {
		margin-left: 10.1875rem !important
	}

	.m-lg-164 {
		margin: 10.25rem !important
	}

	.mt-lg-164,
	.my-lg-164 {
		margin-top: 10.25rem !important
	}

	.mr-lg-164,
	.mx-lg-164 {
		margin-right: 10.25rem !important
	}

	.mb-lg-164,
	.my-lg-164 {
		margin-bottom: 10.25rem !important
	}

	.ml-lg-164,
	.mx-lg-164 {
		margin-left: 10.25rem !important
	}

	.m-lg-165 {
		margin: 10.3125rem !important
	}

	.mt-lg-165,
	.my-lg-165 {
		margin-top: 10.3125rem !important
	}

	.mr-lg-165,
	.mx-lg-165 {
		margin-right: 10.3125rem !important
	}

	.mb-lg-165,
	.my-lg-165 {
		margin-bottom: 10.3125rem !important
	}

	.ml-lg-165,
	.mx-lg-165 {
		margin-left: 10.3125rem !important
	}

	.m-lg-166 {
		margin: 10.375rem !important
	}

	.mt-lg-166,
	.my-lg-166 {
		margin-top: 10.375rem !important
	}

	.mr-lg-166,
	.mx-lg-166 {
		margin-right: 10.375rem !important
	}

	.mb-lg-166,
	.my-lg-166 {
		margin-bottom: 10.375rem !important
	}

	.ml-lg-166,
	.mx-lg-166 {
		margin-left: 10.375rem !important
	}

	.m-lg-167 {
		margin: 10.4375rem !important
	}

	.mt-lg-167,
	.my-lg-167 {
		margin-top: 10.4375rem !important
	}

	.mr-lg-167,
	.mx-lg-167 {
		margin-right: 10.4375rem !important
	}

	.mb-lg-167,
	.my-lg-167 {
		margin-bottom: 10.4375rem !important
	}

	.ml-lg-167,
	.mx-lg-167 {
		margin-left: 10.4375rem !important
	}

	.m-lg-168 {
		margin: 10.5rem !important
	}

	.mt-lg-168,
	.my-lg-168 {
		margin-top: 10.5rem !important
	}

	.mr-lg-168,
	.mx-lg-168 {
		margin-right: 10.5rem !important
	}

	.mb-lg-168,
	.my-lg-168 {
		margin-bottom: 10.5rem !important
	}

	.ml-lg-168,
	.mx-lg-168 {
		margin-left: 10.5rem !important
	}

	.m-lg-169 {
		margin: 10.5625rem !important
	}

	.mt-lg-169,
	.my-lg-169 {
		margin-top: 10.5625rem !important
	}

	.mr-lg-169,
	.mx-lg-169 {
		margin-right: 10.5625rem !important
	}

	.mb-lg-169,
	.my-lg-169 {
		margin-bottom: 10.5625rem !important
	}

	.ml-lg-169,
	.mx-lg-169 {
		margin-left: 10.5625rem !important
	}

	.m-lg-170 {
		margin: 10.625rem !important
	}

	.mt-lg-170,
	.my-lg-170 {
		margin-top: 10.625rem !important
	}

	.mr-lg-170,
	.mx-lg-170 {
		margin-right: 10.625rem !important
	}

	.mb-lg-170,
	.my-lg-170 {
		margin-bottom: 10.625rem !important
	}

	.ml-lg-170,
	.mx-lg-170 {
		margin-left: 10.625rem !important
	}

	.m-lg-171 {
		margin: 10.6875rem !important
	}

	.mt-lg-171,
	.my-lg-171 {
		margin-top: 10.6875rem !important
	}

	.mr-lg-171,
	.mx-lg-171 {
		margin-right: 10.6875rem !important
	}

	.mb-lg-171,
	.my-lg-171 {
		margin-bottom: 10.6875rem !important
	}

	.ml-lg-171,
	.mx-lg-171 {
		margin-left: 10.6875rem !important
	}

	.m-lg-172 {
		margin: 10.75rem !important
	}

	.mt-lg-172,
	.my-lg-172 {
		margin-top: 10.75rem !important
	}

	.mr-lg-172,
	.mx-lg-172 {
		margin-right: 10.75rem !important
	}

	.mb-lg-172,
	.my-lg-172 {
		margin-bottom: 10.75rem !important
	}

	.ml-lg-172,
	.mx-lg-172 {
		margin-left: 10.75rem !important
	}

	.m-lg-173 {
		margin: 10.8125rem !important
	}

	.mt-lg-173,
	.my-lg-173 {
		margin-top: 10.8125rem !important
	}

	.mr-lg-173,
	.mx-lg-173 {
		margin-right: 10.8125rem !important
	}

	.mb-lg-173,
	.my-lg-173 {
		margin-bottom: 10.8125rem !important
	}

	.ml-lg-173,
	.mx-lg-173 {
		margin-left: 10.8125rem !important
	}

	.m-lg-174 {
		margin: 10.875rem !important
	}

	.mt-lg-174,
	.my-lg-174 {
		margin-top: 10.875rem !important
	}

	.mr-lg-174,
	.mx-lg-174 {
		margin-right: 10.875rem !important
	}

	.mb-lg-174,
	.my-lg-174 {
		margin-bottom: 10.875rem !important
	}

	.ml-lg-174,
	.mx-lg-174 {
		margin-left: 10.875rem !important
	}

	.m-lg-175 {
		margin: 10.9375rem !important
	}

	.mt-lg-175,
	.my-lg-175 {
		margin-top: 10.9375rem !important
	}

	.mr-lg-175,
	.mx-lg-175 {
		margin-right: 10.9375rem !important
	}

	.mb-lg-175,
	.my-lg-175 {
		margin-bottom: 10.9375rem !important
	}

	.ml-lg-175,
	.mx-lg-175 {
		margin-left: 10.9375rem !important
	}

	.m-lg-176 {
		margin: 11rem !important
	}

	.mt-lg-176,
	.my-lg-176 {
		margin-top: 11rem !important
	}

	.mr-lg-176,
	.mx-lg-176 {
		margin-right: 11rem !important
	}

	.mb-lg-176,
	.my-lg-176 {
		margin-bottom: 11rem !important
	}

	.ml-lg-176,
	.mx-lg-176 {
		margin-left: 11rem !important
	}

	.m-lg-177 {
		margin: 11.0625rem !important
	}

	.mt-lg-177,
	.my-lg-177 {
		margin-top: 11.0625rem !important
	}

	.mr-lg-177,
	.mx-lg-177 {
		margin-right: 11.0625rem !important
	}

	.mb-lg-177,
	.my-lg-177 {
		margin-bottom: 11.0625rem !important
	}

	.ml-lg-177,
	.mx-lg-177 {
		margin-left: 11.0625rem !important
	}

	.m-lg-178 {
		margin: 11.125rem !important
	}

	.mt-lg-178,
	.my-lg-178 {
		margin-top: 11.125rem !important
	}

	.mr-lg-178,
	.mx-lg-178 {
		margin-right: 11.125rem !important
	}

	.mb-lg-178,
	.my-lg-178 {
		margin-bottom: 11.125rem !important
	}

	.ml-lg-178,
	.mx-lg-178 {
		margin-left: 11.125rem !important
	}

	.m-lg-179 {
		margin: 11.1875rem !important
	}

	.mt-lg-179,
	.my-lg-179 {
		margin-top: 11.1875rem !important
	}

	.mr-lg-179,
	.mx-lg-179 {
		margin-right: 11.1875rem !important
	}

	.mb-lg-179,
	.my-lg-179 {
		margin-bottom: 11.1875rem !important
	}

	.ml-lg-179,
	.mx-lg-179 {
		margin-left: 11.1875rem !important
	}

	.m-lg-180 {
		margin: 11.25rem !important
	}

	.mt-lg-180,
	.my-lg-180 {
		margin-top: 11.25rem !important
	}

	.mr-lg-180,
	.mx-lg-180 {
		margin-right: 11.25rem !important
	}

	.mb-lg-180,
	.my-lg-180 {
		margin-bottom: 11.25rem !important
	}

	.ml-lg-180,
	.mx-lg-180 {
		margin-left: 11.25rem !important
	}

	.m-lg-181 {
		margin: 11.3125rem !important
	}

	.mt-lg-181,
	.my-lg-181 {
		margin-top: 11.3125rem !important
	}

	.mr-lg-181,
	.mx-lg-181 {
		margin-right: 11.3125rem !important
	}

	.mb-lg-181,
	.my-lg-181 {
		margin-bottom: 11.3125rem !important
	}

	.ml-lg-181,
	.mx-lg-181 {
		margin-left: 11.3125rem !important
	}

	.m-lg-182 {
		margin: 11.375rem !important
	}

	.mt-lg-182,
	.my-lg-182 {
		margin-top: 11.375rem !important
	}

	.mr-lg-182,
	.mx-lg-182 {
		margin-right: 11.375rem !important
	}

	.mb-lg-182,
	.my-lg-182 {
		margin-bottom: 11.375rem !important
	}

	.ml-lg-182,
	.mx-lg-182 {
		margin-left: 11.375rem !important
	}

	.m-lg-183 {
		margin: 11.4375rem !important
	}

	.mt-lg-183,
	.my-lg-183 {
		margin-top: 11.4375rem !important
	}

	.mr-lg-183,
	.mx-lg-183 {
		margin-right: 11.4375rem !important
	}

	.mb-lg-183,
	.my-lg-183 {
		margin-bottom: 11.4375rem !important
	}

	.ml-lg-183,
	.mx-lg-183 {
		margin-left: 11.4375rem !important
	}

	.m-lg-184 {
		margin: 11.5rem !important
	}

	.mt-lg-184,
	.my-lg-184 {
		margin-top: 11.5rem !important
	}

	.mr-lg-184,
	.mx-lg-184 {
		margin-right: 11.5rem !important
	}

	.mb-lg-184,
	.my-lg-184 {
		margin-bottom: 11.5rem !important
	}

	.ml-lg-184,
	.mx-lg-184 {
		margin-left: 11.5rem !important
	}

	.m-lg-185 {
		margin: 11.5625rem !important
	}

	.mt-lg-185,
	.my-lg-185 {
		margin-top: 11.5625rem !important
	}

	.mr-lg-185,
	.mx-lg-185 {
		margin-right: 11.5625rem !important
	}

	.mb-lg-185,
	.my-lg-185 {
		margin-bottom: 11.5625rem !important
	}

	.ml-lg-185,
	.mx-lg-185 {
		margin-left: 11.5625rem !important
	}

	.m-lg-186 {
		margin: 11.625rem !important
	}

	.mt-lg-186,
	.my-lg-186 {
		margin-top: 11.625rem !important
	}

	.mr-lg-186,
	.mx-lg-186 {
		margin-right: 11.625rem !important
	}

	.mb-lg-186,
	.my-lg-186 {
		margin-bottom: 11.625rem !important
	}

	.ml-lg-186,
	.mx-lg-186 {
		margin-left: 11.625rem !important
	}

	.m-lg-187 {
		margin: 11.6875rem !important
	}

	.mt-lg-187,
	.my-lg-187 {
		margin-top: 11.6875rem !important
	}

	.mr-lg-187,
	.mx-lg-187 {
		margin-right: 11.6875rem !important
	}

	.mb-lg-187,
	.my-lg-187 {
		margin-bottom: 11.6875rem !important
	}

	.ml-lg-187,
	.mx-lg-187 {
		margin-left: 11.6875rem !important
	}

	.m-lg-188 {
		margin: 11.75rem !important
	}

	.mt-lg-188,
	.my-lg-188 {
		margin-top: 11.75rem !important
	}

	.mr-lg-188,
	.mx-lg-188 {
		margin-right: 11.75rem !important
	}

	.mb-lg-188,
	.my-lg-188 {
		margin-bottom: 11.75rem !important
	}

	.ml-lg-188,
	.mx-lg-188 {
		margin-left: 11.75rem !important
	}

	.m-lg-189 {
		margin: 11.8125rem !important
	}

	.mt-lg-189,
	.my-lg-189 {
		margin-top: 11.8125rem !important
	}

	.mr-lg-189,
	.mx-lg-189 {
		margin-right: 11.8125rem !important
	}

	.mb-lg-189,
	.my-lg-189 {
		margin-bottom: 11.8125rem !important
	}

	.ml-lg-189,
	.mx-lg-189 {
		margin-left: 11.8125rem !important
	}

	.m-lg-190 {
		margin: 11.875rem !important
	}

	.mt-lg-190,
	.my-lg-190 {
		margin-top: 11.875rem !important
	}

	.mr-lg-190,
	.mx-lg-190 {
		margin-right: 11.875rem !important
	}

	.mb-lg-190,
	.my-lg-190 {
		margin-bottom: 11.875rem !important
	}

	.ml-lg-190,
	.mx-lg-190 {
		margin-left: 11.875rem !important
	}

	.m-lg-191 {
		margin: 11.9375rem !important
	}

	.mt-lg-191,
	.my-lg-191 {
		margin-top: 11.9375rem !important
	}

	.mr-lg-191,
	.mx-lg-191 {
		margin-right: 11.9375rem !important
	}

	.mb-lg-191,
	.my-lg-191 {
		margin-bottom: 11.9375rem !important
	}

	.ml-lg-191,
	.mx-lg-191 {
		margin-left: 11.9375rem !important
	}

	.m-lg-192 {
		margin: 12rem !important
	}

	.mt-lg-192,
	.my-lg-192 {
		margin-top: 12rem !important
	}

	.mr-lg-192,
	.mx-lg-192 {
		margin-right: 12rem !important
	}

	.mb-lg-192,
	.my-lg-192 {
		margin-bottom: 12rem !important
	}

	.ml-lg-192,
	.mx-lg-192 {
		margin-left: 12rem !important
	}

	.m-lg-193 {
		margin: 12.0625rem !important
	}

	.mt-lg-193,
	.my-lg-193 {
		margin-top: 12.0625rem !important
	}

	.mr-lg-193,
	.mx-lg-193 {
		margin-right: 12.0625rem !important
	}

	.mb-lg-193,
	.my-lg-193 {
		margin-bottom: 12.0625rem !important
	}

	.ml-lg-193,
	.mx-lg-193 {
		margin-left: 12.0625rem !important
	}

	.m-lg-194 {
		margin: 12.125rem !important
	}

	.mt-lg-194,
	.my-lg-194 {
		margin-top: 12.125rem !important
	}

	.mr-lg-194,
	.mx-lg-194 {
		margin-right: 12.125rem !important
	}

	.mb-lg-194,
	.my-lg-194 {
		margin-bottom: 12.125rem !important
	}

	.ml-lg-194,
	.mx-lg-194 {
		margin-left: 12.125rem !important
	}

	.m-lg-195 {
		margin: 12.1875rem !important
	}

	.mt-lg-195,
	.my-lg-195 {
		margin-top: 12.1875rem !important
	}

	.mr-lg-195,
	.mx-lg-195 {
		margin-right: 12.1875rem !important
	}

	.mb-lg-195,
	.my-lg-195 {
		margin-bottom: 12.1875rem !important
	}

	.ml-lg-195,
	.mx-lg-195 {
		margin-left: 12.1875rem !important
	}

	.m-lg-196 {
		margin: 12.25rem !important
	}

	.mt-lg-196,
	.my-lg-196 {
		margin-top: 12.25rem !important
	}

	.mr-lg-196,
	.mx-lg-196 {
		margin-right: 12.25rem !important
	}

	.mb-lg-196,
	.my-lg-196 {
		margin-bottom: 12.25rem !important
	}

	.ml-lg-196,
	.mx-lg-196 {
		margin-left: 12.25rem !important
	}

	.m-lg-197 {
		margin: 12.3125rem !important
	}

	.mt-lg-197,
	.my-lg-197 {
		margin-top: 12.3125rem !important
	}

	.mr-lg-197,
	.mx-lg-197 {
		margin-right: 12.3125rem !important
	}

	.mb-lg-197,
	.my-lg-197 {
		margin-bottom: 12.3125rem !important
	}

	.ml-lg-197,
	.mx-lg-197 {
		margin-left: 12.3125rem !important
	}

	.m-lg-198 {
		margin: 12.375rem !important
	}

	.mt-lg-198,
	.my-lg-198 {
		margin-top: 12.375rem !important
	}

	.mr-lg-198,
	.mx-lg-198 {
		margin-right: 12.375rem !important
	}

	.mb-lg-198,
	.my-lg-198 {
		margin-bottom: 12.375rem !important
	}

	.ml-lg-198,
	.mx-lg-198 {
		margin-left: 12.375rem !important
	}

	.m-lg-199 {
		margin: 12.4375rem !important
	}

	.mt-lg-199,
	.my-lg-199 {
		margin-top: 12.4375rem !important
	}

	.mr-lg-199,
	.mx-lg-199 {
		margin-right: 12.4375rem !important
	}

	.mb-lg-199,
	.my-lg-199 {
		margin-bottom: 12.4375rem !important
	}

	.ml-lg-199,
	.mx-lg-199 {
		margin-left: 12.4375rem !important
	}

	.m-lg-200 {
		margin: 12.5rem !important
	}

	.mt-lg-200,
	.my-lg-200 {
		margin-top: 12.5rem !important
	}

	.mr-lg-200,
	.mx-lg-200 {
		margin-right: 12.5rem !important
	}

	.mb-lg-200,
	.my-lg-200 {
		margin-bottom: 12.5rem !important
	}

	.ml-lg-200,
	.mx-lg-200 {
		margin-left: 12.5rem !important
	}

	.p-lg-0 {
		padding: 0 !important
	}

	.pt-lg-0,
	.py-lg-0 {
		padding-top: 0 !important
	}

	.pr-lg-0,
	.px-lg-0 {
		padding-right: 0 !important
	}

	.pb-lg-0,
	.py-lg-0 {
		padding-bottom: 0 !important
	}

	.pl-lg-0,
	.px-lg-0 {
		padding-left: 0 !important
	}

	.p-lg-1 {
		padding: .0625rem !important
	}

	.pt-lg-1,
	.py-lg-1 {
		padding-top: .0625rem !important
	}

	.pr-lg-1,
	.px-lg-1 {
		padding-right: .0625rem !important
	}

	.pb-lg-1,
	.py-lg-1 {
		padding-bottom: .0625rem !important
	}

	.pl-lg-1,
	.px-lg-1 {
		padding-left: .0625rem !important
	}

	.p-lg-2 {
		padding: .125rem !important
	}

	.pt-lg-2,
	.py-lg-2 {
		padding-top: .125rem !important
	}

	.pr-lg-2,
	.px-lg-2 {
		padding-right: .125rem !important
	}

	.pb-lg-2,
	.py-lg-2 {
		padding-bottom: .125rem !important
	}

	.pl-lg-2,
	.px-lg-2 {
		padding-left: .125rem !important
	}

	.p-lg-3 {
		padding: .1875rem !important
	}

	.pt-lg-3,
	.py-lg-3 {
		padding-top: .1875rem !important
	}

	.pr-lg-3,
	.px-lg-3 {
		padding-right: .1875rem !important
	}

	.pb-lg-3,
	.py-lg-3 {
		padding-bottom: .1875rem !important
	}

	.pl-lg-3,
	.px-lg-3 {
		padding-left: .1875rem !important
	}

	.p-lg-4 {
		padding: .25rem !important
	}

	.pt-lg-4,
	.py-lg-4 {
		padding-top: .25rem !important
	}

	.pr-lg-4,
	.px-lg-4 {
		padding-right: .25rem !important
	}

	.pb-lg-4,
	.py-lg-4 {
		padding-bottom: .25rem !important
	}

	.pl-lg-4,
	.px-lg-4 {
		padding-left: .25rem !important
	}

	.p-lg-5 {
		padding: .3125rem !important
	}

	.pt-lg-5,
	.py-lg-5 {
		padding-top: .3125rem !important
	}

	.pr-lg-5,
	.px-lg-5 {
		padding-right: .3125rem !important
	}

	.pb-lg-5,
	.py-lg-5 {
		padding-bottom: .3125rem !important
	}

	.pl-lg-5,
	.px-lg-5 {
		padding-left: .3125rem !important
	}

	.p-lg-6 {
		padding: .375rem !important
	}

	.pt-lg-6,
	.py-lg-6 {
		padding-top: .375rem !important
	}

	.pr-lg-6,
	.px-lg-6 {
		padding-right: .375rem !important
	}

	.pb-lg-6,
	.py-lg-6 {
		padding-bottom: .375rem !important
	}

	.pl-lg-6,
	.px-lg-6 {
		padding-left: .375rem !important
	}

	.p-lg-7 {
		padding: .4375rem !important
	}

	.pt-lg-7,
	.py-lg-7 {
		padding-top: .4375rem !important
	}

	.pr-lg-7,
	.px-lg-7 {
		padding-right: .4375rem !important
	}

	.pb-lg-7,
	.py-lg-7 {
		padding-bottom: .4375rem !important
	}

	.pl-lg-7,
	.px-lg-7 {
		padding-left: .4375rem !important
	}

	.p-lg-8 {
		padding: .5rem !important
	}

	.pt-lg-8,
	.py-lg-8 {
		padding-top: .5rem !important
	}

	.pr-lg-8,
	.px-lg-8 {
		padding-right: .5rem !important
	}

	.pb-lg-8,
	.py-lg-8 {
		padding-bottom: .5rem !important
	}

	.pl-lg-8,
	.px-lg-8 {
		padding-left: .5rem !important
	}

	.p-lg-9 {
		padding: .5625rem !important
	}

	.pt-lg-9,
	.py-lg-9 {
		padding-top: .5625rem !important
	}

	.pr-lg-9,
	.px-lg-9 {
		padding-right: .5625rem !important
	}

	.pb-lg-9,
	.py-lg-9 {
		padding-bottom: .5625rem !important
	}

	.pl-lg-9,
	.px-lg-9 {
		padding-left: .5625rem !important
	}

	.p-lg-10 {
		padding: .625rem !important
	}

	.pt-lg-10,
	.py-lg-10 {
		padding-top: .625rem !important
	}

	.pr-lg-10,
	.px-lg-10 {
		padding-right: .625rem !important
	}

	.pb-lg-10,
	.py-lg-10 {
		padding-bottom: .625rem !important
	}

	.pl-lg-10,
	.px-lg-10 {
		padding-left: .625rem !important
	}

	.p-lg-11 {
		padding: .6875rem !important
	}

	.pt-lg-11,
	.py-lg-11 {
		padding-top: .6875rem !important
	}

	.pr-lg-11,
	.px-lg-11 {
		padding-right: .6875rem !important
	}

	.pb-lg-11,
	.py-lg-11 {
		padding-bottom: .6875rem !important
	}

	.pl-lg-11,
	.px-lg-11 {
		padding-left: .6875rem !important
	}

	.p-lg-12 {
		padding: .75rem !important
	}

	.pt-lg-12,
	.py-lg-12 {
		padding-top: .75rem !important
	}

	.pr-lg-12,
	.px-lg-12 {
		padding-right: .75rem !important
	}

	.pb-lg-12,
	.py-lg-12 {
		padding-bottom: .75rem !important
	}

	.pl-lg-12,
	.px-lg-12 {
		padding-left: .75rem !important
	}

	.p-lg-13 {
		padding: .8125rem !important
	}

	.pt-lg-13,
	.py-lg-13 {
		padding-top: .8125rem !important
	}

	.pr-lg-13,
	.px-lg-13 {
		padding-right: .8125rem !important
	}

	.pb-lg-13,
	.py-lg-13 {
		padding-bottom: .8125rem !important
	}

	.pl-lg-13,
	.px-lg-13 {
		padding-left: .8125rem !important
	}

	.p-lg-14 {
		padding: .875rem !important
	}

	.pt-lg-14,
	.py-lg-14 {
		padding-top: .875rem !important
	}

	.pr-lg-14,
	.px-lg-14 {
		padding-right: .875rem !important
	}

	.pb-lg-14,
	.py-lg-14 {
		padding-bottom: .875rem !important
	}

	.pl-lg-14,
	.px-lg-14 {
		padding-left: .875rem !important
	}

	.p-lg-15 {
		padding: .9375rem !important
	}

	.pt-lg-15,
	.py-lg-15 {
		padding-top: .9375rem !important
	}

	.pr-lg-15,
	.px-lg-15 {
		padding-right: .9375rem !important
	}

	.pb-lg-15,
	.py-lg-15 {
		padding-bottom: .9375rem !important
	}

	.pl-lg-15,
	.px-lg-15 {
		padding-left: .9375rem !important
	}

	.p-lg-16 {
		padding: 1rem !important
	}

	.pt-lg-16,
	.py-lg-16 {
		padding-top: 1rem !important
	}

	.pr-lg-16,
	.px-lg-16 {
		padding-right: 1rem !important
	}

	.pb-lg-16,
	.py-lg-16 {
		padding-bottom: 1rem !important
	}

	.pl-lg-16,
	.px-lg-16 {
		padding-left: 1rem !important
	}

	.p-lg-17 {
		padding: 1.0625rem !important
	}

	.pt-lg-17,
	.py-lg-17 {
		padding-top: 1.0625rem !important
	}

	.pr-lg-17,
	.px-lg-17 {
		padding-right: 1.0625rem !important
	}

	.pb-lg-17,
	.py-lg-17 {
		padding-bottom: 1.0625rem !important
	}

	.pl-lg-17,
	.px-lg-17 {
		padding-left: 1.0625rem !important
	}

	.p-lg-18 {
		padding: 1.125rem !important
	}

	.pt-lg-18,
	.py-lg-18 {
		padding-top: 1.125rem !important
	}

	.pr-lg-18,
	.px-lg-18 {
		padding-right: 1.125rem !important
	}

	.pb-lg-18,
	.py-lg-18 {
		padding-bottom: 1.125rem !important
	}

	.pl-lg-18,
	.px-lg-18 {
		padding-left: 1.125rem !important
	}

	.p-lg-19 {
		padding: 1.1875rem !important
	}

	.pt-lg-19,
	.py-lg-19 {
		padding-top: 1.1875rem !important
	}

	.pr-lg-19,
	.px-lg-19 {
		padding-right: 1.1875rem !important
	}

	.pb-lg-19,
	.py-lg-19 {
		padding-bottom: 1.1875rem !important
	}

	.pl-lg-19,
	.px-lg-19 {
		padding-left: 1.1875rem !important
	}

	.p-lg-20 {
		padding: 1.25rem !important
	}

	.pt-lg-20,
	.py-lg-20 {
		padding-top: 1.25rem !important
	}

	.pr-lg-20,
	.px-lg-20 {
		padding-right: 1.25rem !important
	}

	.pb-lg-20,
	.py-lg-20 {
		padding-bottom: 1.25rem !important
	}

	.pl-lg-20,
	.px-lg-20 {
		padding-left: 1.25rem !important
	}

	.p-lg-21 {
		padding: 1.3125rem !important
	}

	.pt-lg-21,
	.py-lg-21 {
		padding-top: 1.3125rem !important
	}

	.pr-lg-21,
	.px-lg-21 {
		padding-right: 1.3125rem !important
	}

	.pb-lg-21,
	.py-lg-21 {
		padding-bottom: 1.3125rem !important
	}

	.pl-lg-21,
	.px-lg-21 {
		padding-left: 1.3125rem !important
	}

	.p-lg-22 {
		padding: 1.375rem !important
	}

	.pt-lg-22,
	.py-lg-22 {
		padding-top: 1.375rem !important
	}

	.pr-lg-22,
	.px-lg-22 {
		padding-right: 1.375rem !important
	}

	.pb-lg-22,
	.py-lg-22 {
		padding-bottom: 1.375rem !important
	}

	.pl-lg-22,
	.px-lg-22 {
		padding-left: 1.375rem !important
	}

	.p-lg-23 {
		padding: 1.4375rem !important
	}

	.pt-lg-23,
	.py-lg-23 {
		padding-top: 1.4375rem !important
	}

	.pr-lg-23,
	.px-lg-23 {
		padding-right: 1.4375rem !important
	}

	.pb-lg-23,
	.py-lg-23 {
		padding-bottom: 1.4375rem !important
	}

	.pl-lg-23,
	.px-lg-23 {
		padding-left: 1.4375rem !important
	}

	.p-lg-24 {
		padding: 1.5rem !important
	}

	.pt-lg-24,
	.py-lg-24 {
		padding-top: 1.5rem !important
	}

	.pr-lg-24,
	.px-lg-24 {
		padding-right: 1.5rem !important
	}

	.pb-lg-24,
	.py-lg-24 {
		padding-bottom: 1.5rem !important
	}

	.pl-lg-24,
	.px-lg-24 {
		padding-left: 1.5rem !important
	}

	.p-lg-25 {
		padding: 1.5625rem !important
	}

	.pt-lg-25,
	.py-lg-25 {
		padding-top: 1.5625rem !important
	}

	.pr-lg-25,
	.px-lg-25 {
		padding-right: 1.5625rem !important
	}

	.pb-lg-25,
	.py-lg-25 {
		padding-bottom: 1.5625rem !important
	}

	.pl-lg-25,
	.px-lg-25 {
		padding-left: 1.5625rem !important
	}

	.p-lg-26 {
		padding: 1.625rem !important
	}

	.pt-lg-26,
	.py-lg-26 {
		padding-top: 1.625rem !important
	}

	.pr-lg-26,
	.px-lg-26 {
		padding-right: 1.625rem !important
	}

	.pb-lg-26,
	.py-lg-26 {
		padding-bottom: 1.625rem !important
	}

	.pl-lg-26,
	.px-lg-26 {
		padding-left: 1.625rem !important
	}

	.p-lg-27 {
		padding: 1.6875rem !important
	}

	.pt-lg-27,
	.py-lg-27 {
		padding-top: 1.6875rem !important
	}

	.pr-lg-27,
	.px-lg-27 {
		padding-right: 1.6875rem !important
	}

	.pb-lg-27,
	.py-lg-27 {
		padding-bottom: 1.6875rem !important
	}

	.pl-lg-27,
	.px-lg-27 {
		padding-left: 1.6875rem !important
	}

	.p-lg-28 {
		padding: 1.75rem !important
	}

	.pt-lg-28,
	.py-lg-28 {
		padding-top: 1.75rem !important
	}

	.pr-lg-28,
	.px-lg-28 {
		padding-right: 1.75rem !important
	}

	.pb-lg-28,
	.py-lg-28 {
		padding-bottom: 1.75rem !important
	}

	.pl-lg-28,
	.px-lg-28 {
		padding-left: 1.75rem !important
	}

	.p-lg-29 {
		padding: 1.8125rem !important
	}

	.pt-lg-29,
	.py-lg-29 {
		padding-top: 1.8125rem !important
	}

	.pr-lg-29,
	.px-lg-29 {
		padding-right: 1.8125rem !important
	}

	.pb-lg-29,
	.py-lg-29 {
		padding-bottom: 1.8125rem !important
	}

	.pl-lg-29,
	.px-lg-29 {
		padding-left: 1.8125rem !important
	}

	.p-lg-30 {
		padding: 1.875rem !important
	}

	.pt-lg-30,
	.py-lg-30 {
		padding-top: 1.875rem !important
	}

	.pr-lg-30,
	.px-lg-30 {
		padding-right: 1.875rem !important
	}

	.pb-lg-30,
	.py-lg-30 {
		padding-bottom: 1.875rem !important
	}

	.pl-lg-30,
	.px-lg-30 {
		padding-left: 1.875rem !important
	}

	.p-lg-31 {
		padding: 1.9375rem !important
	}

	.pt-lg-31,
	.py-lg-31 {
		padding-top: 1.9375rem !important
	}

	.pr-lg-31,
	.px-lg-31 {
		padding-right: 1.9375rem !important
	}

	.pb-lg-31,
	.py-lg-31 {
		padding-bottom: 1.9375rem !important
	}

	.pl-lg-31,
	.px-lg-31 {
		padding-left: 1.9375rem !important
	}

	.p-lg-32 {
		padding: 2rem !important
	}

	.pt-lg-32,
	.py-lg-32 {
		padding-top: 2rem !important
	}

	.pr-lg-32,
	.px-lg-32 {
		padding-right: 2rem !important
	}

	.pb-lg-32,
	.py-lg-32 {
		padding-bottom: 2rem !important
	}

	.pl-lg-32,
	.px-lg-32 {
		padding-left: 2rem !important
	}

	.p-lg-33 {
		padding: 2.0625rem !important
	}

	.pt-lg-33,
	.py-lg-33 {
		padding-top: 2.0625rem !important
	}

	.pr-lg-33,
	.px-lg-33 {
		padding-right: 2.0625rem !important
	}

	.pb-lg-33,
	.py-lg-33 {
		padding-bottom: 2.0625rem !important
	}

	.pl-lg-33,
	.px-lg-33 {
		padding-left: 2.0625rem !important
	}

	.p-lg-34 {
		padding: 2.125rem !important
	}

	.pt-lg-34,
	.py-lg-34 {
		padding-top: 2.125rem !important
	}

	.pr-lg-34,
	.px-lg-34 {
		padding-right: 2.125rem !important
	}

	.pb-lg-34,
	.py-lg-34 {
		padding-bottom: 2.125rem !important
	}

	.pl-lg-34,
	.px-lg-34 {
		padding-left: 2.125rem !important
	}

	.p-lg-35 {
		padding: 2.1875rem !important
	}

	.pt-lg-35,
	.py-lg-35 {
		padding-top: 2.1875rem !important
	}

	.pr-lg-35,
	.px-lg-35 {
		padding-right: 2.1875rem !important
	}

	.pb-lg-35,
	.py-lg-35 {
		padding-bottom: 2.1875rem !important
	}

	.pl-lg-35,
	.px-lg-35 {
		padding-left: 2.1875rem !important
	}

	.p-lg-36 {
		padding: 2.25rem !important
	}

	.pt-lg-36,
	.py-lg-36 {
		padding-top: 2.25rem !important
	}

	.pr-lg-36,
	.px-lg-36 {
		padding-right: 2.25rem !important
	}

	.pb-lg-36,
	.py-lg-36 {
		padding-bottom: 2.25rem !important
	}

	.pl-lg-36,
	.px-lg-36 {
		padding-left: 2.25rem !important
	}

	.p-lg-37 {
		padding: 2.3125rem !important
	}

	.pt-lg-37,
	.py-lg-37 {
		padding-top: 2.3125rem !important
	}

	.pr-lg-37,
	.px-lg-37 {
		padding-right: 2.3125rem !important
	}

	.pb-lg-37,
	.py-lg-37 {
		padding-bottom: 2.3125rem !important
	}

	.pl-lg-37,
	.px-lg-37 {
		padding-left: 2.3125rem !important
	}

	.p-lg-38 {
		padding: 2.375rem !important
	}

	.pt-lg-38,
	.py-lg-38 {
		padding-top: 2.375rem !important
	}

	.pr-lg-38,
	.px-lg-38 {
		padding-right: 2.375rem !important
	}

	.pb-lg-38,
	.py-lg-38 {
		padding-bottom: 2.375rem !important
	}

	.pl-lg-38,
	.px-lg-38 {
		padding-left: 2.375rem !important
	}

	.p-lg-39 {
		padding: 2.4375rem !important
	}

	.pt-lg-39,
	.py-lg-39 {
		padding-top: 2.4375rem !important
	}

	.pr-lg-39,
	.px-lg-39 {
		padding-right: 2.4375rem !important
	}

	.pb-lg-39,
	.py-lg-39 {
		padding-bottom: 2.4375rem !important
	}

	.pl-lg-39,
	.px-lg-39 {
		padding-left: 2.4375rem !important
	}

	.p-lg-40 {
		padding: 2.5rem !important
	}

	.pt-lg-40,
	.py-lg-40 {
		padding-top: 2.5rem !important
	}

	.pr-lg-40,
	.px-lg-40 {
		padding-right: 2.5rem !important
	}

	.pb-lg-40,
	.py-lg-40 {
		padding-bottom: 2.5rem !important
	}

	.pl-lg-40,
	.px-lg-40 {
		padding-left: 2.5rem !important
	}

	.p-lg-41 {
		padding: 2.5625rem !important
	}

	.pt-lg-41,
	.py-lg-41 {
		padding-top: 2.5625rem !important
	}

	.pr-lg-41,
	.px-lg-41 {
		padding-right: 2.5625rem !important
	}

	.pb-lg-41,
	.py-lg-41 {
		padding-bottom: 2.5625rem !important
	}

	.pl-lg-41,
	.px-lg-41 {
		padding-left: 2.5625rem !important
	}

	.p-lg-42 {
		padding: 2.625rem !important
	}

	.pt-lg-42,
	.py-lg-42 {
		padding-top: 2.625rem !important
	}

	.pr-lg-42,
	.px-lg-42 {
		padding-right: 2.625rem !important
	}

	.pb-lg-42,
	.py-lg-42 {
		padding-bottom: 2.625rem !important
	}

	.pl-lg-42,
	.px-lg-42 {
		padding-left: 2.625rem !important
	}

	.p-lg-43 {
		padding: 2.6875rem !important
	}

	.pt-lg-43,
	.py-lg-43 {
		padding-top: 2.6875rem !important
	}

	.pr-lg-43,
	.px-lg-43 {
		padding-right: 2.6875rem !important
	}

	.pb-lg-43,
	.py-lg-43 {
		padding-bottom: 2.6875rem !important
	}

	.pl-lg-43,
	.px-lg-43 {
		padding-left: 2.6875rem !important
	}

	.p-lg-44 {
		padding: 2.75rem !important
	}

	.pt-lg-44,
	.py-lg-44 {
		padding-top: 2.75rem !important
	}

	.pr-lg-44,
	.px-lg-44 {
		padding-right: 2.75rem !important
	}

	.pb-lg-44,
	.py-lg-44 {
		padding-bottom: 2.75rem !important
	}

	.pl-lg-44,
	.px-lg-44 {
		padding-left: 2.75rem !important
	}

	.p-lg-45 {
		padding: 2.8125rem !important
	}

	.pt-lg-45,
	.py-lg-45 {
		padding-top: 2.8125rem !important
	}

	.pr-lg-45,
	.px-lg-45 {
		padding-right: 2.8125rem !important
	}

	.pb-lg-45,
	.py-lg-45 {
		padding-bottom: 2.8125rem !important
	}

	.pl-lg-45,
	.px-lg-45 {
		padding-left: 2.8125rem !important
	}

	.p-lg-46 {
		padding: 2.875rem !important
	}

	.pt-lg-46,
	.py-lg-46 {
		padding-top: 2.875rem !important
	}

	.pr-lg-46,
	.px-lg-46 {
		padding-right: 2.875rem !important
	}

	.pb-lg-46,
	.py-lg-46 {
		padding-bottom: 2.875rem !important
	}

	.pl-lg-46,
	.px-lg-46 {
		padding-left: 2.875rem !important
	}

	.p-lg-47 {
		padding: 2.9375rem !important
	}

	.pt-lg-47,
	.py-lg-47 {
		padding-top: 2.9375rem !important
	}

	.pr-lg-47,
	.px-lg-47 {
		padding-right: 2.9375rem !important
	}

	.pb-lg-47,
	.py-lg-47 {
		padding-bottom: 2.9375rem !important
	}

	.pl-lg-47,
	.px-lg-47 {
		padding-left: 2.9375rem !important
	}

	.p-lg-48 {
		padding: 3rem !important
	}

	.pt-lg-48,
	.py-lg-48 {
		padding-top: 3rem !important
	}

	.pr-lg-48,
	.px-lg-48 {
		padding-right: 3rem !important
	}

	.pb-lg-48,
	.py-lg-48 {
		padding-bottom: 3rem !important
	}

	.pl-lg-48,
	.px-lg-48 {
		padding-left: 3rem !important
	}

	.p-lg-49 {
		padding: 3.0625rem !important
	}

	.pt-lg-49,
	.py-lg-49 {
		padding-top: 3.0625rem !important
	}

	.pr-lg-49,
	.px-lg-49 {
		padding-right: 3.0625rem !important
	}

	.pb-lg-49,
	.py-lg-49 {
		padding-bottom: 3.0625rem !important
	}

	.pl-lg-49,
	.px-lg-49 {
		padding-left: 3.0625rem !important
	}

	.p-lg-50 {
		padding: 3.125rem !important
	}

	.pt-lg-50,
	.py-lg-50 {
		padding-top: 3.125rem !important
	}

	.pr-lg-50,
	.px-lg-50 {
		padding-right: 3.125rem !important
	}

	.pb-lg-50,
	.py-lg-50 {
		padding-bottom: 3.125rem !important
	}

	.pl-lg-50,
	.px-lg-50 {
		padding-left: 3.125rem !important
	}

	.p-lg-51 {
		padding: 3.1875rem !important
	}

	.pt-lg-51,
	.py-lg-51 {
		padding-top: 3.1875rem !important
	}

	.pr-lg-51,
	.px-lg-51 {
		padding-right: 3.1875rem !important
	}

	.pb-lg-51,
	.py-lg-51 {
		padding-bottom: 3.1875rem !important
	}

	.pl-lg-51,
	.px-lg-51 {
		padding-left: 3.1875rem !important
	}

	.p-lg-52 {
		padding: 3.25rem !important
	}

	.pt-lg-52,
	.py-lg-52 {
		padding-top: 3.25rem !important
	}

	.pr-lg-52,
	.px-lg-52 {
		padding-right: 3.25rem !important
	}

	.pb-lg-52,
	.py-lg-52 {
		padding-bottom: 3.25rem !important
	}

	.pl-lg-52,
	.px-lg-52 {
		padding-left: 3.25rem !important
	}

	.p-lg-53 {
		padding: 3.3125rem !important
	}

	.pt-lg-53,
	.py-lg-53 {
		padding-top: 3.3125rem !important
	}

	.pr-lg-53,
	.px-lg-53 {
		padding-right: 3.3125rem !important
	}

	.pb-lg-53,
	.py-lg-53 {
		padding-bottom: 3.3125rem !important
	}

	.pl-lg-53,
	.px-lg-53 {
		padding-left: 3.3125rem !important
	}

	.p-lg-54 {
		padding: 3.375rem !important
	}

	.pt-lg-54,
	.py-lg-54 {
		padding-top: 3.375rem !important
	}

	.pr-lg-54,
	.px-lg-54 {
		padding-right: 3.375rem !important
	}

	.pb-lg-54,
	.py-lg-54 {
		padding-bottom: 3.375rem !important
	}

	.pl-lg-54,
	.px-lg-54 {
		padding-left: 3.375rem !important
	}

	.p-lg-55 {
		padding: 3.4375rem !important
	}

	.pt-lg-55,
	.py-lg-55 {
		padding-top: 3.4375rem !important
	}

	.pr-lg-55,
	.px-lg-55 {
		padding-right: 3.4375rem !important
	}

	.pb-lg-55,
	.py-lg-55 {
		padding-bottom: 3.4375rem !important
	}

	.pl-lg-55,
	.px-lg-55 {
		padding-left: 3.4375rem !important
	}

	.p-lg-56 {
		padding: 3.5rem !important
	}

	.pt-lg-56,
	.py-lg-56 {
		padding-top: 3.5rem !important
	}

	.pr-lg-56,
	.px-lg-56 {
		padding-right: 3.5rem !important
	}

	.pb-lg-56,
	.py-lg-56 {
		padding-bottom: 3.5rem !important
	}

	.pl-lg-56,
	.px-lg-56 {
		padding-left: 3.5rem !important
	}

	.p-lg-57 {
		padding: 3.5625rem !important
	}

	.pt-lg-57,
	.py-lg-57 {
		padding-top: 3.5625rem !important
	}

	.pr-lg-57,
	.px-lg-57 {
		padding-right: 3.5625rem !important
	}

	.pb-lg-57,
	.py-lg-57 {
		padding-bottom: 3.5625rem !important
	}

	.pl-lg-57,
	.px-lg-57 {
		padding-left: 3.5625rem !important
	}

	.p-lg-58 {
		padding: 3.625rem !important
	}

	.pt-lg-58,
	.py-lg-58 {
		padding-top: 3.625rem !important
	}

	.pr-lg-58,
	.px-lg-58 {
		padding-right: 3.625rem !important
	}

	.pb-lg-58,
	.py-lg-58 {
		padding-bottom: 3.625rem !important
	}

	.pl-lg-58,
	.px-lg-58 {
		padding-left: 3.625rem !important
	}

	.p-lg-59 {
		padding: 3.6875rem !important
	}

	.pt-lg-59,
	.py-lg-59 {
		padding-top: 3.6875rem !important
	}

	.pr-lg-59,
	.px-lg-59 {
		padding-right: 3.6875rem !important
	}

	.pb-lg-59,
	.py-lg-59 {
		padding-bottom: 3.6875rem !important
	}

	.pl-lg-59,
	.px-lg-59 {
		padding-left: 3.6875rem !important
	}

	.p-lg-60 {
		padding: 3.75rem !important
	}

	.pt-lg-60,
	.py-lg-60 {
		padding-top: 3.75rem !important
	}

	.pr-lg-60,
	.px-lg-60 {
		padding-right: 3.75rem !important
	}

	.pb-lg-60,
	.py-lg-60 {
		padding-bottom: 3.75rem !important
	}

	.pl-lg-60,
	.px-lg-60 {
		padding-left: 3.75rem !important
	}

	.p-lg-61 {
		padding: 3.8125rem !important
	}

	.pt-lg-61,
	.py-lg-61 {
		padding-top: 3.8125rem !important
	}

	.pr-lg-61,
	.px-lg-61 {
		padding-right: 3.8125rem !important
	}

	.pb-lg-61,
	.py-lg-61 {
		padding-bottom: 3.8125rem !important
	}

	.pl-lg-61,
	.px-lg-61 {
		padding-left: 3.8125rem !important
	}

	.p-lg-62 {
		padding: 3.875rem !important
	}

	.pt-lg-62,
	.py-lg-62 {
		padding-top: 3.875rem !important
	}

	.pr-lg-62,
	.px-lg-62 {
		padding-right: 3.875rem !important
	}

	.pb-lg-62,
	.py-lg-62 {
		padding-bottom: 3.875rem !important
	}

	.pl-lg-62,
	.px-lg-62 {
		padding-left: 3.875rem !important
	}

	.p-lg-63 {
		padding: 3.9375rem !important
	}

	.pt-lg-63,
	.py-lg-63 {
		padding-top: 3.9375rem !important
	}

	.pr-lg-63,
	.px-lg-63 {
		padding-right: 3.9375rem !important
	}

	.pb-lg-63,
	.py-lg-63 {
		padding-bottom: 3.9375rem !important
	}

	.pl-lg-63,
	.px-lg-63 {
		padding-left: 3.9375rem !important
	}

	.p-lg-64 {
		padding: 4rem !important
	}

	.pt-lg-64,
	.py-lg-64 {
		padding-top: 4rem !important
	}

	.pr-lg-64,
	.px-lg-64 {
		padding-right: 4rem !important
	}

	.pb-lg-64,
	.py-lg-64 {
		padding-bottom: 4rem !important
	}

	.pl-lg-64,
	.px-lg-64 {
		padding-left: 4rem !important
	}

	.p-lg-65 {
		padding: 4.0625rem !important
	}

	.pt-lg-65,
	.py-lg-65 {
		padding-top: 4.0625rem !important
	}

	.pr-lg-65,
	.px-lg-65 {
		padding-right: 4.0625rem !important
	}

	.pb-lg-65,
	.py-lg-65 {
		padding-bottom: 4.0625rem !important
	}

	.pl-lg-65,
	.px-lg-65 {
		padding-left: 4.0625rem !important
	}

	.p-lg-66 {
		padding: 4.125rem !important
	}

	.pt-lg-66,
	.py-lg-66 {
		padding-top: 4.125rem !important
	}

	.pr-lg-66,
	.px-lg-66 {
		padding-right: 4.125rem !important
	}

	.pb-lg-66,
	.py-lg-66 {
		padding-bottom: 4.125rem !important
	}

	.pl-lg-66,
	.px-lg-66 {
		padding-left: 4.125rem !important
	}

	.p-lg-67 {
		padding: 4.1875rem !important
	}

	.pt-lg-67,
	.py-lg-67 {
		padding-top: 4.1875rem !important
	}

	.pr-lg-67,
	.px-lg-67 {
		padding-right: 4.1875rem !important
	}

	.pb-lg-67,
	.py-lg-67 {
		padding-bottom: 4.1875rem !important
	}

	.pl-lg-67,
	.px-lg-67 {
		padding-left: 4.1875rem !important
	}

	.p-lg-68 {
		padding: 4.25rem !important
	}

	.pt-lg-68,
	.py-lg-68 {
		padding-top: 4.25rem !important
	}

	.pr-lg-68,
	.px-lg-68 {
		padding-right: 4.25rem !important
	}

	.pb-lg-68,
	.py-lg-68 {
		padding-bottom: 4.25rem !important
	}

	.pl-lg-68,
	.px-lg-68 {
		padding-left: 4.25rem !important
	}

	.p-lg-69 {
		padding: 4.3125rem !important
	}

	.pt-lg-69,
	.py-lg-69 {
		padding-top: 4.3125rem !important
	}

	.pr-lg-69,
	.px-lg-69 {
		padding-right: 4.3125rem !important
	}

	.pb-lg-69,
	.py-lg-69 {
		padding-bottom: 4.3125rem !important
	}

	.pl-lg-69,
	.px-lg-69 {
		padding-left: 4.3125rem !important
	}

	.p-lg-70 {
		padding: 4.375rem !important
	}

	.pt-lg-70,
	.py-lg-70 {
		padding-top: 4.375rem !important
	}

	.pr-lg-70,
	.px-lg-70 {
		padding-right: 4.375rem !important
	}

	.pb-lg-70,
	.py-lg-70 {
		padding-bottom: 4.375rem !important
	}

	.pl-lg-70,
	.px-lg-70 {
		padding-left: 4.375rem !important
	}

	.p-lg-71 {
		padding: 4.4375rem !important
	}

	.pt-lg-71,
	.py-lg-71 {
		padding-top: 4.4375rem !important
	}

	.pr-lg-71,
	.px-lg-71 {
		padding-right: 4.4375rem !important
	}

	.pb-lg-71,
	.py-lg-71 {
		padding-bottom: 4.4375rem !important
	}

	.pl-lg-71,
	.px-lg-71 {
		padding-left: 4.4375rem !important
	}

	.p-lg-72 {
		padding: 4.5rem !important
	}

	.pt-lg-72,
	.py-lg-72 {
		padding-top: 4.5rem !important
	}

	.pr-lg-72,
	.px-lg-72 {
		padding-right: 4.5rem !important
	}

	.pb-lg-72,
	.py-lg-72 {
		padding-bottom: 4.5rem !important
	}

	.pl-lg-72,
	.px-lg-72 {
		padding-left: 4.5rem !important
	}

	.p-lg-73 {
		padding: 4.5625rem !important
	}

	.pt-lg-73,
	.py-lg-73 {
		padding-top: 4.5625rem !important
	}

	.pr-lg-73,
	.px-lg-73 {
		padding-right: 4.5625rem !important
	}

	.pb-lg-73,
	.py-lg-73 {
		padding-bottom: 4.5625rem !important
	}

	.pl-lg-73,
	.px-lg-73 {
		padding-left: 4.5625rem !important
	}

	.p-lg-74 {
		padding: 4.625rem !important
	}

	.pt-lg-74,
	.py-lg-74 {
		padding-top: 4.625rem !important
	}

	.pr-lg-74,
	.px-lg-74 {
		padding-right: 4.625rem !important
	}

	.pb-lg-74,
	.py-lg-74 {
		padding-bottom: 4.625rem !important
	}

	.pl-lg-74,
	.px-lg-74 {
		padding-left: 4.625rem !important
	}

	.p-lg-75 {
		padding: 4.6875rem !important
	}

	.pt-lg-75,
	.py-lg-75 {
		padding-top: 4.6875rem !important
	}

	.pr-lg-75,
	.px-lg-75 {
		padding-right: 4.6875rem !important
	}

	.pb-lg-75,
	.py-lg-75 {
		padding-bottom: 4.6875rem !important
	}

	.pl-lg-75,
	.px-lg-75 {
		padding-left: 4.6875rem !important
	}

	.p-lg-76 {
		padding: 4.75rem !important
	}

	.pt-lg-76,
	.py-lg-76 {
		padding-top: 4.75rem !important
	}

	.pr-lg-76,
	.px-lg-76 {
		padding-right: 4.75rem !important
	}

	.pb-lg-76,
	.py-lg-76 {
		padding-bottom: 4.75rem !important
	}

	.pl-lg-76,
	.px-lg-76 {
		padding-left: 4.75rem !important
	}

	.p-lg-77 {
		padding: 4.8125rem !important
	}

	.pt-lg-77,
	.py-lg-77 {
		padding-top: 4.8125rem !important
	}

	.pr-lg-77,
	.px-lg-77 {
		padding-right: 4.8125rem !important
	}

	.pb-lg-77,
	.py-lg-77 {
		padding-bottom: 4.8125rem !important
	}

	.pl-lg-77,
	.px-lg-77 {
		padding-left: 4.8125rem !important
	}

	.p-lg-78 {
		padding: 4.875rem !important
	}

	.pt-lg-78,
	.py-lg-78 {
		padding-top: 4.875rem !important
	}

	.pr-lg-78,
	.px-lg-78 {
		padding-right: 4.875rem !important
	}

	.pb-lg-78,
	.py-lg-78 {
		padding-bottom: 4.875rem !important
	}

	.pl-lg-78,
	.px-lg-78 {
		padding-left: 4.875rem !important
	}

	.p-lg-79 {
		padding: 4.9375rem !important
	}

	.pt-lg-79,
	.py-lg-79 {
		padding-top: 4.9375rem !important
	}

	.pr-lg-79,
	.px-lg-79 {
		padding-right: 4.9375rem !important
	}

	.pb-lg-79,
	.py-lg-79 {
		padding-bottom: 4.9375rem !important
	}

	.pl-lg-79,
	.px-lg-79 {
		padding-left: 4.9375rem !important
	}

	.p-lg-80 {
		padding: 5rem !important
	}

	.pt-lg-80,
	.py-lg-80 {
		padding-top: 5rem !important
	}

	.pr-lg-80,
	.px-lg-80 {
		padding-right: 5rem !important
	}

	.pb-lg-80,
	.py-lg-80 {
		padding-bottom: 5rem !important
	}

	.pl-lg-80,
	.px-lg-80 {
		padding-left: 5rem !important
	}

	.p-lg-81 {
		padding: 5.0625rem !important
	}

	.pt-lg-81,
	.py-lg-81 {
		padding-top: 5.0625rem !important
	}

	.pr-lg-81,
	.px-lg-81 {
		padding-right: 5.0625rem !important
	}

	.pb-lg-81,
	.py-lg-81 {
		padding-bottom: 5.0625rem !important
	}

	.pl-lg-81,
	.px-lg-81 {
		padding-left: 5.0625rem !important
	}

	.p-lg-82 {
		padding: 5.125rem !important
	}

	.pt-lg-82,
	.py-lg-82 {
		padding-top: 5.125rem !important
	}

	.pr-lg-82,
	.px-lg-82 {
		padding-right: 5.125rem !important
	}

	.pb-lg-82,
	.py-lg-82 {
		padding-bottom: 5.125rem !important
	}

	.pl-lg-82,
	.px-lg-82 {
		padding-left: 5.125rem !important
	}

	.p-lg-83 {
		padding: 5.1875rem !important
	}

	.pt-lg-83,
	.py-lg-83 {
		padding-top: 5.1875rem !important
	}

	.pr-lg-83,
	.px-lg-83 {
		padding-right: 5.1875rem !important
	}

	.pb-lg-83,
	.py-lg-83 {
		padding-bottom: 5.1875rem !important
	}

	.pl-lg-83,
	.px-lg-83 {
		padding-left: 5.1875rem !important
	}

	.p-lg-84 {
		padding: 5.25rem !important
	}

	.pt-lg-84,
	.py-lg-84 {
		padding-top: 5.25rem !important
	}

	.pr-lg-84,
	.px-lg-84 {
		padding-right: 5.25rem !important
	}

	.pb-lg-84,
	.py-lg-84 {
		padding-bottom: 5.25rem !important
	}

	.pl-lg-84,
	.px-lg-84 {
		padding-left: 5.25rem !important
	}

	.p-lg-85 {
		padding: 5.3125rem !important
	}

	.pt-lg-85,
	.py-lg-85 {
		padding-top: 5.3125rem !important
	}

	.pr-lg-85,
	.px-lg-85 {
		padding-right: 5.3125rem !important
	}

	.pb-lg-85,
	.py-lg-85 {
		padding-bottom: 5.3125rem !important
	}

	.pl-lg-85,
	.px-lg-85 {
		padding-left: 5.3125rem !important
	}

	.p-lg-86 {
		padding: 5.375rem !important
	}

	.pt-lg-86,
	.py-lg-86 {
		padding-top: 5.375rem !important
	}

	.pr-lg-86,
	.px-lg-86 {
		padding-right: 5.375rem !important
	}

	.pb-lg-86,
	.py-lg-86 {
		padding-bottom: 5.375rem !important
	}

	.pl-lg-86,
	.px-lg-86 {
		padding-left: 5.375rem !important
	}

	.p-lg-87 {
		padding: 5.4375rem !important
	}

	.pt-lg-87,
	.py-lg-87 {
		padding-top: 5.4375rem !important
	}

	.pr-lg-87,
	.px-lg-87 {
		padding-right: 5.4375rem !important
	}

	.pb-lg-87,
	.py-lg-87 {
		padding-bottom: 5.4375rem !important
	}

	.pl-lg-87,
	.px-lg-87 {
		padding-left: 5.4375rem !important
	}

	.p-lg-88 {
		padding: 5.5rem !important
	}

	.pt-lg-88,
	.py-lg-88 {
		padding-top: 5.5rem !important
	}

	.pr-lg-88,
	.px-lg-88 {
		padding-right: 5.5rem !important
	}

	.pb-lg-88,
	.py-lg-88 {
		padding-bottom: 5.5rem !important
	}

	.pl-lg-88,
	.px-lg-88 {
		padding-left: 5.5rem !important
	}

	.p-lg-89 {
		padding: 5.5625rem !important
	}

	.pt-lg-89,
	.py-lg-89 {
		padding-top: 5.5625rem !important
	}

	.pr-lg-89,
	.px-lg-89 {
		padding-right: 5.5625rem !important
	}

	.pb-lg-89,
	.py-lg-89 {
		padding-bottom: 5.5625rem !important
	}

	.pl-lg-89,
	.px-lg-89 {
		padding-left: 5.5625rem !important
	}

	.p-lg-90 {
		padding: 5.625rem !important
	}

	.pt-lg-90,
	.py-lg-90 {
		padding-top: 5.625rem !important
	}

	.pr-lg-90,
	.px-lg-90 {
		padding-right: 5.625rem !important
	}

	.pb-lg-90,
	.py-lg-90 {
		padding-bottom: 5.625rem !important
	}

	.pl-lg-90,
	.px-lg-90 {
		padding-left: 5.625rem !important
	}

	.p-lg-91 {
		padding: 5.6875rem !important
	}

	.pt-lg-91,
	.py-lg-91 {
		padding-top: 5.6875rem !important
	}

	.pr-lg-91,
	.px-lg-91 {
		padding-right: 5.6875rem !important
	}

	.pb-lg-91,
	.py-lg-91 {
		padding-bottom: 5.6875rem !important
	}

	.pl-lg-91,
	.px-lg-91 {
		padding-left: 5.6875rem !important
	}

	.p-lg-92 {
		padding: 5.75rem !important
	}

	.pt-lg-92,
	.py-lg-92 {
		padding-top: 5.75rem !important
	}

	.pr-lg-92,
	.px-lg-92 {
		padding-right: 5.75rem !important
	}

	.pb-lg-92,
	.py-lg-92 {
		padding-bottom: 5.75rem !important
	}

	.pl-lg-92,
	.px-lg-92 {
		padding-left: 5.75rem !important
	}

	.p-lg-93 {
		padding: 5.8125rem !important
	}

	.pt-lg-93,
	.py-lg-93 {
		padding-top: 5.8125rem !important
	}

	.pr-lg-93,
	.px-lg-93 {
		padding-right: 5.8125rem !important
	}

	.pb-lg-93,
	.py-lg-93 {
		padding-bottom: 5.8125rem !important
	}

	.pl-lg-93,
	.px-lg-93 {
		padding-left: 5.8125rem !important
	}

	.p-lg-94 {
		padding: 5.875rem !important
	}

	.pt-lg-94,
	.py-lg-94 {
		padding-top: 5.875rem !important
	}

	.pr-lg-94,
	.px-lg-94 {
		padding-right: 5.875rem !important
	}

	.pb-lg-94,
	.py-lg-94 {
		padding-bottom: 5.875rem !important
	}

	.pl-lg-94,
	.px-lg-94 {
		padding-left: 5.875rem !important
	}

	.p-lg-95 {
		padding: 5.9375rem !important
	}

	.pt-lg-95,
	.py-lg-95 {
		padding-top: 5.9375rem !important
	}

	.pr-lg-95,
	.px-lg-95 {
		padding-right: 5.9375rem !important
	}

	.pb-lg-95,
	.py-lg-95 {
		padding-bottom: 5.9375rem !important
	}

	.pl-lg-95,
	.px-lg-95 {
		padding-left: 5.9375rem !important
	}

	.p-lg-96 {
		padding: 6rem !important
	}

	.pt-lg-96,
	.py-lg-96 {
		padding-top: 6rem !important
	}

	.pr-lg-96,
	.px-lg-96 {
		padding-right: 6rem !important
	}

	.pb-lg-96,
	.py-lg-96 {
		padding-bottom: 6rem !important
	}

	.pl-lg-96,
	.px-lg-96 {
		padding-left: 6rem !important
	}

	.p-lg-97 {
		padding: 6.0625rem !important
	}

	.pt-lg-97,
	.py-lg-97 {
		padding-top: 6.0625rem !important
	}

	.pr-lg-97,
	.px-lg-97 {
		padding-right: 6.0625rem !important
	}

	.pb-lg-97,
	.py-lg-97 {
		padding-bottom: 6.0625rem !important
	}

	.pl-lg-97,
	.px-lg-97 {
		padding-left: 6.0625rem !important
	}

	.p-lg-98 {
		padding: 6.125rem !important
	}

	.pt-lg-98,
	.py-lg-98 {
		padding-top: 6.125rem !important
	}

	.pr-lg-98,
	.px-lg-98 {
		padding-right: 6.125rem !important
	}

	.pb-lg-98,
	.py-lg-98 {
		padding-bottom: 6.125rem !important
	}

	.pl-lg-98,
	.px-lg-98 {
		padding-left: 6.125rem !important
	}

	.p-lg-99 {
		padding: 6.1875rem !important
	}

	.pt-lg-99,
	.py-lg-99 {
		padding-top: 6.1875rem !important
	}

	.pr-lg-99,
	.px-lg-99 {
		padding-right: 6.1875rem !important
	}

	.pb-lg-99,
	.py-lg-99 {
		padding-bottom: 6.1875rem !important
	}

	.pl-lg-99,
	.px-lg-99 {
		padding-left: 6.1875rem !important
	}

	.p-lg-100 {
		padding: 6.25rem !important
	}

	.pt-lg-100,
	.py-lg-100 {
		padding-top: 6.25rem !important
	}

	.pr-lg-100,
	.px-lg-100 {
		padding-right: 6.25rem !important
	}

	.pb-lg-100,
	.py-lg-100 {
		padding-bottom: 6.25rem !important
	}

	.pl-lg-100,
	.px-lg-100 {
		padding-left: 6.25rem !important
	}

	.p-lg-101 {
		padding: 6.3125rem !important
	}

	.pt-lg-101,
	.py-lg-101 {
		padding-top: 6.3125rem !important
	}

	.pr-lg-101,
	.px-lg-101 {
		padding-right: 6.3125rem !important
	}

	.pb-lg-101,
	.py-lg-101 {
		padding-bottom: 6.3125rem !important
	}

	.pl-lg-101,
	.px-lg-101 {
		padding-left: 6.3125rem !important
	}

	.p-lg-102 {
		padding: 6.375rem !important
	}

	.pt-lg-102,
	.py-lg-102 {
		padding-top: 6.375rem !important
	}

	.pr-lg-102,
	.px-lg-102 {
		padding-right: 6.375rem !important
	}

	.pb-lg-102,
	.py-lg-102 {
		padding-bottom: 6.375rem !important
	}

	.pl-lg-102,
	.px-lg-102 {
		padding-left: 6.375rem !important
	}

	.p-lg-103 {
		padding: 6.4375rem !important
	}

	.pt-lg-103,
	.py-lg-103 {
		padding-top: 6.4375rem !important
	}

	.pr-lg-103,
	.px-lg-103 {
		padding-right: 6.4375rem !important
	}

	.pb-lg-103,
	.py-lg-103 {
		padding-bottom: 6.4375rem !important
	}

	.pl-lg-103,
	.px-lg-103 {
		padding-left: 6.4375rem !important
	}

	.p-lg-104 {
		padding: 6.5rem !important
	}

	.pt-lg-104,
	.py-lg-104 {
		padding-top: 6.5rem !important
	}

	.pr-lg-104,
	.px-lg-104 {
		padding-right: 6.5rem !important
	}

	.pb-lg-104,
	.py-lg-104 {
		padding-bottom: 6.5rem !important
	}

	.pl-lg-104,
	.px-lg-104 {
		padding-left: 6.5rem !important
	}

	.p-lg-105 {
		padding: 6.5625rem !important
	}

	.pt-lg-105,
	.py-lg-105 {
		padding-top: 6.5625rem !important
	}

	.pr-lg-105,
	.px-lg-105 {
		padding-right: 6.5625rem !important
	}

	.pb-lg-105,
	.py-lg-105 {
		padding-bottom: 6.5625rem !important
	}

	.pl-lg-105,
	.px-lg-105 {
		padding-left: 6.5625rem !important
	}

	.p-lg-106 {
		padding: 6.625rem !important
	}

	.pt-lg-106,
	.py-lg-106 {
		padding-top: 6.625rem !important
	}

	.pr-lg-106,
	.px-lg-106 {
		padding-right: 6.625rem !important
	}

	.pb-lg-106,
	.py-lg-106 {
		padding-bottom: 6.625rem !important
	}

	.pl-lg-106,
	.px-lg-106 {
		padding-left: 6.625rem !important
	}

	.p-lg-107 {
		padding: 6.6875rem !important
	}

	.pt-lg-107,
	.py-lg-107 {
		padding-top: 6.6875rem !important
	}

	.pr-lg-107,
	.px-lg-107 {
		padding-right: 6.6875rem !important
	}

	.pb-lg-107,
	.py-lg-107 {
		padding-bottom: 6.6875rem !important
	}

	.pl-lg-107,
	.px-lg-107 {
		padding-left: 6.6875rem !important
	}

	.p-lg-108 {
		padding: 6.75rem !important
	}

	.pt-lg-108,
	.py-lg-108 {
		padding-top: 6.75rem !important
	}

	.pr-lg-108,
	.px-lg-108 {
		padding-right: 6.75rem !important
	}

	.pb-lg-108,
	.py-lg-108 {
		padding-bottom: 6.75rem !important
	}

	.pl-lg-108,
	.px-lg-108 {
		padding-left: 6.75rem !important
	}

	.p-lg-109 {
		padding: 6.8125rem !important
	}

	.pt-lg-109,
	.py-lg-109 {
		padding-top: 6.8125rem !important
	}

	.pr-lg-109,
	.px-lg-109 {
		padding-right: 6.8125rem !important
	}

	.pb-lg-109,
	.py-lg-109 {
		padding-bottom: 6.8125rem !important
	}

	.pl-lg-109,
	.px-lg-109 {
		padding-left: 6.8125rem !important
	}

	.p-lg-110 {
		padding: 6.875rem !important
	}

	.pt-lg-110,
	.py-lg-110 {
		padding-top: 6.875rem !important
	}

	.pr-lg-110,
	.px-lg-110 {
		padding-right: 6.875rem !important
	}

	.pb-lg-110,
	.py-lg-110 {
		padding-bottom: 6.875rem !important
	}

	.pl-lg-110,
	.px-lg-110 {
		padding-left: 6.875rem !important
	}

	.p-lg-111 {
		padding: 6.9375rem !important
	}

	.pt-lg-111,
	.py-lg-111 {
		padding-top: 6.9375rem !important
	}

	.pr-lg-111,
	.px-lg-111 {
		padding-right: 6.9375rem !important
	}

	.pb-lg-111,
	.py-lg-111 {
		padding-bottom: 6.9375rem !important
	}

	.pl-lg-111,
	.px-lg-111 {
		padding-left: 6.9375rem !important
	}

	.p-lg-112 {
		padding: 7rem !important
	}

	.pt-lg-112,
	.py-lg-112 {
		padding-top: 7rem !important
	}

	.pr-lg-112,
	.px-lg-112 {
		padding-right: 7rem !important
	}

	.pb-lg-112,
	.py-lg-112 {
		padding-bottom: 7rem !important
	}

	.pl-lg-112,
	.px-lg-112 {
		padding-left: 7rem !important
	}

	.p-lg-113 {
		padding: 7.0625rem !important
	}

	.pt-lg-113,
	.py-lg-113 {
		padding-top: 7.0625rem !important
	}

	.pr-lg-113,
	.px-lg-113 {
		padding-right: 7.0625rem !important
	}

	.pb-lg-113,
	.py-lg-113 {
		padding-bottom: 7.0625rem !important
	}

	.pl-lg-113,
	.px-lg-113 {
		padding-left: 7.0625rem !important
	}

	.p-lg-114 {
		padding: 7.125rem !important
	}

	.pt-lg-114,
	.py-lg-114 {
		padding-top: 7.125rem !important
	}

	.pr-lg-114,
	.px-lg-114 {
		padding-right: 7.125rem !important
	}

	.pb-lg-114,
	.py-lg-114 {
		padding-bottom: 7.125rem !important
	}

	.pl-lg-114,
	.px-lg-114 {
		padding-left: 7.125rem !important
	}

	.p-lg-115 {
		padding: 7.1875rem !important
	}

	.pt-lg-115,
	.py-lg-115 {
		padding-top: 7.1875rem !important
	}

	.pr-lg-115,
	.px-lg-115 {
		padding-right: 7.1875rem !important
	}

	.pb-lg-115,
	.py-lg-115 {
		padding-bottom: 7.1875rem !important
	}

	.pl-lg-115,
	.px-lg-115 {
		padding-left: 7.1875rem !important
	}

	.p-lg-116 {
		padding: 7.25rem !important
	}

	.pt-lg-116,
	.py-lg-116 {
		padding-top: 7.25rem !important
	}

	.pr-lg-116,
	.px-lg-116 {
		padding-right: 7.25rem !important
	}

	.pb-lg-116,
	.py-lg-116 {
		padding-bottom: 7.25rem !important
	}

	.pl-lg-116,
	.px-lg-116 {
		padding-left: 7.25rem !important
	}

	.p-lg-117 {
		padding: 7.3125rem !important
	}

	.pt-lg-117,
	.py-lg-117 {
		padding-top: 7.3125rem !important
	}

	.pr-lg-117,
	.px-lg-117 {
		padding-right: 7.3125rem !important
	}

	.pb-lg-117,
	.py-lg-117 {
		padding-bottom: 7.3125rem !important
	}

	.pl-lg-117,
	.px-lg-117 {
		padding-left: 7.3125rem !important
	}

	.p-lg-118 {
		padding: 7.375rem !important
	}

	.pt-lg-118,
	.py-lg-118 {
		padding-top: 7.375rem !important
	}

	.pr-lg-118,
	.px-lg-118 {
		padding-right: 7.375rem !important
	}

	.pb-lg-118,
	.py-lg-118 {
		padding-bottom: 7.375rem !important
	}

	.pl-lg-118,
	.px-lg-118 {
		padding-left: 7.375rem !important
	}

	.p-lg-119 {
		padding: 7.4375rem !important
	}

	.pt-lg-119,
	.py-lg-119 {
		padding-top: 7.4375rem !important
	}

	.pr-lg-119,
	.px-lg-119 {
		padding-right: 7.4375rem !important
	}

	.pb-lg-119,
	.py-lg-119 {
		padding-bottom: 7.4375rem !important
	}

	.pl-lg-119,
	.px-lg-119 {
		padding-left: 7.4375rem !important
	}

	.p-lg-120 {
		padding: 7.5rem !important
	}

	.pt-lg-120,
	.py-lg-120 {
		padding-top: 7.5rem !important
	}

	.pr-lg-120,
	.px-lg-120 {
		padding-right: 7.5rem !important
	}

	.pb-lg-120,
	.py-lg-120 {
		padding-bottom: 7.5rem !important
	}

	.pl-lg-120,
	.px-lg-120 {
		padding-left: 7.5rem !important
	}

	.p-lg-121 {
		padding: 7.5625rem !important
	}

	.pt-lg-121,
	.py-lg-121 {
		padding-top: 7.5625rem !important
	}

	.pr-lg-121,
	.px-lg-121 {
		padding-right: 7.5625rem !important
	}

	.pb-lg-121,
	.py-lg-121 {
		padding-bottom: 7.5625rem !important
	}

	.pl-lg-121,
	.px-lg-121 {
		padding-left: 7.5625rem !important
	}

	.p-lg-122 {
		padding: 7.625rem !important
	}

	.pt-lg-122,
	.py-lg-122 {
		padding-top: 7.625rem !important
	}

	.pr-lg-122,
	.px-lg-122 {
		padding-right: 7.625rem !important
	}

	.pb-lg-122,
	.py-lg-122 {
		padding-bottom: 7.625rem !important
	}

	.pl-lg-122,
	.px-lg-122 {
		padding-left: 7.625rem !important
	}

	.p-lg-123 {
		padding: 7.6875rem !important
	}

	.pt-lg-123,
	.py-lg-123 {
		padding-top: 7.6875rem !important
	}

	.pr-lg-123,
	.px-lg-123 {
		padding-right: 7.6875rem !important
	}

	.pb-lg-123,
	.py-lg-123 {
		padding-bottom: 7.6875rem !important
	}

	.pl-lg-123,
	.px-lg-123 {
		padding-left: 7.6875rem !important
	}

	.p-lg-124 {
		padding: 7.75rem !important
	}

	.pt-lg-124,
	.py-lg-124 {
		padding-top: 7.75rem !important
	}

	.pr-lg-124,
	.px-lg-124 {
		padding-right: 7.75rem !important
	}

	.pb-lg-124,
	.py-lg-124 {
		padding-bottom: 7.75rem !important
	}

	.pl-lg-124,
	.px-lg-124 {
		padding-left: 7.75rem !important
	}

	.p-lg-125 {
		padding: 7.8125rem !important
	}

	.pt-lg-125,
	.py-lg-125 {
		padding-top: 7.8125rem !important
	}

	.pr-lg-125,
	.px-lg-125 {
		padding-right: 7.8125rem !important
	}

	.pb-lg-125,
	.py-lg-125 {
		padding-bottom: 7.8125rem !important
	}

	.pl-lg-125,
	.px-lg-125 {
		padding-left: 7.8125rem !important
	}

	.p-lg-126 {
		padding: 7.875rem !important
	}

	.pt-lg-126,
	.py-lg-126 {
		padding-top: 7.875rem !important
	}

	.pr-lg-126,
	.px-lg-126 {
		padding-right: 7.875rem !important
	}

	.pb-lg-126,
	.py-lg-126 {
		padding-bottom: 7.875rem !important
	}

	.pl-lg-126,
	.px-lg-126 {
		padding-left: 7.875rem !important
	}

	.p-lg-127 {
		padding: 7.9375rem !important
	}

	.pt-lg-127,
	.py-lg-127 {
		padding-top: 7.9375rem !important
	}

	.pr-lg-127,
	.px-lg-127 {
		padding-right: 7.9375rem !important
	}

	.pb-lg-127,
	.py-lg-127 {
		padding-bottom: 7.9375rem !important
	}

	.pl-lg-127,
	.px-lg-127 {
		padding-left: 7.9375rem !important
	}

	.p-lg-128 {
		padding: 8rem !important
	}

	.pt-lg-128,
	.py-lg-128 {
		padding-top: 8rem !important
	}

	.pr-lg-128,
	.px-lg-128 {
		padding-right: 8rem !important
	}

	.pb-lg-128,
	.py-lg-128 {
		padding-bottom: 8rem !important
	}

	.pl-lg-128,
	.px-lg-128 {
		padding-left: 8rem !important
	}

	.p-lg-129 {
		padding: 8.0625rem !important
	}

	.pt-lg-129,
	.py-lg-129 {
		padding-top: 8.0625rem !important
	}

	.pr-lg-129,
	.px-lg-129 {
		padding-right: 8.0625rem !important
	}

	.pb-lg-129,
	.py-lg-129 {
		padding-bottom: 8.0625rem !important
	}

	.pl-lg-129,
	.px-lg-129 {
		padding-left: 8.0625rem !important
	}

	.p-lg-130 {
		padding: 8.125rem !important
	}

	.pt-lg-130,
	.py-lg-130 {
		padding-top: 8.125rem !important
	}

	.pr-lg-130,
	.px-lg-130 {
		padding-right: 8.125rem !important
	}

	.pb-lg-130,
	.py-lg-130 {
		padding-bottom: 8.125rem !important
	}

	.pl-lg-130,
	.px-lg-130 {
		padding-left: 8.125rem !important
	}

	.p-lg-131 {
		padding: 8.1875rem !important
	}

	.pt-lg-131,
	.py-lg-131 {
		padding-top: 8.1875rem !important
	}

	.pr-lg-131,
	.px-lg-131 {
		padding-right: 8.1875rem !important
	}

	.pb-lg-131,
	.py-lg-131 {
		padding-bottom: 8.1875rem !important
	}

	.pl-lg-131,
	.px-lg-131 {
		padding-left: 8.1875rem !important
	}

	.p-lg-132 {
		padding: 8.25rem !important
	}

	.pt-lg-132,
	.py-lg-132 {
		padding-top: 8.25rem !important
	}

	.pr-lg-132,
	.px-lg-132 {
		padding-right: 8.25rem !important
	}

	.pb-lg-132,
	.py-lg-132 {
		padding-bottom: 8.25rem !important
	}

	.pl-lg-132,
	.px-lg-132 {
		padding-left: 8.25rem !important
	}

	.p-lg-133 {
		padding: 8.3125rem !important
	}

	.pt-lg-133,
	.py-lg-133 {
		padding-top: 8.3125rem !important
	}

	.pr-lg-133,
	.px-lg-133 {
		padding-right: 8.3125rem !important
	}

	.pb-lg-133,
	.py-lg-133 {
		padding-bottom: 8.3125rem !important
	}

	.pl-lg-133,
	.px-lg-133 {
		padding-left: 8.3125rem !important
	}

	.p-lg-134 {
		padding: 8.375rem !important
	}

	.pt-lg-134,
	.py-lg-134 {
		padding-top: 8.375rem !important
	}

	.pr-lg-134,
	.px-lg-134 {
		padding-right: 8.375rem !important
	}

	.pb-lg-134,
	.py-lg-134 {
		padding-bottom: 8.375rem !important
	}

	.pl-lg-134,
	.px-lg-134 {
		padding-left: 8.375rem !important
	}

	.p-lg-135 {
		padding: 8.4375rem !important
	}

	.pt-lg-135,
	.py-lg-135 {
		padding-top: 8.4375rem !important
	}

	.pr-lg-135,
	.px-lg-135 {
		padding-right: 8.4375rem !important
	}

	.pb-lg-135,
	.py-lg-135 {
		padding-bottom: 8.4375rem !important
	}

	.pl-lg-135,
	.px-lg-135 {
		padding-left: 8.4375rem !important
	}

	.p-lg-136 {
		padding: 8.5rem !important
	}

	.pt-lg-136,
	.py-lg-136 {
		padding-top: 8.5rem !important
	}

	.pr-lg-136,
	.px-lg-136 {
		padding-right: 8.5rem !important
	}

	.pb-lg-136,
	.py-lg-136 {
		padding-bottom: 8.5rem !important
	}

	.pl-lg-136,
	.px-lg-136 {
		padding-left: 8.5rem !important
	}

	.p-lg-137 {
		padding: 8.5625rem !important
	}

	.pt-lg-137,
	.py-lg-137 {
		padding-top: 8.5625rem !important
	}

	.pr-lg-137,
	.px-lg-137 {
		padding-right: 8.5625rem !important
	}

	.pb-lg-137,
	.py-lg-137 {
		padding-bottom: 8.5625rem !important
	}

	.pl-lg-137,
	.px-lg-137 {
		padding-left: 8.5625rem !important
	}

	.p-lg-138 {
		padding: 8.625rem !important
	}

	.pt-lg-138,
	.py-lg-138 {
		padding-top: 8.625rem !important
	}

	.pr-lg-138,
	.px-lg-138 {
		padding-right: 8.625rem !important
	}

	.pb-lg-138,
	.py-lg-138 {
		padding-bottom: 8.625rem !important
	}

	.pl-lg-138,
	.px-lg-138 {
		padding-left: 8.625rem !important
	}

	.p-lg-139 {
		padding: 8.6875rem !important
	}

	.pt-lg-139,
	.py-lg-139 {
		padding-top: 8.6875rem !important
	}

	.pr-lg-139,
	.px-lg-139 {
		padding-right: 8.6875rem !important
	}

	.pb-lg-139,
	.py-lg-139 {
		padding-bottom: 8.6875rem !important
	}

	.pl-lg-139,
	.px-lg-139 {
		padding-left: 8.6875rem !important
	}

	.p-lg-140 {
		padding: 8.75rem !important
	}

	.pt-lg-140,
	.py-lg-140 {
		padding-top: 8.75rem !important
	}

	.pr-lg-140,
	.px-lg-140 {
		padding-right: 8.75rem !important
	}

	.pb-lg-140,
	.py-lg-140 {
		padding-bottom: 8.75rem !important
	}

	.pl-lg-140,
	.px-lg-140 {
		padding-left: 8.75rem !important
	}

	.p-lg-141 {
		padding: 8.8125rem !important
	}

	.pt-lg-141,
	.py-lg-141 {
		padding-top: 8.8125rem !important
	}

	.pr-lg-141,
	.px-lg-141 {
		padding-right: 8.8125rem !important
	}

	.pb-lg-141,
	.py-lg-141 {
		padding-bottom: 8.8125rem !important
	}

	.pl-lg-141,
	.px-lg-141 {
		padding-left: 8.8125rem !important
	}

	.p-lg-142 {
		padding: 8.875rem !important
	}

	.pt-lg-142,
	.py-lg-142 {
		padding-top: 8.875rem !important
	}

	.pr-lg-142,
	.px-lg-142 {
		padding-right: 8.875rem !important
	}

	.pb-lg-142,
	.py-lg-142 {
		padding-bottom: 8.875rem !important
	}

	.pl-lg-142,
	.px-lg-142 {
		padding-left: 8.875rem !important
	}

	.p-lg-143 {
		padding: 8.9375rem !important
	}

	.pt-lg-143,
	.py-lg-143 {
		padding-top: 8.9375rem !important
	}

	.pr-lg-143,
	.px-lg-143 {
		padding-right: 8.9375rem !important
	}

	.pb-lg-143,
	.py-lg-143 {
		padding-bottom: 8.9375rem !important
	}

	.pl-lg-143,
	.px-lg-143 {
		padding-left: 8.9375rem !important
	}

	.p-lg-144 {
		padding: 9rem !important
	}

	.pt-lg-144,
	.py-lg-144 {
		padding-top: 9rem !important
	}

	.pr-lg-144,
	.px-lg-144 {
		padding-right: 9rem !important
	}

	.pb-lg-144,
	.py-lg-144 {
		padding-bottom: 9rem !important
	}

	.pl-lg-144,
	.px-lg-144 {
		padding-left: 9rem !important
	}

	.p-lg-145 {
		padding: 9.0625rem !important
	}

	.pt-lg-145,
	.py-lg-145 {
		padding-top: 9.0625rem !important
	}

	.pr-lg-145,
	.px-lg-145 {
		padding-right: 9.0625rem !important
	}

	.pb-lg-145,
	.py-lg-145 {
		padding-bottom: 9.0625rem !important
	}

	.pl-lg-145,
	.px-lg-145 {
		padding-left: 9.0625rem !important
	}

	.p-lg-146 {
		padding: 9.125rem !important
	}

	.pt-lg-146,
	.py-lg-146 {
		padding-top: 9.125rem !important
	}

	.pr-lg-146,
	.px-lg-146 {
		padding-right: 9.125rem !important
	}

	.pb-lg-146,
	.py-lg-146 {
		padding-bottom: 9.125rem !important
	}

	.pl-lg-146,
	.px-lg-146 {
		padding-left: 9.125rem !important
	}

	.p-lg-147 {
		padding: 9.1875rem !important
	}

	.pt-lg-147,
	.py-lg-147 {
		padding-top: 9.1875rem !important
	}

	.pr-lg-147,
	.px-lg-147 {
		padding-right: 9.1875rem !important
	}

	.pb-lg-147,
	.py-lg-147 {
		padding-bottom: 9.1875rem !important
	}

	.pl-lg-147,
	.px-lg-147 {
		padding-left: 9.1875rem !important
	}

	.p-lg-148 {
		padding: 9.25rem !important
	}

	.pt-lg-148,
	.py-lg-148 {
		padding-top: 9.25rem !important
	}

	.pr-lg-148,
	.px-lg-148 {
		padding-right: 9.25rem !important
	}

	.pb-lg-148,
	.py-lg-148 {
		padding-bottom: 9.25rem !important
	}

	.pl-lg-148,
	.px-lg-148 {
		padding-left: 9.25rem !important
	}

	.p-lg-149 {
		padding: 9.3125rem !important
	}

	.pt-lg-149,
	.py-lg-149 {
		padding-top: 9.3125rem !important
	}

	.pr-lg-149,
	.px-lg-149 {
		padding-right: 9.3125rem !important
	}

	.pb-lg-149,
	.py-lg-149 {
		padding-bottom: 9.3125rem !important
	}

	.pl-lg-149,
	.px-lg-149 {
		padding-left: 9.3125rem !important
	}

	.p-lg-150 {
		padding: 9.375rem !important
	}

	.pt-lg-150,
	.py-lg-150 {
		padding-top: 9.375rem !important
	}

	.pr-lg-150,
	.px-lg-150 {
		padding-right: 9.375rem !important
	}

	.pb-lg-150,
	.py-lg-150 {
		padding-bottom: 9.375rem !important
	}

	.pl-lg-150,
	.px-lg-150 {
		padding-left: 9.375rem !important
	}

	.p-lg-151 {
		padding: 9.4375rem !important
	}

	.pt-lg-151,
	.py-lg-151 {
		padding-top: 9.4375rem !important
	}

	.pr-lg-151,
	.px-lg-151 {
		padding-right: 9.4375rem !important
	}

	.pb-lg-151,
	.py-lg-151 {
		padding-bottom: 9.4375rem !important
	}

	.pl-lg-151,
	.px-lg-151 {
		padding-left: 9.4375rem !important
	}

	.p-lg-152 {
		padding: 9.5rem !important
	}

	.pt-lg-152,
	.py-lg-152 {
		padding-top: 9.5rem !important
	}

	.pr-lg-152,
	.px-lg-152 {
		padding-right: 9.5rem !important
	}

	.pb-lg-152,
	.py-lg-152 {
		padding-bottom: 9.5rem !important
	}

	.pl-lg-152,
	.px-lg-152 {
		padding-left: 9.5rem !important
	}

	.p-lg-153 {
		padding: 9.5625rem !important
	}

	.pt-lg-153,
	.py-lg-153 {
		padding-top: 9.5625rem !important
	}

	.pr-lg-153,
	.px-lg-153 {
		padding-right: 9.5625rem !important
	}

	.pb-lg-153,
	.py-lg-153 {
		padding-bottom: 9.5625rem !important
	}

	.pl-lg-153,
	.px-lg-153 {
		padding-left: 9.5625rem !important
	}

	.p-lg-154 {
		padding: 9.625rem !important
	}

	.pt-lg-154,
	.py-lg-154 {
		padding-top: 9.625rem !important
	}

	.pr-lg-154,
	.px-lg-154 {
		padding-right: 9.625rem !important
	}

	.pb-lg-154,
	.py-lg-154 {
		padding-bottom: 9.625rem !important
	}

	.pl-lg-154,
	.px-lg-154 {
		padding-left: 9.625rem !important
	}

	.p-lg-155 {
		padding: 9.6875rem !important
	}

	.pt-lg-155,
	.py-lg-155 {
		padding-top: 9.6875rem !important
	}

	.pr-lg-155,
	.px-lg-155 {
		padding-right: 9.6875rem !important
	}

	.pb-lg-155,
	.py-lg-155 {
		padding-bottom: 9.6875rem !important
	}

	.pl-lg-155,
	.px-lg-155 {
		padding-left: 9.6875rem !important
	}

	.p-lg-156 {
		padding: 9.75rem !important
	}

	.pt-lg-156,
	.py-lg-156 {
		padding-top: 9.75rem !important
	}

	.pr-lg-156,
	.px-lg-156 {
		padding-right: 9.75rem !important
	}

	.pb-lg-156,
	.py-lg-156 {
		padding-bottom: 9.75rem !important
	}

	.pl-lg-156,
	.px-lg-156 {
		padding-left: 9.75rem !important
	}

	.p-lg-157 {
		padding: 9.8125rem !important
	}

	.pt-lg-157,
	.py-lg-157 {
		padding-top: 9.8125rem !important
	}

	.pr-lg-157,
	.px-lg-157 {
		padding-right: 9.8125rem !important
	}

	.pb-lg-157,
	.py-lg-157 {
		padding-bottom: 9.8125rem !important
	}

	.pl-lg-157,
	.px-lg-157 {
		padding-left: 9.8125rem !important
	}

	.p-lg-158 {
		padding: 9.875rem !important
	}

	.pt-lg-158,
	.py-lg-158 {
		padding-top: 9.875rem !important
	}

	.pr-lg-158,
	.px-lg-158 {
		padding-right: 9.875rem !important
	}

	.pb-lg-158,
	.py-lg-158 {
		padding-bottom: 9.875rem !important
	}

	.pl-lg-158,
	.px-lg-158 {
		padding-left: 9.875rem !important
	}

	.p-lg-159 {
		padding: 9.9375rem !important
	}

	.pt-lg-159,
	.py-lg-159 {
		padding-top: 9.9375rem !important
	}

	.pr-lg-159,
	.px-lg-159 {
		padding-right: 9.9375rem !important
	}

	.pb-lg-159,
	.py-lg-159 {
		padding-bottom: 9.9375rem !important
	}

	.pl-lg-159,
	.px-lg-159 {
		padding-left: 9.9375rem !important
	}

	.p-lg-160 {
		padding: 10rem !important
	}

	.pt-lg-160,
	.py-lg-160 {
		padding-top: 10rem !important
	}

	.pr-lg-160,
	.px-lg-160 {
		padding-right: 10rem !important
	}

	.pb-lg-160,
	.py-lg-160 {
		padding-bottom: 10rem !important
	}

	.pl-lg-160,
	.px-lg-160 {
		padding-left: 10rem !important
	}

	.p-lg-161 {
		padding: 10.0625rem !important
	}

	.pt-lg-161,
	.py-lg-161 {
		padding-top: 10.0625rem !important
	}

	.pr-lg-161,
	.px-lg-161 {
		padding-right: 10.0625rem !important
	}

	.pb-lg-161,
	.py-lg-161 {
		padding-bottom: 10.0625rem !important
	}

	.pl-lg-161,
	.px-lg-161 {
		padding-left: 10.0625rem !important
	}

	.p-lg-162 {
		padding: 10.125rem !important
	}

	.pt-lg-162,
	.py-lg-162 {
		padding-top: 10.125rem !important
	}

	.pr-lg-162,
	.px-lg-162 {
		padding-right: 10.125rem !important
	}

	.pb-lg-162,
	.py-lg-162 {
		padding-bottom: 10.125rem !important
	}

	.pl-lg-162,
	.px-lg-162 {
		padding-left: 10.125rem !important
	}

	.p-lg-163 {
		padding: 10.1875rem !important
	}

	.pt-lg-163,
	.py-lg-163 {
		padding-top: 10.1875rem !important
	}

	.pr-lg-163,
	.px-lg-163 {
		padding-right: 10.1875rem !important
	}

	.pb-lg-163,
	.py-lg-163 {
		padding-bottom: 10.1875rem !important
	}

	.pl-lg-163,
	.px-lg-163 {
		padding-left: 10.1875rem !important
	}

	.p-lg-164 {
		padding: 10.25rem !important
	}

	.pt-lg-164,
	.py-lg-164 {
		padding-top: 10.25rem !important
	}

	.pr-lg-164,
	.px-lg-164 {
		padding-right: 10.25rem !important
	}

	.pb-lg-164,
	.py-lg-164 {
		padding-bottom: 10.25rem !important
	}

	.pl-lg-164,
	.px-lg-164 {
		padding-left: 10.25rem !important
	}

	.p-lg-165 {
		padding: 10.3125rem !important
	}

	.pt-lg-165,
	.py-lg-165 {
		padding-top: 10.3125rem !important
	}

	.pr-lg-165,
	.px-lg-165 {
		padding-right: 10.3125rem !important
	}

	.pb-lg-165,
	.py-lg-165 {
		padding-bottom: 10.3125rem !important
	}

	.pl-lg-165,
	.px-lg-165 {
		padding-left: 10.3125rem !important
	}

	.p-lg-166 {
		padding: 10.375rem !important
	}

	.pt-lg-166,
	.py-lg-166 {
		padding-top: 10.375rem !important
	}

	.pr-lg-166,
	.px-lg-166 {
		padding-right: 10.375rem !important
	}

	.pb-lg-166,
	.py-lg-166 {
		padding-bottom: 10.375rem !important
	}

	.pl-lg-166,
	.px-lg-166 {
		padding-left: 10.375rem !important
	}

	.p-lg-167 {
		padding: 10.4375rem !important
	}

	.pt-lg-167,
	.py-lg-167 {
		padding-top: 10.4375rem !important
	}

	.pr-lg-167,
	.px-lg-167 {
		padding-right: 10.4375rem !important
	}

	.pb-lg-167,
	.py-lg-167 {
		padding-bottom: 10.4375rem !important
	}

	.pl-lg-167,
	.px-lg-167 {
		padding-left: 10.4375rem !important
	}

	.p-lg-168 {
		padding: 10.5rem !important
	}

	.pt-lg-168,
	.py-lg-168 {
		padding-top: 10.5rem !important
	}

	.pr-lg-168,
	.px-lg-168 {
		padding-right: 10.5rem !important
	}

	.pb-lg-168,
	.py-lg-168 {
		padding-bottom: 10.5rem !important
	}

	.pl-lg-168,
	.px-lg-168 {
		padding-left: 10.5rem !important
	}

	.p-lg-169 {
		padding: 10.5625rem !important
	}

	.pt-lg-169,
	.py-lg-169 {
		padding-top: 10.5625rem !important
	}

	.pr-lg-169,
	.px-lg-169 {
		padding-right: 10.5625rem !important
	}

	.pb-lg-169,
	.py-lg-169 {
		padding-bottom: 10.5625rem !important
	}

	.pl-lg-169,
	.px-lg-169 {
		padding-left: 10.5625rem !important
	}

	.p-lg-170 {
		padding: 10.625rem !important
	}

	.pt-lg-170,
	.py-lg-170 {
		padding-top: 10.625rem !important
	}

	.pr-lg-170,
	.px-lg-170 {
		padding-right: 10.625rem !important
	}

	.pb-lg-170,
	.py-lg-170 {
		padding-bottom: 10.625rem !important
	}

	.pl-lg-170,
	.px-lg-170 {
		padding-left: 10.625rem !important
	}

	.p-lg-171 {
		padding: 10.6875rem !important
	}

	.pt-lg-171,
	.py-lg-171 {
		padding-top: 10.6875rem !important
	}

	.pr-lg-171,
	.px-lg-171 {
		padding-right: 10.6875rem !important
	}

	.pb-lg-171,
	.py-lg-171 {
		padding-bottom: 10.6875rem !important
	}

	.pl-lg-171,
	.px-lg-171 {
		padding-left: 10.6875rem !important
	}

	.p-lg-172 {
		padding: 10.75rem !important
	}

	.pt-lg-172,
	.py-lg-172 {
		padding-top: 10.75rem !important
	}

	.pr-lg-172,
	.px-lg-172 {
		padding-right: 10.75rem !important
	}

	.pb-lg-172,
	.py-lg-172 {
		padding-bottom: 10.75rem !important
	}

	.pl-lg-172,
	.px-lg-172 {
		padding-left: 10.75rem !important
	}

	.p-lg-173 {
		padding: 10.8125rem !important
	}

	.pt-lg-173,
	.py-lg-173 {
		padding-top: 10.8125rem !important
	}

	.pr-lg-173,
	.px-lg-173 {
		padding-right: 10.8125rem !important
	}

	.pb-lg-173,
	.py-lg-173 {
		padding-bottom: 10.8125rem !important
	}

	.pl-lg-173,
	.px-lg-173 {
		padding-left: 10.8125rem !important
	}

	.p-lg-174 {
		padding: 10.875rem !important
	}

	.pt-lg-174,
	.py-lg-174 {
		padding-top: 10.875rem !important
	}

	.pr-lg-174,
	.px-lg-174 {
		padding-right: 10.875rem !important
	}

	.pb-lg-174,
	.py-lg-174 {
		padding-bottom: 10.875rem !important
	}

	.pl-lg-174,
	.px-lg-174 {
		padding-left: 10.875rem !important
	}

	.p-lg-175 {
		padding: 10.9375rem !important
	}

	.pt-lg-175,
	.py-lg-175 {
		padding-top: 10.9375rem !important
	}

	.pr-lg-175,
	.px-lg-175 {
		padding-right: 10.9375rem !important
	}

	.pb-lg-175,
	.py-lg-175 {
		padding-bottom: 10.9375rem !important
	}

	.pl-lg-175,
	.px-lg-175 {
		padding-left: 10.9375rem !important
	}

	.p-lg-176 {
		padding: 11rem !important
	}

	.pt-lg-176,
	.py-lg-176 {
		padding-top: 11rem !important
	}

	.pr-lg-176,
	.px-lg-176 {
		padding-right: 11rem !important
	}

	.pb-lg-176,
	.py-lg-176 {
		padding-bottom: 11rem !important
	}

	.pl-lg-176,
	.px-lg-176 {
		padding-left: 11rem !important
	}

	.p-lg-177 {
		padding: 11.0625rem !important
	}

	.pt-lg-177,
	.py-lg-177 {
		padding-top: 11.0625rem !important
	}

	.pr-lg-177,
	.px-lg-177 {
		padding-right: 11.0625rem !important
	}

	.pb-lg-177,
	.py-lg-177 {
		padding-bottom: 11.0625rem !important
	}

	.pl-lg-177,
	.px-lg-177 {
		padding-left: 11.0625rem !important
	}

	.p-lg-178 {
		padding: 11.125rem !important
	}

	.pt-lg-178,
	.py-lg-178 {
		padding-top: 11.125rem !important
	}

	.pr-lg-178,
	.px-lg-178 {
		padding-right: 11.125rem !important
	}

	.pb-lg-178,
	.py-lg-178 {
		padding-bottom: 11.125rem !important
	}

	.pl-lg-178,
	.px-lg-178 {
		padding-left: 11.125rem !important
	}

	.p-lg-179 {
		padding: 11.1875rem !important
	}

	.pt-lg-179,
	.py-lg-179 {
		padding-top: 11.1875rem !important
	}

	.pr-lg-179,
	.px-lg-179 {
		padding-right: 11.1875rem !important
	}

	.pb-lg-179,
	.py-lg-179 {
		padding-bottom: 11.1875rem !important
	}

	.pl-lg-179,
	.px-lg-179 {
		padding-left: 11.1875rem !important
	}

	.p-lg-180 {
		padding: 11.25rem !important
	}

	.pt-lg-180,
	.py-lg-180 {
		padding-top: 11.25rem !important
	}

	.pr-lg-180,
	.px-lg-180 {
		padding-right: 11.25rem !important
	}

	.pb-lg-180,
	.py-lg-180 {
		padding-bottom: 11.25rem !important
	}

	.pl-lg-180,
	.px-lg-180 {
		padding-left: 11.25rem !important
	}

	.p-lg-181 {
		padding: 11.3125rem !important
	}

	.pt-lg-181,
	.py-lg-181 {
		padding-top: 11.3125rem !important
	}

	.pr-lg-181,
	.px-lg-181 {
		padding-right: 11.3125rem !important
	}

	.pb-lg-181,
	.py-lg-181 {
		padding-bottom: 11.3125rem !important
	}

	.pl-lg-181,
	.px-lg-181 {
		padding-left: 11.3125rem !important
	}

	.p-lg-182 {
		padding: 11.375rem !important
	}

	.pt-lg-182,
	.py-lg-182 {
		padding-top: 11.375rem !important
	}

	.pr-lg-182,
	.px-lg-182 {
		padding-right: 11.375rem !important
	}

	.pb-lg-182,
	.py-lg-182 {
		padding-bottom: 11.375rem !important
	}

	.pl-lg-182,
	.px-lg-182 {
		padding-left: 11.375rem !important
	}

	.p-lg-183 {
		padding: 11.4375rem !important
	}

	.pt-lg-183,
	.py-lg-183 {
		padding-top: 11.4375rem !important
	}

	.pr-lg-183,
	.px-lg-183 {
		padding-right: 11.4375rem !important
	}

	.pb-lg-183,
	.py-lg-183 {
		padding-bottom: 11.4375rem !important
	}

	.pl-lg-183,
	.px-lg-183 {
		padding-left: 11.4375rem !important
	}

	.p-lg-184 {
		padding: 11.5rem !important
	}

	.pt-lg-184,
	.py-lg-184 {
		padding-top: 11.5rem !important
	}

	.pr-lg-184,
	.px-lg-184 {
		padding-right: 11.5rem !important
	}

	.pb-lg-184,
	.py-lg-184 {
		padding-bottom: 11.5rem !important
	}

	.pl-lg-184,
	.px-lg-184 {
		padding-left: 11.5rem !important
	}

	.p-lg-185 {
		padding: 11.5625rem !important
	}

	.pt-lg-185,
	.py-lg-185 {
		padding-top: 11.5625rem !important
	}

	.pr-lg-185,
	.px-lg-185 {
		padding-right: 11.5625rem !important
	}

	.pb-lg-185,
	.py-lg-185 {
		padding-bottom: 11.5625rem !important
	}

	.pl-lg-185,
	.px-lg-185 {
		padding-left: 11.5625rem !important
	}

	.p-lg-186 {
		padding: 11.625rem !important
	}

	.pt-lg-186,
	.py-lg-186 {
		padding-top: 11.625rem !important
	}

	.pr-lg-186,
	.px-lg-186 {
		padding-right: 11.625rem !important
	}

	.pb-lg-186,
	.py-lg-186 {
		padding-bottom: 11.625rem !important
	}

	.pl-lg-186,
	.px-lg-186 {
		padding-left: 11.625rem !important
	}

	.p-lg-187 {
		padding: 11.6875rem !important
	}

	.pt-lg-187,
	.py-lg-187 {
		padding-top: 11.6875rem !important
	}

	.pr-lg-187,
	.px-lg-187 {
		padding-right: 11.6875rem !important
	}

	.pb-lg-187,
	.py-lg-187 {
		padding-bottom: 11.6875rem !important
	}

	.pl-lg-187,
	.px-lg-187 {
		padding-left: 11.6875rem !important
	}

	.p-lg-188 {
		padding: 11.75rem !important
	}

	.pt-lg-188,
	.py-lg-188 {
		padding-top: 11.75rem !important
	}

	.pr-lg-188,
	.px-lg-188 {
		padding-right: 11.75rem !important
	}

	.pb-lg-188,
	.py-lg-188 {
		padding-bottom: 11.75rem !important
	}

	.pl-lg-188,
	.px-lg-188 {
		padding-left: 11.75rem !important
	}

	.p-lg-189 {
		padding: 11.8125rem !important
	}

	.pt-lg-189,
	.py-lg-189 {
		padding-top: 11.8125rem !important
	}

	.pr-lg-189,
	.px-lg-189 {
		padding-right: 11.8125rem !important
	}

	.pb-lg-189,
	.py-lg-189 {
		padding-bottom: 11.8125rem !important
	}

	.pl-lg-189,
	.px-lg-189 {
		padding-left: 11.8125rem !important
	}

	.p-lg-190 {
		padding: 11.875rem !important
	}

	.pt-lg-190,
	.py-lg-190 {
		padding-top: 11.875rem !important
	}

	.pr-lg-190,
	.px-lg-190 {
		padding-right: 11.875rem !important
	}

	.pb-lg-190,
	.py-lg-190 {
		padding-bottom: 11.875rem !important
	}

	.pl-lg-190,
	.px-lg-190 {
		padding-left: 11.875rem !important
	}

	.p-lg-191 {
		padding: 11.9375rem !important
	}

	.pt-lg-191,
	.py-lg-191 {
		padding-top: 11.9375rem !important
	}

	.pr-lg-191,
	.px-lg-191 {
		padding-right: 11.9375rem !important
	}

	.pb-lg-191,
	.py-lg-191 {
		padding-bottom: 11.9375rem !important
	}

	.pl-lg-191,
	.px-lg-191 {
		padding-left: 11.9375rem !important
	}

	.p-lg-192 {
		padding: 12rem !important
	}

	.pt-lg-192,
	.py-lg-192 {
		padding-top: 12rem !important
	}

	.pr-lg-192,
	.px-lg-192 {
		padding-right: 12rem !important
	}

	.pb-lg-192,
	.py-lg-192 {
		padding-bottom: 12rem !important
	}

	.pl-lg-192,
	.px-lg-192 {
		padding-left: 12rem !important
	}

	.p-lg-193 {
		padding: 12.0625rem !important
	}

	.pt-lg-193,
	.py-lg-193 {
		padding-top: 12.0625rem !important
	}

	.pr-lg-193,
	.px-lg-193 {
		padding-right: 12.0625rem !important
	}

	.pb-lg-193,
	.py-lg-193 {
		padding-bottom: 12.0625rem !important
	}

	.pl-lg-193,
	.px-lg-193 {
		padding-left: 12.0625rem !important
	}

	.p-lg-194 {
		padding: 12.125rem !important
	}

	.pt-lg-194,
	.py-lg-194 {
		padding-top: 12.125rem !important
	}

	.pr-lg-194,
	.px-lg-194 {
		padding-right: 12.125rem !important
	}

	.pb-lg-194,
	.py-lg-194 {
		padding-bottom: 12.125rem !important
	}

	.pl-lg-194,
	.px-lg-194 {
		padding-left: 12.125rem !important
	}

	.p-lg-195 {
		padding: 12.1875rem !important
	}

	.pt-lg-195,
	.py-lg-195 {
		padding-top: 12.1875rem !important
	}

	.pr-lg-195,
	.px-lg-195 {
		padding-right: 12.1875rem !important
	}

	.pb-lg-195,
	.py-lg-195 {
		padding-bottom: 12.1875rem !important
	}

	.pl-lg-195,
	.px-lg-195 {
		padding-left: 12.1875rem !important
	}

	.p-lg-196 {
		padding: 12.25rem !important
	}

	.pt-lg-196,
	.py-lg-196 {
		padding-top: 12.25rem !important
	}

	.pr-lg-196,
	.px-lg-196 {
		padding-right: 12.25rem !important
	}

	.pb-lg-196,
	.py-lg-196 {
		padding-bottom: 12.25rem !important
	}

	.pl-lg-196,
	.px-lg-196 {
		padding-left: 12.25rem !important
	}

	.p-lg-197 {
		padding: 12.3125rem !important
	}

	.pt-lg-197,
	.py-lg-197 {
		padding-top: 12.3125rem !important
	}

	.pr-lg-197,
	.px-lg-197 {
		padding-right: 12.3125rem !important
	}

	.pb-lg-197,
	.py-lg-197 {
		padding-bottom: 12.3125rem !important
	}

	.pl-lg-197,
	.px-lg-197 {
		padding-left: 12.3125rem !important
	}

	.p-lg-198 {
		padding: 12.375rem !important
	}

	.pt-lg-198,
	.py-lg-198 {
		padding-top: 12.375rem !important
	}

	.pr-lg-198,
	.px-lg-198 {
		padding-right: 12.375rem !important
	}

	.pb-lg-198,
	.py-lg-198 {
		padding-bottom: 12.375rem !important
	}

	.pl-lg-198,
	.px-lg-198 {
		padding-left: 12.375rem !important
	}

	.p-lg-199 {
		padding: 12.4375rem !important
	}

	.pt-lg-199,
	.py-lg-199 {
		padding-top: 12.4375rem !important
	}

	.pr-lg-199,
	.px-lg-199 {
		padding-right: 12.4375rem !important
	}

	.pb-lg-199,
	.py-lg-199 {
		padding-bottom: 12.4375rem !important
	}

	.pl-lg-199,
	.px-lg-199 {
		padding-left: 12.4375rem !important
	}

	.p-lg-200 {
		padding: 12.5rem !important
	}

	.pt-lg-200,
	.py-lg-200 {
		padding-top: 12.5rem !important
	}

	.pr-lg-200,
	.px-lg-200 {
		padding-right: 12.5rem !important
	}

	.pb-lg-200,
	.py-lg-200 {
		padding-bottom: 12.5rem !important
	}

	.pl-lg-200,
	.px-lg-200 {
		padding-left: 12.5rem !important
	}

	.p-lg-auto {
		padding: auto !important
	}

	.pt-lg-auto,
	.py-lg-auto {
		padding-top: auto !important
	}

	.pr-lg-auto,
	.px-lg-auto {
		padding-right: auto !important
	}

	.pb-lg-auto,
	.py-lg-auto {
		padding-bottom: auto !important
	}

	.pl-lg-auto,
	.px-lg-auto {
		padding-left: auto !important
	}

	.m-lg-auto {
		margin: auto !important
	}

	.mt-lg-auto,
	.my-lg-auto {
		margin-top: auto !important
	}

	.mr-lg-auto,
	.mx-lg-auto {
		margin-right: auto !important
	}

	.mb-lg-auto,
	.my-lg-auto {
		margin-bottom: auto !important
	}

	.ml-lg-auto,
	.mx-lg-auto {
		margin-left: auto !important
	}
}

@media (min-width:1200px) {
	.m-xl-0 {
		margin: 0 !important
	}

	.mt-xl-0,
	.my-xl-0 {
		margin-top: 0 !important
	}

	.mr-xl-0,
	.mx-xl-0 {
		margin-right: 0 !important
	}

	.mb-xl-0,
	.my-xl-0 {
		margin-bottom: 0 !important
	}

	.ml-xl-0,
	.mx-xl-0 {
		margin-left: 0 !important
	}

	.m-xl-1 {
		margin: .0625rem !important
	}

	.mt-xl-1,
	.my-xl-1 {
		margin-top: .0625rem !important
	}

	.mr-xl-1,
	.mx-xl-1 {
		margin-right: .0625rem !important
	}

	.mb-xl-1,
	.my-xl-1 {
		margin-bottom: .0625rem !important
	}

	.ml-xl-1,
	.mx-xl-1 {
		margin-left: .0625rem !important
	}

	.m-xl-2 {
		margin: .125rem !important
	}

	.mt-xl-2,
	.my-xl-2 {
		margin-top: .125rem !important
	}

	.mr-xl-2,
	.mx-xl-2 {
		margin-right: .125rem !important
	}

	.mb-xl-2,
	.my-xl-2 {
		margin-bottom: .125rem !important
	}

	.ml-xl-2,
	.mx-xl-2 {
		margin-left: .125rem !important
	}

	.m-xl-3 {
		margin: .1875rem !important
	}

	.mt-xl-3,
	.my-xl-3 {
		margin-top: .1875rem !important
	}

	.mr-xl-3,
	.mx-xl-3 {
		margin-right: .1875rem !important
	}

	.mb-xl-3,
	.my-xl-3 {
		margin-bottom: .1875rem !important
	}

	.ml-xl-3,
	.mx-xl-3 {
		margin-left: .1875rem !important
	}

	.m-xl-4 {
		margin: .25rem !important
	}

	.mt-xl-4,
	.my-xl-4 {
		margin-top: .25rem !important
	}

	.mr-xl-4,
	.mx-xl-4 {
		margin-right: .25rem !important
	}

	.mb-xl-4,
	.my-xl-4 {
		margin-bottom: .25rem !important
	}

	.ml-xl-4,
	.mx-xl-4 {
		margin-left: .25rem !important
	}

	.m-xl-5 {
		margin: .3125rem !important
	}

	.mt-xl-5,
	.my-xl-5 {
		margin-top: .3125rem !important
	}

	.mr-xl-5,
	.mx-xl-5 {
		margin-right: .3125rem !important
	}

	.mb-xl-5,
	.my-xl-5 {
		margin-bottom: .3125rem !important
	}

	.ml-xl-5,
	.mx-xl-5 {
		margin-left: .3125rem !important
	}

	.m-xl-6 {
		margin: .375rem !important
	}

	.mt-xl-6,
	.my-xl-6 {
		margin-top: .375rem !important
	}

	.mr-xl-6,
	.mx-xl-6 {
		margin-right: .375rem !important
	}

	.mb-xl-6,
	.my-xl-6 {
		margin-bottom: .375rem !important
	}

	.ml-xl-6,
	.mx-xl-6 {
		margin-left: .375rem !important
	}

	.m-xl-7 {
		margin: .4375rem !important
	}

	.mt-xl-7,
	.my-xl-7 {
		margin-top: .4375rem !important
	}

	.mr-xl-7,
	.mx-xl-7 {
		margin-right: .4375rem !important
	}

	.mb-xl-7,
	.my-xl-7 {
		margin-bottom: .4375rem !important
	}

	.ml-xl-7,
	.mx-xl-7 {
		margin-left: .4375rem !important
	}

	.m-xl-8 {
		margin: .5rem !important
	}

	.mt-xl-8,
	.my-xl-8 {
		margin-top: .5rem !important
	}

	.mr-xl-8,
	.mx-xl-8 {
		margin-right: .5rem !important
	}

	.mb-xl-8,
	.my-xl-8 {
		margin-bottom: .5rem !important
	}

	.ml-xl-8,
	.mx-xl-8 {
		margin-left: .5rem !important
	}

	.m-xl-9 {
		margin: .5625rem !important
	}

	.mt-xl-9,
	.my-xl-9 {
		margin-top: .5625rem !important
	}

	.mr-xl-9,
	.mx-xl-9 {
		margin-right: .5625rem !important
	}

	.mb-xl-9,
	.my-xl-9 {
		margin-bottom: .5625rem !important
	}

	.ml-xl-9,
	.mx-xl-9 {
		margin-left: .5625rem !important
	}

	.m-xl-10 {
		margin: .625rem !important
	}

	.mt-xl-10,
	.my-xl-10 {
		margin-top: .625rem !important
	}

	.mr-xl-10,
	.mx-xl-10 {
		margin-right: .625rem !important
	}

	.mb-xl-10,
	.my-xl-10 {
		margin-bottom: .625rem !important
	}

	.ml-xl-10,
	.mx-xl-10 {
		margin-left: .625rem !important
	}

	.m-xl-11 {
		margin: .6875rem !important
	}

	.mt-xl-11,
	.my-xl-11 {
		margin-top: .6875rem !important
	}

	.mr-xl-11,
	.mx-xl-11 {
		margin-right: .6875rem !important
	}

	.mb-xl-11,
	.my-xl-11 {
		margin-bottom: .6875rem !important
	}

	.ml-xl-11,
	.mx-xl-11 {
		margin-left: .6875rem !important
	}

	.m-xl-12 {
		margin: .75rem !important
	}

	.mt-xl-12,
	.my-xl-12 {
		margin-top: .75rem !important
	}

	.mr-xl-12,
	.mx-xl-12 {
		margin-right: .75rem !important
	}

	.mb-xl-12,
	.my-xl-12 {
		margin-bottom: .75rem !important
	}

	.ml-xl-12,
	.mx-xl-12 {
		margin-left: .75rem !important
	}

	.m-xl-13 {
		margin: .8125rem !important
	}

	.mt-xl-13,
	.my-xl-13 {
		margin-top: .8125rem !important
	}

	.mr-xl-13,
	.mx-xl-13 {
		margin-right: .8125rem !important
	}

	.mb-xl-13,
	.my-xl-13 {
		margin-bottom: .8125rem !important
	}

	.ml-xl-13,
	.mx-xl-13 {
		margin-left: .8125rem !important
	}

	.m-xl-14 {
		margin: .875rem !important
	}

	.mt-xl-14,
	.my-xl-14 {
		margin-top: .875rem !important
	}

	.mr-xl-14,
	.mx-xl-14 {
		margin-right: .875rem !important
	}

	.mb-xl-14,
	.my-xl-14 {
		margin-bottom: .875rem !important
	}

	.ml-xl-14,
	.mx-xl-14 {
		margin-left: .875rem !important
	}

	.m-xl-15 {
		margin: .9375rem !important
	}

	.mt-xl-15,
	.my-xl-15 {
		margin-top: .9375rem !important
	}

	.mr-xl-15,
	.mx-xl-15 {
		margin-right: .9375rem !important
	}

	.mb-xl-15,
	.my-xl-15 {
		margin-bottom: .9375rem !important
	}

	.ml-xl-15,
	.mx-xl-15 {
		margin-left: .9375rem !important
	}

	.m-xl-16 {
		margin: 1rem !important
	}

	.mt-xl-16,
	.my-xl-16 {
		margin-top: 1rem !important
	}

	.mr-xl-16,
	.mx-xl-16 {
		margin-right: 1rem !important
	}

	.mb-xl-16,
	.my-xl-16 {
		margin-bottom: 1rem !important
	}

	.ml-xl-16,
	.mx-xl-16 {
		margin-left: 1rem !important
	}

	.m-xl-17 {
		margin: 1.0625rem !important
	}

	.mt-xl-17,
	.my-xl-17 {
		margin-top: 1.0625rem !important
	}

	.mr-xl-17,
	.mx-xl-17 {
		margin-right: 1.0625rem !important
	}

	.mb-xl-17,
	.my-xl-17 {
		margin-bottom: 1.0625rem !important
	}

	.ml-xl-17,
	.mx-xl-17 {
		margin-left: 1.0625rem !important
	}

	.m-xl-18 {
		margin: 1.125rem !important
	}

	.mt-xl-18,
	.my-xl-18 {
		margin-top: 1.125rem !important
	}

	.mr-xl-18,
	.mx-xl-18 {
		margin-right: 1.125rem !important
	}

	.mb-xl-18,
	.my-xl-18 {
		margin-bottom: 1.125rem !important
	}

	.ml-xl-18,
	.mx-xl-18 {
		margin-left: 1.125rem !important
	}

	.m-xl-19 {
		margin: 1.1875rem !important
	}

	.mt-xl-19,
	.my-xl-19 {
		margin-top: 1.1875rem !important
	}

	.mr-xl-19,
	.mx-xl-19 {
		margin-right: 1.1875rem !important
	}

	.mb-xl-19,
	.my-xl-19 {
		margin-bottom: 1.1875rem !important
	}

	.ml-xl-19,
	.mx-xl-19 {
		margin-left: 1.1875rem !important
	}

	.m-xl-20 {
		margin: 1.25rem !important
	}

	.mt-xl-20,
	.my-xl-20 {
		margin-top: 1.25rem !important
	}

	.mr-xl-20,
	.mx-xl-20 {
		margin-right: 1.25rem !important
	}

	.mb-xl-20,
	.my-xl-20 {
		margin-bottom: 1.25rem !important
	}

	.ml-xl-20,
	.mx-xl-20 {
		margin-left: 1.25rem !important
	}

	.m-xl-21 {
		margin: 1.3125rem !important
	}

	.mt-xl-21,
	.my-xl-21 {
		margin-top: 1.3125rem !important
	}

	.mr-xl-21,
	.mx-xl-21 {
		margin-right: 1.3125rem !important
	}

	.mb-xl-21,
	.my-xl-21 {
		margin-bottom: 1.3125rem !important
	}

	.ml-xl-21,
	.mx-xl-21 {
		margin-left: 1.3125rem !important
	}

	.m-xl-22 {
		margin: 1.375rem !important
	}

	.mt-xl-22,
	.my-xl-22 {
		margin-top: 1.375rem !important
	}

	.mr-xl-22,
	.mx-xl-22 {
		margin-right: 1.375rem !important
	}

	.mb-xl-22,
	.my-xl-22 {
		margin-bottom: 1.375rem !important
	}

	.ml-xl-22,
	.mx-xl-22 {
		margin-left: 1.375rem !important
	}

	.m-xl-23 {
		margin: 1.4375rem !important
	}

	.mt-xl-23,
	.my-xl-23 {
		margin-top: 1.4375rem !important
	}

	.mr-xl-23,
	.mx-xl-23 {
		margin-right: 1.4375rem !important
	}

	.mb-xl-23,
	.my-xl-23 {
		margin-bottom: 1.4375rem !important
	}

	.ml-xl-23,
	.mx-xl-23 {
		margin-left: 1.4375rem !important
	}

	.m-xl-24 {
		margin: 1.5rem !important
	}

	.mt-xl-24,
	.my-xl-24 {
		margin-top: 1.5rem !important
	}

	.mr-xl-24,
	.mx-xl-24 {
		margin-right: 1.5rem !important
	}

	.mb-xl-24,
	.my-xl-24 {
		margin-bottom: 1.5rem !important
	}

	.ml-xl-24,
	.mx-xl-24 {
		margin-left: 1.5rem !important
	}

	.m-xl-25 {
		margin: 1.5625rem !important
	}

	.mt-xl-25,
	.my-xl-25 {
		margin-top: 1.5625rem !important
	}

	.mr-xl-25,
	.mx-xl-25 {
		margin-right: 1.5625rem !important
	}

	.mb-xl-25,
	.my-xl-25 {
		margin-bottom: 1.5625rem !important
	}

	.ml-xl-25,
	.mx-xl-25 {
		margin-left: 1.5625rem !important
	}

	.m-xl-26 {
		margin: 1.625rem !important
	}

	.mt-xl-26,
	.my-xl-26 {
		margin-top: 1.625rem !important
	}

	.mr-xl-26,
	.mx-xl-26 {
		margin-right: 1.625rem !important
	}

	.mb-xl-26,
	.my-xl-26 {
		margin-bottom: 1.625rem !important
	}

	.ml-xl-26,
	.mx-xl-26 {
		margin-left: 1.625rem !important
	}

	.m-xl-27 {
		margin: 1.6875rem !important
	}

	.mt-xl-27,
	.my-xl-27 {
		margin-top: 1.6875rem !important
	}

	.mr-xl-27,
	.mx-xl-27 {
		margin-right: 1.6875rem !important
	}

	.mb-xl-27,
	.my-xl-27 {
		margin-bottom: 1.6875rem !important
	}

	.ml-xl-27,
	.mx-xl-27 {
		margin-left: 1.6875rem !important
	}

	.m-xl-28 {
		margin: 1.75rem !important
	}

	.mt-xl-28,
	.my-xl-28 {
		margin-top: 1.75rem !important
	}

	.mr-xl-28,
	.mx-xl-28 {
		margin-right: 1.75rem !important
	}

	.mb-xl-28,
	.my-xl-28 {
		margin-bottom: 1.75rem !important
	}

	.ml-xl-28,
	.mx-xl-28 {
		margin-left: 1.75rem !important
	}

	.m-xl-29 {
		margin: 1.8125rem !important
	}

	.mt-xl-29,
	.my-xl-29 {
		margin-top: 1.8125rem !important
	}

	.mr-xl-29,
	.mx-xl-29 {
		margin-right: 1.8125rem !important
	}

	.mb-xl-29,
	.my-xl-29 {
		margin-bottom: 1.8125rem !important
	}

	.ml-xl-29,
	.mx-xl-29 {
		margin-left: 1.8125rem !important
	}

	.m-xl-30 {
		margin: 1.875rem !important
	}

	.mt-xl-30,
	.my-xl-30 {
		margin-top: 1.875rem !important
	}

	.mr-xl-30,
	.mx-xl-30 {
		margin-right: 1.875rem !important
	}

	.mb-xl-30,
	.my-xl-30 {
		margin-bottom: 1.875rem !important
	}

	.ml-xl-30,
	.mx-xl-30 {
		margin-left: 1.875rem !important
	}

	.m-xl-31 {
		margin: 1.9375rem !important
	}

	.mt-xl-31,
	.my-xl-31 {
		margin-top: 1.9375rem !important
	}

	.mr-xl-31,
	.mx-xl-31 {
		margin-right: 1.9375rem !important
	}

	.mb-xl-31,
	.my-xl-31 {
		margin-bottom: 1.9375rem !important
	}

	.ml-xl-31,
	.mx-xl-31 {
		margin-left: 1.9375rem !important
	}

	.m-xl-32 {
		margin: 2rem !important
	}

	.mt-xl-32,
	.my-xl-32 {
		margin-top: 2rem !important
	}

	.mr-xl-32,
	.mx-xl-32 {
		margin-right: 2rem !important
	}

	.mb-xl-32,
	.my-xl-32 {
		margin-bottom: 2rem !important
	}

	.ml-xl-32,
	.mx-xl-32 {
		margin-left: 2rem !important
	}

	.m-xl-33 {
		margin: 2.0625rem !important
	}

	.mt-xl-33,
	.my-xl-33 {
		margin-top: 2.0625rem !important
	}

	.mr-xl-33,
	.mx-xl-33 {
		margin-right: 2.0625rem !important
	}

	.mb-xl-33,
	.my-xl-33 {
		margin-bottom: 2.0625rem !important
	}

	.ml-xl-33,
	.mx-xl-33 {
		margin-left: 2.0625rem !important
	}

	.m-xl-34 {
		margin: 2.125rem !important
	}

	.mt-xl-34,
	.my-xl-34 {
		margin-top: 2.125rem !important
	}

	.mr-xl-34,
	.mx-xl-34 {
		margin-right: 2.125rem !important
	}

	.mb-xl-34,
	.my-xl-34 {
		margin-bottom: 2.125rem !important
	}

	.ml-xl-34,
	.mx-xl-34 {
		margin-left: 2.125rem !important
	}

	.m-xl-35 {
		margin: 2.1875rem !important
	}

	.mt-xl-35,
	.my-xl-35 {
		margin-top: 2.1875rem !important
	}

	.mr-xl-35,
	.mx-xl-35 {
		margin-right: 2.1875rem !important
	}

	.mb-xl-35,
	.my-xl-35 {
		margin-bottom: 2.1875rem !important
	}

	.ml-xl-35,
	.mx-xl-35 {
		margin-left: 2.1875rem !important
	}

	.m-xl-36 {
		margin: 2.25rem !important
	}

	.mt-xl-36,
	.my-xl-36 {
		margin-top: 2.25rem !important
	}

	.mr-xl-36,
	.mx-xl-36 {
		margin-right: 2.25rem !important
	}

	.mb-xl-36,
	.my-xl-36 {
		margin-bottom: 2.25rem !important
	}

	.ml-xl-36,
	.mx-xl-36 {
		margin-left: 2.25rem !important
	}

	.m-xl-37 {
		margin: 2.3125rem !important
	}

	.mt-xl-37,
	.my-xl-37 {
		margin-top: 2.3125rem !important
	}

	.mr-xl-37,
	.mx-xl-37 {
		margin-right: 2.3125rem !important
	}

	.mb-xl-37,
	.my-xl-37 {
		margin-bottom: 2.3125rem !important
	}

	.ml-xl-37,
	.mx-xl-37 {
		margin-left: 2.3125rem !important
	}

	.m-xl-38 {
		margin: 2.375rem !important
	}

	.mt-xl-38,
	.my-xl-38 {
		margin-top: 2.375rem !important
	}

	.mr-xl-38,
	.mx-xl-38 {
		margin-right: 2.375rem !important
	}

	.mb-xl-38,
	.my-xl-38 {
		margin-bottom: 2.375rem !important
	}

	.ml-xl-38,
	.mx-xl-38 {
		margin-left: 2.375rem !important
	}

	.m-xl-39 {
		margin: 2.4375rem !important
	}

	.mt-xl-39,
	.my-xl-39 {
		margin-top: 2.4375rem !important
	}

	.mr-xl-39,
	.mx-xl-39 {
		margin-right: 2.4375rem !important
	}

	.mb-xl-39,
	.my-xl-39 {
		margin-bottom: 2.4375rem !important
	}

	.ml-xl-39,
	.mx-xl-39 {
		margin-left: 2.4375rem !important
	}

	.m-xl-40 {
		margin: 2.5rem !important
	}

	.mt-xl-40,
	.my-xl-40 {
		margin-top: 2.5rem !important
	}

	.mr-xl-40,
	.mx-xl-40 {
		margin-right: 2.5rem !important
	}

	.mb-xl-40,
	.my-xl-40 {
		margin-bottom: 2.5rem !important
	}

	.ml-xl-40,
	.mx-xl-40 {
		margin-left: 2.5rem !important
	}

	.m-xl-41 {
		margin: 2.5625rem !important
	}

	.mt-xl-41,
	.my-xl-41 {
		margin-top: 2.5625rem !important
	}

	.mr-xl-41,
	.mx-xl-41 {
		margin-right: 2.5625rem !important
	}

	.mb-xl-41,
	.my-xl-41 {
		margin-bottom: 2.5625rem !important
	}

	.ml-xl-41,
	.mx-xl-41 {
		margin-left: 2.5625rem !important
	}

	.m-xl-42 {
		margin: 2.625rem !important
	}

	.mt-xl-42,
	.my-xl-42 {
		margin-top: 2.625rem !important
	}

	.mr-xl-42,
	.mx-xl-42 {
		margin-right: 2.625rem !important
	}

	.mb-xl-42,
	.my-xl-42 {
		margin-bottom: 2.625rem !important
	}

	.ml-xl-42,
	.mx-xl-42 {
		margin-left: 2.625rem !important
	}

	.m-xl-43 {
		margin: 2.6875rem !important
	}

	.mt-xl-43,
	.my-xl-43 {
		margin-top: 2.6875rem !important
	}

	.mr-xl-43,
	.mx-xl-43 {
		margin-right: 2.6875rem !important
	}

	.mb-xl-43,
	.my-xl-43 {
		margin-bottom: 2.6875rem !important
	}

	.ml-xl-43,
	.mx-xl-43 {
		margin-left: 2.6875rem !important
	}

	.m-xl-44 {
		margin: 2.75rem !important
	}

	.mt-xl-44,
	.my-xl-44 {
		margin-top: 2.75rem !important
	}

	.mr-xl-44,
	.mx-xl-44 {
		margin-right: 2.75rem !important
	}

	.mb-xl-44,
	.my-xl-44 {
		margin-bottom: 2.75rem !important
	}

	.ml-xl-44,
	.mx-xl-44 {
		margin-left: 2.75rem !important
	}

	.m-xl-45 {
		margin: 2.8125rem !important
	}

	.mt-xl-45,
	.my-xl-45 {
		margin-top: 2.8125rem !important
	}

	.mr-xl-45,
	.mx-xl-45 {
		margin-right: 2.8125rem !important
	}

	.mb-xl-45,
	.my-xl-45 {
		margin-bottom: 2.8125rem !important
	}

	.ml-xl-45,
	.mx-xl-45 {
		margin-left: 2.8125rem !important
	}

	.m-xl-46 {
		margin: 2.875rem !important
	}

	.mt-xl-46,
	.my-xl-46 {
		margin-top: 2.875rem !important
	}

	.mr-xl-46,
	.mx-xl-46 {
		margin-right: 2.875rem !important
	}

	.mb-xl-46,
	.my-xl-46 {
		margin-bottom: 2.875rem !important
	}

	.ml-xl-46,
	.mx-xl-46 {
		margin-left: 2.875rem !important
	}

	.m-xl-47 {
		margin: 2.9375rem !important
	}

	.mt-xl-47,
	.my-xl-47 {
		margin-top: 2.9375rem !important
	}

	.mr-xl-47,
	.mx-xl-47 {
		margin-right: 2.9375rem !important
	}

	.mb-xl-47,
	.my-xl-47 {
		margin-bottom: 2.9375rem !important
	}

	.ml-xl-47,
	.mx-xl-47 {
		margin-left: 2.9375rem !important
	}

	.m-xl-48 {
		margin: 3rem !important
	}

	.mt-xl-48,
	.my-xl-48 {
		margin-top: 3rem !important
	}

	.mr-xl-48,
	.mx-xl-48 {
		margin-right: 3rem !important
	}

	.mb-xl-48,
	.my-xl-48 {
		margin-bottom: 3rem !important
	}

	.ml-xl-48,
	.mx-xl-48 {
		margin-left: 3rem !important
	}

	.m-xl-49 {
		margin: 3.0625rem !important
	}

	.mt-xl-49,
	.my-xl-49 {
		margin-top: 3.0625rem !important
	}

	.mr-xl-49,
	.mx-xl-49 {
		margin-right: 3.0625rem !important
	}

	.mb-xl-49,
	.my-xl-49 {
		margin-bottom: 3.0625rem !important
	}

	.ml-xl-49,
	.mx-xl-49 {
		margin-left: 3.0625rem !important
	}

	.m-xl-50 {
		margin: 3.125rem !important
	}

	.mt-xl-50,
	.my-xl-50 {
		margin-top: 3.125rem !important
	}

	.mr-xl-50,
	.mx-xl-50 {
		margin-right: 3.125rem !important
	}

	.mb-xl-50,
	.my-xl-50 {
		margin-bottom: 3.125rem !important
	}

	.ml-xl-50,
	.mx-xl-50 {
		margin-left: 3.125rem !important
	}

	.m-xl-51 {
		margin: 3.1875rem !important
	}

	.mt-xl-51,
	.my-xl-51 {
		margin-top: 3.1875rem !important
	}

	.mr-xl-51,
	.mx-xl-51 {
		margin-right: 3.1875rem !important
	}

	.mb-xl-51,
	.my-xl-51 {
		margin-bottom: 3.1875rem !important
	}

	.ml-xl-51,
	.mx-xl-51 {
		margin-left: 3.1875rem !important
	}

	.m-xl-52 {
		margin: 3.25rem !important
	}

	.mt-xl-52,
	.my-xl-52 {
		margin-top: 3.25rem !important
	}

	.mr-xl-52,
	.mx-xl-52 {
		margin-right: 3.25rem !important
	}

	.mb-xl-52,
	.my-xl-52 {
		margin-bottom: 3.25rem !important
	}

	.ml-xl-52,
	.mx-xl-52 {
		margin-left: 3.25rem !important
	}

	.m-xl-53 {
		margin: 3.3125rem !important
	}

	.mt-xl-53,
	.my-xl-53 {
		margin-top: 3.3125rem !important
	}

	.mr-xl-53,
	.mx-xl-53 {
		margin-right: 3.3125rem !important
	}

	.mb-xl-53,
	.my-xl-53 {
		margin-bottom: 3.3125rem !important
	}

	.ml-xl-53,
	.mx-xl-53 {
		margin-left: 3.3125rem !important
	}

	.m-xl-54 {
		margin: 3.375rem !important
	}

	.mt-xl-54,
	.my-xl-54 {
		margin-top: 3.375rem !important
	}

	.mr-xl-54,
	.mx-xl-54 {
		margin-right: 3.375rem !important
	}

	.mb-xl-54,
	.my-xl-54 {
		margin-bottom: 3.375rem !important
	}

	.ml-xl-54,
	.mx-xl-54 {
		margin-left: 3.375rem !important
	}

	.m-xl-55 {
		margin: 3.4375rem !important
	}

	.mt-xl-55,
	.my-xl-55 {
		margin-top: 3.4375rem !important
	}

	.mr-xl-55,
	.mx-xl-55 {
		margin-right: 3.4375rem !important
	}

	.mb-xl-55,
	.my-xl-55 {
		margin-bottom: 3.4375rem !important
	}

	.ml-xl-55,
	.mx-xl-55 {
		margin-left: 3.4375rem !important
	}

	.m-xl-56 {
		margin: 3.5rem !important
	}

	.mt-xl-56,
	.my-xl-56 {
		margin-top: 3.5rem !important
	}

	.mr-xl-56,
	.mx-xl-56 {
		margin-right: 3.5rem !important
	}

	.mb-xl-56,
	.my-xl-56 {
		margin-bottom: 3.5rem !important
	}

	.ml-xl-56,
	.mx-xl-56 {
		margin-left: 3.5rem !important
	}

	.m-xl-57 {
		margin: 3.5625rem !important
	}

	.mt-xl-57,
	.my-xl-57 {
		margin-top: 3.5625rem !important
	}

	.mr-xl-57,
	.mx-xl-57 {
		margin-right: 3.5625rem !important
	}

	.mb-xl-57,
	.my-xl-57 {
		margin-bottom: 3.5625rem !important
	}

	.ml-xl-57,
	.mx-xl-57 {
		margin-left: 3.5625rem !important
	}

	.m-xl-58 {
		margin: 3.625rem !important
	}

	.mt-xl-58,
	.my-xl-58 {
		margin-top: 3.625rem !important
	}

	.mr-xl-58,
	.mx-xl-58 {
		margin-right: 3.625rem !important
	}

	.mb-xl-58,
	.my-xl-58 {
		margin-bottom: 3.625rem !important
	}

	.ml-xl-58,
	.mx-xl-58 {
		margin-left: 3.625rem !important
	}

	.m-xl-59 {
		margin: 3.6875rem !important
	}

	.mt-xl-59,
	.my-xl-59 {
		margin-top: 3.6875rem !important
	}

	.mr-xl-59,
	.mx-xl-59 {
		margin-right: 3.6875rem !important
	}

	.mb-xl-59,
	.my-xl-59 {
		margin-bottom: 3.6875rem !important
	}

	.ml-xl-59,
	.mx-xl-59 {
		margin-left: 3.6875rem !important
	}

	.m-xl-60 {
		margin: 3.75rem !important
	}

	.mt-xl-60,
	.my-xl-60 {
		margin-top: 3.75rem !important
	}

	.mr-xl-60,
	.mx-xl-60 {
		margin-right: 3.75rem !important
	}

	.mb-xl-60,
	.my-xl-60 {
		margin-bottom: 3.75rem !important
	}

	.ml-xl-60,
	.mx-xl-60 {
		margin-left: 3.75rem !important
	}

	.m-xl-61 {
		margin: 3.8125rem !important
	}

	.mt-xl-61,
	.my-xl-61 {
		margin-top: 3.8125rem !important
	}

	.mr-xl-61,
	.mx-xl-61 {
		margin-right: 3.8125rem !important
	}

	.mb-xl-61,
	.my-xl-61 {
		margin-bottom: 3.8125rem !important
	}

	.ml-xl-61,
	.mx-xl-61 {
		margin-left: 3.8125rem !important
	}

	.m-xl-62 {
		margin: 3.875rem !important
	}

	.mt-xl-62,
	.my-xl-62 {
		margin-top: 3.875rem !important
	}

	.mr-xl-62,
	.mx-xl-62 {
		margin-right: 3.875rem !important
	}

	.mb-xl-62,
	.my-xl-62 {
		margin-bottom: 3.875rem !important
	}

	.ml-xl-62,
	.mx-xl-62 {
		margin-left: 3.875rem !important
	}

	.m-xl-63 {
		margin: 3.9375rem !important
	}

	.mt-xl-63,
	.my-xl-63 {
		margin-top: 3.9375rem !important
	}

	.mr-xl-63,
	.mx-xl-63 {
		margin-right: 3.9375rem !important
	}

	.mb-xl-63,
	.my-xl-63 {
		margin-bottom: 3.9375rem !important
	}

	.ml-xl-63,
	.mx-xl-63 {
		margin-left: 3.9375rem !important
	}

	.m-xl-64 {
		margin: 4rem !important
	}

	.mt-xl-64,
	.my-xl-64 {
		margin-top: 4rem !important
	}

	.mr-xl-64,
	.mx-xl-64 {
		margin-right: 4rem !important
	}

	.mb-xl-64,
	.my-xl-64 {
		margin-bottom: 4rem !important
	}

	.ml-xl-64,
	.mx-xl-64 {
		margin-left: 4rem !important
	}

	.m-xl-65 {
		margin: 4.0625rem !important
	}

	.mt-xl-65,
	.my-xl-65 {
		margin-top: 4.0625rem !important
	}

	.mr-xl-65,
	.mx-xl-65 {
		margin-right: 4.0625rem !important
	}

	.mb-xl-65,
	.my-xl-65 {
		margin-bottom: 4.0625rem !important
	}

	.ml-xl-65,
	.mx-xl-65 {
		margin-left: 4.0625rem !important
	}

	.m-xl-66 {
		margin: 4.125rem !important
	}

	.mt-xl-66,
	.my-xl-66 {
		margin-top: 4.125rem !important
	}

	.mr-xl-66,
	.mx-xl-66 {
		margin-right: 4.125rem !important
	}

	.mb-xl-66,
	.my-xl-66 {
		margin-bottom: 4.125rem !important
	}

	.ml-xl-66,
	.mx-xl-66 {
		margin-left: 4.125rem !important
	}

	.m-xl-67 {
		margin: 4.1875rem !important
	}

	.mt-xl-67,
	.my-xl-67 {
		margin-top: 4.1875rem !important
	}

	.mr-xl-67,
	.mx-xl-67 {
		margin-right: 4.1875rem !important
	}

	.mb-xl-67,
	.my-xl-67 {
		margin-bottom: 4.1875rem !important
	}

	.ml-xl-67,
	.mx-xl-67 {
		margin-left: 4.1875rem !important
	}

	.m-xl-68 {
		margin: 4.25rem !important
	}

	.mt-xl-68,
	.my-xl-68 {
		margin-top: 4.25rem !important
	}

	.mr-xl-68,
	.mx-xl-68 {
		margin-right: 4.25rem !important
	}

	.mb-xl-68,
	.my-xl-68 {
		margin-bottom: 4.25rem !important
	}

	.ml-xl-68,
	.mx-xl-68 {
		margin-left: 4.25rem !important
	}

	.m-xl-69 {
		margin: 4.3125rem !important
	}

	.mt-xl-69,
	.my-xl-69 {
		margin-top: 4.3125rem !important
	}

	.mr-xl-69,
	.mx-xl-69 {
		margin-right: 4.3125rem !important
	}

	.mb-xl-69,
	.my-xl-69 {
		margin-bottom: 4.3125rem !important
	}

	.ml-xl-69,
	.mx-xl-69 {
		margin-left: 4.3125rem !important
	}

	.m-xl-70 {
		margin: 4.375rem !important
	}

	.mt-xl-70,
	.my-xl-70 {
		margin-top: 4.375rem !important
	}

	.mr-xl-70,
	.mx-xl-70 {
		margin-right: 4.375rem !important
	}

	.mb-xl-70,
	.my-xl-70 {
		margin-bottom: 4.375rem !important
	}

	.ml-xl-70,
	.mx-xl-70 {
		margin-left: 4.375rem !important
	}

	.m-xl-71 {
		margin: 4.4375rem !important
	}

	.mt-xl-71,
	.my-xl-71 {
		margin-top: 4.4375rem !important
	}

	.mr-xl-71,
	.mx-xl-71 {
		margin-right: 4.4375rem !important
	}

	.mb-xl-71,
	.my-xl-71 {
		margin-bottom: 4.4375rem !important
	}

	.ml-xl-71,
	.mx-xl-71 {
		margin-left: 4.4375rem !important
	}

	.m-xl-72 {
		margin: 4.5rem !important
	}

	.mt-xl-72,
	.my-xl-72 {
		margin-top: 4.5rem !important
	}

	.mr-xl-72,
	.mx-xl-72 {
		margin-right: 4.5rem !important
	}

	.mb-xl-72,
	.my-xl-72 {
		margin-bottom: 4.5rem !important
	}

	.ml-xl-72,
	.mx-xl-72 {
		margin-left: 4.5rem !important
	}

	.m-xl-73 {
		margin: 4.5625rem !important
	}

	.mt-xl-73,
	.my-xl-73 {
		margin-top: 4.5625rem !important
	}

	.mr-xl-73,
	.mx-xl-73 {
		margin-right: 4.5625rem !important
	}

	.mb-xl-73,
	.my-xl-73 {
		margin-bottom: 4.5625rem !important
	}

	.ml-xl-73,
	.mx-xl-73 {
		margin-left: 4.5625rem !important
	}

	.m-xl-74 {
		margin: 4.625rem !important
	}

	.mt-xl-74,
	.my-xl-74 {
		margin-top: 4.625rem !important
	}

	.mr-xl-74,
	.mx-xl-74 {
		margin-right: 4.625rem !important
	}

	.mb-xl-74,
	.my-xl-74 {
		margin-bottom: 4.625rem !important
	}

	.ml-xl-74,
	.mx-xl-74 {
		margin-left: 4.625rem !important
	}

	.m-xl-75 {
		margin: 4.6875rem !important
	}

	.mt-xl-75,
	.my-xl-75 {
		margin-top: 4.6875rem !important
	}

	.mr-xl-75,
	.mx-xl-75 {
		margin-right: 4.6875rem !important
	}

	.mb-xl-75,
	.my-xl-75 {
		margin-bottom: 4.6875rem !important
	}

	.ml-xl-75,
	.mx-xl-75 {
		margin-left: 4.6875rem !important
	}

	.m-xl-76 {
		margin: 4.75rem !important
	}

	.mt-xl-76,
	.my-xl-76 {
		margin-top: 4.75rem !important
	}

	.mr-xl-76,
	.mx-xl-76 {
		margin-right: 4.75rem !important
	}

	.mb-xl-76,
	.my-xl-76 {
		margin-bottom: 4.75rem !important
	}

	.ml-xl-76,
	.mx-xl-76 {
		margin-left: 4.75rem !important
	}

	.m-xl-77 {
		margin: 4.8125rem !important
	}

	.mt-xl-77,
	.my-xl-77 {
		margin-top: 4.8125rem !important
	}

	.mr-xl-77,
	.mx-xl-77 {
		margin-right: 4.8125rem !important
	}

	.mb-xl-77,
	.my-xl-77 {
		margin-bottom: 4.8125rem !important
	}

	.ml-xl-77,
	.mx-xl-77 {
		margin-left: 4.8125rem !important
	}

	.m-xl-78 {
		margin: 4.875rem !important
	}

	.mt-xl-78,
	.my-xl-78 {
		margin-top: 4.875rem !important
	}

	.mr-xl-78,
	.mx-xl-78 {
		margin-right: 4.875rem !important
	}

	.mb-xl-78,
	.my-xl-78 {
		margin-bottom: 4.875rem !important
	}

	.ml-xl-78,
	.mx-xl-78 {
		margin-left: 4.875rem !important
	}

	.m-xl-79 {
		margin: 4.9375rem !important
	}

	.mt-xl-79,
	.my-xl-79 {
		margin-top: 4.9375rem !important
	}

	.mr-xl-79,
	.mx-xl-79 {
		margin-right: 4.9375rem !important
	}

	.mb-xl-79,
	.my-xl-79 {
		margin-bottom: 4.9375rem !important
	}

	.ml-xl-79,
	.mx-xl-79 {
		margin-left: 4.9375rem !important
	}

	.m-xl-80 {
		margin: 5rem !important
	}

	.mt-xl-80,
	.my-xl-80 {
		margin-top: 5rem !important
	}

	.mr-xl-80,
	.mx-xl-80 {
		margin-right: 5rem !important
	}

	.mb-xl-80,
	.my-xl-80 {
		margin-bottom: 5rem !important
	}

	.ml-xl-80,
	.mx-xl-80 {
		margin-left: 5rem !important
	}

	.m-xl-81 {
		margin: 5.0625rem !important
	}

	.mt-xl-81,
	.my-xl-81 {
		margin-top: 5.0625rem !important
	}

	.mr-xl-81,
	.mx-xl-81 {
		margin-right: 5.0625rem !important
	}

	.mb-xl-81,
	.my-xl-81 {
		margin-bottom: 5.0625rem !important
	}

	.ml-xl-81,
	.mx-xl-81 {
		margin-left: 5.0625rem !important
	}

	.m-xl-82 {
		margin: 5.125rem !important
	}

	.mt-xl-82,
	.my-xl-82 {
		margin-top: 5.125rem !important
	}

	.mr-xl-82,
	.mx-xl-82 {
		margin-right: 5.125rem !important
	}

	.mb-xl-82,
	.my-xl-82 {
		margin-bottom: 5.125rem !important
	}

	.ml-xl-82,
	.mx-xl-82 {
		margin-left: 5.125rem !important
	}

	.m-xl-83 {
		margin: 5.1875rem !important
	}

	.mt-xl-83,
	.my-xl-83 {
		margin-top: 5.1875rem !important
	}

	.mr-xl-83,
	.mx-xl-83 {
		margin-right: 5.1875rem !important
	}

	.mb-xl-83,
	.my-xl-83 {
		margin-bottom: 5.1875rem !important
	}

	.ml-xl-83,
	.mx-xl-83 {
		margin-left: 5.1875rem !important
	}

	.m-xl-84 {
		margin: 5.25rem !important
	}

	.mt-xl-84,
	.my-xl-84 {
		margin-top: 5.25rem !important
	}

	.mr-xl-84,
	.mx-xl-84 {
		margin-right: 5.25rem !important
	}

	.mb-xl-84,
	.my-xl-84 {
		margin-bottom: 5.25rem !important
	}

	.ml-xl-84,
	.mx-xl-84 {
		margin-left: 5.25rem !important
	}

	.m-xl-85 {
		margin: 5.3125rem !important
	}

	.mt-xl-85,
	.my-xl-85 {
		margin-top: 5.3125rem !important
	}

	.mr-xl-85,
	.mx-xl-85 {
		margin-right: 5.3125rem !important
	}

	.mb-xl-85,
	.my-xl-85 {
		margin-bottom: 5.3125rem !important
	}

	.ml-xl-85,
	.mx-xl-85 {
		margin-left: 5.3125rem !important
	}

	.m-xl-86 {
		margin: 5.375rem !important
	}

	.mt-xl-86,
	.my-xl-86 {
		margin-top: 5.375rem !important
	}

	.mr-xl-86,
	.mx-xl-86 {
		margin-right: 5.375rem !important
	}

	.mb-xl-86,
	.my-xl-86 {
		margin-bottom: 5.375rem !important
	}

	.ml-xl-86,
	.mx-xl-86 {
		margin-left: 5.375rem !important
	}

	.m-xl-87 {
		margin: 5.4375rem !important
	}

	.mt-xl-87,
	.my-xl-87 {
		margin-top: 5.4375rem !important
	}

	.mr-xl-87,
	.mx-xl-87 {
		margin-right: 5.4375rem !important
	}

	.mb-xl-87,
	.my-xl-87 {
		margin-bottom: 5.4375rem !important
	}

	.ml-xl-87,
	.mx-xl-87 {
		margin-left: 5.4375rem !important
	}

	.m-xl-88 {
		margin: 5.5rem !important
	}

	.mt-xl-88,
	.my-xl-88 {
		margin-top: 5.5rem !important
	}

	.mr-xl-88,
	.mx-xl-88 {
		margin-right: 5.5rem !important
	}

	.mb-xl-88,
	.my-xl-88 {
		margin-bottom: 5.5rem !important
	}

	.ml-xl-88,
	.mx-xl-88 {
		margin-left: 5.5rem !important
	}

	.m-xl-89 {
		margin: 5.5625rem !important
	}

	.mt-xl-89,
	.my-xl-89 {
		margin-top: 5.5625rem !important
	}

	.mr-xl-89,
	.mx-xl-89 {
		margin-right: 5.5625rem !important
	}

	.mb-xl-89,
	.my-xl-89 {
		margin-bottom: 5.5625rem !important
	}

	.ml-xl-89,
	.mx-xl-89 {
		margin-left: 5.5625rem !important
	}

	.m-xl-90 {
		margin: 5.625rem !important
	}

	.mt-xl-90,
	.my-xl-90 {
		margin-top: 5.625rem !important
	}

	.mr-xl-90,
	.mx-xl-90 {
		margin-right: 5.625rem !important
	}

	.mb-xl-90,
	.my-xl-90 {
		margin-bottom: 5.625rem !important
	}

	.ml-xl-90,
	.mx-xl-90 {
		margin-left: 5.625rem !important
	}

	.m-xl-91 {
		margin: 5.6875rem !important
	}

	.mt-xl-91,
	.my-xl-91 {
		margin-top: 5.6875rem !important
	}

	.mr-xl-91,
	.mx-xl-91 {
		margin-right: 5.6875rem !important
	}

	.mb-xl-91,
	.my-xl-91 {
		margin-bottom: 5.6875rem !important
	}

	.ml-xl-91,
	.mx-xl-91 {
		margin-left: 5.6875rem !important
	}

	.m-xl-92 {
		margin: 5.75rem !important
	}

	.mt-xl-92,
	.my-xl-92 {
		margin-top: 5.75rem !important
	}

	.mr-xl-92,
	.mx-xl-92 {
		margin-right: 5.75rem !important
	}

	.mb-xl-92,
	.my-xl-92 {
		margin-bottom: 5.75rem !important
	}

	.ml-xl-92,
	.mx-xl-92 {
		margin-left: 5.75rem !important
	}

	.m-xl-93 {
		margin: 5.8125rem !important
	}

	.mt-xl-93,
	.my-xl-93 {
		margin-top: 5.8125rem !important
	}

	.mr-xl-93,
	.mx-xl-93 {
		margin-right: 5.8125rem !important
	}

	.mb-xl-93,
	.my-xl-93 {
		margin-bottom: 5.8125rem !important
	}

	.ml-xl-93,
	.mx-xl-93 {
		margin-left: 5.8125rem !important
	}

	.m-xl-94 {
		margin: 5.875rem !important
	}

	.mt-xl-94,
	.my-xl-94 {
		margin-top: 5.875rem !important
	}

	.mr-xl-94,
	.mx-xl-94 {
		margin-right: 5.875rem !important
	}

	.mb-xl-94,
	.my-xl-94 {
		margin-bottom: 5.875rem !important
	}

	.ml-xl-94,
	.mx-xl-94 {
		margin-left: 5.875rem !important
	}

	.m-xl-95 {
		margin: 5.9375rem !important
	}

	.mt-xl-95,
	.my-xl-95 {
		margin-top: 5.9375rem !important
	}

	.mr-xl-95,
	.mx-xl-95 {
		margin-right: 5.9375rem !important
	}

	.mb-xl-95,
	.my-xl-95 {
		margin-bottom: 5.9375rem !important
	}

	.ml-xl-95,
	.mx-xl-95 {
		margin-left: 5.9375rem !important
	}

	.m-xl-96 {
		margin: 6rem !important
	}

	.mt-xl-96,
	.my-xl-96 {
		margin-top: 6rem !important
	}

	.mr-xl-96,
	.mx-xl-96 {
		margin-right: 6rem !important
	}

	.mb-xl-96,
	.my-xl-96 {
		margin-bottom: 6rem !important
	}

	.ml-xl-96,
	.mx-xl-96 {
		margin-left: 6rem !important
	}

	.m-xl-97 {
		margin: 6.0625rem !important
	}

	.mt-xl-97,
	.my-xl-97 {
		margin-top: 6.0625rem !important
	}

	.mr-xl-97,
	.mx-xl-97 {
		margin-right: 6.0625rem !important
	}

	.mb-xl-97,
	.my-xl-97 {
		margin-bottom: 6.0625rem !important
	}

	.ml-xl-97,
	.mx-xl-97 {
		margin-left: 6.0625rem !important
	}

	.m-xl-98 {
		margin: 6.125rem !important
	}

	.mt-xl-98,
	.my-xl-98 {
		margin-top: 6.125rem !important
	}

	.mr-xl-98,
	.mx-xl-98 {
		margin-right: 6.125rem !important
	}

	.mb-xl-98,
	.my-xl-98 {
		margin-bottom: 6.125rem !important
	}

	.ml-xl-98,
	.mx-xl-98 {
		margin-left: 6.125rem !important
	}

	.m-xl-99 {
		margin: 6.1875rem !important
	}

	.mt-xl-99,
	.my-xl-99 {
		margin-top: 6.1875rem !important
	}

	.mr-xl-99,
	.mx-xl-99 {
		margin-right: 6.1875rem !important
	}

	.mb-xl-99,
	.my-xl-99 {
		margin-bottom: 6.1875rem !important
	}

	.ml-xl-99,
	.mx-xl-99 {
		margin-left: 6.1875rem !important
	}

	.m-xl-100 {
		margin: 6.25rem !important
	}

	.mt-xl-100,
	.my-xl-100 {
		margin-top: 6.25rem !important
	}

	.mr-xl-100,
	.mx-xl-100 {
		margin-right: 6.25rem !important
	}

	.mb-xl-100,
	.my-xl-100 {
		margin-bottom: 6.25rem !important
	}

	.ml-xl-100,
	.mx-xl-100 {
		margin-left: 6.25rem !important
	}

	.m-xl-101 {
		margin: 6.3125rem !important
	}

	.mt-xl-101,
	.my-xl-101 {
		margin-top: 6.3125rem !important
	}

	.mr-xl-101,
	.mx-xl-101 {
		margin-right: 6.3125rem !important
	}

	.mb-xl-101,
	.my-xl-101 {
		margin-bottom: 6.3125rem !important
	}

	.ml-xl-101,
	.mx-xl-101 {
		margin-left: 6.3125rem !important
	}

	.m-xl-102 {
		margin: 6.375rem !important
	}

	.mt-xl-102,
	.my-xl-102 {
		margin-top: 6.375rem !important
	}

	.mr-xl-102,
	.mx-xl-102 {
		margin-right: 6.375rem !important
	}

	.mb-xl-102,
	.my-xl-102 {
		margin-bottom: 6.375rem !important
	}

	.ml-xl-102,
	.mx-xl-102 {
		margin-left: 6.375rem !important
	}

	.m-xl-103 {
		margin: 6.4375rem !important
	}

	.mt-xl-103,
	.my-xl-103 {
		margin-top: 6.4375rem !important
	}

	.mr-xl-103,
	.mx-xl-103 {
		margin-right: 6.4375rem !important
	}

	.mb-xl-103,
	.my-xl-103 {
		margin-bottom: 6.4375rem !important
	}

	.ml-xl-103,
	.mx-xl-103 {
		margin-left: 6.4375rem !important
	}

	.m-xl-104 {
		margin: 6.5rem !important
	}

	.mt-xl-104,
	.my-xl-104 {
		margin-top: 6.5rem !important
	}

	.mr-xl-104,
	.mx-xl-104 {
		margin-right: 6.5rem !important
	}

	.mb-xl-104,
	.my-xl-104 {
		margin-bottom: 6.5rem !important
	}

	.ml-xl-104,
	.mx-xl-104 {
		margin-left: 6.5rem !important
	}

	.m-xl-105 {
		margin: 6.5625rem !important
	}

	.mt-xl-105,
	.my-xl-105 {
		margin-top: 6.5625rem !important
	}

	.mr-xl-105,
	.mx-xl-105 {
		margin-right: 6.5625rem !important
	}

	.mb-xl-105,
	.my-xl-105 {
		margin-bottom: 6.5625rem !important
	}

	.ml-xl-105,
	.mx-xl-105 {
		margin-left: 6.5625rem !important
	}

	.m-xl-106 {
		margin: 6.625rem !important
	}

	.mt-xl-106,
	.my-xl-106 {
		margin-top: 6.625rem !important
	}

	.mr-xl-106,
	.mx-xl-106 {
		margin-right: 6.625rem !important
	}

	.mb-xl-106,
	.my-xl-106 {
		margin-bottom: 6.625rem !important
	}

	.ml-xl-106,
	.mx-xl-106 {
		margin-left: 6.625rem !important
	}

	.m-xl-107 {
		margin: 6.6875rem !important
	}

	.mt-xl-107,
	.my-xl-107 {
		margin-top: 6.6875rem !important
	}

	.mr-xl-107,
	.mx-xl-107 {
		margin-right: 6.6875rem !important
	}

	.mb-xl-107,
	.my-xl-107 {
		margin-bottom: 6.6875rem !important
	}

	.ml-xl-107,
	.mx-xl-107 {
		margin-left: 6.6875rem !important
	}

	.m-xl-108 {
		margin: 6.75rem !important
	}

	.mt-xl-108,
	.my-xl-108 {
		margin-top: 6.75rem !important
	}

	.mr-xl-108,
	.mx-xl-108 {
		margin-right: 6.75rem !important
	}

	.mb-xl-108,
	.my-xl-108 {
		margin-bottom: 6.75rem !important
	}

	.ml-xl-108,
	.mx-xl-108 {
		margin-left: 6.75rem !important
	}

	.m-xl-109 {
		margin: 6.8125rem !important
	}

	.mt-xl-109,
	.my-xl-109 {
		margin-top: 6.8125rem !important
	}

	.mr-xl-109,
	.mx-xl-109 {
		margin-right: 6.8125rem !important
	}

	.mb-xl-109,
	.my-xl-109 {
		margin-bottom: 6.8125rem !important
	}

	.ml-xl-109,
	.mx-xl-109 {
		margin-left: 6.8125rem !important
	}

	.m-xl-110 {
		margin: 6.875rem !important
	}

	.mt-xl-110,
	.my-xl-110 {
		margin-top: 6.875rem !important
	}

	.mr-xl-110,
	.mx-xl-110 {
		margin-right: 6.875rem !important
	}

	.mb-xl-110,
	.my-xl-110 {
		margin-bottom: 6.875rem !important
	}

	.ml-xl-110,
	.mx-xl-110 {
		margin-left: 6.875rem !important
	}

	.m-xl-111 {
		margin: 6.9375rem !important
	}

	.mt-xl-111,
	.my-xl-111 {
		margin-top: 6.9375rem !important
	}

	.mr-xl-111,
	.mx-xl-111 {
		margin-right: 6.9375rem !important
	}

	.mb-xl-111,
	.my-xl-111 {
		margin-bottom: 6.9375rem !important
	}

	.ml-xl-111,
	.mx-xl-111 {
		margin-left: 6.9375rem !important
	}

	.m-xl-112 {
		margin: 7rem !important
	}

	.mt-xl-112,
	.my-xl-112 {
		margin-top: 7rem !important
	}

	.mr-xl-112,
	.mx-xl-112 {
		margin-right: 7rem !important
	}

	.mb-xl-112,
	.my-xl-112 {
		margin-bottom: 7rem !important
	}

	.ml-xl-112,
	.mx-xl-112 {
		margin-left: 7rem !important
	}

	.m-xl-113 {
		margin: 7.0625rem !important
	}

	.mt-xl-113,
	.my-xl-113 {
		margin-top: 7.0625rem !important
	}

	.mr-xl-113,
	.mx-xl-113 {
		margin-right: 7.0625rem !important
	}

	.mb-xl-113,
	.my-xl-113 {
		margin-bottom: 7.0625rem !important
	}

	.ml-xl-113,
	.mx-xl-113 {
		margin-left: 7.0625rem !important
	}

	.m-xl-114 {
		margin: 7.125rem !important
	}

	.mt-xl-114,
	.my-xl-114 {
		margin-top: 7.125rem !important
	}

	.mr-xl-114,
	.mx-xl-114 {
		margin-right: 7.125rem !important
	}

	.mb-xl-114,
	.my-xl-114 {
		margin-bottom: 7.125rem !important
	}

	.ml-xl-114,
	.mx-xl-114 {
		margin-left: 7.125rem !important
	}

	.m-xl-115 {
		margin: 7.1875rem !important
	}

	.mt-xl-115,
	.my-xl-115 {
		margin-top: 7.1875rem !important
	}

	.mr-xl-115,
	.mx-xl-115 {
		margin-right: 7.1875rem !important
	}

	.mb-xl-115,
	.my-xl-115 {
		margin-bottom: 7.1875rem !important
	}

	.ml-xl-115,
	.mx-xl-115 {
		margin-left: 7.1875rem !important
	}

	.m-xl-116 {
		margin: 7.25rem !important
	}

	.mt-xl-116,
	.my-xl-116 {
		margin-top: 7.25rem !important
	}

	.mr-xl-116,
	.mx-xl-116 {
		margin-right: 7.25rem !important
	}

	.mb-xl-116,
	.my-xl-116 {
		margin-bottom: 7.25rem !important
	}

	.ml-xl-116,
	.mx-xl-116 {
		margin-left: 7.25rem !important
	}

	.m-xl-117 {
		margin: 7.3125rem !important
	}

	.mt-xl-117,
	.my-xl-117 {
		margin-top: 7.3125rem !important
	}

	.mr-xl-117,
	.mx-xl-117 {
		margin-right: 7.3125rem !important
	}

	.mb-xl-117,
	.my-xl-117 {
		margin-bottom: 7.3125rem !important
	}

	.ml-xl-117,
	.mx-xl-117 {
		margin-left: 7.3125rem !important
	}

	.m-xl-118 {
		margin: 7.375rem !important
	}

	.mt-xl-118,
	.my-xl-118 {
		margin-top: 7.375rem !important
	}

	.mr-xl-118,
	.mx-xl-118 {
		margin-right: 7.375rem !important
	}

	.mb-xl-118,
	.my-xl-118 {
		margin-bottom: 7.375rem !important
	}

	.ml-xl-118,
	.mx-xl-118 {
		margin-left: 7.375rem !important
	}

	.m-xl-119 {
		margin: 7.4375rem !important
	}

	.mt-xl-119,
	.my-xl-119 {
		margin-top: 7.4375rem !important
	}

	.mr-xl-119,
	.mx-xl-119 {
		margin-right: 7.4375rem !important
	}

	.mb-xl-119,
	.my-xl-119 {
		margin-bottom: 7.4375rem !important
	}

	.ml-xl-119,
	.mx-xl-119 {
		margin-left: 7.4375rem !important
	}

	.m-xl-120 {
		margin: 7.5rem !important
	}

	.mt-xl-120,
	.my-xl-120 {
		margin-top: 7.5rem !important
	}

	.mr-xl-120,
	.mx-xl-120 {
		margin-right: 7.5rem !important
	}

	.mb-xl-120,
	.my-xl-120 {
		margin-bottom: 7.5rem !important
	}

	.ml-xl-120,
	.mx-xl-120 {
		margin-left: 7.5rem !important
	}

	.m-xl-121 {
		margin: 7.5625rem !important
	}

	.mt-xl-121,
	.my-xl-121 {
		margin-top: 7.5625rem !important
	}

	.mr-xl-121,
	.mx-xl-121 {
		margin-right: 7.5625rem !important
	}

	.mb-xl-121,
	.my-xl-121 {
		margin-bottom: 7.5625rem !important
	}

	.ml-xl-121,
	.mx-xl-121 {
		margin-left: 7.5625rem !important
	}

	.m-xl-122 {
		margin: 7.625rem !important
	}

	.mt-xl-122,
	.my-xl-122 {
		margin-top: 7.625rem !important
	}

	.mr-xl-122,
	.mx-xl-122 {
		margin-right: 7.625rem !important
	}

	.mb-xl-122,
	.my-xl-122 {
		margin-bottom: 7.625rem !important
	}

	.ml-xl-122,
	.mx-xl-122 {
		margin-left: 7.625rem !important
	}

	.m-xl-123 {
		margin: 7.6875rem !important
	}

	.mt-xl-123,
	.my-xl-123 {
		margin-top: 7.6875rem !important
	}

	.mr-xl-123,
	.mx-xl-123 {
		margin-right: 7.6875rem !important
	}

	.mb-xl-123,
	.my-xl-123 {
		margin-bottom: 7.6875rem !important
	}

	.ml-xl-123,
	.mx-xl-123 {
		margin-left: 7.6875rem !important
	}

	.m-xl-124 {
		margin: 7.75rem !important
	}

	.mt-xl-124,
	.my-xl-124 {
		margin-top: 7.75rem !important
	}

	.mr-xl-124,
	.mx-xl-124 {
		margin-right: 7.75rem !important
	}

	.mb-xl-124,
	.my-xl-124 {
		margin-bottom: 7.75rem !important
	}

	.ml-xl-124,
	.mx-xl-124 {
		margin-left: 7.75rem !important
	}

	.m-xl-125 {
		margin: 7.8125rem !important
	}

	.mt-xl-125,
	.my-xl-125 {
		margin-top: 7.8125rem !important
	}

	.mr-xl-125,
	.mx-xl-125 {
		margin-right: 7.8125rem !important
	}

	.mb-xl-125,
	.my-xl-125 {
		margin-bottom: 7.8125rem !important
	}

	.ml-xl-125,
	.mx-xl-125 {
		margin-left: 7.8125rem !important
	}

	.m-xl-126 {
		margin: 7.875rem !important
	}

	.mt-xl-126,
	.my-xl-126 {
		margin-top: 7.875rem !important
	}

	.mr-xl-126,
	.mx-xl-126 {
		margin-right: 7.875rem !important
	}

	.mb-xl-126,
	.my-xl-126 {
		margin-bottom: 7.875rem !important
	}

	.ml-xl-126,
	.mx-xl-126 {
		margin-left: 7.875rem !important
	}

	.m-xl-127 {
		margin: 7.9375rem !important
	}

	.mt-xl-127,
	.my-xl-127 {
		margin-top: 7.9375rem !important
	}

	.mr-xl-127,
	.mx-xl-127 {
		margin-right: 7.9375rem !important
	}

	.mb-xl-127,
	.my-xl-127 {
		margin-bottom: 7.9375rem !important
	}

	.ml-xl-127,
	.mx-xl-127 {
		margin-left: 7.9375rem !important
	}

	.m-xl-128 {
		margin: 8rem !important
	}

	.mt-xl-128,
	.my-xl-128 {
		margin-top: 8rem !important
	}

	.mr-xl-128,
	.mx-xl-128 {
		margin-right: 8rem !important
	}

	.mb-xl-128,
	.my-xl-128 {
		margin-bottom: 8rem !important
	}

	.ml-xl-128,
	.mx-xl-128 {
		margin-left: 8rem !important
	}

	.m-xl-129 {
		margin: 8.0625rem !important
	}

	.mt-xl-129,
	.my-xl-129 {
		margin-top: 8.0625rem !important
	}

	.mr-xl-129,
	.mx-xl-129 {
		margin-right: 8.0625rem !important
	}

	.mb-xl-129,
	.my-xl-129 {
		margin-bottom: 8.0625rem !important
	}

	.ml-xl-129,
	.mx-xl-129 {
		margin-left: 8.0625rem !important
	}

	.m-xl-130 {
		margin: 8.125rem !important
	}

	.mt-xl-130,
	.my-xl-130 {
		margin-top: 8.125rem !important
	}

	.mr-xl-130,
	.mx-xl-130 {
		margin-right: 8.125rem !important
	}

	.mb-xl-130,
	.my-xl-130 {
		margin-bottom: 8.125rem !important
	}

	.ml-xl-130,
	.mx-xl-130 {
		margin-left: 8.125rem !important
	}

	.m-xl-131 {
		margin: 8.1875rem !important
	}

	.mt-xl-131,
	.my-xl-131 {
		margin-top: 8.1875rem !important
	}

	.mr-xl-131,
	.mx-xl-131 {
		margin-right: 8.1875rem !important
	}

	.mb-xl-131,
	.my-xl-131 {
		margin-bottom: 8.1875rem !important
	}

	.ml-xl-131,
	.mx-xl-131 {
		margin-left: 8.1875rem !important
	}

	.m-xl-132 {
		margin: 8.25rem !important
	}

	.mt-xl-132,
	.my-xl-132 {
		margin-top: 8.25rem !important
	}

	.mr-xl-132,
	.mx-xl-132 {
		margin-right: 8.25rem !important
	}

	.mb-xl-132,
	.my-xl-132 {
		margin-bottom: 8.25rem !important
	}

	.ml-xl-132,
	.mx-xl-132 {
		margin-left: 8.25rem !important
	}

	.m-xl-133 {
		margin: 8.3125rem !important
	}

	.mt-xl-133,
	.my-xl-133 {
		margin-top: 8.3125rem !important
	}

	.mr-xl-133,
	.mx-xl-133 {
		margin-right: 8.3125rem !important
	}

	.mb-xl-133,
	.my-xl-133 {
		margin-bottom: 8.3125rem !important
	}

	.ml-xl-133,
	.mx-xl-133 {
		margin-left: 8.3125rem !important
	}

	.m-xl-134 {
		margin: 8.375rem !important
	}

	.mt-xl-134,
	.my-xl-134 {
		margin-top: 8.375rem !important
	}

	.mr-xl-134,
	.mx-xl-134 {
		margin-right: 8.375rem !important
	}

	.mb-xl-134,
	.my-xl-134 {
		margin-bottom: 8.375rem !important
	}

	.ml-xl-134,
	.mx-xl-134 {
		margin-left: 8.375rem !important
	}

	.m-xl-135 {
		margin: 8.4375rem !important
	}

	.mt-xl-135,
	.my-xl-135 {
		margin-top: 8.4375rem !important
	}

	.mr-xl-135,
	.mx-xl-135 {
		margin-right: 8.4375rem !important
	}

	.mb-xl-135,
	.my-xl-135 {
		margin-bottom: 8.4375rem !important
	}

	.ml-xl-135,
	.mx-xl-135 {
		margin-left: 8.4375rem !important
	}

	.m-xl-136 {
		margin: 8.5rem !important
	}

	.mt-xl-136,
	.my-xl-136 {
		margin-top: 8.5rem !important
	}

	.mr-xl-136,
	.mx-xl-136 {
		margin-right: 8.5rem !important
	}

	.mb-xl-136,
	.my-xl-136 {
		margin-bottom: 8.5rem !important
	}

	.ml-xl-136,
	.mx-xl-136 {
		margin-left: 8.5rem !important
	}

	.m-xl-137 {
		margin: 8.5625rem !important
	}

	.mt-xl-137,
	.my-xl-137 {
		margin-top: 8.5625rem !important
	}

	.mr-xl-137,
	.mx-xl-137 {
		margin-right: 8.5625rem !important
	}

	.mb-xl-137,
	.my-xl-137 {
		margin-bottom: 8.5625rem !important
	}

	.ml-xl-137,
	.mx-xl-137 {
		margin-left: 8.5625rem !important
	}

	.m-xl-138 {
		margin: 8.625rem !important
	}

	.mt-xl-138,
	.my-xl-138 {
		margin-top: 8.625rem !important
	}

	.mr-xl-138,
	.mx-xl-138 {
		margin-right: 8.625rem !important
	}

	.mb-xl-138,
	.my-xl-138 {
		margin-bottom: 8.625rem !important
	}

	.ml-xl-138,
	.mx-xl-138 {
		margin-left: 8.625rem !important
	}

	.m-xl-139 {
		margin: 8.6875rem !important
	}

	.mt-xl-139,
	.my-xl-139 {
		margin-top: 8.6875rem !important
	}

	.mr-xl-139,
	.mx-xl-139 {
		margin-right: 8.6875rem !important
	}

	.mb-xl-139,
	.my-xl-139 {
		margin-bottom: 8.6875rem !important
	}

	.ml-xl-139,
	.mx-xl-139 {
		margin-left: 8.6875rem !important
	}

	.m-xl-140 {
		margin: 8.75rem !important
	}

	.mt-xl-140,
	.my-xl-140 {
		margin-top: 8.75rem !important
	}

	.mr-xl-140,
	.mx-xl-140 {
		margin-right: 8.75rem !important
	}

	.mb-xl-140,
	.my-xl-140 {
		margin-bottom: 8.75rem !important
	}

	.ml-xl-140,
	.mx-xl-140 {
		margin-left: 8.75rem !important
	}

	.m-xl-141 {
		margin: 8.8125rem !important
	}

	.mt-xl-141,
	.my-xl-141 {
		margin-top: 8.8125rem !important
	}

	.mr-xl-141,
	.mx-xl-141 {
		margin-right: 8.8125rem !important
	}

	.mb-xl-141,
	.my-xl-141 {
		margin-bottom: 8.8125rem !important
	}

	.ml-xl-141,
	.mx-xl-141 {
		margin-left: 8.8125rem !important
	}

	.m-xl-142 {
		margin: 8.875rem !important
	}

	.mt-xl-142,
	.my-xl-142 {
		margin-top: 8.875rem !important
	}

	.mr-xl-142,
	.mx-xl-142 {
		margin-right: 8.875rem !important
	}

	.mb-xl-142,
	.my-xl-142 {
		margin-bottom: 8.875rem !important
	}

	.ml-xl-142,
	.mx-xl-142 {
		margin-left: 8.875rem !important
	}

	.m-xl-143 {
		margin: 8.9375rem !important
	}

	.mt-xl-143,
	.my-xl-143 {
		margin-top: 8.9375rem !important
	}

	.mr-xl-143,
	.mx-xl-143 {
		margin-right: 8.9375rem !important
	}

	.mb-xl-143,
	.my-xl-143 {
		margin-bottom: 8.9375rem !important
	}

	.ml-xl-143,
	.mx-xl-143 {
		margin-left: 8.9375rem !important
	}

	.m-xl-144 {
		margin: 9rem !important
	}

	.mt-xl-144,
	.my-xl-144 {
		margin-top: 9rem !important
	}

	.mr-xl-144,
	.mx-xl-144 {
		margin-right: 9rem !important
	}

	.mb-xl-144,
	.my-xl-144 {
		margin-bottom: 9rem !important
	}

	.ml-xl-144,
	.mx-xl-144 {
		margin-left: 9rem !important
	}

	.m-xl-145 {
		margin: 9.0625rem !important
	}

	.mt-xl-145,
	.my-xl-145 {
		margin-top: 9.0625rem !important
	}

	.mr-xl-145,
	.mx-xl-145 {
		margin-right: 9.0625rem !important
	}

	.mb-xl-145,
	.my-xl-145 {
		margin-bottom: 9.0625rem !important
	}

	.ml-xl-145,
	.mx-xl-145 {
		margin-left: 9.0625rem !important
	}

	.m-xl-146 {
		margin: 9.125rem !important
	}

	.mt-xl-146,
	.my-xl-146 {
		margin-top: 9.125rem !important
	}

	.mr-xl-146,
	.mx-xl-146 {
		margin-right: 9.125rem !important
	}

	.mb-xl-146,
	.my-xl-146 {
		margin-bottom: 9.125rem !important
	}

	.ml-xl-146,
	.mx-xl-146 {
		margin-left: 9.125rem !important
	}

	.m-xl-147 {
		margin: 9.1875rem !important
	}

	.mt-xl-147,
	.my-xl-147 {
		margin-top: 9.1875rem !important
	}

	.mr-xl-147,
	.mx-xl-147 {
		margin-right: 9.1875rem !important
	}

	.mb-xl-147,
	.my-xl-147 {
		margin-bottom: 9.1875rem !important
	}

	.ml-xl-147,
	.mx-xl-147 {
		margin-left: 9.1875rem !important
	}

	.m-xl-148 {
		margin: 9.25rem !important
	}

	.mt-xl-148,
	.my-xl-148 {
		margin-top: 9.25rem !important
	}

	.mr-xl-148,
	.mx-xl-148 {
		margin-right: 9.25rem !important
	}

	.mb-xl-148,
	.my-xl-148 {
		margin-bottom: 9.25rem !important
	}

	.ml-xl-148,
	.mx-xl-148 {
		margin-left: 9.25rem !important
	}

	.m-xl-149 {
		margin: 9.3125rem !important
	}

	.mt-xl-149,
	.my-xl-149 {
		margin-top: 9.3125rem !important
	}

	.mr-xl-149,
	.mx-xl-149 {
		margin-right: 9.3125rem !important
	}

	.mb-xl-149,
	.my-xl-149 {
		margin-bottom: 9.3125rem !important
	}

	.ml-xl-149,
	.mx-xl-149 {
		margin-left: 9.3125rem !important
	}

	.m-xl-150 {
		margin: 9.375rem !important
	}

	.mt-xl-150,
	.my-xl-150 {
		margin-top: 9.375rem !important
	}

	.mr-xl-150,
	.mx-xl-150 {
		margin-right: 9.375rem !important
	}

	.mb-xl-150,
	.my-xl-150 {
		margin-bottom: 9.375rem !important
	}

	.ml-xl-150,
	.mx-xl-150 {
		margin-left: 9.375rem !important
	}

	.m-xl-151 {
		margin: 9.4375rem !important
	}

	.mt-xl-151,
	.my-xl-151 {
		margin-top: 9.4375rem !important
	}

	.mr-xl-151,
	.mx-xl-151 {
		margin-right: 9.4375rem !important
	}

	.mb-xl-151,
	.my-xl-151 {
		margin-bottom: 9.4375rem !important
	}

	.ml-xl-151,
	.mx-xl-151 {
		margin-left: 9.4375rem !important
	}

	.m-xl-152 {
		margin: 9.5rem !important
	}

	.mt-xl-152,
	.my-xl-152 {
		margin-top: 9.5rem !important
	}

	.mr-xl-152,
	.mx-xl-152 {
		margin-right: 9.5rem !important
	}

	.mb-xl-152,
	.my-xl-152 {
		margin-bottom: 9.5rem !important
	}

	.ml-xl-152,
	.mx-xl-152 {
		margin-left: 9.5rem !important
	}

	.m-xl-153 {
		margin: 9.5625rem !important
	}

	.mt-xl-153,
	.my-xl-153 {
		margin-top: 9.5625rem !important
	}

	.mr-xl-153,
	.mx-xl-153 {
		margin-right: 9.5625rem !important
	}

	.mb-xl-153,
	.my-xl-153 {
		margin-bottom: 9.5625rem !important
	}

	.ml-xl-153,
	.mx-xl-153 {
		margin-left: 9.5625rem !important
	}

	.m-xl-154 {
		margin: 9.625rem !important
	}

	.mt-xl-154,
	.my-xl-154 {
		margin-top: 9.625rem !important
	}

	.mr-xl-154,
	.mx-xl-154 {
		margin-right: 9.625rem !important
	}

	.mb-xl-154,
	.my-xl-154 {
		margin-bottom: 9.625rem !important
	}

	.ml-xl-154,
	.mx-xl-154 {
		margin-left: 9.625rem !important
	}

	.m-xl-155 {
		margin: 9.6875rem !important
	}

	.mt-xl-155,
	.my-xl-155 {
		margin-top: 9.6875rem !important
	}

	.mr-xl-155,
	.mx-xl-155 {
		margin-right: 9.6875rem !important
	}

	.mb-xl-155,
	.my-xl-155 {
		margin-bottom: 9.6875rem !important
	}

	.ml-xl-155,
	.mx-xl-155 {
		margin-left: 9.6875rem !important
	}

	.m-xl-156 {
		margin: 9.75rem !important
	}

	.mt-xl-156,
	.my-xl-156 {
		margin-top: 9.75rem !important
	}

	.mr-xl-156,
	.mx-xl-156 {
		margin-right: 9.75rem !important
	}

	.mb-xl-156,
	.my-xl-156 {
		margin-bottom: 9.75rem !important
	}

	.ml-xl-156,
	.mx-xl-156 {
		margin-left: 9.75rem !important
	}

	.m-xl-157 {
		margin: 9.8125rem !important
	}

	.mt-xl-157,
	.my-xl-157 {
		margin-top: 9.8125rem !important
	}

	.mr-xl-157,
	.mx-xl-157 {
		margin-right: 9.8125rem !important
	}

	.mb-xl-157,
	.my-xl-157 {
		margin-bottom: 9.8125rem !important
	}

	.ml-xl-157,
	.mx-xl-157 {
		margin-left: 9.8125rem !important
	}

	.m-xl-158 {
		margin: 9.875rem !important
	}

	.mt-xl-158,
	.my-xl-158 {
		margin-top: 9.875rem !important
	}

	.mr-xl-158,
	.mx-xl-158 {
		margin-right: 9.875rem !important
	}

	.mb-xl-158,
	.my-xl-158 {
		margin-bottom: 9.875rem !important
	}

	.ml-xl-158,
	.mx-xl-158 {
		margin-left: 9.875rem !important
	}

	.m-xl-159 {
		margin: 9.9375rem !important
	}

	.mt-xl-159,
	.my-xl-159 {
		margin-top: 9.9375rem !important
	}

	.mr-xl-159,
	.mx-xl-159 {
		margin-right: 9.9375rem !important
	}

	.mb-xl-159,
	.my-xl-159 {
		margin-bottom: 9.9375rem !important
	}

	.ml-xl-159,
	.mx-xl-159 {
		margin-left: 9.9375rem !important
	}

	.m-xl-160 {
		margin: 10rem !important
	}

	.mt-xl-160,
	.my-xl-160 {
		margin-top: 10rem !important
	}

	.mr-xl-160,
	.mx-xl-160 {
		margin-right: 10rem !important
	}

	.mb-xl-160,
	.my-xl-160 {
		margin-bottom: 10rem !important
	}

	.ml-xl-160,
	.mx-xl-160 {
		margin-left: 10rem !important
	}

	.m-xl-161 {
		margin: 10.0625rem !important
	}

	.mt-xl-161,
	.my-xl-161 {
		margin-top: 10.0625rem !important
	}

	.mr-xl-161,
	.mx-xl-161 {
		margin-right: 10.0625rem !important
	}

	.mb-xl-161,
	.my-xl-161 {
		margin-bottom: 10.0625rem !important
	}

	.ml-xl-161,
	.mx-xl-161 {
		margin-left: 10.0625rem !important
	}

	.m-xl-162 {
		margin: 10.125rem !important
	}

	.mt-xl-162,
	.my-xl-162 {
		margin-top: 10.125rem !important
	}

	.mr-xl-162,
	.mx-xl-162 {
		margin-right: 10.125rem !important
	}

	.mb-xl-162,
	.my-xl-162 {
		margin-bottom: 10.125rem !important
	}

	.ml-xl-162,
	.mx-xl-162 {
		margin-left: 10.125rem !important
	}

	.m-xl-163 {
		margin: 10.1875rem !important
	}

	.mt-xl-163,
	.my-xl-163 {
		margin-top: 10.1875rem !important
	}

	.mr-xl-163,
	.mx-xl-163 {
		margin-right: 10.1875rem !important
	}

	.mb-xl-163,
	.my-xl-163 {
		margin-bottom: 10.1875rem !important
	}

	.ml-xl-163,
	.mx-xl-163 {
		margin-left: 10.1875rem !important
	}

	.m-xl-164 {
		margin: 10.25rem !important
	}

	.mt-xl-164,
	.my-xl-164 {
		margin-top: 10.25rem !important
	}

	.mr-xl-164,
	.mx-xl-164 {
		margin-right: 10.25rem !important
	}

	.mb-xl-164,
	.my-xl-164 {
		margin-bottom: 10.25rem !important
	}

	.ml-xl-164,
	.mx-xl-164 {
		margin-left: 10.25rem !important
	}

	.m-xl-165 {
		margin: 10.3125rem !important
	}

	.mt-xl-165,
	.my-xl-165 {
		margin-top: 10.3125rem !important
	}

	.mr-xl-165,
	.mx-xl-165 {
		margin-right: 10.3125rem !important
	}

	.mb-xl-165,
	.my-xl-165 {
		margin-bottom: 10.3125rem !important
	}

	.ml-xl-165,
	.mx-xl-165 {
		margin-left: 10.3125rem !important
	}

	.m-xl-166 {
		margin: 10.375rem !important
	}

	.mt-xl-166,
	.my-xl-166 {
		margin-top: 10.375rem !important
	}

	.mr-xl-166,
	.mx-xl-166 {
		margin-right: 10.375rem !important
	}

	.mb-xl-166,
	.my-xl-166 {
		margin-bottom: 10.375rem !important
	}

	.ml-xl-166,
	.mx-xl-166 {
		margin-left: 10.375rem !important
	}

	.m-xl-167 {
		margin: 10.4375rem !important
	}

	.mt-xl-167,
	.my-xl-167 {
		margin-top: 10.4375rem !important
	}

	.mr-xl-167,
	.mx-xl-167 {
		margin-right: 10.4375rem !important
	}

	.mb-xl-167,
	.my-xl-167 {
		margin-bottom: 10.4375rem !important
	}

	.ml-xl-167,
	.mx-xl-167 {
		margin-left: 10.4375rem !important
	}

	.m-xl-168 {
		margin: 10.5rem !important
	}

	.mt-xl-168,
	.my-xl-168 {
		margin-top: 10.5rem !important
	}

	.mr-xl-168,
	.mx-xl-168 {
		margin-right: 10.5rem !important
	}

	.mb-xl-168,
	.my-xl-168 {
		margin-bottom: 10.5rem !important
	}

	.ml-xl-168,
	.mx-xl-168 {
		margin-left: 10.5rem !important
	}

	.m-xl-169 {
		margin: 10.5625rem !important
	}

	.mt-xl-169,
	.my-xl-169 {
		margin-top: 10.5625rem !important
	}

	.mr-xl-169,
	.mx-xl-169 {
		margin-right: 10.5625rem !important
	}

	.mb-xl-169,
	.my-xl-169 {
		margin-bottom: 10.5625rem !important
	}

	.ml-xl-169,
	.mx-xl-169 {
		margin-left: 10.5625rem !important
	}

	.m-xl-170 {
		margin: 10.625rem !important
	}

	.mt-xl-170,
	.my-xl-170 {
		margin-top: 10.625rem !important
	}

	.mr-xl-170,
	.mx-xl-170 {
		margin-right: 10.625rem !important
	}

	.mb-xl-170,
	.my-xl-170 {
		margin-bottom: 10.625rem !important
	}

	.ml-xl-170,
	.mx-xl-170 {
		margin-left: 10.625rem !important
	}

	.m-xl-171 {
		margin: 10.6875rem !important
	}

	.mt-xl-171,
	.my-xl-171 {
		margin-top: 10.6875rem !important
	}

	.mr-xl-171,
	.mx-xl-171 {
		margin-right: 10.6875rem !important
	}

	.mb-xl-171,
	.my-xl-171 {
		margin-bottom: 10.6875rem !important
	}

	.ml-xl-171,
	.mx-xl-171 {
		margin-left: 10.6875rem !important
	}

	.m-xl-172 {
		margin: 10.75rem !important
	}

	.mt-xl-172,
	.my-xl-172 {
		margin-top: 10.75rem !important
	}

	.mr-xl-172,
	.mx-xl-172 {
		margin-right: 10.75rem !important
	}

	.mb-xl-172,
	.my-xl-172 {
		margin-bottom: 10.75rem !important
	}

	.ml-xl-172,
	.mx-xl-172 {
		margin-left: 10.75rem !important
	}

	.m-xl-173 {
		margin: 10.8125rem !important
	}

	.mt-xl-173,
	.my-xl-173 {
		margin-top: 10.8125rem !important
	}

	.mr-xl-173,
	.mx-xl-173 {
		margin-right: 10.8125rem !important
	}

	.mb-xl-173,
	.my-xl-173 {
		margin-bottom: 10.8125rem !important
	}

	.ml-xl-173,
	.mx-xl-173 {
		margin-left: 10.8125rem !important
	}

	.m-xl-174 {
		margin: 10.875rem !important
	}

	.mt-xl-174,
	.my-xl-174 {
		margin-top: 10.875rem !important
	}

	.mr-xl-174,
	.mx-xl-174 {
		margin-right: 10.875rem !important
	}

	.mb-xl-174,
	.my-xl-174 {
		margin-bottom: 10.875rem !important
	}

	.ml-xl-174,
	.mx-xl-174 {
		margin-left: 10.875rem !important
	}

	.m-xl-175 {
		margin: 10.9375rem !important
	}

	.mt-xl-175,
	.my-xl-175 {
		margin-top: 10.9375rem !important
	}

	.mr-xl-175,
	.mx-xl-175 {
		margin-right: 10.9375rem !important
	}

	.mb-xl-175,
	.my-xl-175 {
		margin-bottom: 10.9375rem !important
	}

	.ml-xl-175,
	.mx-xl-175 {
		margin-left: 10.9375rem !important
	}

	.m-xl-176 {
		margin: 11rem !important
	}

	.mt-xl-176,
	.my-xl-176 {
		margin-top: 11rem !important
	}

	.mr-xl-176,
	.mx-xl-176 {
		margin-right: 11rem !important
	}

	.mb-xl-176,
	.my-xl-176 {
		margin-bottom: 11rem !important
	}

	.ml-xl-176,
	.mx-xl-176 {
		margin-left: 11rem !important
	}

	.m-xl-177 {
		margin: 11.0625rem !important
	}

	.mt-xl-177,
	.my-xl-177 {
		margin-top: 11.0625rem !important
	}

	.mr-xl-177,
	.mx-xl-177 {
		margin-right: 11.0625rem !important
	}

	.mb-xl-177,
	.my-xl-177 {
		margin-bottom: 11.0625rem !important
	}

	.ml-xl-177,
	.mx-xl-177 {
		margin-left: 11.0625rem !important
	}

	.m-xl-178 {
		margin: 11.125rem !important
	}

	.mt-xl-178,
	.my-xl-178 {
		margin-top: 11.125rem !important
	}

	.mr-xl-178,
	.mx-xl-178 {
		margin-right: 11.125rem !important
	}

	.mb-xl-178,
	.my-xl-178 {
		margin-bottom: 11.125rem !important
	}

	.ml-xl-178,
	.mx-xl-178 {
		margin-left: 11.125rem !important
	}

	.m-xl-179 {
		margin: 11.1875rem !important
	}

	.mt-xl-179,
	.my-xl-179 {
		margin-top: 11.1875rem !important
	}

	.mr-xl-179,
	.mx-xl-179 {
		margin-right: 11.1875rem !important
	}

	.mb-xl-179,
	.my-xl-179 {
		margin-bottom: 11.1875rem !important
	}

	.ml-xl-179,
	.mx-xl-179 {
		margin-left: 11.1875rem !important
	}

	.m-xl-180 {
		margin: 11.25rem !important
	}

	.mt-xl-180,
	.my-xl-180 {
		margin-top: 11.25rem !important
	}

	.mr-xl-180,
	.mx-xl-180 {
		margin-right: 11.25rem !important
	}

	.mb-xl-180,
	.my-xl-180 {
		margin-bottom: 11.25rem !important
	}

	.ml-xl-180,
	.mx-xl-180 {
		margin-left: 11.25rem !important
	}

	.m-xl-181 {
		margin: 11.3125rem !important
	}

	.mt-xl-181,
	.my-xl-181 {
		margin-top: 11.3125rem !important
	}

	.mr-xl-181,
	.mx-xl-181 {
		margin-right: 11.3125rem !important
	}

	.mb-xl-181,
	.my-xl-181 {
		margin-bottom: 11.3125rem !important
	}

	.ml-xl-181,
	.mx-xl-181 {
		margin-left: 11.3125rem !important
	}

	.m-xl-182 {
		margin: 11.375rem !important
	}

	.mt-xl-182,
	.my-xl-182 {
		margin-top: 11.375rem !important
	}

	.mr-xl-182,
	.mx-xl-182 {
		margin-right: 11.375rem !important
	}

	.mb-xl-182,
	.my-xl-182 {
		margin-bottom: 11.375rem !important
	}

	.ml-xl-182,
	.mx-xl-182 {
		margin-left: 11.375rem !important
	}

	.m-xl-183 {
		margin: 11.4375rem !important
	}

	.mt-xl-183,
	.my-xl-183 {
		margin-top: 11.4375rem !important
	}

	.mr-xl-183,
	.mx-xl-183 {
		margin-right: 11.4375rem !important
	}

	.mb-xl-183,
	.my-xl-183 {
		margin-bottom: 11.4375rem !important
	}

	.ml-xl-183,
	.mx-xl-183 {
		margin-left: 11.4375rem !important
	}

	.m-xl-184 {
		margin: 11.5rem !important
	}

	.mt-xl-184,
	.my-xl-184 {
		margin-top: 11.5rem !important
	}

	.mr-xl-184,
	.mx-xl-184 {
		margin-right: 11.5rem !important
	}

	.mb-xl-184,
	.my-xl-184 {
		margin-bottom: 11.5rem !important
	}

	.ml-xl-184,
	.mx-xl-184 {
		margin-left: 11.5rem !important
	}

	.m-xl-185 {
		margin: 11.5625rem !important
	}

	.mt-xl-185,
	.my-xl-185 {
		margin-top: 11.5625rem !important
	}

	.mr-xl-185,
	.mx-xl-185 {
		margin-right: 11.5625rem !important
	}

	.mb-xl-185,
	.my-xl-185 {
		margin-bottom: 11.5625rem !important
	}

	.ml-xl-185,
	.mx-xl-185 {
		margin-left: 11.5625rem !important
	}

	.m-xl-186 {
		margin: 11.625rem !important
	}

	.mt-xl-186,
	.my-xl-186 {
		margin-top: 11.625rem !important
	}

	.mr-xl-186,
	.mx-xl-186 {
		margin-right: 11.625rem !important
	}

	.mb-xl-186,
	.my-xl-186 {
		margin-bottom: 11.625rem !important
	}

	.ml-xl-186,
	.mx-xl-186 {
		margin-left: 11.625rem !important
	}

	.m-xl-187 {
		margin: 11.6875rem !important
	}

	.mt-xl-187,
	.my-xl-187 {
		margin-top: 11.6875rem !important
	}

	.mr-xl-187,
	.mx-xl-187 {
		margin-right: 11.6875rem !important
	}

	.mb-xl-187,
	.my-xl-187 {
		margin-bottom: 11.6875rem !important
	}

	.ml-xl-187,
	.mx-xl-187 {
		margin-left: 11.6875rem !important
	}

	.m-xl-188 {
		margin: 11.75rem !important
	}

	.mt-xl-188,
	.my-xl-188 {
		margin-top: 11.75rem !important
	}

	.mr-xl-188,
	.mx-xl-188 {
		margin-right: 11.75rem !important
	}

	.mb-xl-188,
	.my-xl-188 {
		margin-bottom: 11.75rem !important
	}

	.ml-xl-188,
	.mx-xl-188 {
		margin-left: 11.75rem !important
	}

	.m-xl-189 {
		margin: 11.8125rem !important
	}

	.mt-xl-189,
	.my-xl-189 {
		margin-top: 11.8125rem !important
	}

	.mr-xl-189,
	.mx-xl-189 {
		margin-right: 11.8125rem !important
	}

	.mb-xl-189,
	.my-xl-189 {
		margin-bottom: 11.8125rem !important
	}

	.ml-xl-189,
	.mx-xl-189 {
		margin-left: 11.8125rem !important
	}

	.m-xl-190 {
		margin: 11.875rem !important
	}

	.mt-xl-190,
	.my-xl-190 {
		margin-top: 11.875rem !important
	}

	.mr-xl-190,
	.mx-xl-190 {
		margin-right: 11.875rem !important
	}

	.mb-xl-190,
	.my-xl-190 {
		margin-bottom: 11.875rem !important
	}

	.ml-xl-190,
	.mx-xl-190 {
		margin-left: 11.875rem !important
	}

	.m-xl-191 {
		margin: 11.9375rem !important
	}

	.mt-xl-191,
	.my-xl-191 {
		margin-top: 11.9375rem !important
	}

	.mr-xl-191,
	.mx-xl-191 {
		margin-right: 11.9375rem !important
	}

	.mb-xl-191,
	.my-xl-191 {
		margin-bottom: 11.9375rem !important
	}

	.ml-xl-191,
	.mx-xl-191 {
		margin-left: 11.9375rem !important
	}

	.m-xl-192 {
		margin: 12rem !important
	}

	.mt-xl-192,
	.my-xl-192 {
		margin-top: 12rem !important
	}

	.mr-xl-192,
	.mx-xl-192 {
		margin-right: 12rem !important
	}

	.mb-xl-192,
	.my-xl-192 {
		margin-bottom: 12rem !important
	}

	.ml-xl-192,
	.mx-xl-192 {
		margin-left: 12rem !important
	}

	.m-xl-193 {
		margin: 12.0625rem !important
	}

	.mt-xl-193,
	.my-xl-193 {
		margin-top: 12.0625rem !important
	}

	.mr-xl-193,
	.mx-xl-193 {
		margin-right: 12.0625rem !important
	}

	.mb-xl-193,
	.my-xl-193 {
		margin-bottom: 12.0625rem !important
	}

	.ml-xl-193,
	.mx-xl-193 {
		margin-left: 12.0625rem !important
	}

	.m-xl-194 {
		margin: 12.125rem !important
	}

	.mt-xl-194,
	.my-xl-194 {
		margin-top: 12.125rem !important
	}

	.mr-xl-194,
	.mx-xl-194 {
		margin-right: 12.125rem !important
	}

	.mb-xl-194,
	.my-xl-194 {
		margin-bottom: 12.125rem !important
	}

	.ml-xl-194,
	.mx-xl-194 {
		margin-left: 12.125rem !important
	}

	.m-xl-195 {
		margin: 12.1875rem !important
	}

	.mt-xl-195,
	.my-xl-195 {
		margin-top: 12.1875rem !important
	}

	.mr-xl-195,
	.mx-xl-195 {
		margin-right: 12.1875rem !important
	}

	.mb-xl-195,
	.my-xl-195 {
		margin-bottom: 12.1875rem !important
	}

	.ml-xl-195,
	.mx-xl-195 {
		margin-left: 12.1875rem !important
	}

	.m-xl-196 {
		margin: 12.25rem !important
	}

	.mt-xl-196,
	.my-xl-196 {
		margin-top: 12.25rem !important
	}

	.mr-xl-196,
	.mx-xl-196 {
		margin-right: 12.25rem !important
	}

	.mb-xl-196,
	.my-xl-196 {
		margin-bottom: 12.25rem !important
	}

	.ml-xl-196,
	.mx-xl-196 {
		margin-left: 12.25rem !important
	}

	.m-xl-197 {
		margin: 12.3125rem !important
	}

	.mt-xl-197,
	.my-xl-197 {
		margin-top: 12.3125rem !important
	}

	.mr-xl-197,
	.mx-xl-197 {
		margin-right: 12.3125rem !important
	}

	.mb-xl-197,
	.my-xl-197 {
		margin-bottom: 12.3125rem !important
	}

	.ml-xl-197,
	.mx-xl-197 {
		margin-left: 12.3125rem !important
	}

	.m-xl-198 {
		margin: 12.375rem !important
	}

	.mt-xl-198,
	.my-xl-198 {
		margin-top: 12.375rem !important
	}

	.mr-xl-198,
	.mx-xl-198 {
		margin-right: 12.375rem !important
	}

	.mb-xl-198,
	.my-xl-198 {
		margin-bottom: 12.375rem !important
	}

	.ml-xl-198,
	.mx-xl-198 {
		margin-left: 12.375rem !important
	}

	.m-xl-199 {
		margin: 12.4375rem !important
	}

	.mt-xl-199,
	.my-xl-199 {
		margin-top: 12.4375rem !important
	}

	.mr-xl-199,
	.mx-xl-199 {
		margin-right: 12.4375rem !important
	}

	.mb-xl-199,
	.my-xl-199 {
		margin-bottom: 12.4375rem !important
	}

	.ml-xl-199,
	.mx-xl-199 {
		margin-left: 12.4375rem !important
	}

	.m-xl-200 {
		margin: 12.5rem !important
	}

	.mt-xl-200,
	.my-xl-200 {
		margin-top: 12.5rem !important
	}

	.mr-xl-200,
	.mx-xl-200 {
		margin-right: 12.5rem !important
	}

	.mb-xl-200,
	.my-xl-200 {
		margin-bottom: 12.5rem !important
	}

	.ml-xl-200,
	.mx-xl-200 {
		margin-left: 12.5rem !important
	}

	.p-xl-0 {
		padding: 0 !important
	}

	.pt-xl-0,
	.py-xl-0 {
		padding-top: 0 !important
	}

	.pr-xl-0,
	.px-xl-0 {
		padding-right: 0 !important
	}

	.pb-xl-0,
	.py-xl-0 {
		padding-bottom: 0 !important
	}

	.pl-xl-0,
	.px-xl-0 {
		padding-left: 0 !important
	}

	.p-xl-1 {
		padding: .0625rem !important
	}

	.pt-xl-1,
	.py-xl-1 {
		padding-top: .0625rem !important
	}

	.pr-xl-1,
	.px-xl-1 {
		padding-right: .0625rem !important
	}

	.pb-xl-1,
	.py-xl-1 {
		padding-bottom: .0625rem !important
	}

	.pl-xl-1,
	.px-xl-1 {
		padding-left: .0625rem !important
	}

	.p-xl-2 {
		padding: .125rem !important
	}

	.pt-xl-2,
	.py-xl-2 {
		padding-top: .125rem !important
	}

	.pr-xl-2,
	.px-xl-2 {
		padding-right: .125rem !important
	}

	.pb-xl-2,
	.py-xl-2 {
		padding-bottom: .125rem !important
	}

	.pl-xl-2,
	.px-xl-2 {
		padding-left: .125rem !important
	}

	.p-xl-3 {
		padding: .1875rem !important
	}

	.pt-xl-3,
	.py-xl-3 {
		padding-top: .1875rem !important
	}

	.pr-xl-3,
	.px-xl-3 {
		padding-right: .1875rem !important
	}

	.pb-xl-3,
	.py-xl-3 {
		padding-bottom: .1875rem !important
	}

	.pl-xl-3,
	.px-xl-3 {
		padding-left: .1875rem !important
	}

	.p-xl-4 {
		padding: .25rem !important
	}

	.pt-xl-4,
	.py-xl-4 {
		padding-top: .25rem !important
	}

	.pr-xl-4,
	.px-xl-4 {
		padding-right: .25rem !important
	}

	.pb-xl-4,
	.py-xl-4 {
		padding-bottom: .25rem !important
	}

	.pl-xl-4,
	.px-xl-4 {
		padding-left: .25rem !important
	}

	.p-xl-5 {
		padding: .3125rem !important
	}

	.pt-xl-5,
	.py-xl-5 {
		padding-top: .3125rem !important
	}

	.pr-xl-5,
	.px-xl-5 {
		padding-right: .3125rem !important
	}

	.pb-xl-5,
	.py-xl-5 {
		padding-bottom: .3125rem !important
	}

	.pl-xl-5,
	.px-xl-5 {
		padding-left: .3125rem !important
	}

	.p-xl-6 {
		padding: .375rem !important
	}

	.pt-xl-6,
	.py-xl-6 {
		padding-top: .375rem !important
	}

	.pr-xl-6,
	.px-xl-6 {
		padding-right: .375rem !important
	}

	.pb-xl-6,
	.py-xl-6 {
		padding-bottom: .375rem !important
	}

	.pl-xl-6,
	.px-xl-6 {
		padding-left: .375rem !important
	}

	.p-xl-7 {
		padding: .4375rem !important
	}

	.pt-xl-7,
	.py-xl-7 {
		padding-top: .4375rem !important
	}

	.pr-xl-7,
	.px-xl-7 {
		padding-right: .4375rem !important
	}

	.pb-xl-7,
	.py-xl-7 {
		padding-bottom: .4375rem !important
	}

	.pl-xl-7,
	.px-xl-7 {
		padding-left: .4375rem !important
	}

	.p-xl-8 {
		padding: .5rem !important
	}

	.pt-xl-8,
	.py-xl-8 {
		padding-top: .5rem !important
	}

	.pr-xl-8,
	.px-xl-8 {
		padding-right: .5rem !important
	}

	.pb-xl-8,
	.py-xl-8 {
		padding-bottom: .5rem !important
	}

	.pl-xl-8,
	.px-xl-8 {
		padding-left: .5rem !important
	}

	.p-xl-9 {
		padding: .5625rem !important
	}

	.pt-xl-9,
	.py-xl-9 {
		padding-top: .5625rem !important
	}

	.pr-xl-9,
	.px-xl-9 {
		padding-right: .5625rem !important
	}

	.pb-xl-9,
	.py-xl-9 {
		padding-bottom: .5625rem !important
	}

	.pl-xl-9,
	.px-xl-9 {
		padding-left: .5625rem !important
	}

	.p-xl-10 {
		padding: .625rem !important
	}

	.pt-xl-10,
	.py-xl-10 {
		padding-top: .625rem !important
	}

	.pr-xl-10,
	.px-xl-10 {
		padding-right: .625rem !important
	}

	.pb-xl-10,
	.py-xl-10 {
		padding-bottom: .625rem !important
	}

	.pl-xl-10,
	.px-xl-10 {
		padding-left: .625rem !important
	}

	.p-xl-11 {
		padding: .6875rem !important
	}

	.pt-xl-11,
	.py-xl-11 {
		padding-top: .6875rem !important
	}

	.pr-xl-11,
	.px-xl-11 {
		padding-right: .6875rem !important
	}

	.pb-xl-11,
	.py-xl-11 {
		padding-bottom: .6875rem !important
	}

	.pl-xl-11,
	.px-xl-11 {
		padding-left: .6875rem !important
	}

	.p-xl-12 {
		padding: .75rem !important
	}

	.pt-xl-12,
	.py-xl-12 {
		padding-top: .75rem !important
	}

	.pr-xl-12,
	.px-xl-12 {
		padding-right: .75rem !important
	}

	.pb-xl-12,
	.py-xl-12 {
		padding-bottom: .75rem !important
	}

	.pl-xl-12,
	.px-xl-12 {
		padding-left: .75rem !important
	}

	.p-xl-13 {
		padding: .8125rem !important
	}

	.pt-xl-13,
	.py-xl-13 {
		padding-top: .8125rem !important
	}

	.pr-xl-13,
	.px-xl-13 {
		padding-right: .8125rem !important
	}

	.pb-xl-13,
	.py-xl-13 {
		padding-bottom: .8125rem !important
	}

	.pl-xl-13,
	.px-xl-13 {
		padding-left: .8125rem !important
	}

	.p-xl-14 {
		padding: .875rem !important
	}

	.pt-xl-14,
	.py-xl-14 {
		padding-top: .875rem !important
	}

	.pr-xl-14,
	.px-xl-14 {
		padding-right: .875rem !important
	}

	.pb-xl-14,
	.py-xl-14 {
		padding-bottom: .875rem !important
	}

	.pl-xl-14,
	.px-xl-14 {
		padding-left: .875rem !important
	}

	.p-xl-15 {
		padding: .9375rem !important
	}

	.pt-xl-15,
	.py-xl-15 {
		padding-top: .9375rem !important
	}

	.pr-xl-15,
	.px-xl-15 {
		padding-right: .9375rem !important
	}

	.pb-xl-15,
	.py-xl-15 {
		padding-bottom: .9375rem !important
	}

	.pl-xl-15,
	.px-xl-15 {
		padding-left: .9375rem !important
	}

	.p-xl-16 {
		padding: 1rem !important
	}

	.pt-xl-16,
	.py-xl-16 {
		padding-top: 1rem !important
	}

	.pr-xl-16,
	.px-xl-16 {
		padding-right: 1rem !important
	}

	.pb-xl-16,
	.py-xl-16 {
		padding-bottom: 1rem !important
	}

	.pl-xl-16,
	.px-xl-16 {
		padding-left: 1rem !important
	}

	.p-xl-17 {
		padding: 1.0625rem !important
	}

	.pt-xl-17,
	.py-xl-17 {
		padding-top: 1.0625rem !important
	}

	.pr-xl-17,
	.px-xl-17 {
		padding-right: 1.0625rem !important
	}

	.pb-xl-17,
	.py-xl-17 {
		padding-bottom: 1.0625rem !important
	}

	.pl-xl-17,
	.px-xl-17 {
		padding-left: 1.0625rem !important
	}

	.p-xl-18 {
		padding: 1.125rem !important
	}

	.pt-xl-18,
	.py-xl-18 {
		padding-top: 1.125rem !important
	}

	.pr-xl-18,
	.px-xl-18 {
		padding-right: 1.125rem !important
	}

	.pb-xl-18,
	.py-xl-18 {
		padding-bottom: 1.125rem !important
	}

	.pl-xl-18,
	.px-xl-18 {
		padding-left: 1.125rem !important
	}

	.p-xl-19 {
		padding: 1.1875rem !important
	}

	.pt-xl-19,
	.py-xl-19 {
		padding-top: 1.1875rem !important
	}

	.pr-xl-19,
	.px-xl-19 {
		padding-right: 1.1875rem !important
	}

	.pb-xl-19,
	.py-xl-19 {
		padding-bottom: 1.1875rem !important
	}

	.pl-xl-19,
	.px-xl-19 {
		padding-left: 1.1875rem !important
	}

	.p-xl-20 {
		padding: 1.25rem !important
	}

	.pt-xl-20,
	.py-xl-20 {
		padding-top: 1.25rem !important
	}

	.pr-xl-20,
	.px-xl-20 {
		padding-right: 1.25rem !important
	}

	.pb-xl-20,
	.py-xl-20 {
		padding-bottom: 1.25rem !important
	}

	.pl-xl-20,
	.px-xl-20 {
		padding-left: 1.25rem !important
	}

	.p-xl-21 {
		padding: 1.3125rem !important
	}

	.pt-xl-21,
	.py-xl-21 {
		padding-top: 1.3125rem !important
	}

	.pr-xl-21,
	.px-xl-21 {
		padding-right: 1.3125rem !important
	}

	.pb-xl-21,
	.py-xl-21 {
		padding-bottom: 1.3125rem !important
	}

	.pl-xl-21,
	.px-xl-21 {
		padding-left: 1.3125rem !important
	}

	.p-xl-22 {
		padding: 1.375rem !important
	}

	.pt-xl-22,
	.py-xl-22 {
		padding-top: 1.375rem !important
	}

	.pr-xl-22,
	.px-xl-22 {
		padding-right: 1.375rem !important
	}

	.pb-xl-22,
	.py-xl-22 {
		padding-bottom: 1.375rem !important
	}

	.pl-xl-22,
	.px-xl-22 {
		padding-left: 1.375rem !important
	}

	.p-xl-23 {
		padding: 1.4375rem !important
	}

	.pt-xl-23,
	.py-xl-23 {
		padding-top: 1.4375rem !important
	}

	.pr-xl-23,
	.px-xl-23 {
		padding-right: 1.4375rem !important
	}

	.pb-xl-23,
	.py-xl-23 {
		padding-bottom: 1.4375rem !important
	}

	.pl-xl-23,
	.px-xl-23 {
		padding-left: 1.4375rem !important
	}

	.p-xl-24 {
		padding: 1.5rem !important
	}

	.pt-xl-24,
	.py-xl-24 {
		padding-top: 1.5rem !important
	}

	.pr-xl-24,
	.px-xl-24 {
		padding-right: 1.5rem !important
	}

	.pb-xl-24,
	.py-xl-24 {
		padding-bottom: 1.5rem !important
	}

	.pl-xl-24,
	.px-xl-24 {
		padding-left: 1.5rem !important
	}

	.p-xl-25 {
		padding: 1.5625rem !important
	}

	.pt-xl-25,
	.py-xl-25 {
		padding-top: 1.5625rem !important
	}

	.pr-xl-25,
	.px-xl-25 {
		padding-right: 1.5625rem !important
	}

	.pb-xl-25,
	.py-xl-25 {
		padding-bottom: 1.5625rem !important
	}

	.pl-xl-25,
	.px-xl-25 {
		padding-left: 1.5625rem !important
	}

	.p-xl-26 {
		padding: 1.625rem !important
	}

	.pt-xl-26,
	.py-xl-26 {
		padding-top: 1.625rem !important
	}

	.pr-xl-26,
	.px-xl-26 {
		padding-right: 1.625rem !important
	}

	.pb-xl-26,
	.py-xl-26 {
		padding-bottom: 1.625rem !important
	}

	.pl-xl-26,
	.px-xl-26 {
		padding-left: 1.625rem !important
	}

	.p-xl-27 {
		padding: 1.6875rem !important
	}

	.pt-xl-27,
	.py-xl-27 {
		padding-top: 1.6875rem !important
	}

	.pr-xl-27,
	.px-xl-27 {
		padding-right: 1.6875rem !important
	}

	.pb-xl-27,
	.py-xl-27 {
		padding-bottom: 1.6875rem !important
	}

	.pl-xl-27,
	.px-xl-27 {
		padding-left: 1.6875rem !important
	}

	.p-xl-28 {
		padding: 1.75rem !important
	}

	.pt-xl-28,
	.py-xl-28 {
		padding-top: 1.75rem !important
	}

	.pr-xl-28,
	.px-xl-28 {
		padding-right: 1.75rem !important
	}

	.pb-xl-28,
	.py-xl-28 {
		padding-bottom: 1.75rem !important
	}

	.pl-xl-28,
	.px-xl-28 {
		padding-left: 1.75rem !important
	}

	.p-xl-29 {
		padding: 1.8125rem !important
	}

	.pt-xl-29,
	.py-xl-29 {
		padding-top: 1.8125rem !important
	}

	.pr-xl-29,
	.px-xl-29 {
		padding-right: 1.8125rem !important
	}

	.pb-xl-29,
	.py-xl-29 {
		padding-bottom: 1.8125rem !important
	}

	.pl-xl-29,
	.px-xl-29 {
		padding-left: 1.8125rem !important
	}

	.p-xl-30 {
		padding: 1.875rem !important
	}

	.pt-xl-30,
	.py-xl-30 {
		padding-top: 1.875rem !important
	}

	.pr-xl-30,
	.px-xl-30 {
		padding-right: 1.875rem !important
	}

	.pb-xl-30,
	.py-xl-30 {
		padding-bottom: 1.875rem !important
	}

	.pl-xl-30,
	.px-xl-30 {
		padding-left: 1.875rem !important
	}

	.p-xl-31 {
		padding: 1.9375rem !important
	}

	.pt-xl-31,
	.py-xl-31 {
		padding-top: 1.9375rem !important
	}

	.pr-xl-31,
	.px-xl-31 {
		padding-right: 1.9375rem !important
	}

	.pb-xl-31,
	.py-xl-31 {
		padding-bottom: 1.9375rem !important
	}

	.pl-xl-31,
	.px-xl-31 {
		padding-left: 1.9375rem !important
	}

	.p-xl-32 {
		padding: 2rem !important
	}

	.pt-xl-32,
	.py-xl-32 {
		padding-top: 2rem !important
	}

	.pr-xl-32,
	.px-xl-32 {
		padding-right: 2rem !important
	}

	.pb-xl-32,
	.py-xl-32 {
		padding-bottom: 2rem !important
	}

	.pl-xl-32,
	.px-xl-32 {
		padding-left: 2rem !important
	}

	.p-xl-33 {
		padding: 2.0625rem !important
	}

	.pt-xl-33,
	.py-xl-33 {
		padding-top: 2.0625rem !important
	}

	.pr-xl-33,
	.px-xl-33 {
		padding-right: 2.0625rem !important
	}

	.pb-xl-33,
	.py-xl-33 {
		padding-bottom: 2.0625rem !important
	}

	.pl-xl-33,
	.px-xl-33 {
		padding-left: 2.0625rem !important
	}

	.p-xl-34 {
		padding: 2.125rem !important
	}

	.pt-xl-34,
	.py-xl-34 {
		padding-top: 2.125rem !important
	}

	.pr-xl-34,
	.px-xl-34 {
		padding-right: 2.125rem !important
	}

	.pb-xl-34,
	.py-xl-34 {
		padding-bottom: 2.125rem !important
	}

	.pl-xl-34,
	.px-xl-34 {
		padding-left: 2.125rem !important
	}

	.p-xl-35 {
		padding: 2.1875rem !important
	}

	.pt-xl-35,
	.py-xl-35 {
		padding-top: 2.1875rem !important
	}

	.pr-xl-35,
	.px-xl-35 {
		padding-right: 2.1875rem !important
	}

	.pb-xl-35,
	.py-xl-35 {
		padding-bottom: 2.1875rem !important
	}

	.pl-xl-35,
	.px-xl-35 {
		padding-left: 2.1875rem !important
	}

	.p-xl-36 {
		padding: 2.25rem !important
	}

	.pt-xl-36,
	.py-xl-36 {
		padding-top: 2.25rem !important
	}

	.pr-xl-36,
	.px-xl-36 {
		padding-right: 2.25rem !important
	}

	.pb-xl-36,
	.py-xl-36 {
		padding-bottom: 2.25rem !important
	}

	.pl-xl-36,
	.px-xl-36 {
		padding-left: 2.25rem !important
	}

	.p-xl-37 {
		padding: 2.3125rem !important
	}

	.pt-xl-37,
	.py-xl-37 {
		padding-top: 2.3125rem !important
	}

	.pr-xl-37,
	.px-xl-37 {
		padding-right: 2.3125rem !important
	}

	.pb-xl-37,
	.py-xl-37 {
		padding-bottom: 2.3125rem !important
	}

	.pl-xl-37,
	.px-xl-37 {
		padding-left: 2.3125rem !important
	}

	.p-xl-38 {
		padding: 2.375rem !important
	}

	.pt-xl-38,
	.py-xl-38 {
		padding-top: 2.375rem !important
	}

	.pr-xl-38,
	.px-xl-38 {
		padding-right: 2.375rem !important
	}

	.pb-xl-38,
	.py-xl-38 {
		padding-bottom: 2.375rem !important
	}

	.pl-xl-38,
	.px-xl-38 {
		padding-left: 2.375rem !important
	}

	.p-xl-39 {
		padding: 2.4375rem !important
	}

	.pt-xl-39,
	.py-xl-39 {
		padding-top: 2.4375rem !important
	}

	.pr-xl-39,
	.px-xl-39 {
		padding-right: 2.4375rem !important
	}

	.pb-xl-39,
	.py-xl-39 {
		padding-bottom: 2.4375rem !important
	}

	.pl-xl-39,
	.px-xl-39 {
		padding-left: 2.4375rem !important
	}

	.p-xl-40 {
		padding: 2.5rem !important
	}

	.pt-xl-40,
	.py-xl-40 {
		padding-top: 2.5rem !important
	}

	.pr-xl-40,
	.px-xl-40 {
		padding-right: 2.5rem !important
	}

	.pb-xl-40,
	.py-xl-40 {
		padding-bottom: 2.5rem !important
	}

	.pl-xl-40,
	.px-xl-40 {
		padding-left: 2.5rem !important
	}

	.p-xl-41 {
		padding: 2.5625rem !important
	}

	.pt-xl-41,
	.py-xl-41 {
		padding-top: 2.5625rem !important
	}

	.pr-xl-41,
	.px-xl-41 {
		padding-right: 2.5625rem !important
	}

	.pb-xl-41,
	.py-xl-41 {
		padding-bottom: 2.5625rem !important
	}

	.pl-xl-41,
	.px-xl-41 {
		padding-left: 2.5625rem !important
	}

	.p-xl-42 {
		padding: 2.625rem !important
	}

	.pt-xl-42,
	.py-xl-42 {
		padding-top: 2.625rem !important
	}

	.pr-xl-42,
	.px-xl-42 {
		padding-right: 2.625rem !important
	}

	.pb-xl-42,
	.py-xl-42 {
		padding-bottom: 2.625rem !important
	}

	.pl-xl-42,
	.px-xl-42 {
		padding-left: 2.625rem !important
	}

	.p-xl-43 {
		padding: 2.6875rem !important
	}

	.pt-xl-43,
	.py-xl-43 {
		padding-top: 2.6875rem !important
	}

	.pr-xl-43,
	.px-xl-43 {
		padding-right: 2.6875rem !important
	}

	.pb-xl-43,
	.py-xl-43 {
		padding-bottom: 2.6875rem !important
	}

	.pl-xl-43,
	.px-xl-43 {
		padding-left: 2.6875rem !important
	}

	.p-xl-44 {
		padding: 2.75rem !important
	}

	.pt-xl-44,
	.py-xl-44 {
		padding-top: 2.75rem !important
	}

	.pr-xl-44,
	.px-xl-44 {
		padding-right: 2.75rem !important
	}

	.pb-xl-44,
	.py-xl-44 {
		padding-bottom: 2.75rem !important
	}

	.pl-xl-44,
	.px-xl-44 {
		padding-left: 2.75rem !important
	}

	.p-xl-45 {
		padding: 2.8125rem !important
	}

	.pt-xl-45,
	.py-xl-45 {
		padding-top: 2.8125rem !important
	}

	.pr-xl-45,
	.px-xl-45 {
		padding-right: 2.8125rem !important
	}

	.pb-xl-45,
	.py-xl-45 {
		padding-bottom: 2.8125rem !important
	}

	.pl-xl-45,
	.px-xl-45 {
		padding-left: 2.8125rem !important
	}

	.p-xl-46 {
		padding: 2.875rem !important
	}

	.pt-xl-46,
	.py-xl-46 {
		padding-top: 2.875rem !important
	}

	.pr-xl-46,
	.px-xl-46 {
		padding-right: 2.875rem !important
	}

	.pb-xl-46,
	.py-xl-46 {
		padding-bottom: 2.875rem !important
	}

	.pl-xl-46,
	.px-xl-46 {
		padding-left: 2.875rem !important
	}

	.p-xl-47 {
		padding: 2.9375rem !important
	}

	.pt-xl-47,
	.py-xl-47 {
		padding-top: 2.9375rem !important
	}

	.pr-xl-47,
	.px-xl-47 {
		padding-right: 2.9375rem !important
	}

	.pb-xl-47,
	.py-xl-47 {
		padding-bottom: 2.9375rem !important
	}

	.pl-xl-47,
	.px-xl-47 {
		padding-left: 2.9375rem !important
	}

	.p-xl-48 {
		padding: 3rem !important
	}

	.pt-xl-48,
	.py-xl-48 {
		padding-top: 3rem !important
	}

	.pr-xl-48,
	.px-xl-48 {
		padding-right: 3rem !important
	}

	.pb-xl-48,
	.py-xl-48 {
		padding-bottom: 3rem !important
	}

	.pl-xl-48,
	.px-xl-48 {
		padding-left: 3rem !important
	}

	.p-xl-49 {
		padding: 3.0625rem !important
	}

	.pt-xl-49,
	.py-xl-49 {
		padding-top: 3.0625rem !important
	}

	.pr-xl-49,
	.px-xl-49 {
		padding-right: 3.0625rem !important
	}

	.pb-xl-49,
	.py-xl-49 {
		padding-bottom: 3.0625rem !important
	}

	.pl-xl-49,
	.px-xl-49 {
		padding-left: 3.0625rem !important
	}

	.p-xl-50 {
		padding: 3.125rem !important
	}

	.pt-xl-50,
	.py-xl-50 {
		padding-top: 3.125rem !important
	}

	.pr-xl-50,
	.px-xl-50 {
		padding-right: 3.125rem !important
	}

	.pb-xl-50,
	.py-xl-50 {
		padding-bottom: 3.125rem !important
	}

	.pl-xl-50,
	.px-xl-50 {
		padding-left: 3.125rem !important
	}

	.p-xl-51 {
		padding: 3.1875rem !important
	}

	.pt-xl-51,
	.py-xl-51 {
		padding-top: 3.1875rem !important
	}

	.pr-xl-51,
	.px-xl-51 {
		padding-right: 3.1875rem !important
	}

	.pb-xl-51,
	.py-xl-51 {
		padding-bottom: 3.1875rem !important
	}

	.pl-xl-51,
	.px-xl-51 {
		padding-left: 3.1875rem !important
	}

	.p-xl-52 {
		padding: 3.25rem !important
	}

	.pt-xl-52,
	.py-xl-52 {
		padding-top: 3.25rem !important
	}

	.pr-xl-52,
	.px-xl-52 {
		padding-right: 3.25rem !important
	}

	.pb-xl-52,
	.py-xl-52 {
		padding-bottom: 3.25rem !important
	}

	.pl-xl-52,
	.px-xl-52 {
		padding-left: 3.25rem !important
	}

	.p-xl-53 {
		padding: 3.3125rem !important
	}

	.pt-xl-53,
	.py-xl-53 {
		padding-top: 3.3125rem !important
	}

	.pr-xl-53,
	.px-xl-53 {
		padding-right: 3.3125rem !important
	}

	.pb-xl-53,
	.py-xl-53 {
		padding-bottom: 3.3125rem !important
	}

	.pl-xl-53,
	.px-xl-53 {
		padding-left: 3.3125rem !important
	}

	.p-xl-54 {
		padding: 3.375rem !important
	}

	.pt-xl-54,
	.py-xl-54 {
		padding-top: 3.375rem !important
	}

	.pr-xl-54,
	.px-xl-54 {
		padding-right: 3.375rem !important
	}

	.pb-xl-54,
	.py-xl-54 {
		padding-bottom: 3.375rem !important
	}

	.pl-xl-54,
	.px-xl-54 {
		padding-left: 3.375rem !important
	}

	.p-xl-55 {
		padding: 3.4375rem !important
	}

	.pt-xl-55,
	.py-xl-55 {
		padding-top: 3.4375rem !important
	}

	.pr-xl-55,
	.px-xl-55 {
		padding-right: 3.4375rem !important
	}

	.pb-xl-55,
	.py-xl-55 {
		padding-bottom: 3.4375rem !important
	}

	.pl-xl-55,
	.px-xl-55 {
		padding-left: 3.4375rem !important
	}

	.p-xl-56 {
		padding: 3.5rem !important
	}

	.pt-xl-56,
	.py-xl-56 {
		padding-top: 3.5rem !important
	}

	.pr-xl-56,
	.px-xl-56 {
		padding-right: 3.5rem !important
	}

	.pb-xl-56,
	.py-xl-56 {
		padding-bottom: 3.5rem !important
	}

	.pl-xl-56,
	.px-xl-56 {
		padding-left: 3.5rem !important
	}

	.p-xl-57 {
		padding: 3.5625rem !important
	}

	.pt-xl-57,
	.py-xl-57 {
		padding-top: 3.5625rem !important
	}

	.pr-xl-57,
	.px-xl-57 {
		padding-right: 3.5625rem !important
	}

	.pb-xl-57,
	.py-xl-57 {
		padding-bottom: 3.5625rem !important
	}

	.pl-xl-57,
	.px-xl-57 {
		padding-left: 3.5625rem !important
	}

	.p-xl-58 {
		padding: 3.625rem !important
	}

	.pt-xl-58,
	.py-xl-58 {
		padding-top: 3.625rem !important
	}

	.pr-xl-58,
	.px-xl-58 {
		padding-right: 3.625rem !important
	}

	.pb-xl-58,
	.py-xl-58 {
		padding-bottom: 3.625rem !important
	}

	.pl-xl-58,
	.px-xl-58 {
		padding-left: 3.625rem !important
	}

	.p-xl-59 {
		padding: 3.6875rem !important
	}

	.pt-xl-59,
	.py-xl-59 {
		padding-top: 3.6875rem !important
	}

	.pr-xl-59,
	.px-xl-59 {
		padding-right: 3.6875rem !important
	}

	.pb-xl-59,
	.py-xl-59 {
		padding-bottom: 3.6875rem !important
	}

	.pl-xl-59,
	.px-xl-59 {
		padding-left: 3.6875rem !important
	}

	.p-xl-60 {
		padding: 3.75rem !important
	}

	.pt-xl-60,
	.py-xl-60 {
		padding-top: 3.75rem !important
	}

	.pr-xl-60,
	.px-xl-60 {
		padding-right: 3.75rem !important
	}

	.pb-xl-60,
	.py-xl-60 {
		padding-bottom: 3.75rem !important
	}

	.pl-xl-60,
	.px-xl-60 {
		padding-left: 3.75rem !important
	}

	.p-xl-61 {
		padding: 3.8125rem !important
	}

	.pt-xl-61,
	.py-xl-61 {
		padding-top: 3.8125rem !important
	}

	.pr-xl-61,
	.px-xl-61 {
		padding-right: 3.8125rem !important
	}

	.pb-xl-61,
	.py-xl-61 {
		padding-bottom: 3.8125rem !important
	}

	.pl-xl-61,
	.px-xl-61 {
		padding-left: 3.8125rem !important
	}

	.p-xl-62 {
		padding: 3.875rem !important
	}

	.pt-xl-62,
	.py-xl-62 {
		padding-top: 3.875rem !important
	}

	.pr-xl-62,
	.px-xl-62 {
		padding-right: 3.875rem !important
	}

	.pb-xl-62,
	.py-xl-62 {
		padding-bottom: 3.875rem !important
	}

	.pl-xl-62,
	.px-xl-62 {
		padding-left: 3.875rem !important
	}

	.p-xl-63 {
		padding: 3.9375rem !important
	}

	.pt-xl-63,
	.py-xl-63 {
		padding-top: 3.9375rem !important
	}

	.pr-xl-63,
	.px-xl-63 {
		padding-right: 3.9375rem !important
	}

	.pb-xl-63,
	.py-xl-63 {
		padding-bottom: 3.9375rem !important
	}

	.pl-xl-63,
	.px-xl-63 {
		padding-left: 3.9375rem !important
	}

	.p-xl-64 {
		padding: 4rem !important
	}

	.pt-xl-64,
	.py-xl-64 {
		padding-top: 4rem !important
	}

	.pr-xl-64,
	.px-xl-64 {
		padding-right: 4rem !important
	}

	.pb-xl-64,
	.py-xl-64 {
		padding-bottom: 4rem !important
	}

	.pl-xl-64,
	.px-xl-64 {
		padding-left: 4rem !important
	}

	.p-xl-65 {
		padding: 4.0625rem !important
	}

	.pt-xl-65,
	.py-xl-65 {
		padding-top: 4.0625rem !important
	}

	.pr-xl-65,
	.px-xl-65 {
		padding-right: 4.0625rem !important
	}

	.pb-xl-65,
	.py-xl-65 {
		padding-bottom: 4.0625rem !important
	}

	.pl-xl-65,
	.px-xl-65 {
		padding-left: 4.0625rem !important
	}

	.p-xl-66 {
		padding: 4.125rem !important
	}

	.pt-xl-66,
	.py-xl-66 {
		padding-top: 4.125rem !important
	}

	.pr-xl-66,
	.px-xl-66 {
		padding-right: 4.125rem !important
	}

	.pb-xl-66,
	.py-xl-66 {
		padding-bottom: 4.125rem !important
	}

	.pl-xl-66,
	.px-xl-66 {
		padding-left: 4.125rem !important
	}

	.p-xl-67 {
		padding: 4.1875rem !important
	}

	.pt-xl-67,
	.py-xl-67 {
		padding-top: 4.1875rem !important
	}

	.pr-xl-67,
	.px-xl-67 {
		padding-right: 4.1875rem !important
	}

	.pb-xl-67,
	.py-xl-67 {
		padding-bottom: 4.1875rem !important
	}

	.pl-xl-67,
	.px-xl-67 {
		padding-left: 4.1875rem !important
	}

	.p-xl-68 {
		padding: 4.25rem !important
	}

	.pt-xl-68,
	.py-xl-68 {
		padding-top: 4.25rem !important
	}

	.pr-xl-68,
	.px-xl-68 {
		padding-right: 4.25rem !important
	}

	.pb-xl-68,
	.py-xl-68 {
		padding-bottom: 4.25rem !important
	}

	.pl-xl-68,
	.px-xl-68 {
		padding-left: 4.25rem !important
	}

	.p-xl-69 {
		padding: 4.3125rem !important
	}

	.pt-xl-69,
	.py-xl-69 {
		padding-top: 4.3125rem !important
	}

	.pr-xl-69,
	.px-xl-69 {
		padding-right: 4.3125rem !important
	}

	.pb-xl-69,
	.py-xl-69 {
		padding-bottom: 4.3125rem !important
	}

	.pl-xl-69,
	.px-xl-69 {
		padding-left: 4.3125rem !important
	}

	.p-xl-70 {
		padding: 4.375rem !important
	}

	.pt-xl-70,
	.py-xl-70 {
		padding-top: 4.375rem !important
	}

	.pr-xl-70,
	.px-xl-70 {
		padding-right: 4.375rem !important
	}

	.pb-xl-70,
	.py-xl-70 {
		padding-bottom: 4.375rem !important
	}

	.pl-xl-70,
	.px-xl-70 {
		padding-left: 4.375rem !important
	}

	.p-xl-71 {
		padding: 4.4375rem !important
	}

	.pt-xl-71,
	.py-xl-71 {
		padding-top: 4.4375rem !important
	}

	.pr-xl-71,
	.px-xl-71 {
		padding-right: 4.4375rem !important
	}

	.pb-xl-71,
	.py-xl-71 {
		padding-bottom: 4.4375rem !important
	}

	.pl-xl-71,
	.px-xl-71 {
		padding-left: 4.4375rem !important
	}

	.p-xl-72 {
		padding: 4.5rem !important
	}

	.pt-xl-72,
	.py-xl-72 {
		padding-top: 4.5rem !important
	}

	.pr-xl-72,
	.px-xl-72 {
		padding-right: 4.5rem !important
	}

	.pb-xl-72,
	.py-xl-72 {
		padding-bottom: 4.5rem !important
	}

	.pl-xl-72,
	.px-xl-72 {
		padding-left: 4.5rem !important
	}

	.p-xl-73 {
		padding: 4.5625rem !important
	}

	.pt-xl-73,
	.py-xl-73 {
		padding-top: 4.5625rem !important
	}

	.pr-xl-73,
	.px-xl-73 {
		padding-right: 4.5625rem !important
	}

	.pb-xl-73,
	.py-xl-73 {
		padding-bottom: 4.5625rem !important
	}

	.pl-xl-73,
	.px-xl-73 {
		padding-left: 4.5625rem !important
	}

	.p-xl-74 {
		padding: 4.625rem !important
	}

	.pt-xl-74,
	.py-xl-74 {
		padding-top: 4.625rem !important
	}

	.pr-xl-74,
	.px-xl-74 {
		padding-right: 4.625rem !important
	}

	.pb-xl-74,
	.py-xl-74 {
		padding-bottom: 4.625rem !important
	}

	.pl-xl-74,
	.px-xl-74 {
		padding-left: 4.625rem !important
	}

	.p-xl-75 {
		padding: 4.6875rem !important
	}

	.pt-xl-75,
	.py-xl-75 {
		padding-top: 4.6875rem !important
	}

	.pr-xl-75,
	.px-xl-75 {
		padding-right: 4.6875rem !important
	}

	.pb-xl-75,
	.py-xl-75 {
		padding-bottom: 4.6875rem !important
	}

	.pl-xl-75,
	.px-xl-75 {
		padding-left: 4.6875rem !important
	}

	.p-xl-76 {
		padding: 4.75rem !important
	}

	.pt-xl-76,
	.py-xl-76 {
		padding-top: 4.75rem !important
	}

	.pr-xl-76,
	.px-xl-76 {
		padding-right: 4.75rem !important
	}

	.pb-xl-76,
	.py-xl-76 {
		padding-bottom: 4.75rem !important
	}

	.pl-xl-76,
	.px-xl-76 {
		padding-left: 4.75rem !important
	}

	.p-xl-77 {
		padding: 4.8125rem !important
	}

	.pt-xl-77,
	.py-xl-77 {
		padding-top: 4.8125rem !important
	}

	.pr-xl-77,
	.px-xl-77 {
		padding-right: 4.8125rem !important
	}

	.pb-xl-77,
	.py-xl-77 {
		padding-bottom: 4.8125rem !important
	}

	.pl-xl-77,
	.px-xl-77 {
		padding-left: 4.8125rem !important
	}

	.p-xl-78 {
		padding: 4.875rem !important
	}

	.pt-xl-78,
	.py-xl-78 {
		padding-top: 4.875rem !important
	}

	.pr-xl-78,
	.px-xl-78 {
		padding-right: 4.875rem !important
	}

	.pb-xl-78,
	.py-xl-78 {
		padding-bottom: 4.875rem !important
	}

	.pl-xl-78,
	.px-xl-78 {
		padding-left: 4.875rem !important
	}

	.p-xl-79 {
		padding: 4.9375rem !important
	}

	.pt-xl-79,
	.py-xl-79 {
		padding-top: 4.9375rem !important
	}

	.pr-xl-79,
	.px-xl-79 {
		padding-right: 4.9375rem !important
	}

	.pb-xl-79,
	.py-xl-79 {
		padding-bottom: 4.9375rem !important
	}

	.pl-xl-79,
	.px-xl-79 {
		padding-left: 4.9375rem !important
	}

	.p-xl-80 {
		padding: 5rem !important
	}

	.pt-xl-80,
	.py-xl-80 {
		padding-top: 5rem !important
	}

	.pr-xl-80,
	.px-xl-80 {
		padding-right: 5rem !important
	}

	.pb-xl-80,
	.py-xl-80 {
		padding-bottom: 5rem !important
	}

	.pl-xl-80,
	.px-xl-80 {
		padding-left: 5rem !important
	}

	.p-xl-81 {
		padding: 5.0625rem !important
	}

	.pt-xl-81,
	.py-xl-81 {
		padding-top: 5.0625rem !important
	}

	.pr-xl-81,
	.px-xl-81 {
		padding-right: 5.0625rem !important
	}

	.pb-xl-81,
	.py-xl-81 {
		padding-bottom: 5.0625rem !important
	}

	.pl-xl-81,
	.px-xl-81 {
		padding-left: 5.0625rem !important
	}

	.p-xl-82 {
		padding: 5.125rem !important
	}

	.pt-xl-82,
	.py-xl-82 {
		padding-top: 5.125rem !important
	}

	.pr-xl-82,
	.px-xl-82 {
		padding-right: 5.125rem !important
	}

	.pb-xl-82,
	.py-xl-82 {
		padding-bottom: 5.125rem !important
	}

	.pl-xl-82,
	.px-xl-82 {
		padding-left: 5.125rem !important
	}

	.p-xl-83 {
		padding: 5.1875rem !important
	}

	.pt-xl-83,
	.py-xl-83 {
		padding-top: 5.1875rem !important
	}

	.pr-xl-83,
	.px-xl-83 {
		padding-right: 5.1875rem !important
	}

	.pb-xl-83,
	.py-xl-83 {
		padding-bottom: 5.1875rem !important
	}

	.pl-xl-83,
	.px-xl-83 {
		padding-left: 5.1875rem !important
	}

	.p-xl-84 {
		padding: 5.25rem !important
	}

	.pt-xl-84,
	.py-xl-84 {
		padding-top: 5.25rem !important
	}

	.pr-xl-84,
	.px-xl-84 {
		padding-right: 5.25rem !important
	}

	.pb-xl-84,
	.py-xl-84 {
		padding-bottom: 5.25rem !important
	}

	.pl-xl-84,
	.px-xl-84 {
		padding-left: 5.25rem !important
	}

	.p-xl-85 {
		padding: 5.3125rem !important
	}

	.pt-xl-85,
	.py-xl-85 {
		padding-top: 5.3125rem !important
	}

	.pr-xl-85,
	.px-xl-85 {
		padding-right: 5.3125rem !important
	}

	.pb-xl-85,
	.py-xl-85 {
		padding-bottom: 5.3125rem !important
	}

	.pl-xl-85,
	.px-xl-85 {
		padding-left: 5.3125rem !important
	}

	.p-xl-86 {
		padding: 5.375rem !important
	}

	.pt-xl-86,
	.py-xl-86 {
		padding-top: 5.375rem !important
	}

	.pr-xl-86,
	.px-xl-86 {
		padding-right: 5.375rem !important
	}

	.pb-xl-86,
	.py-xl-86 {
		padding-bottom: 5.375rem !important
	}

	.pl-xl-86,
	.px-xl-86 {
		padding-left: 5.375rem !important
	}

	.p-xl-87 {
		padding: 5.4375rem !important
	}

	.pt-xl-87,
	.py-xl-87 {
		padding-top: 5.4375rem !important
	}

	.pr-xl-87,
	.px-xl-87 {
		padding-right: 5.4375rem !important
	}

	.pb-xl-87,
	.py-xl-87 {
		padding-bottom: 5.4375rem !important
	}

	.pl-xl-87,
	.px-xl-87 {
		padding-left: 5.4375rem !important
	}

	.p-xl-88 {
		padding: 5.5rem !important
	}

	.pt-xl-88,
	.py-xl-88 {
		padding-top: 5.5rem !important
	}

	.pr-xl-88,
	.px-xl-88 {
		padding-right: 5.5rem !important
	}

	.pb-xl-88,
	.py-xl-88 {
		padding-bottom: 5.5rem !important
	}

	.pl-xl-88,
	.px-xl-88 {
		padding-left: 5.5rem !important
	}

	.p-xl-89 {
		padding: 5.5625rem !important
	}

	.pt-xl-89,
	.py-xl-89 {
		padding-top: 5.5625rem !important
	}

	.pr-xl-89,
	.px-xl-89 {
		padding-right: 5.5625rem !important
	}

	.pb-xl-89,
	.py-xl-89 {
		padding-bottom: 5.5625rem !important
	}

	.pl-xl-89,
	.px-xl-89 {
		padding-left: 5.5625rem !important
	}

	.p-xl-90 {
		padding: 5.625rem !important
	}

	.pt-xl-90,
	.py-xl-90 {
		padding-top: 5.625rem !important
	}

	.pr-xl-90,
	.px-xl-90 {
		padding-right: 5.625rem !important
	}

	.pb-xl-90,
	.py-xl-90 {
		padding-bottom: 5.625rem !important
	}

	.pl-xl-90,
	.px-xl-90 {
		padding-left: 5.625rem !important
	}

	.p-xl-91 {
		padding: 5.6875rem !important
	}

	.pt-xl-91,
	.py-xl-91 {
		padding-top: 5.6875rem !important
	}

	.pr-xl-91,
	.px-xl-91 {
		padding-right: 5.6875rem !important
	}

	.pb-xl-91,
	.py-xl-91 {
		padding-bottom: 5.6875rem !important
	}

	.pl-xl-91,
	.px-xl-91 {
		padding-left: 5.6875rem !important
	}

	.p-xl-92 {
		padding: 5.75rem !important
	}

	.pt-xl-92,
	.py-xl-92 {
		padding-top: 5.75rem !important
	}

	.pr-xl-92,
	.px-xl-92 {
		padding-right: 5.75rem !important
	}

	.pb-xl-92,
	.py-xl-92 {
		padding-bottom: 5.75rem !important
	}

	.pl-xl-92,
	.px-xl-92 {
		padding-left: 5.75rem !important
	}

	.p-xl-93 {
		padding: 5.8125rem !important
	}

	.pt-xl-93,
	.py-xl-93 {
		padding-top: 5.8125rem !important
	}

	.pr-xl-93,
	.px-xl-93 {
		padding-right: 5.8125rem !important
	}

	.pb-xl-93,
	.py-xl-93 {
		padding-bottom: 5.8125rem !important
	}

	.pl-xl-93,
	.px-xl-93 {
		padding-left: 5.8125rem !important
	}

	.p-xl-94 {
		padding: 5.875rem !important
	}

	.pt-xl-94,
	.py-xl-94 {
		padding-top: 5.875rem !important
	}

	.pr-xl-94,
	.px-xl-94 {
		padding-right: 5.875rem !important
	}

	.pb-xl-94,
	.py-xl-94 {
		padding-bottom: 5.875rem !important
	}

	.pl-xl-94,
	.px-xl-94 {
		padding-left: 5.875rem !important
	}

	.p-xl-95 {
		padding: 5.9375rem !important
	}

	.pt-xl-95,
	.py-xl-95 {
		padding-top: 5.9375rem !important
	}

	.pr-xl-95,
	.px-xl-95 {
		padding-right: 5.9375rem !important
	}

	.pb-xl-95,
	.py-xl-95 {
		padding-bottom: 5.9375rem !important
	}

	.pl-xl-95,
	.px-xl-95 {
		padding-left: 5.9375rem !important
	}

	.p-xl-96 {
		padding: 6rem !important
	}

	.pt-xl-96,
	.py-xl-96 {
		padding-top: 6rem !important
	}

	.pr-xl-96,
	.px-xl-96 {
		padding-right: 6rem !important
	}

	.pb-xl-96,
	.py-xl-96 {
		padding-bottom: 6rem !important
	}

	.pl-xl-96,
	.px-xl-96 {
		padding-left: 6rem !important
	}

	.p-xl-97 {
		padding: 6.0625rem !important
	}

	.pt-xl-97,
	.py-xl-97 {
		padding-top: 6.0625rem !important
	}

	.pr-xl-97,
	.px-xl-97 {
		padding-right: 6.0625rem !important
	}

	.pb-xl-97,
	.py-xl-97 {
		padding-bottom: 6.0625rem !important
	}

	.pl-xl-97,
	.px-xl-97 {
		padding-left: 6.0625rem !important
	}

	.p-xl-98 {
		padding: 6.125rem !important
	}

	.pt-xl-98,
	.py-xl-98 {
		padding-top: 6.125rem !important
	}

	.pr-xl-98,
	.px-xl-98 {
		padding-right: 6.125rem !important
	}

	.pb-xl-98,
	.py-xl-98 {
		padding-bottom: 6.125rem !important
	}

	.pl-xl-98,
	.px-xl-98 {
		padding-left: 6.125rem !important
	}

	.p-xl-99 {
		padding: 6.1875rem !important
	}

	.pt-xl-99,
	.py-xl-99 {
		padding-top: 6.1875rem !important
	}

	.pr-xl-99,
	.px-xl-99 {
		padding-right: 6.1875rem !important
	}

	.pb-xl-99,
	.py-xl-99 {
		padding-bottom: 6.1875rem !important
	}

	.pl-xl-99,
	.px-xl-99 {
		padding-left: 6.1875rem !important
	}

	.p-xl-100 {
		padding: 6.25rem !important
	}

	.pt-xl-100,
	.py-xl-100 {
		padding-top: 6.25rem !important
	}

	.pr-xl-100,
	.px-xl-100 {
		padding-right: 6.25rem !important
	}

	.pb-xl-100,
	.py-xl-100 {
		padding-bottom: 6.25rem !important
	}

	.pl-xl-100,
	.px-xl-100 {
		padding-left: 6.25rem !important
	}

	.p-xl-101 {
		padding: 6.3125rem !important
	}

	.pt-xl-101,
	.py-xl-101 {
		padding-top: 6.3125rem !important
	}

	.pr-xl-101,
	.px-xl-101 {
		padding-right: 6.3125rem !important
	}

	.pb-xl-101,
	.py-xl-101 {
		padding-bottom: 6.3125rem !important
	}

	.pl-xl-101,
	.px-xl-101 {
		padding-left: 6.3125rem !important
	}

	.p-xl-102 {
		padding: 6.375rem !important
	}

	.pt-xl-102,
	.py-xl-102 {
		padding-top: 6.375rem !important
	}

	.pr-xl-102,
	.px-xl-102 {
		padding-right: 6.375rem !important
	}

	.pb-xl-102,
	.py-xl-102 {
		padding-bottom: 6.375rem !important
	}

	.pl-xl-102,
	.px-xl-102 {
		padding-left: 6.375rem !important
	}

	.p-xl-103 {
		padding: 6.4375rem !important
	}

	.pt-xl-103,
	.py-xl-103 {
		padding-top: 6.4375rem !important
	}

	.pr-xl-103,
	.px-xl-103 {
		padding-right: 6.4375rem !important
	}

	.pb-xl-103,
	.py-xl-103 {
		padding-bottom: 6.4375rem !important
	}

	.pl-xl-103,
	.px-xl-103 {
		padding-left: 6.4375rem !important
	}

	.p-xl-104 {
		padding: 6.5rem !important
	}

	.pt-xl-104,
	.py-xl-104 {
		padding-top: 6.5rem !important
	}

	.pr-xl-104,
	.px-xl-104 {
		padding-right: 6.5rem !important
	}

	.pb-xl-104,
	.py-xl-104 {
		padding-bottom: 6.5rem !important
	}

	.pl-xl-104,
	.px-xl-104 {
		padding-left: 6.5rem !important
	}

	.p-xl-105 {
		padding: 6.5625rem !important
	}

	.pt-xl-105,
	.py-xl-105 {
		padding-top: 6.5625rem !important
	}

	.pr-xl-105,
	.px-xl-105 {
		padding-right: 6.5625rem !important
	}

	.pb-xl-105,
	.py-xl-105 {
		padding-bottom: 6.5625rem !important
	}

	.pl-xl-105,
	.px-xl-105 {
		padding-left: 6.5625rem !important
	}

	.p-xl-106 {
		padding: 6.625rem !important
	}

	.pt-xl-106,
	.py-xl-106 {
		padding-top: 6.625rem !important
	}

	.pr-xl-106,
	.px-xl-106 {
		padding-right: 6.625rem !important
	}

	.pb-xl-106,
	.py-xl-106 {
		padding-bottom: 6.625rem !important
	}

	.pl-xl-106,
	.px-xl-106 {
		padding-left: 6.625rem !important
	}

	.p-xl-107 {
		padding: 6.6875rem !important
	}

	.pt-xl-107,
	.py-xl-107 {
		padding-top: 6.6875rem !important
	}

	.pr-xl-107,
	.px-xl-107 {
		padding-right: 6.6875rem !important
	}

	.pb-xl-107,
	.py-xl-107 {
		padding-bottom: 6.6875rem !important
	}

	.pl-xl-107,
	.px-xl-107 {
		padding-left: 6.6875rem !important
	}

	.p-xl-108 {
		padding: 6.75rem !important
	}

	.pt-xl-108,
	.py-xl-108 {
		padding-top: 6.75rem !important
	}

	.pr-xl-108,
	.px-xl-108 {
		padding-right: 6.75rem !important
	}

	.pb-xl-108,
	.py-xl-108 {
		padding-bottom: 6.75rem !important
	}

	.pl-xl-108,
	.px-xl-108 {
		padding-left: 6.75rem !important
	}

	.p-xl-109 {
		padding: 6.8125rem !important
	}

	.pt-xl-109,
	.py-xl-109 {
		padding-top: 6.8125rem !important
	}

	.pr-xl-109,
	.px-xl-109 {
		padding-right: 6.8125rem !important
	}

	.pb-xl-109,
	.py-xl-109 {
		padding-bottom: 6.8125rem !important
	}

	.pl-xl-109,
	.px-xl-109 {
		padding-left: 6.8125rem !important
	}

	.p-xl-110 {
		padding: 6.875rem !important
	}

	.pt-xl-110,
	.py-xl-110 {
		padding-top: 6.875rem !important
	}

	.pr-xl-110,
	.px-xl-110 {
		padding-right: 6.875rem !important
	}

	.pb-xl-110,
	.py-xl-110 {
		padding-bottom: 6.875rem !important
	}

	.pl-xl-110,
	.px-xl-110 {
		padding-left: 6.875rem !important
	}

	.p-xl-111 {
		padding: 6.9375rem !important
	}

	.pt-xl-111,
	.py-xl-111 {
		padding-top: 6.9375rem !important
	}

	.pr-xl-111,
	.px-xl-111 {
		padding-right: 6.9375rem !important
	}

	.pb-xl-111,
	.py-xl-111 {
		padding-bottom: 6.9375rem !important
	}

	.pl-xl-111,
	.px-xl-111 {
		padding-left: 6.9375rem !important
	}

	.p-xl-112 {
		padding: 7rem !important
	}

	.pt-xl-112,
	.py-xl-112 {
		padding-top: 7rem !important
	}

	.pr-xl-112,
	.px-xl-112 {
		padding-right: 7rem !important
	}

	.pb-xl-112,
	.py-xl-112 {
		padding-bottom: 7rem !important
	}

	.pl-xl-112,
	.px-xl-112 {
		padding-left: 7rem !important
	}

	.p-xl-113 {
		padding: 7.0625rem !important
	}

	.pt-xl-113,
	.py-xl-113 {
		padding-top: 7.0625rem !important
	}

	.pr-xl-113,
	.px-xl-113 {
		padding-right: 7.0625rem !important
	}

	.pb-xl-113,
	.py-xl-113 {
		padding-bottom: 7.0625rem !important
	}

	.pl-xl-113,
	.px-xl-113 {
		padding-left: 7.0625rem !important
	}

	.p-xl-114 {
		padding: 7.125rem !important
	}

	.pt-xl-114,
	.py-xl-114 {
		padding-top: 7.125rem !important
	}

	.pr-xl-114,
	.px-xl-114 {
		padding-right: 7.125rem !important
	}

	.pb-xl-114,
	.py-xl-114 {
		padding-bottom: 7.125rem !important
	}

	.pl-xl-114,
	.px-xl-114 {
		padding-left: 7.125rem !important
	}

	.p-xl-115 {
		padding: 7.1875rem !important
	}

	.pt-xl-115,
	.py-xl-115 {
		padding-top: 7.1875rem !important
	}

	.pr-xl-115,
	.px-xl-115 {
		padding-right: 7.1875rem !important
	}

	.pb-xl-115,
	.py-xl-115 {
		padding-bottom: 7.1875rem !important
	}

	.pl-xl-115,
	.px-xl-115 {
		padding-left: 7.1875rem !important
	}

	.p-xl-116 {
		padding: 7.25rem !important
	}

	.pt-xl-116,
	.py-xl-116 {
		padding-top: 7.25rem !important
	}

	.pr-xl-116,
	.px-xl-116 {
		padding-right: 7.25rem !important
	}

	.pb-xl-116,
	.py-xl-116 {
		padding-bottom: 7.25rem !important
	}

	.pl-xl-116,
	.px-xl-116 {
		padding-left: 7.25rem !important
	}

	.p-xl-117 {
		padding: 7.3125rem !important
	}

	.pt-xl-117,
	.py-xl-117 {
		padding-top: 7.3125rem !important
	}

	.pr-xl-117,
	.px-xl-117 {
		padding-right: 7.3125rem !important
	}

	.pb-xl-117,
	.py-xl-117 {
		padding-bottom: 7.3125rem !important
	}

	.pl-xl-117,
	.px-xl-117 {
		padding-left: 7.3125rem !important
	}

	.p-xl-118 {
		padding: 7.375rem !important
	}

	.pt-xl-118,
	.py-xl-118 {
		padding-top: 7.375rem !important
	}

	.pr-xl-118,
	.px-xl-118 {
		padding-right: 7.375rem !important
	}

	.pb-xl-118,
	.py-xl-118 {
		padding-bottom: 7.375rem !important
	}

	.pl-xl-118,
	.px-xl-118 {
		padding-left: 7.375rem !important
	}

	.p-xl-119 {
		padding: 7.4375rem !important
	}

	.pt-xl-119,
	.py-xl-119 {
		padding-top: 7.4375rem !important
	}

	.pr-xl-119,
	.px-xl-119 {
		padding-right: 7.4375rem !important
	}

	.pb-xl-119,
	.py-xl-119 {
		padding-bottom: 7.4375rem !important
	}

	.pl-xl-119,
	.px-xl-119 {
		padding-left: 7.4375rem !important
	}

	.p-xl-120 {
		padding: 7.5rem !important
	}

	.pt-xl-120,
	.py-xl-120 {
		padding-top: 7.5rem !important
	}

	.pr-xl-120,
	.px-xl-120 {
		padding-right: 7.5rem !important
	}

	.pb-xl-120,
	.py-xl-120 {
		padding-bottom: 7.5rem !important
	}

	.pl-xl-120,
	.px-xl-120 {
		padding-left: 7.5rem !important
	}

	.p-xl-121 {
		padding: 7.5625rem !important
	}

	.pt-xl-121,
	.py-xl-121 {
		padding-top: 7.5625rem !important
	}

	.pr-xl-121,
	.px-xl-121 {
		padding-right: 7.5625rem !important
	}

	.pb-xl-121,
	.py-xl-121 {
		padding-bottom: 7.5625rem !important
	}

	.pl-xl-121,
	.px-xl-121 {
		padding-left: 7.5625rem !important
	}

	.p-xl-122 {
		padding: 7.625rem !important
	}

	.pt-xl-122,
	.py-xl-122 {
		padding-top: 7.625rem !important
	}

	.pr-xl-122,
	.px-xl-122 {
		padding-right: 7.625rem !important
	}

	.pb-xl-122,
	.py-xl-122 {
		padding-bottom: 7.625rem !important
	}

	.pl-xl-122,
	.px-xl-122 {
		padding-left: 7.625rem !important
	}

	.p-xl-123 {
		padding: 7.6875rem !important
	}

	.pt-xl-123,
	.py-xl-123 {
		padding-top: 7.6875rem !important
	}

	.pr-xl-123,
	.px-xl-123 {
		padding-right: 7.6875rem !important
	}

	.pb-xl-123,
	.py-xl-123 {
		padding-bottom: 7.6875rem !important
	}

	.pl-xl-123,
	.px-xl-123 {
		padding-left: 7.6875rem !important
	}

	.p-xl-124 {
		padding: 7.75rem !important
	}

	.pt-xl-124,
	.py-xl-124 {
		padding-top: 7.75rem !important
	}

	.pr-xl-124,
	.px-xl-124 {
		padding-right: 7.75rem !important
	}

	.pb-xl-124,
	.py-xl-124 {
		padding-bottom: 7.75rem !important
	}

	.pl-xl-124,
	.px-xl-124 {
		padding-left: 7.75rem !important
	}

	.p-xl-125 {
		padding: 7.8125rem !important
	}

	.pt-xl-125,
	.py-xl-125 {
		padding-top: 7.8125rem !important
	}

	.pr-xl-125,
	.px-xl-125 {
		padding-right: 7.8125rem !important
	}

	.pb-xl-125,
	.py-xl-125 {
		padding-bottom: 7.8125rem !important
	}

	.pl-xl-125,
	.px-xl-125 {
		padding-left: 7.8125rem !important
	}

	.p-xl-126 {
		padding: 7.875rem !important
	}

	.pt-xl-126,
	.py-xl-126 {
		padding-top: 7.875rem !important
	}

	.pr-xl-126,
	.px-xl-126 {
		padding-right: 7.875rem !important
	}

	.pb-xl-126,
	.py-xl-126 {
		padding-bottom: 7.875rem !important
	}

	.pl-xl-126,
	.px-xl-126 {
		padding-left: 7.875rem !important
	}

	.p-xl-127 {
		padding: 7.9375rem !important
	}

	.pt-xl-127,
	.py-xl-127 {
		padding-top: 7.9375rem !important
	}

	.pr-xl-127,
	.px-xl-127 {
		padding-right: 7.9375rem !important
	}

	.pb-xl-127,
	.py-xl-127 {
		padding-bottom: 7.9375rem !important
	}

	.pl-xl-127,
	.px-xl-127 {
		padding-left: 7.9375rem !important
	}

	.p-xl-128 {
		padding: 8rem !important
	}

	.pt-xl-128,
	.py-xl-128 {
		padding-top: 8rem !important
	}

	.pr-xl-128,
	.px-xl-128 {
		padding-right: 8rem !important
	}

	.pb-xl-128,
	.py-xl-128 {
		padding-bottom: 8rem !important
	}

	.pl-xl-128,
	.px-xl-128 {
		padding-left: 8rem !important
	}

	.p-xl-129 {
		padding: 8.0625rem !important
	}

	.pt-xl-129,
	.py-xl-129 {
		padding-top: 8.0625rem !important
	}

	.pr-xl-129,
	.px-xl-129 {
		padding-right: 8.0625rem !important
	}

	.pb-xl-129,
	.py-xl-129 {
		padding-bottom: 8.0625rem !important
	}

	.pl-xl-129,
	.px-xl-129 {
		padding-left: 8.0625rem !important
	}

	.p-xl-130 {
		padding: 8.125rem !important
	}

	.pt-xl-130,
	.py-xl-130 {
		padding-top: 8.125rem !important
	}

	.pr-xl-130,
	.px-xl-130 {
		padding-right: 8.125rem !important
	}

	.pb-xl-130,
	.py-xl-130 {
		padding-bottom: 8.125rem !important
	}

	.pl-xl-130,
	.px-xl-130 {
		padding-left: 8.125rem !important
	}

	.p-xl-131 {
		padding: 8.1875rem !important
	}

	.pt-xl-131,
	.py-xl-131 {
		padding-top: 8.1875rem !important
	}

	.pr-xl-131,
	.px-xl-131 {
		padding-right: 8.1875rem !important
	}

	.pb-xl-131,
	.py-xl-131 {
		padding-bottom: 8.1875rem !important
	}

	.pl-xl-131,
	.px-xl-131 {
		padding-left: 8.1875rem !important
	}

	.p-xl-132 {
		padding: 8.25rem !important
	}

	.pt-xl-132,
	.py-xl-132 {
		padding-top: 8.25rem !important
	}

	.pr-xl-132,
	.px-xl-132 {
		padding-right: 8.25rem !important
	}

	.pb-xl-132,
	.py-xl-132 {
		padding-bottom: 8.25rem !important
	}

	.pl-xl-132,
	.px-xl-132 {
		padding-left: 8.25rem !important
	}

	.p-xl-133 {
		padding: 8.3125rem !important
	}

	.pt-xl-133,
	.py-xl-133 {
		padding-top: 8.3125rem !important
	}

	.pr-xl-133,
	.px-xl-133 {
		padding-right: 8.3125rem !important
	}

	.pb-xl-133,
	.py-xl-133 {
		padding-bottom: 8.3125rem !important
	}

	.pl-xl-133,
	.px-xl-133 {
		padding-left: 8.3125rem !important
	}

	.p-xl-134 {
		padding: 8.375rem !important
	}

	.pt-xl-134,
	.py-xl-134 {
		padding-top: 8.375rem !important
	}

	.pr-xl-134,
	.px-xl-134 {
		padding-right: 8.375rem !important
	}

	.pb-xl-134,
	.py-xl-134 {
		padding-bottom: 8.375rem !important
	}

	.pl-xl-134,
	.px-xl-134 {
		padding-left: 8.375rem !important
	}

	.p-xl-135 {
		padding: 8.4375rem !important
	}

	.pt-xl-135,
	.py-xl-135 {
		padding-top: 8.4375rem !important
	}

	.pr-xl-135,
	.px-xl-135 {
		padding-right: 8.4375rem !important
	}

	.pb-xl-135,
	.py-xl-135 {
		padding-bottom: 8.4375rem !important
	}

	.pl-xl-135,
	.px-xl-135 {
		padding-left: 8.4375rem !important
	}

	.p-xl-136 {
		padding: 8.5rem !important
	}

	.pt-xl-136,
	.py-xl-136 {
		padding-top: 8.5rem !important
	}

	.pr-xl-136,
	.px-xl-136 {
		padding-right: 8.5rem !important
	}

	.pb-xl-136,
	.py-xl-136 {
		padding-bottom: 8.5rem !important
	}

	.pl-xl-136,
	.px-xl-136 {
		padding-left: 8.5rem !important
	}

	.p-xl-137 {
		padding: 8.5625rem !important
	}

	.pt-xl-137,
	.py-xl-137 {
		padding-top: 8.5625rem !important
	}

	.pr-xl-137,
	.px-xl-137 {
		padding-right: 8.5625rem !important
	}

	.pb-xl-137,
	.py-xl-137 {
		padding-bottom: 8.5625rem !important
	}

	.pl-xl-137,
	.px-xl-137 {
		padding-left: 8.5625rem !important
	}

	.p-xl-138 {
		padding: 8.625rem !important
	}

	.pt-xl-138,
	.py-xl-138 {
		padding-top: 8.625rem !important
	}

	.pr-xl-138,
	.px-xl-138 {
		padding-right: 8.625rem !important
	}

	.pb-xl-138,
	.py-xl-138 {
		padding-bottom: 8.625rem !important
	}

	.pl-xl-138,
	.px-xl-138 {
		padding-left: 8.625rem !important
	}

	.p-xl-139 {
		padding: 8.6875rem !important
	}

	.pt-xl-139,
	.py-xl-139 {
		padding-top: 8.6875rem !important
	}

	.pr-xl-139,
	.px-xl-139 {
		padding-right: 8.6875rem !important
	}

	.pb-xl-139,
	.py-xl-139 {
		padding-bottom: 8.6875rem !important
	}

	.pl-xl-139,
	.px-xl-139 {
		padding-left: 8.6875rem !important
	}

	.p-xl-140 {
		padding: 8.75rem !important
	}

	.pt-xl-140,
	.py-xl-140 {
		padding-top: 8.75rem !important
	}

	.pr-xl-140,
	.px-xl-140 {
		padding-right: 8.75rem !important
	}

	.pb-xl-140,
	.py-xl-140 {
		padding-bottom: 8.75rem !important
	}

	.pl-xl-140,
	.px-xl-140 {
		padding-left: 8.75rem !important
	}

	.p-xl-141 {
		padding: 8.8125rem !important
	}

	.pt-xl-141,
	.py-xl-141 {
		padding-top: 8.8125rem !important
	}

	.pr-xl-141,
	.px-xl-141 {
		padding-right: 8.8125rem !important
	}

	.pb-xl-141,
	.py-xl-141 {
		padding-bottom: 8.8125rem !important
	}

	.pl-xl-141,
	.px-xl-141 {
		padding-left: 8.8125rem !important
	}

	.p-xl-142 {
		padding: 8.875rem !important
	}

	.pt-xl-142,
	.py-xl-142 {
		padding-top: 8.875rem !important
	}

	.pr-xl-142,
	.px-xl-142 {
		padding-right: 8.875rem !important
	}

	.pb-xl-142,
	.py-xl-142 {
		padding-bottom: 8.875rem !important
	}

	.pl-xl-142,
	.px-xl-142 {
		padding-left: 8.875rem !important
	}

	.p-xl-143 {
		padding: 8.9375rem !important
	}

	.pt-xl-143,
	.py-xl-143 {
		padding-top: 8.9375rem !important
	}

	.pr-xl-143,
	.px-xl-143 {
		padding-right: 8.9375rem !important
	}

	.pb-xl-143,
	.py-xl-143 {
		padding-bottom: 8.9375rem !important
	}

	.pl-xl-143,
	.px-xl-143 {
		padding-left: 8.9375rem !important
	}

	.p-xl-144 {
		padding: 9rem !important
	}

	.pt-xl-144,
	.py-xl-144 {
		padding-top: 9rem !important
	}

	.pr-xl-144,
	.px-xl-144 {
		padding-right: 9rem !important
	}

	.pb-xl-144,
	.py-xl-144 {
		padding-bottom: 9rem !important
	}

	.pl-xl-144,
	.px-xl-144 {
		padding-left: 9rem !important
	}

	.p-xl-145 {
		padding: 9.0625rem !important
	}

	.pt-xl-145,
	.py-xl-145 {
		padding-top: 9.0625rem !important
	}

	.pr-xl-145,
	.px-xl-145 {
		padding-right: 9.0625rem !important
	}

	.pb-xl-145,
	.py-xl-145 {
		padding-bottom: 9.0625rem !important
	}

	.pl-xl-145,
	.px-xl-145 {
		padding-left: 9.0625rem !important
	}

	.p-xl-146 {
		padding: 9.125rem !important
	}

	.pt-xl-146,
	.py-xl-146 {
		padding-top: 9.125rem !important
	}

	.pr-xl-146,
	.px-xl-146 {
		padding-right: 9.125rem !important
	}

	.pb-xl-146,
	.py-xl-146 {
		padding-bottom: 9.125rem !important
	}

	.pl-xl-146,
	.px-xl-146 {
		padding-left: 9.125rem !important
	}

	.p-xl-147 {
		padding: 9.1875rem !important
	}

	.pt-xl-147,
	.py-xl-147 {
		padding-top: 9.1875rem !important
	}

	.pr-xl-147,
	.px-xl-147 {
		padding-right: 9.1875rem !important
	}

	.pb-xl-147,
	.py-xl-147 {
		padding-bottom: 9.1875rem !important
	}

	.pl-xl-147,
	.px-xl-147 {
		padding-left: 9.1875rem !important
	}

	.p-xl-148 {
		padding: 9.25rem !important
	}

	.pt-xl-148,
	.py-xl-148 {
		padding-top: 9.25rem !important
	}

	.pr-xl-148,
	.px-xl-148 {
		padding-right: 9.25rem !important
	}

	.pb-xl-148,
	.py-xl-148 {
		padding-bottom: 9.25rem !important
	}

	.pl-xl-148,
	.px-xl-148 {
		padding-left: 9.25rem !important
	}

	.p-xl-149 {
		padding: 9.3125rem !important
	}

	.pt-xl-149,
	.py-xl-149 {
		padding-top: 9.3125rem !important
	}

	.pr-xl-149,
	.px-xl-149 {
		padding-right: 9.3125rem !important
	}

	.pb-xl-149,
	.py-xl-149 {
		padding-bottom: 9.3125rem !important
	}

	.pl-xl-149,
	.px-xl-149 {
		padding-left: 9.3125rem !important
	}

	.p-xl-150 {
		padding: 9.375rem !important
	}

	.pt-xl-150,
	.py-xl-150 {
		padding-top: 9.375rem !important
	}

	.pr-xl-150,
	.px-xl-150 {
		padding-right: 9.375rem !important
	}

	.pb-xl-150,
	.py-xl-150 {
		padding-bottom: 9.375rem !important
	}

	.pl-xl-150,
	.px-xl-150 {
		padding-left: 9.375rem !important
	}

	.p-xl-151 {
		padding: 9.4375rem !important
	}

	.pt-xl-151,
	.py-xl-151 {
		padding-top: 9.4375rem !important
	}

	.pr-xl-151,
	.px-xl-151 {
		padding-right: 9.4375rem !important
	}

	.pb-xl-151,
	.py-xl-151 {
		padding-bottom: 9.4375rem !important
	}

	.pl-xl-151,
	.px-xl-151 {
		padding-left: 9.4375rem !important
	}

	.p-xl-152 {
		padding: 9.5rem !important
	}

	.pt-xl-152,
	.py-xl-152 {
		padding-top: 9.5rem !important
	}

	.pr-xl-152,
	.px-xl-152 {
		padding-right: 9.5rem !important
	}

	.pb-xl-152,
	.py-xl-152 {
		padding-bottom: 9.5rem !important
	}

	.pl-xl-152,
	.px-xl-152 {
		padding-left: 9.5rem !important
	}

	.p-xl-153 {
		padding: 9.5625rem !important
	}

	.pt-xl-153,
	.py-xl-153 {
		padding-top: 9.5625rem !important
	}

	.pr-xl-153,
	.px-xl-153 {
		padding-right: 9.5625rem !important
	}

	.pb-xl-153,
	.py-xl-153 {
		padding-bottom: 9.5625rem !important
	}

	.pl-xl-153,
	.px-xl-153 {
		padding-left: 9.5625rem !important
	}

	.p-xl-154 {
		padding: 9.625rem !important
	}

	.pt-xl-154,
	.py-xl-154 {
		padding-top: 9.625rem !important
	}

	.pr-xl-154,
	.px-xl-154 {
		padding-right: 9.625rem !important
	}

	.pb-xl-154,
	.py-xl-154 {
		padding-bottom: 9.625rem !important
	}

	.pl-xl-154,
	.px-xl-154 {
		padding-left: 9.625rem !important
	}

	.p-xl-155 {
		padding: 9.6875rem !important
	}

	.pt-xl-155,
	.py-xl-155 {
		padding-top: 9.6875rem !important
	}

	.pr-xl-155,
	.px-xl-155 {
		padding-right: 9.6875rem !important
	}

	.pb-xl-155,
	.py-xl-155 {
		padding-bottom: 9.6875rem !important
	}

	.pl-xl-155,
	.px-xl-155 {
		padding-left: 9.6875rem !important
	}

	.p-xl-156 {
		padding: 9.75rem !important
	}

	.pt-xl-156,
	.py-xl-156 {
		padding-top: 9.75rem !important
	}

	.pr-xl-156,
	.px-xl-156 {
		padding-right: 9.75rem !important
	}

	.pb-xl-156,
	.py-xl-156 {
		padding-bottom: 9.75rem !important
	}

	.pl-xl-156,
	.px-xl-156 {
		padding-left: 9.75rem !important
	}

	.p-xl-157 {
		padding: 9.8125rem !important
	}

	.pt-xl-157,
	.py-xl-157 {
		padding-top: 9.8125rem !important
	}

	.pr-xl-157,
	.px-xl-157 {
		padding-right: 9.8125rem !important
	}

	.pb-xl-157,
	.py-xl-157 {
		padding-bottom: 9.8125rem !important
	}

	.pl-xl-157,
	.px-xl-157 {
		padding-left: 9.8125rem !important
	}

	.p-xl-158 {
		padding: 9.875rem !important
	}

	.pt-xl-158,
	.py-xl-158 {
		padding-top: 9.875rem !important
	}

	.pr-xl-158,
	.px-xl-158 {
		padding-right: 9.875rem !important
	}

	.pb-xl-158,
	.py-xl-158 {
		padding-bottom: 9.875rem !important
	}

	.pl-xl-158,
	.px-xl-158 {
		padding-left: 9.875rem !important
	}

	.p-xl-159 {
		padding: 9.9375rem !important
	}

	.pt-xl-159,
	.py-xl-159 {
		padding-top: 9.9375rem !important
	}

	.pr-xl-159,
	.px-xl-159 {
		padding-right: 9.9375rem !important
	}

	.pb-xl-159,
	.py-xl-159 {
		padding-bottom: 9.9375rem !important
	}

	.pl-xl-159,
	.px-xl-159 {
		padding-left: 9.9375rem !important
	}

	.p-xl-160 {
		padding: 10rem !important
	}

	.pt-xl-160,
	.py-xl-160 {
		padding-top: 10rem !important
	}

	.pr-xl-160,
	.px-xl-160 {
		padding-right: 10rem !important
	}

	.pb-xl-160,
	.py-xl-160 {
		padding-bottom: 10rem !important
	}

	.pl-xl-160,
	.px-xl-160 {
		padding-left: 10rem !important
	}

	.p-xl-161 {
		padding: 10.0625rem !important
	}

	.pt-xl-161,
	.py-xl-161 {
		padding-top: 10.0625rem !important
	}

	.pr-xl-161,
	.px-xl-161 {
		padding-right: 10.0625rem !important
	}

	.pb-xl-161,
	.py-xl-161 {
		padding-bottom: 10.0625rem !important
	}

	.pl-xl-161,
	.px-xl-161 {
		padding-left: 10.0625rem !important
	}

	.p-xl-162 {
		padding: 10.125rem !important
	}

	.pt-xl-162,
	.py-xl-162 {
		padding-top: 10.125rem !important
	}

	.pr-xl-162,
	.px-xl-162 {
		padding-right: 10.125rem !important
	}

	.pb-xl-162,
	.py-xl-162 {
		padding-bottom: 10.125rem !important
	}

	.pl-xl-162,
	.px-xl-162 {
		padding-left: 10.125rem !important
	}

	.p-xl-163 {
		padding: 10.1875rem !important
	}

	.pt-xl-163,
	.py-xl-163 {
		padding-top: 10.1875rem !important
	}

	.pr-xl-163,
	.px-xl-163 {
		padding-right: 10.1875rem !important
	}

	.pb-xl-163,
	.py-xl-163 {
		padding-bottom: 10.1875rem !important
	}

	.pl-xl-163,
	.px-xl-163 {
		padding-left: 10.1875rem !important
	}

	.p-xl-164 {
		padding: 10.25rem !important
	}

	.pt-xl-164,
	.py-xl-164 {
		padding-top: 10.25rem !important
	}

	.pr-xl-164,
	.px-xl-164 {
		padding-right: 10.25rem !important
	}

	.pb-xl-164,
	.py-xl-164 {
		padding-bottom: 10.25rem !important
	}

	.pl-xl-164,
	.px-xl-164 {
		padding-left: 10.25rem !important
	}

	.p-xl-165 {
		padding: 10.3125rem !important
	}

	.pt-xl-165,
	.py-xl-165 {
		padding-top: 10.3125rem !important
	}

	.pr-xl-165,
	.px-xl-165 {
		padding-right: 10.3125rem !important
	}

	.pb-xl-165,
	.py-xl-165 {
		padding-bottom: 10.3125rem !important
	}

	.pl-xl-165,
	.px-xl-165 {
		padding-left: 10.3125rem !important
	}

	.p-xl-166 {
		padding: 10.375rem !important
	}

	.pt-xl-166,
	.py-xl-166 {
		padding-top: 10.375rem !important
	}

	.pr-xl-166,
	.px-xl-166 {
		padding-right: 10.375rem !important
	}

	.pb-xl-166,
	.py-xl-166 {
		padding-bottom: 10.375rem !important
	}

	.pl-xl-166,
	.px-xl-166 {
		padding-left: 10.375rem !important
	}

	.p-xl-167 {
		padding: 10.4375rem !important
	}

	.pt-xl-167,
	.py-xl-167 {
		padding-top: 10.4375rem !important
	}

	.pr-xl-167,
	.px-xl-167 {
		padding-right: 10.4375rem !important
	}

	.pb-xl-167,
	.py-xl-167 {
		padding-bottom: 10.4375rem !important
	}

	.pl-xl-167,
	.px-xl-167 {
		padding-left: 10.4375rem !important
	}

	.p-xl-168 {
		padding: 10.5rem !important
	}

	.pt-xl-168,
	.py-xl-168 {
		padding-top: 10.5rem !important
	}

	.pr-xl-168,
	.px-xl-168 {
		padding-right: 10.5rem !important
	}

	.pb-xl-168,
	.py-xl-168 {
		padding-bottom: 10.5rem !important
	}

	.pl-xl-168,
	.px-xl-168 {
		padding-left: 10.5rem !important
	}

	.p-xl-169 {
		padding: 10.5625rem !important
	}

	.pt-xl-169,
	.py-xl-169 {
		padding-top: 10.5625rem !important
	}

	.pr-xl-169,
	.px-xl-169 {
		padding-right: 10.5625rem !important
	}

	.pb-xl-169,
	.py-xl-169 {
		padding-bottom: 10.5625rem !important
	}

	.pl-xl-169,
	.px-xl-169 {
		padding-left: 10.5625rem !important
	}

	.p-xl-170 {
		padding: 10.625rem !important
	}

	.pt-xl-170,
	.py-xl-170 {
		padding-top: 10.625rem !important
	}

	.pr-xl-170,
	.px-xl-170 {
		padding-right: 10.625rem !important
	}

	.pb-xl-170,
	.py-xl-170 {
		padding-bottom: 10.625rem !important
	}

	.pl-xl-170,
	.px-xl-170 {
		padding-left: 10.625rem !important
	}

	.p-xl-171 {
		padding: 10.6875rem !important
	}

	.pt-xl-171,
	.py-xl-171 {
		padding-top: 10.6875rem !important
	}

	.pr-xl-171,
	.px-xl-171 {
		padding-right: 10.6875rem !important
	}

	.pb-xl-171,
	.py-xl-171 {
		padding-bottom: 10.6875rem !important
	}

	.pl-xl-171,
	.px-xl-171 {
		padding-left: 10.6875rem !important
	}

	.p-xl-172 {
		padding: 10.75rem !important
	}

	.pt-xl-172,
	.py-xl-172 {
		padding-top: 10.75rem !important
	}

	.pr-xl-172,
	.px-xl-172 {
		padding-right: 10.75rem !important
	}

	.pb-xl-172,
	.py-xl-172 {
		padding-bottom: 10.75rem !important
	}

	.pl-xl-172,
	.px-xl-172 {
		padding-left: 10.75rem !important
	}

	.p-xl-173 {
		padding: 10.8125rem !important
	}

	.pt-xl-173,
	.py-xl-173 {
		padding-top: 10.8125rem !important
	}

	.pr-xl-173,
	.px-xl-173 {
		padding-right: 10.8125rem !important
	}

	.pb-xl-173,
	.py-xl-173 {
		padding-bottom: 10.8125rem !important
	}

	.pl-xl-173,
	.px-xl-173 {
		padding-left: 10.8125rem !important
	}

	.p-xl-174 {
		padding: 10.875rem !important
	}

	.pt-xl-174,
	.py-xl-174 {
		padding-top: 10.875rem !important
	}

	.pr-xl-174,
	.px-xl-174 {
		padding-right: 10.875rem !important
	}

	.pb-xl-174,
	.py-xl-174 {
		padding-bottom: 10.875rem !important
	}

	.pl-xl-174,
	.px-xl-174 {
		padding-left: 10.875rem !important
	}

	.p-xl-175 {
		padding: 10.9375rem !important
	}

	.pt-xl-175,
	.py-xl-175 {
		padding-top: 10.9375rem !important
	}

	.pr-xl-175,
	.px-xl-175 {
		padding-right: 10.9375rem !important
	}

	.pb-xl-175,
	.py-xl-175 {
		padding-bottom: 10.9375rem !important
	}

	.pl-xl-175,
	.px-xl-175 {
		padding-left: 10.9375rem !important
	}

	.p-xl-176 {
		padding: 11rem !important
	}

	.pt-xl-176,
	.py-xl-176 {
		padding-top: 11rem !important
	}

	.pr-xl-176,
	.px-xl-176 {
		padding-right: 11rem !important
	}

	.pb-xl-176,
	.py-xl-176 {
		padding-bottom: 11rem !important
	}

	.pl-xl-176,
	.px-xl-176 {
		padding-left: 11rem !important
	}

	.p-xl-177 {
		padding: 11.0625rem !important
	}

	.pt-xl-177,
	.py-xl-177 {
		padding-top: 11.0625rem !important
	}

	.pr-xl-177,
	.px-xl-177 {
		padding-right: 11.0625rem !important
	}

	.pb-xl-177,
	.py-xl-177 {
		padding-bottom: 11.0625rem !important
	}

	.pl-xl-177,
	.px-xl-177 {
		padding-left: 11.0625rem !important
	}

	.p-xl-178 {
		padding: 11.125rem !important
	}

	.pt-xl-178,
	.py-xl-178 {
		padding-top: 11.125rem !important
	}

	.pr-xl-178,
	.px-xl-178 {
		padding-right: 11.125rem !important
	}

	.pb-xl-178,
	.py-xl-178 {
		padding-bottom: 11.125rem !important
	}

	.pl-xl-178,
	.px-xl-178 {
		padding-left: 11.125rem !important
	}

	.p-xl-179 {
		padding: 11.1875rem !important
	}

	.pt-xl-179,
	.py-xl-179 {
		padding-top: 11.1875rem !important
	}

	.pr-xl-179,
	.px-xl-179 {
		padding-right: 11.1875rem !important
	}

	.pb-xl-179,
	.py-xl-179 {
		padding-bottom: 11.1875rem !important
	}

	.pl-xl-179,
	.px-xl-179 {
		padding-left: 11.1875rem !important
	}

	.p-xl-180 {
		padding: 11.25rem !important
	}

	.pt-xl-180,
	.py-xl-180 {
		padding-top: 11.25rem !important
	}

	.pr-xl-180,
	.px-xl-180 {
		padding-right: 11.25rem !important
	}

	.pb-xl-180,
	.py-xl-180 {
		padding-bottom: 11.25rem !important
	}

	.pl-xl-180,
	.px-xl-180 {
		padding-left: 11.25rem !important
	}

	.p-xl-181 {
		padding: 11.3125rem !important
	}

	.pt-xl-181,
	.py-xl-181 {
		padding-top: 11.3125rem !important
	}

	.pr-xl-181,
	.px-xl-181 {
		padding-right: 11.3125rem !important
	}

	.pb-xl-181,
	.py-xl-181 {
		padding-bottom: 11.3125rem !important
	}

	.pl-xl-181,
	.px-xl-181 {
		padding-left: 11.3125rem !important
	}

	.p-xl-182 {
		padding: 11.375rem !important
	}

	.pt-xl-182,
	.py-xl-182 {
		padding-top: 11.375rem !important
	}

	.pr-xl-182,
	.px-xl-182 {
		padding-right: 11.375rem !important
	}

	.pb-xl-182,
	.py-xl-182 {
		padding-bottom: 11.375rem !important
	}

	.pl-xl-182,
	.px-xl-182 {
		padding-left: 11.375rem !important
	}

	.p-xl-183 {
		padding: 11.4375rem !important
	}

	.pt-xl-183,
	.py-xl-183 {
		padding-top: 11.4375rem !important
	}

	.pr-xl-183,
	.px-xl-183 {
		padding-right: 11.4375rem !important
	}

	.pb-xl-183,
	.py-xl-183 {
		padding-bottom: 11.4375rem !important
	}

	.pl-xl-183,
	.px-xl-183 {
		padding-left: 11.4375rem !important
	}

	.p-xl-184 {
		padding: 11.5rem !important
	}

	.pt-xl-184,
	.py-xl-184 {
		padding-top: 11.5rem !important
	}

	.pr-xl-184,
	.px-xl-184 {
		padding-right: 11.5rem !important
	}

	.pb-xl-184,
	.py-xl-184 {
		padding-bottom: 11.5rem !important
	}

	.pl-xl-184,
	.px-xl-184 {
		padding-left: 11.5rem !important
	}

	.p-xl-185 {
		padding: 11.5625rem !important
	}

	.pt-xl-185,
	.py-xl-185 {
		padding-top: 11.5625rem !important
	}

	.pr-xl-185,
	.px-xl-185 {
		padding-right: 11.5625rem !important
	}

	.pb-xl-185,
	.py-xl-185 {
		padding-bottom: 11.5625rem !important
	}

	.pl-xl-185,
	.px-xl-185 {
		padding-left: 11.5625rem !important
	}

	.p-xl-186 {
		padding: 11.625rem !important
	}

	.pt-xl-186,
	.py-xl-186 {
		padding-top: 11.625rem !important
	}

	.pr-xl-186,
	.px-xl-186 {
		padding-right: 11.625rem !important
	}

	.pb-xl-186,
	.py-xl-186 {
		padding-bottom: 11.625rem !important
	}

	.pl-xl-186,
	.px-xl-186 {
		padding-left: 11.625rem !important
	}

	.p-xl-187 {
		padding: 11.6875rem !important
	}

	.pt-xl-187,
	.py-xl-187 {
		padding-top: 11.6875rem !important
	}

	.pr-xl-187,
	.px-xl-187 {
		padding-right: 11.6875rem !important
	}

	.pb-xl-187,
	.py-xl-187 {
		padding-bottom: 11.6875rem !important
	}

	.pl-xl-187,
	.px-xl-187 {
		padding-left: 11.6875rem !important
	}

	.p-xl-188 {
		padding: 11.75rem !important
	}

	.pt-xl-188,
	.py-xl-188 {
		padding-top: 11.75rem !important
	}

	.pr-xl-188,
	.px-xl-188 {
		padding-right: 11.75rem !important
	}

	.pb-xl-188,
	.py-xl-188 {
		padding-bottom: 11.75rem !important
	}

	.pl-xl-188,
	.px-xl-188 {
		padding-left: 11.75rem !important
	}

	.p-xl-189 {
		padding: 11.8125rem !important
	}

	.pt-xl-189,
	.py-xl-189 {
		padding-top: 11.8125rem !important
	}

	.pr-xl-189,
	.px-xl-189 {
		padding-right: 11.8125rem !important
	}

	.pb-xl-189,
	.py-xl-189 {
		padding-bottom: 11.8125rem !important
	}

	.pl-xl-189,
	.px-xl-189 {
		padding-left: 11.8125rem !important
	}

	.p-xl-190 {
		padding: 11.875rem !important
	}

	.pt-xl-190,
	.py-xl-190 {
		padding-top: 11.875rem !important
	}

	.pr-xl-190,
	.px-xl-190 {
		padding-right: 11.875rem !important
	}

	.pb-xl-190,
	.py-xl-190 {
		padding-bottom: 11.875rem !important
	}

	.pl-xl-190,
	.px-xl-190 {
		padding-left: 11.875rem !important
	}

	.p-xl-191 {
		padding: 11.9375rem !important
	}

	.pt-xl-191,
	.py-xl-191 {
		padding-top: 11.9375rem !important
	}

	.pr-xl-191,
	.px-xl-191 {
		padding-right: 11.9375rem !important
	}

	.pb-xl-191,
	.py-xl-191 {
		padding-bottom: 11.9375rem !important
	}

	.pl-xl-191,
	.px-xl-191 {
		padding-left: 11.9375rem !important
	}

	.p-xl-192 {
		padding: 12rem !important
	}

	.pt-xl-192,
	.py-xl-192 {
		padding-top: 12rem !important
	}

	.pr-xl-192,
	.px-xl-192 {
		padding-right: 12rem !important
	}

	.pb-xl-192,
	.py-xl-192 {
		padding-bottom: 12rem !important
	}

	.pl-xl-192,
	.px-xl-192 {
		padding-left: 12rem !important
	}

	.p-xl-193 {
		padding: 12.0625rem !important
	}

	.pt-xl-193,
	.py-xl-193 {
		padding-top: 12.0625rem !important
	}

	.pr-xl-193,
	.px-xl-193 {
		padding-right: 12.0625rem !important
	}

	.pb-xl-193,
	.py-xl-193 {
		padding-bottom: 12.0625rem !important
	}

	.pl-xl-193,
	.px-xl-193 {
		padding-left: 12.0625rem !important
	}

	.p-xl-194 {
		padding: 12.125rem !important
	}

	.pt-xl-194,
	.py-xl-194 {
		padding-top: 12.125rem !important
	}

	.pr-xl-194,
	.px-xl-194 {
		padding-right: 12.125rem !important
	}

	.pb-xl-194,
	.py-xl-194 {
		padding-bottom: 12.125rem !important
	}

	.pl-xl-194,
	.px-xl-194 {
		padding-left: 12.125rem !important
	}

	.p-xl-195 {
		padding: 12.1875rem !important
	}

	.pt-xl-195,
	.py-xl-195 {
		padding-top: 12.1875rem !important
	}

	.pr-xl-195,
	.px-xl-195 {
		padding-right: 12.1875rem !important
	}

	.pb-xl-195,
	.py-xl-195 {
		padding-bottom: 12.1875rem !important
	}

	.pl-xl-195,
	.px-xl-195 {
		padding-left: 12.1875rem !important
	}

	.p-xl-196 {
		padding: 12.25rem !important
	}

	.pt-xl-196,
	.py-xl-196 {
		padding-top: 12.25rem !important
	}

	.pr-xl-196,
	.px-xl-196 {
		padding-right: 12.25rem !important
	}

	.pb-xl-196,
	.py-xl-196 {
		padding-bottom: 12.25rem !important
	}

	.pl-xl-196,
	.px-xl-196 {
		padding-left: 12.25rem !important
	}

	.p-xl-197 {
		padding: 12.3125rem !important
	}

	.pt-xl-197,
	.py-xl-197 {
		padding-top: 12.3125rem !important
	}

	.pr-xl-197,
	.px-xl-197 {
		padding-right: 12.3125rem !important
	}

	.pb-xl-197,
	.py-xl-197 {
		padding-bottom: 12.3125rem !important
	}

	.pl-xl-197,
	.px-xl-197 {
		padding-left: 12.3125rem !important
	}

	.p-xl-198 {
		padding: 12.375rem !important
	}

	.pt-xl-198,
	.py-xl-198 {
		padding-top: 12.375rem !important
	}

	.pr-xl-198,
	.px-xl-198 {
		padding-right: 12.375rem !important
	}

	.pb-xl-198,
	.py-xl-198 {
		padding-bottom: 12.375rem !important
	}

	.pl-xl-198,
	.px-xl-198 {
		padding-left: 12.375rem !important
	}

	.p-xl-199 {
		padding: 12.4375rem !important
	}

	.pt-xl-199,
	.py-xl-199 {
		padding-top: 12.4375rem !important
	}

	.pr-xl-199,
	.px-xl-199 {
		padding-right: 12.4375rem !important
	}

	.pb-xl-199,
	.py-xl-199 {
		padding-bottom: 12.4375rem !important
	}

	.pl-xl-199,
	.px-xl-199 {
		padding-left: 12.4375rem !important
	}

	.p-xl-200 {
		padding: 12.5rem !important
	}

	.pt-xl-200,
	.py-xl-200 {
		padding-top: 12.5rem !important
	}

	.pr-xl-200,
	.px-xl-200 {
		padding-right: 12.5rem !important
	}

	.pb-xl-200,
	.py-xl-200 {
		padding-bottom: 12.5rem !important
	}

	.pl-xl-200,
	.px-xl-200 {
		padding-left: 12.5rem !important
	}

	.p-xl-auto {
		padding: auto !important
	}

	.pt-xl-auto,
	.py-xl-auto {
		padding-top: auto !important
	}

	.pr-xl-auto,
	.px-xl-auto {
		padding-right: auto !important
	}

	.pb-xl-auto,
	.py-xl-auto {
		padding-bottom: auto !important
	}

	.pl-xl-auto,
	.px-xl-auto {
		padding-left: auto !important
	}

	.m-xl-auto {
		margin: auto !important
	}

	.mt-xl-auto,
	.my-xl-auto {
		margin-top: auto !important
	}

	.mr-xl-auto,
	.mx-xl-auto {
		margin-right: auto !important
	}

	.mb-xl-auto,
	.my-xl-auto {
		margin-bottom: auto !important
	}

	.ml-xl-auto,
	.mx-xl-auto {
		margin-left: auto !important
	}
}

.text-monospace {
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace
}

.text-justify {
	text-align: justify !important
}

.text-nowrap {
	white-space: nowrap !important
}

.text-truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.text-left {
	text-align: left !important
}

.text-right {
	text-align: right !important
}

.text-center {
	text-align: center !important
}

@media (min-width:576px) {
	.text-sm-left {
		text-align: left !important
	}

	.text-sm-right {
		text-align: right !important
	}

	.text-sm-center {
		text-align: center !important
	}
}

@media (min-width:768px) {
	.text-md-left {
		text-align: left !important
	}

	.text-md-right {
		text-align: right !important
	}

	.text-md-center {
		text-align: center !important
	}
}

@media (min-width:992px) {
	.text-lg-left {
		text-align: left !important
	}

	.text-lg-right {
		text-align: right !important
	}

	.text-lg-center {
		text-align: center !important
	}
}

@media (min-width:1200px) {
	.text-xl-left {
		text-align: left !important
	}

	.text-xl-right {
		text-align: right !important
	}

	.text-xl-center {
		text-align: center !important
	}
}

.text-lowercase {
	text-transform: lowercase !important
}

.text-uppercase {
	text-transform: uppercase !important
}

.text-capitalize {
	text-transform: capitalize !important
}

.font-weight-light {
	font-weight: 300 !important
}

.font-weight-normal {
	font-weight: 400 !important
}

.font-weight-bold {
	font-weight: 700 !important
}

.font-italic {
	font-style: italic !important
}

.text-white {
	color: #fff !important
}

.text-primary {
	color: #3b7ae2 !important
}

a.text-primary:focus,
a.text-primary:hover {
	color: #1e60cc !important
}

.text-secondary {
	color: #6c757d !important
}

a.text-secondary:focus,
a.text-secondary:hover {
	color: #545b62 !important
}

.text-success {
	color: #1aae88 !important
}

a.text-success:focus,
a.text-success:hover {
	color: #138265 !important
}

.text-info {
	color: #1ccacc !important
}

a.text-info:focus,
a.text-info:hover {
	color: #169e9f !important
}

.text-warning {
	color: #4d8cbf !important
}

a.text-warning:focus,
a.text-warning:hover {
	color: #f8b704 !important
}

.text-danger {
	color: #e33244 !important
}

a.text-danger:focus,
a.text-danger:hover {
	color: #c71b2d !important
}

.text-light {
	color: #fcfcfd !important
}

a.text-light:focus,
a.text-light:hover {
	color: #dddde9 !important
}

.text-dark {
	color: #343a40 !important
}

a.text-dark:focus,
a.text-dark:hover {
	color: #1d2124 !important
}

.text-body {
	color: #5d6b8d !important
}

.text-muted {
	color: #6c757d !important
}

.text-black-50 {
	color: rgba(0, 0, 0, .5) !important
}

.text-white-50 {
	color: hsla(0, 0%, 100%, .5) !important
}

.text-hide {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0
}

.visible {
	visibility: visible !important
}

.invisible {
	visibility: hidden !important
}

@media print {

	*,
	:after,
	:before {
		text-shadow: none !important;
		-webkit-box-shadow: none !important;
		box-shadow: none !important
	}

	a:not(.btn) {
		text-decoration: underline
	}

	abbr[title]:after {
		content: " ("attr(title) ")"
	}

	pre {
		white-space: pre-wrap !important
	}

	blockquote,
	pre {
		border: 1px solid #adb5bd;
		page-break-inside: avoid
	}

	thead {
		display: table-header-group
	}

	img,
	tr {
		page-break-inside: avoid
	}

	h2,
	h3,
	p {
		orphans: 3;
		widows: 3
	}

	h2,
	h3 {
		page-break-after: avoid
	}

	@page {
		size: a3
	}

	.container,
	body {
		min-width: 992px !important
	}

	.navbar {
		display: none
	}

	.badge {
		border: 1px solid #000
	}

	.table {
		border-collapse: collapse !important
	}

	.table td,
	.table th {
		background-color: #fff !important
	}

	.table-bordered td,
	.table-bordered th {
		border: 1px solid #dee2e6 !important
	}

	.table-dark {
		color: inherit
	}

	.table-dark tbody + tbody,
	.table-dark td,
	.table-dark th,
	.table-dark thead th {
		border-color: #dee2e6
	}

	.table .thead-dark th {
		color: inherit;
		border-color: #dee2e6
	}
}

@font-face {
	font-family: Material Design Icons;
	src: url(//xassets.genuform.ai/mdi/materialdesignicons-webfont459b.eot?baf72e908503b83f0b60a1582229299b);
	src: url(//xassets.genuform.ai/mdi/materialdesignicons-webfont459b.eot?baf72e908503b83f0b60a1582229299b) format("embedded-opentype"), url(//xassets.genuform.ai/mdi/materialdesignicons-webfonta4c0.woff2?79077fa82906f5632c4b292bcc2425db) format("woff2"), url(//xassets.genuform.ai/mdi/materialdesignicons-webfont9956.woff?bd07767724ee3074f0b6f9c982599081) format("woff"), url(//xassets.genuform.ai/mdi/materialdesignicons-webfontde02.ttf?64b96825d49e070ea87c7100f2db3f46) format("truetype"), url(//xassets.genuform.ai/mdi/materialdesignicons-webfont8d7b.svg?68e728ec3b762076d44e39aed9335eaa) format("svg");
	font-weight: 400;
	font-style: normal
}

.mdi-set,
.mdi:before {
	display: inline-block;
	font: normal normal normal 24px/1 Material Design Icons;
	font-size: inherit;
	text-rendering: auto;
	line-height: inherit;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.mdi-access-point:before {
	content: "\F002"
}

.mdi-access-point-network:before {
	content: "\F003"
}

.mdi-account:before {
	content: "\F004"
}

.mdi-account-alert:before {
	content: "\F005"
}

.mdi-account-box:before {
	content: "\F006"
}

.mdi-account-box-multiple:before {
	content: "\F933"
}

.mdi-account-box-outline:before {
	content: "\F007"
}

.mdi-account-card-details:before {
	content: "\F5D2"
}

.mdi-account-check:before {
	content: "\F008"
}

.mdi-account-child:before {
	content: "\FA88"
}

.mdi-account-child-circle:before {
	content: "\FA89"
}

.mdi-account-circle:before {
	content: "\F009"
}

.mdi-account-convert:before {
	content: "\F00A"
}

.mdi-account-details:before {
	content: "\F631"
}

.mdi-account-edit:before {
	content: "\F6BB"
}

.mdi-account-group:before {
	content: "\F848"
}

.mdi-account-heart:before {
	content: "\F898"
}

.mdi-account-key:before {
	content: "\F00B"
}

.mdi-account-location:before {
	content: "\F00C"
}

.mdi-account-minus:before {
	content: "\F00D"
}

.mdi-account-multiple:before {
	content: "\F00E"
}

.mdi-account-multiple-check:before {
	content: "\F8C4"
}

.mdi-account-multiple-minus:before {
	content: "\F5D3"
}

.mdi-account-multiple-outline:before {
	content: "\F00F"
}

.mdi-account-multiple-plus:before {
	content: "\F010"
}

.mdi-account-multiple-plus-outline:before {
	content: "\F7FF"
}

.mdi-account-network:before {
	content: "\F011"
}

.mdi-account-off:before {
	content: "\F012"
}

.mdi-account-outline:before {
	content: "\F013"
}

.mdi-account-plus:before {
	content: "\F014"
}

.mdi-account-plus-outline:before {
	content: "\F800"
}

.mdi-account-remove:before {
	content: "\F015"
}

.mdi-account-search:before {
	content: "\F016"
}

.mdi-account-search-outline:before {
	content: "\F934"
}

.mdi-account-settings:before {
	content: "\F630"
}

.mdi-account-star:before {
	content: "\F017"
}

.mdi-account-supervisor:before {
	content: "\FA8A"
}

.mdi-account-supervisor-circle:before {
	content: "\FA8B"
}

.mdi-account-switch:before {
	content: "\F019"
}

.mdi-accusoft:before {
	content: "\F849"
}

.mdi-adjust:before {
	content: "\F01A"
}

.mdi-adobe:before {
	content: "\F935"
}

.mdi-air-conditioner:before {
	content: "\F01B"
}

.mdi-airballoon:before {
	content: "\F01C"
}

.mdi-airplane:before {
	content: "\F01D"
}

.mdi-airplane-landing:before {
	content: "\F5D4"
}

.mdi-airplane-off:before {
	content: "\F01E"
}

.mdi-airplane-takeoff:before {
	content: "\F5D5"
}

.mdi-airplay:before {
	content: "\F01F"
}

.mdi-airport:before {
	content: "\F84A"
}

.mdi-alarm:before {
	content: "\F020"
}

.mdi-alarm-bell:before {
	content: "\F78D"
}

.mdi-alarm-check:before {
	content: "\F021"
}

.mdi-alarm-light:before {
	content: "\F78E"
}

.mdi-alarm-multiple:before {
	content: "\F022"
}

.mdi-alarm-off:before {
	content: "\F023"
}

.mdi-alarm-plus:before {
	content: "\F024"
}

.mdi-alarm-snooze:before {
	content: "\F68D"
}

.mdi-album:before {
	content: "\F025"
}

.mdi-alert:before {
	content: "\F026"
}

.mdi-alert-box:before {
	content: "\F027"
}

.mdi-alert-circle:before {
	content: "\F028"
}

.mdi-alert-circle-outline:before {
	content: "\F5D6"
}

.mdi-alert-decagram:before {
	content: "\F6BC"
}

.mdi-alert-octagon:before {
	content: "\F029"
}

.mdi-alert-octagram:before {
	content: "\F766"
}

.mdi-alert-outline:before {
	content: "\F02A"
}

.mdi-alien:before {
	content: "\F899"
}

.mdi-all-inclusive:before {
	content: "\F6BD"
}

.mdi-alpha:before {
	content: "\F02B"
}

.mdi-alphabetical:before {
	content: "\F02C"
}

.mdi-altimeter:before {
	content: "\F5D7"
}

.mdi-amazon:before {
	content: "\F02D"
}

.mdi-amazon-alexa:before {
	content: "\F8C5"
}

.mdi-amazon-drive:before {
	content: "\F02E"
}

.mdi-ambulance:before {
	content: "\F02F"
}

.mdi-ampersand:before {
	content: "\FA8C"
}

.mdi-amplifier:before {
	content: "\F030"
}

.mdi-anchor:before {
	content: "\F031"
}

.mdi-android:before {
	content: "\F032"
}

.mdi-android-auto:before {
	content: "\FA8D"
}

.mdi-android-debug-bridge:before {
	content: "\F033"
}

.mdi-android-head:before {
	content: "\F78F"
}

.mdi-android-studio:before {
	content: "\F034"
}

.mdi-angle-acute:before {
	content: "\F936"
}

.mdi-angle-obtuse:before {
	content: "\F937"
}

.mdi-angle-right:before {
	content: "\F938"
}

.mdi-angular:before {
	content: "\F6B1"
}

.mdi-angularjs:before {
	content: "\F6BE"
}

.mdi-animation:before {
	content: "\F5D8"
}

.mdi-animation-outline:before {
	content: "\FA8E"
}

.mdi-animation-play:before {
	content: "\F939"
}

.mdi-animation-play-outline:before {
	content: "\FA8F"
}

.mdi-anvil:before {
	content: "\F89A"
}

.mdi-apple:before {
	content: "\F035"
}

.mdi-apple-finder:before {
	content: "\F036"
}

.mdi-apple-icloud:before {
	content: "\F038"
}

.mdi-apple-ios:before {
	content: "\F037"
}

.mdi-apple-keyboard-caps:before {
	content: "\F632"
}

.mdi-apple-keyboard-command:before {
	content: "\F633"
}

.mdi-apple-keyboard-control:before {
	content: "\F634"
}

.mdi-apple-keyboard-option:before {
	content: "\F635"
}

.mdi-apple-keyboard-shift:before {
	content: "\F636"
}

.mdi-apple-safari:before {
	content: "\F039"
}

.mdi-application:before {
	content: "\F614"
}

.mdi-apps:before {
	content: "\F03B"
}

.mdi-arch:before {
	content: "\F8C6"
}

.mdi-archive:before {
	content: "\F03C"
}

.mdi-arrange-bring-forward:before {
	content: "\F03D"
}

.mdi-arrange-bring-to-front:before {
	content: "\F03E"
}

.mdi-arrange-send-backward:before {
	content: "\F03F"
}

.mdi-arrange-send-to-back:before {
	content: "\F040"
}

.mdi-arrow-all:before {
	content: "\F041"
}

.mdi-arrow-bottom-left:before {
	content: "\F042"
}

.mdi-arrow-bottom-left-bold-outline:before {
	content: "\F9B6"
}

.mdi-arrow-bottom-left-thick:before {
	content: "\F9B7"
}

.mdi-arrow-bottom-right:before {
	content: "\F043"
}

.mdi-arrow-bottom-right-bold-outline:before {
	content: "\F9B8"
}

.mdi-arrow-bottom-right-thick:before {
	content: "\F9B9"
}

.mdi-arrow-collapse:before {
	content: "\F615"
}

.mdi-arrow-collapse-all:before {
	content: "\F044"
}

.mdi-arrow-collapse-down:before {
	content: "\F791"
}

.mdi-arrow-collapse-horizontal:before {
	content: "\F84B"
}

.mdi-arrow-collapse-left:before {
	content: "\F792"
}

.mdi-arrow-collapse-right:before {
	content: "\F793"
}

.mdi-arrow-collapse-up:before {
	content: "\F794"
}

.mdi-arrow-collapse-vertical:before {
	content: "\F84C"
}

.mdi-arrow-decision:before {
	content: "\F9BA"
}

.mdi-arrow-decision-auto:before {
	content: "\F9BB"
}

.mdi-arrow-decision-auto-outline:before {
	content: "\F9BC"
}

.mdi-arrow-decision-outline:before {
	content: "\F9BD"
}

.mdi-arrow-down:before {
	content: "\F045"
}

.mdi-arrow-down-bold:before {
	content: "\F72D"
}

.mdi-arrow-down-bold-box:before {
	content: "\F72E"
}

.mdi-arrow-down-bold-box-outline:before {
	content: "\F72F"
}

.mdi-arrow-down-bold-circle:before {
	content: "\F047"
}

.mdi-arrow-down-bold-circle-outline:before {
	content: "\F048"
}

.mdi-arrow-down-bold-hexagon-outline:before {
	content: "\F049"
}

.mdi-arrow-down-bold-outline:before {
	content: "\F9BE"
}

.mdi-arrow-down-box:before {
	content: "\F6BF"
}

.mdi-arrow-down-drop-circle:before {
	content: "\F04A"
}

.mdi-arrow-down-drop-circle-outline:before {
	content: "\F04B"
}

.mdi-arrow-down-thick:before {
	content: "\F046"
}

.mdi-arrow-expand:before {
	content: "\F616"
}

.mdi-arrow-expand-all:before {
	content: "\F04C"
}

.mdi-arrow-expand-down:before {
	content: "\F795"
}

.mdi-arrow-expand-horizontal:before {
	content: "\F84D"
}

.mdi-arrow-expand-left:before {
	content: "\F796"
}

.mdi-arrow-expand-right:before {
	content: "\F797"
}

.mdi-arrow-expand-up:before {
	content: "\F798"
}

.mdi-arrow-expand-vertical:before {
	content: "\F84E"
}

.mdi-arrow-left:before {
	content: "\F04D"
}

.mdi-arrow-left-bold:before {
	content: "\F730"
}

.mdi-arrow-left-bold-box:before {
	content: "\F731"
}

.mdi-arrow-left-bold-box-outline:before {
	content: "\F732"
}

.mdi-arrow-left-bold-circle:before {
	content: "\F04F"
}

.mdi-arrow-left-bold-circle-outline:before {
	content: "\F050"
}

.mdi-arrow-left-bold-hexagon-outline:before {
	content: "\F051"
}

.mdi-arrow-left-bold-outline:before {
	content: "\F9BF"
}

.mdi-arrow-left-box:before {
	content: "\F6C0"
}

.mdi-arrow-left-drop-circle:before {
	content: "\F052"
}

.mdi-arrow-left-drop-circle-outline:before {
	content: "\F053"
}

.mdi-arrow-left-right-bold-outline:before {
	content: "\F9C0"
}

.mdi-arrow-left-thick:before {
	content: "\F04E"
}

.mdi-arrow-right:before {
	content: "\F054"
}

.mdi-arrow-right-bold:before {
	content: "\F733"
}

.mdi-arrow-right-bold-box:before {
	content: "\F734"
}

.mdi-arrow-right-bold-box-outline:before {
	content: "\F735"
}

.mdi-arrow-right-bold-circle:before {
	content: "\F056"
}

.mdi-arrow-right-bold-circle-outline:before {
	content: "\F057"
}

.mdi-arrow-right-bold-hexagon-outline:before {
	content: "\F058"
}

.mdi-arrow-right-bold-outline:before {
	content: "\F9C1"
}

.mdi-arrow-right-box:before {
	content: "\F6C1"
}

.mdi-arrow-right-drop-circle:before {
	content: "\F059"
}

.mdi-arrow-right-drop-circle-outline:before {
	content: "\F05A"
}

.mdi-arrow-right-thick:before {
	content: "\F055"
}

.mdi-arrow-split-horizontal:before {
	content: "\F93A"
}

.mdi-arrow-split-vertical:before {
	content: "\F93B"
}

.mdi-arrow-top-left:before {
	content: "\F05B"
}

.mdi-arrow-top-left-bold-outline:before {
	content: "\F9C2"
}

.mdi-arrow-top-left-thick:before {
	content: "\F9C3"
}

.mdi-arrow-top-right:before {
	content: "\F05C"
}

.mdi-arrow-top-right-bold-outline:before {
	content: "\F9C4"
}

.mdi-arrow-top-right-thick:before {
	content: "\F9C5"
}

.mdi-arrow-up:before {
	content: "\F05D"
}

.mdi-arrow-up-bold:before {
	content: "\F736"
}

.mdi-arrow-up-bold-box:before {
	content: "\F737"
}

.mdi-arrow-up-bold-box-outline:before {
	content: "\F738"
}

.mdi-arrow-up-bold-circle:before {
	content: "\F05F"
}

.mdi-arrow-up-bold-circle-outline:before {
	content: "\F060"
}

.mdi-arrow-up-bold-hexagon-outline:before {
	content: "\F061"
}

.mdi-arrow-up-bold-outline:before {
	content: "\F9C6"
}

.mdi-arrow-up-box:before {
	content: "\F6C2"
}

.mdi-arrow-up-down-bold-outline:before {
	content: "\F9C7"
}

.mdi-arrow-up-drop-circle:before {
	content: "\F062"
}

.mdi-arrow-up-drop-circle-outline:before {
	content: "\F063"
}

.mdi-arrow-up-thick:before {
	content: "\F05E"
}

.mdi-artist:before {
	content: "\F802"
}

.mdi-aspect-ratio:before {
	content: "\FA23"
}

.mdi-assistant:before {
	content: "\F064"
}

.mdi-asterisk:before {
	content: "\F6C3"
}

.mdi-at:before {
	content: "\F065"
}

.mdi-atlassian:before {
	content: "\F803"
}

.mdi-atom:before {
	content: "\F767"
}

.mdi-attachment:before {
	content: "\F066"
}

.mdi-audio-video:before {
	content: "\F93C"
}

.mdi-audiobook:before {
	content: "\F067"
}

.mdi-augmented-reality:before {
	content: "\F84F"
}

.mdi-auto-fix:before {
	content: "\F068"
}

.mdi-auto-upload:before {
	content: "\F069"
}

.mdi-autorenew:before {
	content: "\F06A"
}

.mdi-av-timer:before {
	content: "\F06B"
}

.mdi-axe:before {
	content: "\F8C7"
}

.mdi-azure:before {
	content: "\F804"
}

.mdi-babel:before {
	content: "\FA24"
}

.mdi-baby:before {
	content: "\F06C"
}

.mdi-baby-buggy:before {
	content: "\F68E"
}

.mdi-backburger:before {
	content: "\F06D"
}

.mdi-backspace:before {
	content: "\F06E"
}

.mdi-backup-restore:before {
	content: "\F06F"
}

.mdi-badminton:before {
	content: "\F850"
}

.mdi-balloon:before {
	content: "\FA25"
}

.mdi-ballot:before {
	content: "\F9C8"
}

.mdi-ballot-outline:before {
	content: "\F9C9"
}

.mdi-bandcamp:before {
	content: "\F674"
}

.mdi-bank:before {
	content: "\F070"
}

.mdi-bank-transfer:before {
	content: "\FA26"
}

.mdi-bank-transfer-in:before {
	content: "\FA27"
}

.mdi-bank-transfer-out:before {
	content: "\FA28"
}

.mdi-barcode:before {
	content: "\F071"
}

.mdi-barcode-scan:before {
	content: "\F072"
}

.mdi-barley:before {
	content: "\F073"
}

.mdi-barrel:before {
	content: "\F074"
}

.mdi-baseball:before {
	content: "\F851"
}

.mdi-baseball-bat:before {
	content: "\F852"
}

.mdi-basecamp:before {
	content: "\F075"
}

.mdi-basket:before {
	content: "\F076"
}

.mdi-basket-fill:before {
	content: "\F077"
}

.mdi-basket-unfill:before {
	content: "\F078"
}

.mdi-basketball:before {
	content: "\F805"
}

.mdi-battery:before {
	content: "\F079"
}

.mdi-battery-10:before {
	content: "\F07A"
}

.mdi-battery-10-bluetooth:before {
	content: "\F93D"
}

.mdi-battery-20:before {
	content: "\F07B"
}

.mdi-battery-20-bluetooth:before {
	content: "\F93E"
}

.mdi-battery-30:before {
	content: "\F07C"
}

.mdi-battery-30-bluetooth:before {
	content: "\F93F"
}

.mdi-battery-40:before {
	content: "\F07D"
}

.mdi-battery-40-bluetooth:before {
	content: "\F940"
}

.mdi-battery-50:before {
	content: "\F07E"
}

.mdi-battery-50-bluetooth:before {
	content: "\F941"
}

.mdi-battery-60:before {
	content: "\F07F"
}

.mdi-battery-60-bluetooth:before {
	content: "\F942"
}

.mdi-battery-70:before {
	content: "\F080"
}

.mdi-battery-70-bluetooth:before {
	content: "\F943"
}

.mdi-battery-80:before {
	content: "\F081"
}

.mdi-battery-80-bluetooth:before {
	content: "\F944"
}

.mdi-battery-90:before {
	content: "\F082"
}

.mdi-battery-90-bluetooth:before {
	content: "\F945"
}

.mdi-battery-alert:before {
	content: "\F083"
}

.mdi-battery-alert-bluetooth:before {
	content: "\F946"
}

.mdi-battery-bluetooth:before {
	content: "\F947"
}

.mdi-battery-bluetooth-variant:before {
	content: "\F948"
}

.mdi-battery-charging:before {
	content: "\F084"
}

.mdi-battery-charging-10:before {
	content: "\F89B"
}

.mdi-battery-charging-100:before {
	content: "\F085"
}

.mdi-battery-charging-20:before {
	content: "\F086"
}

.mdi-battery-charging-30:before {
	content: "\F087"
}

.mdi-battery-charging-40:before {
	content: "\F088"
}

.mdi-battery-charging-50:before {
	content: "\F89C"
}

.mdi-battery-charging-60:before {
	content: "\F089"
}

.mdi-battery-charging-70:before {
	content: "\F89D"
}

.mdi-battery-charging-80:before {
	content: "\F08A"
}

.mdi-battery-charging-90:before {
	content: "\F08B"
}

.mdi-battery-charging-outline:before {
	content: "\F89E"
}

.mdi-battery-charging-wireless:before {
	content: "\F806"
}

.mdi-battery-charging-wireless-10:before {
	content: "\F807"
}

.mdi-battery-charging-wireless-20:before {
	content: "\F808"
}

.mdi-battery-charging-wireless-30:before {
	content: "\F809"
}

.mdi-battery-charging-wireless-40:before {
	content: "\F80A"
}

.mdi-battery-charging-wireless-50:before {
	content: "\F80B"
}

.mdi-battery-charging-wireless-60:before {
	content: "\F80C"
}

.mdi-battery-charging-wireless-70:before {
	content: "\F80D"
}

.mdi-battery-charging-wireless-80:before {
	content: "\F80E"
}

.mdi-battery-charging-wireless-90:before {
	content: "\F80F"
}

.mdi-battery-charging-wireless-alert:before {
	content: "\F810"
}

.mdi-battery-charging-wireless-outline:before {
	content: "\F811"
}

.mdi-battery-minus:before {
	content: "\F08C"
}

.mdi-battery-negative:before {
	content: "\F08D"
}

.mdi-battery-outline:before {
	content: "\F08E"
}

.mdi-battery-plus:before {
	content: "\F08F"
}

.mdi-battery-positive:before {
	content: "\F090"
}

.mdi-battery-unknown:before {
	content: "\F091"
}

.mdi-battery-unknown-bluetooth:before {
	content: "\F949"
}

.mdi-beach:before {
	content: "\F092"
}

.mdi-beaker:before {
	content: "\F68F"
}

.mdi-beats:before {
	content: "\F097"
}

.mdi-bed-empty:before {
	content: "\F89F"
}

.mdi-beer:before {
	content: "\F098"
}

.mdi-behance:before {
	content: "\F099"
}

.mdi-bell:before {
	content: "\F09A"
}

.mdi-bell-off:before {
	content: "\F09B"
}

.mdi-bell-off-outline:before {
	content: "\FA90"
}

.mdi-bell-outline:before {
	content: "\F09C"
}

.mdi-bell-plus:before {
	content: "\F09D"
}

.mdi-bell-plus-outline:before {
	content: "\FA91"
}

.mdi-bell-ring:before {
	content: "\F09E"
}

.mdi-bell-ring-outline:before {
	content: "\F09F"
}

.mdi-bell-sleep:before {
	content: "\F0A0"
}

.mdi-bell-sleep-outline:before {
	content: "\FA92"
}

.mdi-beta:before {
	content: "\F0A1"
}

.mdi-betamax:before {
	content: "\F9CA"
}

.mdi-bible:before {
	content: "\F0A2"
}

.mdi-bike:before {
	content: "\F0A3"
}

.mdi-bing:before {
	content: "\F0A4"
}

.mdi-binoculars:before {
	content: "\F0A5"
}

.mdi-bio:before {
	content: "\F0A6"
}

.mdi-biohazard:before {
	content: "\F0A7"
}

.mdi-bitbucket:before {
	content: "\F0A8"
}

.mdi-bitcoin:before {
	content: "\F812"
}

.mdi-black-mesa:before {
	content: "\F0A9"
}

.mdi-blackberry:before {
	content: "\F0AA"
}

.mdi-blender:before {
	content: "\F0AB"
}

.mdi-blinds:before {
	content: "\F0AC"
}

.mdi-block-helper:before {
	content: "\F0AD"
}

.mdi-blogger:before {
	content: "\F0AE"
}

.mdi-bluetooth:before {
	content: "\F0AF"
}

.mdi-bluetooth-audio:before {
	content: "\F0B0"
}

.mdi-bluetooth-connect:before {
	content: "\F0B1"
}

.mdi-bluetooth-off:before {
	content: "\F0B2"
}

.mdi-bluetooth-settings:before {
	content: "\F0B3"
}

.mdi-bluetooth-transfer:before {
	content: "\F0B4"
}

.mdi-blur:before {
	content: "\F0B5"
}

.mdi-blur-linear:before {
	content: "\F0B6"
}

.mdi-blur-off:before {
	content: "\F0B7"
}

.mdi-blur-radial:before {
	content: "\F0B8"
}

.mdi-bomb:before {
	content: "\F690"
}

.mdi-bomb-off:before {
	content: "\F6C4"
}

.mdi-bone:before {
	content: "\F0B9"
}

.mdi-book:before {
	content: "\F0BA"
}

.mdi-book-lock:before {
	content: "\F799"
}

.mdi-book-lock-open:before {
	content: "\F79A"
}

.mdi-book-minus:before {
	content: "\F5D9"
}

.mdi-book-multiple:before {
	content: "\F0BB"
}

.mdi-book-multiple-minus:before {
	content: "\FA93"
}

.mdi-book-multiple-plus:before {
	content: "\FA94"
}

.mdi-book-multiple-remove:before {
	content: "\FA95"
}

.mdi-book-multiple-variant:before {
	content: "\F0BC"
}

.mdi-book-open:before {
	content: "\F0BD"
}

.mdi-book-open-page-variant:before {
	content: "\F5DA"
}

.mdi-book-open-variant:before {
	content: "\F0BE"
}

.mdi-book-plus:before {
	content: "\F5DB"
}

.mdi-book-remove:before {
	content: "\FA96"
}

.mdi-book-variant:before {
	content: "\F0BF"
}

.mdi-bookmark:before {
	content: "\F0C0"
}

.mdi-bookmark-check:before {
	content: "\F0C1"
}

.mdi-bookmark-minus:before {
	content: "\F9CB"
}

.mdi-bookmark-minus-outline:before {
	content: "\F9CC"
}

.mdi-bookmark-music:before {
	content: "\F0C2"
}

.mdi-bookmark-off:before {
	content: "\F9CD"
}

.mdi-bookmark-off-outline:before {
	content: "\F9CE"
}

.mdi-bookmark-outline:before {
	content: "\F0C3"
}

.mdi-bookmark-plus:before {
	content: "\F0C5"
}

.mdi-bookmark-plus-outline:before {
	content: "\F0C4"
}

.mdi-bookmark-remove:before {
	content: "\F0C6"
}

.mdi-boombox:before {
	content: "\F5DC"
}

.mdi-bootstrap:before {
	content: "\F6C5"
}

.mdi-border-all:before {
	content: "\F0C7"
}

.mdi-border-all-variant:before {
	content: "\F8A0"
}

.mdi-border-bottom:before {
	content: "\F0C8"
}

.mdi-border-bottom-variant:before {
	content: "\F8A1"
}

.mdi-border-color:before {
	content: "\F0C9"
}

.mdi-border-horizontal:before {
	content: "\F0CA"
}

.mdi-border-inside:before {
	content: "\F0CB"
}

.mdi-border-left:before {
	content: "\F0CC"
}

.mdi-border-left-variant:before {
	content: "\F8A2"
}

.mdi-border-none:before {
	content: "\F0CD"
}

.mdi-border-none-variant:before {
	content: "\F8A3"
}

.mdi-border-outside:before {
	content: "\F0CE"
}

.mdi-border-right:before {
	content: "\F0CF"
}

.mdi-border-right-variant:before {
	content: "\F8A4"
}

.mdi-border-style:before {
	content: "\F0D0"
}

.mdi-border-top:before {
	content: "\F0D1"
}

.mdi-border-top-variant:before {
	content: "\F8A5"
}

.mdi-border-vertical:before {
	content: "\F0D2"
}

.mdi-bottle-wine:before {
	content: "\F853"
}

.mdi-bow-tie:before {
	content: "\F677"
}

.mdi-bowl:before {
	content: "\F617"
}

.mdi-bowling:before {
	content: "\F0D3"
}

.mdi-box:before {
	content: "\F0D4"
}

.mdi-box-cutter:before {
	content: "\F0D5"
}

.mdi-box-shadow:before {
	content: "\F637"
}

.mdi-braille:before {
	content: "\F9CF"
}

.mdi-brain:before {
	content: "\F9D0"
}

.mdi-bridge:before {
	content: "\F618"
}

.mdi-briefcase:before {
	content: "\F0D6"
}

.mdi-briefcase-check:before {
	content: "\F0D7"
}

.mdi-briefcase-download:before {
	content: "\F0D8"
}

.mdi-briefcase-edit:before {
	content: "\FA97"
}

.mdi-briefcase-minus:before {
	content: "\FA29"
}

.mdi-briefcase-outline:before {
	content: "\F813"
}

.mdi-briefcase-plus:before {
	content: "\FA2A"
}

.mdi-briefcase-remove:before {
	content: "\FA2B"
}

.mdi-briefcase-search:before {
	content: "\FA2C"
}

.mdi-briefcase-upload:before {
	content: "\F0D9"
}

.mdi-brightness-1:before {
	content: "\F0DA"
}

.mdi-brightness-2:before {
	content: "\F0DB"
}

.mdi-brightness-3:before {
	content: "\F0DC"
}

.mdi-brightness-4:before {
	content: "\F0DD"
}

.mdi-brightness-5:before {
	content: "\F0DE"
}

.mdi-brightness-6:before {
	content: "\F0DF"
}

.mdi-brightness-7:before {
	content: "\F0E0"
}

.mdi-brightness-auto:before {
	content: "\F0E1"
}

.mdi-broom:before {
	content: "\F0E2"
}

.mdi-brush:before {
	content: "\F0E3"
}

.mdi-buddhism:before {
	content: "\F94A"
}

.mdi-buffer:before {
	content: "\F619"
}

.mdi-bug:before {
	content: "\F0E4"
}

.mdi-bug-check:before {
	content: "\FA2D"
}

.mdi-bug-check-outline:before {
	content: "\FA2E"
}

.mdi-bug-outline:before {
	content: "\FA2F"
}

.mdi-bulletin-board:before {
	content: "\F0E5"
}

.mdi-bullhorn:before {
	content: "\F0E6"
}

.mdi-bullseye:before {
	content: "\F5DD"
}

.mdi-bullseye-arrow:before {
	content: "\F8C8"
}

.mdi-bus:before {
	content: "\F0E7"
}

.mdi-bus-alert:before {
	content: "\FA98"
}

.mdi-bus-articulated-end:before {
	content: "\F79B"
}

.mdi-bus-articulated-front:before {
	content: "\F79C"
}

.mdi-bus-clock:before {
	content: "\F8C9"
}

.mdi-bus-double-decker:before {
	content: "\F79D"
}

.mdi-bus-school:before {
	content: "\F79E"
}

.mdi-bus-side:before {
	content: "\F79F"
}

.mdi-cached:before {
	content: "\F0E8"
}

.mdi-cake:before {
	content: "\F0E9"
}

.mdi-cake-layered:before {
	content: "\F0EA"
}

.mdi-cake-variant:before {
	content: "\F0EB"
}

.mdi-calculator:before {
	content: "\F0EC"
}

.mdi-calculator-variant:before {
	content: "\FA99"
}

.mdi-calendar:before {
	content: "\F0ED"
}

.mdi-calendar-alert:before {
	content: "\FA30"
}

.mdi-calendar-blank:before {
	content: "\F0EE"
}

.mdi-calendar-check:before {
	content: "\F0EF"
}

.mdi-calendar-clock:before {
	content: "\F0F0"
}

.mdi-calendar-edit:before {
	content: "\F8A6"
}

.mdi-calendar-heart:before {
	content: "\F9D1"
}

.mdi-calendar-multiple:before {
	content: "\F0F1"
}

.mdi-calendar-multiple-check:before {
	content: "\F0F2"
}

.mdi-calendar-multiselect:before {
	content: "\FA31"
}

.mdi-calendar-plus:before {
	content: "\F0F3"
}

.mdi-calendar-question:before {
	content: "\F691"
}

.mdi-calendar-range:before {
	content: "\F678"
}

.mdi-calendar-remove:before {
	content: "\F0F4"
}

.mdi-calendar-search:before {
	content: "\F94B"
}

.mdi-calendar-star:before {
	content: "\F9D2"
}

.mdi-calendar-text:before {
	content: "\F0F5"
}

.mdi-calendar-today:before {
	content: "\F0F6"
}

.mdi-calendar-week:before {
	content: "\FA32"
}

.mdi-calendar-week-begin:before {
	content: "\FA33"
}

.mdi-call-made:before {
	content: "\F0F7"
}

.mdi-call-merge:before {
	content: "\F0F8"
}

.mdi-call-missed:before {
	content: "\F0F9"
}

.mdi-call-received:before {
	content: "\F0FA"
}

.mdi-call-split:before {
	content: "\F0FB"
}

.mdi-camcorder:before {
	content: "\F0FC"
}

.mdi-camcorder-box:before {
	content: "\F0FD"
}

.mdi-camcorder-box-off:before {
	content: "\F0FE"
}

.mdi-camcorder-off:before {
	content: "\F0FF"
}

.mdi-camera:before {
	content: "\F100"
}

.mdi-camera-account:before {
	content: "\F8CA"
}

.mdi-camera-burst:before {
	content: "\F692"
}

.mdi-camera-enhance:before {
	content: "\F101"
}

.mdi-camera-front:before {
	content: "\F102"
}

.mdi-camera-front-variant:before {
	content: "\F103"
}

.mdi-camera-gopro:before {
	content: "\F7A0"
}

.mdi-camera-image:before {
	content: "\F8CB"
}

.mdi-camera-iris:before {
	content: "\F104"
}

.mdi-camera-metering-center:before {
	content: "\F7A1"
}

.mdi-camera-metering-matrix:before {
	content: "\F7A2"
}

.mdi-camera-metering-partial:before {
	content: "\F7A3"
}

.mdi-camera-metering-spot:before {
	content: "\F7A4"
}

.mdi-camera-off:before {
	content: "\F5DF"
}

.mdi-camera-party-mode:before {
	content: "\F105"
}

.mdi-camera-rear:before {
	content: "\F106"
}

.mdi-camera-rear-variant:before {
	content: "\F107"
}

.mdi-camera-switch:before {
	content: "\F108"
}

.mdi-camera-timer:before {
	content: "\F109"
}

.mdi-cancel:before {
	content: "\F739"
}

.mdi-candle:before {
	content: "\F5E2"
}

.mdi-candycane:before {
	content: "\F10A"
}

.mdi-cannabis:before {
	content: "\F7A5"
}

.mdi-caps-lock:before {
	content: "\FA9A"
}

.mdi-car:before {
	content: "\F10B"
}

.mdi-car-battery:before {
	content: "\F10C"
}

.mdi-car-connected:before {
	content: "\F10D"
}

.mdi-car-convertible:before {
	content: "\F7A6"
}

.mdi-car-estate:before {
	content: "\F7A7"
}

.mdi-car-hatchback:before {
	content: "\F7A8"
}

.mdi-car-limousine:before {
	content: "\F8CC"
}

.mdi-car-pickup:before {
	content: "\F7A9"
}

.mdi-car-side:before {
	content: "\F7AA"
}

.mdi-car-sports:before {
	content: "\F7AB"
}

.mdi-car-wash:before {
	content: "\F10E"
}

.mdi-caravan:before {
	content: "\F7AC"
}

.mdi-cards:before {
	content: "\F638"
}

.mdi-cards-club:before {
	content: "\F8CD"
}

.mdi-cards-diamond:before {
	content: "\F8CE"
}

.mdi-cards-heart:before {
	content: "\F8CF"
}

.mdi-cards-outline:before {
	content: "\F639"
}

.mdi-cards-playing-outline:before {
	content: "\F63A"
}

.mdi-cards-spade:before {
	content: "\F8D0"
}

.mdi-cards-variant:before {
	content: "\F6C6"
}

.mdi-carrot:before {
	content: "\F10F"
}

.mdi-cart:before {
	content: "\F110"
}

.mdi-cart-off:before {
	content: "\F66B"
}

.mdi-cart-outline:before {
	content: "\F111"
}

.mdi-cart-plus:before {
	content: "\F112"
}

.mdi-case-sensitive-alt:before {
	content: "\F113"
}

.mdi-cash:before {
	content: "\F114"
}

.mdi-cash-100:before {
	content: "\F115"
}

.mdi-cash-multiple:before {
	content: "\F116"
}

.mdi-cash-refund:before {
	content: "\FA9B"
}

.mdi-cash-usd:before {
	content: "\F117"
}

.mdi-cassette:before {
	content: "\F9D3"
}

.mdi-cast:before {
	content: "\F118"
}

.mdi-cast-connected:before {
	content: "\F119"
}

.mdi-cast-off:before {
	content: "\F789"
}

.mdi-castle:before {
	content: "\F11A"
}

.mdi-cat:before {
	content: "\F11B"
}

.mdi-cctv:before {
	content: "\F7AD"
}

.mdi-ceiling-light:before {
	content: "\F768"
}

.mdi-cellphone:before {
	content: "\F11C"
}

.mdi-cellphone-android:before {
	content: "\F11D"
}

.mdi-cellphone-arrow-down:before {
	content: "\F9D4"
}

.mdi-cellphone-basic:before {
	content: "\F11E"
}

.mdi-cellphone-dock:before {
	content: "\F11F"
}

.mdi-cellphone-erase:before {
	content: "\F94C"
}

.mdi-cellphone-iphone:before {
	content: "\F120"
}

.mdi-cellphone-key:before {
	content: "\F94D"
}

.mdi-cellphone-link:before {
	content: "\F121"
}

.mdi-cellphone-link-off:before {
	content: "\F122"
}

.mdi-cellphone-lock:before {
	content: "\F94E"
}

.mdi-cellphone-message:before {
	content: "\F8D2"
}

.mdi-cellphone-off:before {
	content: "\F94F"
}

.mdi-cellphone-screenshot:before {
	content: "\FA34"
}

.mdi-cellphone-settings:before {
	content: "\F123"
}

.mdi-cellphone-settings-variant:before {
	content: "\F950"
}

.mdi-cellphone-sound:before {
	content: "\F951"
}

.mdi-cellphone-text:before {
	content: "\F8D1"
}

.mdi-cellphone-wireless:before {
	content: "\F814"
}

.mdi-certificate:before {
	content: "\F124"
}

.mdi-chair-school:before {
	content: "\F125"
}

.mdi-chart-arc:before {
	content: "\F126"
}

.mdi-chart-areaspline:before {
	content: "\F127"
}

.mdi-chart-bar:before {
	content: "\F128"
}

.mdi-chart-bar-stacked:before {
	content: "\F769"
}

.mdi-chart-bubble:before {
	content: "\F5E3"
}

.mdi-chart-donut:before {
	content: "\F7AE"
}

.mdi-chart-donut-variant:before {
	content: "\F7AF"
}

.mdi-chart-gantt:before {
	content: "\F66C"
}

.mdi-chart-histogram:before {
	content: "\F129"
}

.mdi-chart-line:before {
	content: "\F12A"
}

.mdi-chart-line-stacked:before {
	content: "\F76A"
}

.mdi-chart-line-variant:before {
	content: "\F7B0"
}

.mdi-chart-multiline:before {
	content: "\F8D3"
}

.mdi-chart-pie:before {
	content: "\F12B"
}

.mdi-chart-scatterplot-hexbin:before {
	content: "\F66D"
}

.mdi-chart-timeline:before {
	content: "\F66E"
}

.mdi-check:before {
	content: "\F12C"
}

.mdi-check-all:before {
	content: "\F12D"
}

.mdi-check-circle:before {
	content: "\F5E0"
}

.mdi-check-circle-outline:before {
	content: "\F5E1"
}

.mdi-check-decagram:before {
	content: "\F790"
}

.mdi-check-outline:before {
	content: "\F854"
}

.mdi-checkbook:before {
	content: "\FA9C"
}

.mdi-checkbox-blank:before {
	content: "\F12E"
}

.mdi-checkbox-blank-circle:before {
	content: "\F12F"
}

.mdi-checkbox-blank-circle-outline:before {
	content: "\F130"
}

.mdi-checkbox-blank-outline:before {
	content: "\F131"
}

.mdi-checkbox-intermediate:before {
	content: "\F855"
}

.mdi-checkbox-marked:before {
	content: "\F132"
}

.mdi-checkbox-marked-circle:before {
	content: "\F133"
}

.mdi-checkbox-marked-circle-outline:before {
	content: "\F134"
}

.mdi-checkbox-marked-outline:before {
	content: "\F135"
}

.mdi-checkbox-multiple-blank:before {
	content: "\F136"
}

.mdi-checkbox-multiple-blank-circle:before {
	content: "\F63B"
}

.mdi-checkbox-multiple-blank-circle-outline:before {
	content: "\F63C"
}

.mdi-checkbox-multiple-blank-outline:before {
	content: "\F137"
}

.mdi-checkbox-multiple-marked:before {
	content: "\F138"
}

.mdi-checkbox-multiple-marked-circle:before {
	content: "\F63D"
}

.mdi-checkbox-multiple-marked-circle-outline:before {
	content: "\F63E"
}

.mdi-checkbox-multiple-marked-outline:before {
	content: "\F139"
}

.mdi-checkerboard:before {
	content: "\F13A"
}

.mdi-chemical-weapon:before {
	content: "\F13B"
}

.mdi-chess-bishop:before {
	content: "\F85B"
}

.mdi-chess-king:before {
	content: "\F856"
}

.mdi-chess-knight:before {
	content: "\F857"
}

.mdi-chess-pawn:before {
	content: "\F858"
}

.mdi-chess-queen:before {
	content: "\F859"
}

.mdi-chess-rook:before {
	content: "\F85A"
}

.mdi-chevron-double-down:before {
	content: "\F13C"
}

.mdi-chevron-double-left:before {
	content: "\F13D"
}

.mdi-chevron-double-right:before {
	content: "\F13E"
}

.mdi-chevron-double-up:before {
	content: "\F13F"
}

.mdi-chevron-down:before {
	content: "\F140"
}

.mdi-chevron-down-box:before {
	content: "\F9D5"
}

.mdi-chevron-down-box-outline:before {
	content: "\F9D6"
}

.mdi-chevron-left:before {
	content: "\F141"
}

.mdi-chevron-left-box:before {
	content: "\F9D7"
}

.mdi-chevron-left-box-outline:before {
	content: "\F9D8"
}

.mdi-chevron-right:before {
	content: "\F142"
}

.mdi-chevron-right-box:before {
	content: "\F9D9"
}

.mdi-chevron-right-box-outline:before {
	content: "\F9DA"
}

.mdi-chevron-up:before {
	content: "\F143"
}

.mdi-chevron-up-box:before {
	content: "\F9DB"
}

.mdi-chevron-up-box-outline:before {
	content: "\F9DC"
}

.mdi-chili-hot:before {
	content: "\F7B1"
}

.mdi-chili-medium:before {
	content: "\F7B2"
}

.mdi-chili-mild:before {
	content: "\F7B3"
}

.mdi-chip:before {
	content: "\F61A"
}

.mdi-christianity:before {
	content: "\F952"
}

.mdi-church:before {
	content: "\F144"
}

.mdi-circle:before {
	content: "\F764"
}

.mdi-circle-edit-outline:before {
	content: "\F8D4"
}

.mdi-circle-medium:before {
	content: "\F9DD"
}

.mdi-circle-outline:before {
	content: "\F765"
}

.mdi-circle-slice-1:before {
	content: "\FA9D"
}

.mdi-circle-slice-2:before {
	content: "\FA9E"
}

.mdi-circle-slice-3:before {
	content: "\FA9F"
}

.mdi-circle-slice-4:before {
	content: "\FAA0"
}

.mdi-circle-slice-5:before {
	content: "\FAA1"
}

.mdi-circle-slice-6:before {
	content: "\FAA2"
}

.mdi-circle-slice-7:before {
	content: "\FAA3"
}

.mdi-circle-slice-8:before {
	content: "\FAA4"
}

.mdi-circle-small:before {
	content: "\F9DE"
}

.mdi-cisco-webex:before {
	content: "\F145"
}

.mdi-city:before {
	content: "\F146"
}

.mdi-city-variant:before {
	content: "\FA35"
}

.mdi-city-variant-outline:before {
	content: "\FA36"
}

.mdi-clipboard:before {
	content: "\F147"
}

.mdi-clipboard-account:before {
	content: "\F148"
}

.mdi-clipboard-alert:before {
	content: "\F149"
}

.mdi-clipboard-arrow-down:before {
	content: "\F14A"
}

.mdi-clipboard-arrow-left:before {
	content: "\F14B"
}

.mdi-clipboard-check:before {
	content: "\F14C"
}

.mdi-clipboard-check-outline:before {
	content: "\F8A7"
}

.mdi-clipboard-flow:before {
	content: "\F6C7"
}

.mdi-clipboard-outline:before {
	content: "\F14D"
}

.mdi-clipboard-plus:before {
	content: "\F750"
}

.mdi-clipboard-pulse:before {
	content: "\F85C"
}

.mdi-clipboard-pulse-outline:before {
	content: "\F85D"
}

.mdi-clipboard-text:before {
	content: "\F14E"
}

.mdi-clipboard-text-outline:before {
	content: "\FA37"
}

.mdi-clippy:before {
	content: "\F14F"
}

.mdi-clock:before {
	content: "\F953"
}

.mdi-clock-alert:before {
	content: "\F954"
}

.mdi-clock-alert-outline:before {
	content: "\F5CE"
}

.mdi-clock-end:before {
	content: "\F151"
}

.mdi-clock-fast:before {
	content: "\F152"
}

.mdi-clock-in:before {
	content: "\F153"
}

.mdi-clock-out:before {
	content: "\F154"
}

.mdi-clock-outline:before {
	content: "\F150"
}

.mdi-clock-start:before {
	content: "\F155"
}

.mdi-close:before {
	content: "\F156"
}

.mdi-close-box:before {
	content: "\F157"
}

.mdi-close-box-outline:before {
	content: "\F158"
}

.mdi-close-circle:before {
	content: "\F159"
}

.mdi-close-circle-outline:before {
	content: "\F15A"
}

.mdi-close-network:before {
	content: "\F15B"
}

.mdi-close-octagon:before {
	content: "\F15C"
}

.mdi-close-octagon-outline:before {
	content: "\F15D"
}

.mdi-close-outline:before {
	content: "\F6C8"
}

.mdi-closed-caption:before {
	content: "\F15E"
}

.mdi-cloud:before {
	content: "\F15F"
}

.mdi-cloud-alert:before {
	content: "\F9DF"
}

.mdi-cloud-braces:before {
	content: "\F7B4"
}

.mdi-cloud-check:before {
	content: "\F160"
}

.mdi-cloud-circle:before {
	content: "\F161"
}

.mdi-cloud-download:before {
	content: "\F162"
}

.mdi-cloud-off-outline:before {
	content: "\F164"
}

.mdi-cloud-outline:before {
	content: "\F163"
}

.mdi-cloud-print:before {
	content: "\F165"
}

.mdi-cloud-print-outline:before {
	content: "\F166"
}

.mdi-cloud-question:before {
	content: "\FA38"
}

.mdi-cloud-search:before {
	content: "\F955"
}

.mdi-cloud-search-outline:before {
	content: "\F956"
}

.mdi-cloud-sync:before {
	content: "\F63F"
}

.mdi-cloud-tags:before {
	content: "\F7B5"
}

.mdi-cloud-upload:before {
	content: "\F167"
}

.mdi-clover:before {
	content: "\F815"
}

.mdi-code-array:before {
	content: "\F168"
}

.mdi-code-braces:before {
	content: "\F169"
}

.mdi-code-brackets:before {
	content: "\F16A"
}

.mdi-code-equal:before {
	content: "\F16B"
}

.mdi-code-greater-than:before {
	content: "\F16C"
}

.mdi-code-greater-than-or-equal:before {
	content: "\F16D"
}

.mdi-code-less-than:before {
	content: "\F16E"
}

.mdi-code-less-than-or-equal:before {
	content: "\F16F"
}

.mdi-code-not-equal:before {
	content: "\F170"
}

.mdi-code-not-equal-variant:before {
	content: "\F171"
}

.mdi-code-parentheses:before {
	content: "\F172"
}

.mdi-code-string:before {
	content: "\F173"
}

.mdi-code-tags:before {
	content: "\F174"
}

.mdi-code-tags-check:before {
	content: "\F693"
}

.mdi-codepen:before {
	content: "\F175"
}

.mdi-coffee:before {
	content: "\F176"
}

.mdi-coffee-outline:before {
	content: "\F6C9"
}

.mdi-coffee-to-go:before {
	content: "\F177"
}

.mdi-cogs:before {
	content: "\F8D5"
}

.mdi-coin:before {
	content: "\F178"
}

.mdi-coins:before {
	content: "\F694"
}

.mdi-collage:before {
	content: "\F640"
}

.mdi-collapse-all:before {
	content: "\FAA5"
}

.mdi-collapse-all-outline:before {
	content: "\FAA6"
}

.mdi-color-helper:before {
	content: "\F179"
}

.mdi-comment:before {
	content: "\F17A"
}

.mdi-comment-account:before {
	content: "\F17B"
}

.mdi-comment-account-outline:before {
	content: "\F17C"
}

.mdi-comment-alert:before {
	content: "\F17D"
}

.mdi-comment-alert-outline:before {
	content: "\F17E"
}

.mdi-comment-arrow-left:before {
	content: "\F9E0"
}

.mdi-comment-arrow-left-outline:before {
	content: "\F9E1"
}

.mdi-comment-arrow-right:before {
	content: "\F9E2"
}

.mdi-comment-arrow-right-outline:before {
	content: "\F9E3"
}

.mdi-comment-check:before {
	content: "\F17F"
}

.mdi-comment-check-outline:before {
	content: "\F180"
}

.mdi-comment-eye:before {
	content: "\FA39"
}

.mdi-comment-eye-outline:before {
	content: "\FA3A"
}

.mdi-comment-multiple:before {
	content: "\F85E"
}

.mdi-comment-multiple-outline:before {
	content: "\F181"
}

.mdi-comment-outline:before {
	content: "\F182"
}

.mdi-comment-plus:before {
	content: "\F9E4"
}

.mdi-comment-plus-outline:before {
	content: "\F183"
}

.mdi-comment-processing:before {
	content: "\F184"
}

.mdi-comment-processing-outline:before {
	content: "\F185"
}

.mdi-comment-question:before {
	content: "\F816"
}

.mdi-comment-question-outline:before {
	content: "\F186"
}

.mdi-comment-remove:before {
	content: "\F5DE"
}

.mdi-comment-remove-outline:before {
	content: "\F187"
}

.mdi-comment-search:before {
	content: "\FA3B"
}

.mdi-comment-search-outline:before {
	content: "\FA3C"
}

.mdi-comment-text:before {
	content: "\F188"
}

.mdi-comment-text-multiple:before {
	content: "\F85F"
}

.mdi-comment-text-multiple-outline:before {
	content: "\F860"
}

.mdi-comment-text-outline:before {
	content: "\F189"
}

.mdi-compare:before {
	content: "\F18A"
}

.mdi-compass:before {
	content: "\F18B"
}

.mdi-compass-outline:before {
	content: "\F18C"
}

.mdi-console:before {
	content: "\F18D"
}

.mdi-console-line:before {
	content: "\F7B6"
}

.mdi-console-network:before {
	content: "\F8A8"
}

.mdi-contact-mail:before {
	content: "\F18E"
}

.mdi-contacts:before {
	content: "\F6CA"
}

.mdi-contain:before {
	content: "\FA3D"
}

.mdi-contain-end:before {
	content: "\FA3E"
}

.mdi-contain-start:before {
	content: "\FA3F"
}

.mdi-content-copy:before {
	content: "\F18F"
}

.mdi-content-cut:before {
	content: "\F190"
}

.mdi-content-duplicate:before {
	content: "\F191"
}

.mdi-content-paste:before {
	content: "\F192"
}

.mdi-content-save:before {
	content: "\F193"
}

.mdi-content-save-all:before {
	content: "\F194"
}

.mdi-content-save-outline:before {
	content: "\F817"
}

.mdi-content-save-settings:before {
	content: "\F61B"
}

.mdi-contrast:before {
	content: "\F195"
}

.mdi-contrast-box:before {
	content: "\F196"
}

.mdi-contrast-circle:before {
	content: "\F197"
}

.mdi-cookie:before {
	content: "\F198"
}

.mdi-copyright:before {
	content: "\F5E6"
}

.mdi-cordova:before {
	content: "\F957"
}

.mdi-corn:before {
	content: "\F7B7"
}

.mdi-counter:before {
	content: "\F199"
}

.mdi-cow:before {
	content: "\F19A"
}

.mdi-crane:before {
	content: "\F861"
}

.mdi-creation:before {
	content: "\F1C9"
}

.mdi-credit-card:before {
	content: "\F19B"
}

.mdi-credit-card-multiple:before {
	content: "\F19C"
}

.mdi-credit-card-off:before {
	content: "\F5E4"
}

.mdi-credit-card-plus:before {
	content: "\F675"
}

.mdi-credit-card-refund:before {
	content: "\FAA7"
}

.mdi-credit-card-scan:before {
	content: "\F19D"
}

.mdi-credit-card-settings:before {
	content: "\F8D6"
}

.mdi-crop:before {
	content: "\F19E"
}

.mdi-crop-free:before {
	content: "\F19F"
}

.mdi-crop-landscape:before {
	content: "\F1A0"
}

.mdi-crop-portrait:before {
	content: "\F1A1"
}

.mdi-crop-rotate:before {
	content: "\F695"
}

.mdi-crop-square:before {
	content: "\F1A2"
}

.mdi-crosshairs:before {
	content: "\F1A3"
}

.mdi-crosshairs-gps:before {
	content: "\F1A4"
}

.mdi-crown:before {
	content: "\F1A5"
}

.mdi-cryengine:before {
	content: "\F958"
}

.mdi-cube:before {
	content: "\F1A6"
}

.mdi-cube-outline:before {
	content: "\F1A7"
}

.mdi-cube-send:before {
	content: "\F1A8"
}

.mdi-cube-unfolded:before {
	content: "\F1A9"
}

.mdi-cup:before {
	content: "\F1AA"
}

.mdi-cup-off:before {
	content: "\F5E5"
}

.mdi-cup-water:before {
	content: "\F1AB"
}

.mdi-cupcake:before {
	content: "\F959"
}

.mdi-curling:before {
	content: "\F862"
}

.mdi-currency-bdt:before {
	content: "\F863"
}

.mdi-currency-btc:before {
	content: "\F1AC"
}

.mdi-currency-chf:before {
	content: "\F7B8"
}

.mdi-currency-cny:before {
	content: "\F7B9"
}

.mdi-currency-eth:before {
	content: "\F7BA"
}

.mdi-currency-eur:before {
	content: "\F1AD"
}

.mdi-currency-gbp:before {
	content: "\F1AE"
}

.mdi-currency-inr:before {
	content: "\F1AF"
}

.mdi-currency-jpy:before {
	content: "\F7BB"
}

.mdi-currency-krw:before {
	content: "\F7BC"
}

.mdi-currency-kzt:before {
	content: "\F864"
}

.mdi-currency-ngn:before {
	content: "\F1B0"
}

.mdi-currency-php:before {
	content: "\F9E5"
}

.mdi-currency-rub:before {
	content: "\F1B1"
}

.mdi-currency-sign:before {
	content: "\F7BD"
}

.mdi-currency-try:before {
	content: "\F1B2"
}

.mdi-currency-twd:before {
	content: "\F7BE"
}

.mdi-currency-usd:before {
	content: "\F1B3"
}

.mdi-currency-usd-off:before {
	content: "\F679"
}

.mdi-current-ac:before {
	content: "\F95A"
}

.mdi-current-dc:before {
	content: "\F95B"
}

.mdi-cursor-default:before {
	content: "\F1B4"
}

.mdi-cursor-default-outline:before {
	content: "\F1B5"
}

.mdi-cursor-move:before {
	content: "\F1B6"
}

.mdi-cursor-pointer:before {
	content: "\F1B7"
}

.mdi-cursor-text:before {
	content: "\F5E7"
}

.mdi-database:before {
	content: "\F1B8"
}

.mdi-database-check:before {
	content: "\FAA8"
}

.mdi-database-export:before {
	content: "\F95D"
}

.mdi-database-import:before {
	content: "\F95C"
}

.mdi-database-lock:before {
	content: "\FAA9"
}

.mdi-database-minus:before {
	content: "\F1B9"
}

.mdi-database-plus:before {
	content: "\F1BA"
}

.mdi-database-search:before {
	content: "\F865"
}

.mdi-death-star:before {
	content: "\F8D7"
}

.mdi-death-star-variant:before {
	content: "\F8D8"
}

.mdi-debian:before {
	content: "\F8D9"
}

.mdi-debug-step-into:before {
	content: "\F1BB"
}

.mdi-debug-step-out:before {
	content: "\F1BC"
}

.mdi-debug-step-over:before {
	content: "\F1BD"
}

.mdi-decagram:before {
	content: "\F76B"
}

.mdi-decagram-outline:before {
	content: "\F76C"
}

.mdi-decimal-decrease:before {
	content: "\F1BE"
}

.mdi-decimal-increase:before {
	content: "\F1BF"
}

.mdi-delete:before {
	content: "\F1C0"
}

.mdi-delete-circle:before {
	content: "\F682"
}

.mdi-delete-empty:before {
	content: "\F6CB"
}

.mdi-delete-forever:before {
	content: "\F5E8"
}

.mdi-delete-outline:before {
	content: "\F9E6"
}

.mdi-delete-restore:before {
	content: "\F818"
}

.mdi-delete-sweep:before {
	content: "\F5E9"
}

.mdi-delete-variant:before {
	content: "\F1C1"
}

.mdi-delta:before {
	content: "\F1C2"
}

.mdi-desk-lamp:before {
	content: "\F95E"
}

.mdi-deskphone:before {
	content: "\F1C3"
}

.mdi-desktop-classic:before {
	content: "\F7BF"
}

.mdi-desktop-mac:before {
	content: "\F1C4"
}

.mdi-desktop-mac-dashboard:before {
	content: "\F9E7"
}

.mdi-desktop-tower:before {
	content: "\F1C5"
}

.mdi-desktop-tower-monitor:before {
	content: "\FAAA"
}

.mdi-details:before {
	content: "\F1C6"
}

.mdi-developer-board:before {
	content: "\F696"
}

.mdi-deviantart:before {
	content: "\F1C7"
}

.mdi-dialpad:before {
	content: "\F61C"
}

.mdi-diamond:before {
	content: "\F1C8"
}

.mdi-dice-1:before {
	content: "\F1CA"
}

.mdi-dice-2:before {
	content: "\F1CB"
}

.mdi-dice-3:before {
	content: "\F1CC"
}

.mdi-dice-4:before {
	content: "\F1CD"
}

.mdi-dice-5:before {
	content: "\F1CE"
}

.mdi-dice-6:before {
	content: "\F1CF"
}

.mdi-dice-d10:before {
	content: "\F76E"
}

.mdi-dice-d12:before {
	content: "\F866"
}

.mdi-dice-d20:before {
	content: "\F5EA"
}

.mdi-dice-d4:before {
	content: "\F5EB"
}

.mdi-dice-d6:before {
	content: "\F5EC"
}

.mdi-dice-d8:before {
	content: "\F5ED"
}

.mdi-dice-multiple:before {
	content: "\F76D"
}

.mdi-dictionary:before {
	content: "\F61D"
}

.mdi-dip-switch:before {
	content: "\F7C0"
}

.mdi-directions:before {
	content: "\F1D0"
}

.mdi-directions-fork:before {
	content: "\F641"
}

.mdi-disc:before {
	content: "\F5EE"
}

.mdi-disc-alert:before {
	content: "\F1D1"
}

.mdi-disc-player:before {
	content: "\F95F"
}

.mdi-discord:before {
	content: "\F66F"
}

.mdi-dishwasher:before {
	content: "\FAAB"
}

.mdi-disqus:before {
	content: "\F1D2"
}

.mdi-disqus-outline:before {
	content: "\F1D3"
}

.mdi-division:before {
	content: "\F1D4"
}

.mdi-division-box:before {
	content: "\F1D5"
}

.mdi-dlna:before {
	content: "\FA40"
}

.mdi-dna:before {
	content: "\F683"
}

.mdi-dns:before {
	content: "\F1D6"
}

.mdi-do-not-disturb:before {
	content: "\F697"
}

.mdi-do-not-disturb-off:before {
	content: "\F698"
}

.mdi-docker:before {
	content: "\F867"
}

.mdi-doctor:before {
	content: "\FA41"
}

.mdi-dog:before {
	content: "\FA42"
}

.mdi-dog-service:before {
	content: "\FAAC"
}

.mdi-dog-side:before {
	content: "\FA43"
}

.mdi-dolby:before {
	content: "\F6B2"
}

.mdi-domain:before {
	content: "\F1D7"
}

.mdi-donkey:before {
	content: "\F7C1"
}

.mdi-door:before {
	content: "\F819"
}

.mdi-door-closed:before {
	content: "\F81A"
}

.mdi-door-open:before {
	content: "\F81B"
}

.mdi-doorbell-video:before {
	content: "\F868"
}

.mdi-dot-net:before {
	content: "\FAAD"
}

.mdi-dots-horizontal:before {
	content: "\F1D8"
}

.mdi-dots-horizontal-circle:before {
	content: "\F7C2"
}

.mdi-dots-vertical:before {
	content: "\F1D9"
}

.mdi-dots-vertical-circle:before {
	content: "\F7C3"
}

.mdi-douban:before {
	content: "\F699"
}

.mdi-download:before {
	content: "\F1DA"
}

.mdi-download-multiple:before {
	content: "\F9E8"
}

.mdi-download-network:before {
	content: "\F6F3"
}

.mdi-drag:before {
	content: "\F1DB"
}

.mdi-drag-horizontal:before {
	content: "\F1DC"
}

.mdi-drag-vertical:before {
	content: "\F1DD"
}

.mdi-drawing:before {
	content: "\F1DE"
}

.mdi-drawing-box:before {
	content: "\F1DF"
}

.mdi-dribbble:before {
	content: "\F1E0"
}

.mdi-dribbble-box:before {
	content: "\F1E1"
}

.mdi-drone:before {
	content: "\F1E2"
}

.mdi-dropbox:before {
	content: "\F1E3"
}

.mdi-drupal:before {
	content: "\F1E4"
}

.mdi-duck:before {
	content: "\F1E5"
}

.mdi-dumbbell:before {
	content: "\F1E6"
}

.mdi-ear-hearing:before {
	content: "\F7C4"
}

.mdi-ear-hearing-off:before {
	content: "\FA44"
}

.mdi-earth:before {
	content: "\F1E7"
}

.mdi-earth-box:before {
	content: "\F6CC"
}

.mdi-earth-box-off:before {
	content: "\F6CD"
}

.mdi-earth-off:before {
	content: "\F1E8"
}

.mdi-edge:before {
	content: "\F1E9"
}

.mdi-egg:before {
	content: "\FAAE"
}

.mdi-egg-easter:before {
	content: "\FAAF"
}

.mdi-eight-track:before {
	content: "\F9E9"
}

.mdi-eject:before {
	content: "\F1EA"
}

.mdi-elephant:before {
	content: "\F7C5"
}

.mdi-elevation-decline:before {
	content: "\F1EB"
}

.mdi-elevation-rise:before {
	content: "\F1EC"
}

.mdi-elevator:before {
	content: "\F1ED"
}

.mdi-email:before {
	content: "\F1EE"
}

.mdi-email-alert:before {
	content: "\F6CE"
}

.mdi-email-check:before {
	content: "\FAB0"
}

.mdi-email-check-outline:before {
	content: "\FAB1"
}

.mdi-email-lock:before {
	content: "\F1F1"
}

.mdi-email-open:before {
	content: "\F1EF"
}

.mdi-email-open-outline:before {
	content: "\F5EF"
}

.mdi-email-outline:before {
	content: "\F1F0"
}

.mdi-email-plus:before {
	content: "\F9EA"
}

.mdi-email-plus-outline:before {
	content: "\F9EB"
}

.mdi-email-search:before {
	content: "\F960"
}

.mdi-email-search-outline:before {
	content: "\F961"
}

.mdi-email-variant:before {
	content: "\F5F0"
}

.mdi-emby:before {
	content: "\F6B3"
}

.mdi-emoticon:before {
	content: "\F1F2"
}

.mdi-emoticon-cool:before {
	content: "\F1F3"
}

.mdi-emoticon-dead:before {
	content: "\F69A"
}

.mdi-emoticon-devil:before {
	content: "\F1F4"
}

.mdi-emoticon-excited:before {
	content: "\F69B"
}

.mdi-emoticon-happy:before {
	content: "\F1F5"
}

.mdi-emoticon-neutral:before {
	content: "\F1F6"
}

.mdi-emoticon-poop:before {
	content: "\F1F7"
}

.mdi-emoticon-sad:before {
	content: "\F1F8"
}

.mdi-emoticon-tongue:before {
	content: "\F1F9"
}

.mdi-engine:before {
	content: "\F1FA"
}

.mdi-engine-off:before {
	content: "\FA45"
}

.mdi-engine-off-outline:before {
	content: "\FA46"
}

.mdi-engine-outline:before {
	content: "\F1FB"
}

.mdi-equal:before {
	content: "\F1FC"
}

.mdi-equal-box:before {
	content: "\F1FD"
}

.mdi-eraser:before {
	content: "\F1FE"
}

.mdi-eraser-variant:before {
	content: "\F642"
}

.mdi-escalator:before {
	content: "\F1FF"
}

.mdi-et:before {
	content: "\FAB2"
}

.mdi-ethereum:before {
	content: "\F869"
}

.mdi-ethernet:before {
	content: "\F200"
}

.mdi-ethernet-cable:before {
	content: "\F201"
}

.mdi-ethernet-cable-off:before {
	content: "\F202"
}

.mdi-etsy:before {
	content: "\F203"
}

.mdi-ev-station:before {
	content: "\F5F1"
}

.mdi-eventbrite:before {
	content: "\F7C6"
}

.mdi-evernote:before {
	content: "\F204"
}

.mdi-exclamation:before {
	content: "\F205"
}

.mdi-exit-run:before {
	content: "\FA47"
}

.mdi-exit-to-app:before {
	content: "\F206"
}

.mdi-expand-all:before {
	content: "\FAB3"
}

.mdi-expand-all-outline:before {
	content: "\FAB4"
}

.mdi-exponent:before {
	content: "\F962"
}

.mdi-exponent-box:before {
	content: "\F963"
}

.mdi-export:before {
	content: "\F207"
}

.mdi-eye:before {
	content: "\F208"
}

.mdi-eye-off:before {
	content: "\F209"
}

.mdi-eye-off-outline:before {
	content: "\F6D0"
}

.mdi-eye-outline:before {
	content: "\F6CF"
}

.mdi-eye-plus:before {
	content: "\F86A"
}

.mdi-eye-plus-outline:before {
	content: "\F86B"
}

.mdi-eye-settings:before {
	content: "\F86C"
}

.mdi-eye-settings-outline:before {
	content: "\F86D"
}

.mdi-eyedropper:before {
	content: "\F20A"
}

.mdi-eyedropper-variant:before {
	content: "\F20B"
}

.mdi-face:before {
	content: "\F643"
}

.mdi-face-profile:before {
	content: "\F644"
}

.mdi-facebook:before {
	content: "\F20C"
}

.mdi-facebook-box:before {
	content: "\F20D"
}

.mdi-facebook-messenger:before {
	content: "\F20E"
}

.mdi-factory:before {
	content: "\F20F"
}

.mdi-fan:before {
	content: "\F210"
}

.mdi-fan-off:before {
	content: "\F81C"
}

.mdi-fast-forward:before {
	content: "\F211"
}

.mdi-fast-forward-outline:before {
	content: "\F6D1"
}

.mdi-fax:before {
	content: "\F212"
}

.mdi-feather:before {
	content: "\F6D2"
}

.mdi-feature-search:before {
	content: "\FA48"
}

.mdi-feature-search-outline:before {
	content: "\FA49"
}

.mdi-fedora:before {
	content: "\F8DA"
}

.mdi-ferry:before {
	content: "\F213"
}

.mdi-file:before {
	content: "\F214"
}

.mdi-file-account:before {
	content: "\F73A"
}

.mdi-file-alert:before {
	content: "\FA4A"
}

.mdi-file-alert-outline:before {
	content: "\FA4B"
}

.mdi-file-cabinet:before {
	content: "\FAB5"
}

.mdi-file-chart:before {
	content: "\F215"
}

.mdi-file-check:before {
	content: "\F216"
}

.mdi-file-cloud:before {
	content: "\F217"
}

.mdi-file-compare:before {
	content: "\F8A9"
}

.mdi-file-delimited:before {
	content: "\F218"
}

.mdi-file-document:before {
	content: "\F219"
}

.mdi-file-document-box:before {
	content: "\F21A"
}

.mdi-file-document-box-multiple:before {
	content: "\FAB6"
}

.mdi-file-document-box-multiple-outline:before {
	content: "\FAB7"
}

.mdi-file-document-box-outline:before {
	content: "\F9EC"
}

.mdi-file-document-outline:before {
	content: "\F9ED"
}

.mdi-file-download:before {
	content: "\F964"
}

.mdi-file-download-outline:before {
	content: "\F965"
}

.mdi-file-excel:before {
	content: "\F21B"
}

.mdi-file-excel-box:before {
	content: "\F21C"
}

.mdi-file-export:before {
	content: "\F21D"
}

.mdi-file-find:before {
	content: "\F21E"
}

.mdi-file-hidden:before {
	content: "\F613"
}

.mdi-file-image:before {
	content: "\F21F"
}

.mdi-file-import:before {
	content: "\F220"
}

.mdi-file-lock:before {
	content: "\F221"
}

.mdi-file-move:before {
	content: "\FAB8"
}

.mdi-file-multiple:before {
	content: "\F222"
}

.mdi-file-music:before {
	content: "\F223"
}

.mdi-file-outline:before {
	content: "\F224"
}

.mdi-file-pdf:before {
	content: "\F225"
}

.mdi-file-pdf-box:before {
	content: "\F226"
}

.mdi-file-percent:before {
	content: "\F81D"
}

.mdi-file-plus:before {
	content: "\F751"
}

.mdi-file-powerpoint:before {
	content: "\F227"
}

.mdi-file-powerpoint-box:before {
	content: "\F228"
}

.mdi-file-presentation-box:before {
	content: "\F229"
}

.mdi-file-question:before {
	content: "\F86E"
}

.mdi-file-restore:before {
	content: "\F670"
}

.mdi-file-send:before {
	content: "\F22A"
}

.mdi-file-tree:before {
	content: "\F645"
}

.mdi-file-undo:before {
	content: "\F8DB"
}

.mdi-file-upload:before {
	content: "\FA4C"
}

.mdi-file-upload-outline:before {
	content: "\FA4D"
}

.mdi-file-video:before {
	content: "\F22B"
}

.mdi-file-word:before {
	content: "\F22C"
}

.mdi-file-word-box:before {
	content: "\F22D"
}

.mdi-file-xml:before {
	content: "\F22E"
}

.mdi-film:before {
	content: "\F22F"
}

.mdi-filmstrip:before {
	content: "\F230"
}

.mdi-filmstrip-off:before {
	content: "\F231"
}

.mdi-filter:before {
	content: "\F232"
}

.mdi-filter-outline:before {
	content: "\F233"
}

.mdi-filter-remove:before {
	content: "\F234"
}

.mdi-filter-remove-outline:before {
	content: "\F235"
}

.mdi-filter-variant:before {
	content: "\F236"
}

.mdi-finance:before {
	content: "\F81E"
}

.mdi-find-replace:before {
	content: "\F6D3"
}

.mdi-fingerprint:before {
	content: "\F237"
}

.mdi-fire:before {
	content: "\F238"
}

.mdi-fire-truck:before {
	content: "\F8AA"
}

.mdi-firebase:before {
	content: "\F966"
}

.mdi-firefox:before {
	content: "\F239"
}

.mdi-fish:before {
	content: "\F23A"
}

.mdi-flag:before {
	content: "\F23B"
}

.mdi-flag-checkered:before {
	content: "\F23C"
}

.mdi-flag-outline:before {
	content: "\F23D"
}

.mdi-flag-triangle:before {
	content: "\F23F"
}

.mdi-flag-variant:before {
	content: "\F240"
}

.mdi-flag-variant-outline:before {
	content: "\F23E"
}

.mdi-flash:before {
	content: "\F241"
}

.mdi-flash-auto:before {
	content: "\F242"
}

.mdi-flash-circle:before {
	content: "\F81F"
}

.mdi-flash-off:before {
	content: "\F243"
}

.mdi-flash-outline:before {
	content: "\F6D4"
}

.mdi-flash-red-eye:before {
	content: "\F67A"
}

.mdi-flashlight:before {
	content: "\F244"
}

.mdi-flashlight-off:before {
	content: "\F245"
}

.mdi-flask:before {
	content: "\F093"
}

.mdi-flask-empty:before {
	content: "\F094"
}

.mdi-flask-empty-outline:before {
	content: "\F095"
}

.mdi-flask-outline:before {
	content: "\F096"
}

.mdi-flattr:before {
	content: "\F246"
}

.mdi-flip-to-back:before {
	content: "\F247"
}

.mdi-flip-to-front:before {
	content: "\F248"
}

.mdi-floor-lamp:before {
	content: "\F8DC"
}

.mdi-floor-plan:before {
	content: "\F820"
}

.mdi-floppy:before {
	content: "\F249"
}

.mdi-floppy-variant:before {
	content: "\F9EE"
}

.mdi-flower:before {
	content: "\F24A"
}

.mdi-flower-outline:before {
	content: "\F9EF"
}

.mdi-flower-tulip:before {
	content: "\F9F0"
}

.mdi-flower-tulip-outline:before {
	content: "\F9F1"
}

.mdi-folder:before {
	content: "\F24B"
}

.mdi-folder-account:before {
	content: "\F24C"
}

.mdi-folder-clock:before {
	content: "\FAB9"
}

.mdi-folder-clock-outline:before {
	content: "\FABA"
}

.mdi-folder-download:before {
	content: "\F24D"
}

.mdi-folder-edit:before {
	content: "\F8DD"
}

.mdi-folder-google-drive:before {
	content: "\F24E"
}

.mdi-folder-image:before {
	content: "\F24F"
}

.mdi-folder-key:before {
	content: "\F8AB"
}

.mdi-folder-key-network:before {
	content: "\F8AC"
}

.mdi-folder-lock:before {
	content: "\F250"
}

.mdi-folder-lock-open:before {
	content: "\F251"
}

.mdi-folder-move:before {
	content: "\F252"
}

.mdi-folder-multiple:before {
	content: "\F253"
}

.mdi-folder-multiple-image:before {
	content: "\F254"
}

.mdi-folder-multiple-outline:before {
	content: "\F255"
}

.mdi-folder-network:before {
	content: "\F86F"
}

.mdi-folder-open:before {
	content: "\F76F"
}

.mdi-folder-outline:before {
	content: "\F256"
}

.mdi-folder-plus:before {
	content: "\F257"
}

.mdi-folder-remove:before {
	content: "\F258"
}

.mdi-folder-search:before {
	content: "\F967"
}

.mdi-folder-search-outline:before {
	content: "\F968"
}

.mdi-folder-star:before {
	content: "\F69C"
}

.mdi-folder-upload:before {
	content: "\F259"
}

.mdi-font-awesome:before {
	content: "\F03A"
}

.mdi-food:before {
	content: "\F25A"
}

.mdi-food-apple:before {
	content: "\F25B"
}

.mdi-food-croissant:before {
	content: "\F7C7"
}

.mdi-food-fork-drink:before {
	content: "\F5F2"
}

.mdi-food-off:before {
	content: "\F5F3"
}

.mdi-food-variant:before {
	content: "\F25C"
}

.mdi-football:before {
	content: "\F25D"
}

.mdi-football-australian:before {
	content: "\F25E"
}

.mdi-football-helmet:before {
	content: "\F25F"
}

.mdi-forklift:before {
	content: "\F7C8"
}

.mdi-format-align-bottom:before {
	content: "\F752"
}

.mdi-format-align-center:before {
	content: "\F260"
}

.mdi-format-align-justify:before {
	content: "\F261"
}

.mdi-format-align-left:before {
	content: "\F262"
}

.mdi-format-align-middle:before {
	content: "\F753"
}

.mdi-format-align-right:before {
	content: "\F263"
}

.mdi-format-align-top:before {
	content: "\F754"
}

.mdi-format-annotation-minus:before {
	content: "\FABB"
}

.mdi-format-annotation-plus:before {
	content: "\F646"
}

.mdi-format-bold:before {
	content: "\F264"
}

.mdi-format-clear:before {
	content: "\F265"
}

.mdi-format-color-fill:before {
	content: "\F266"
}

.mdi-format-color-text:before {
	content: "\F69D"
}

.mdi-format-columns:before {
	content: "\F8DE"
}

.mdi-format-float-center:before {
	content: "\F267"
}

.mdi-format-float-left:before {
	content: "\F268"
}

.mdi-format-float-none:before {
	content: "\F269"
}

.mdi-format-float-right:before {
	content: "\F26A"
}

.mdi-format-font:before {
	content: "\F6D5"
}

.mdi-format-font-size-decrease:before {
	content: "\F9F2"
}

.mdi-format-font-size-increase:before {
	content: "\F9F3"
}

.mdi-format-header-1:before {
	content: "\F26B"
}

.mdi-format-header-2:before {
	content: "\F26C"
}

.mdi-format-header-3:before {
	content: "\F26D"
}

.mdi-format-header-4:before {
	content: "\F26E"
}

.mdi-format-header-5:before {
	content: "\F26F"
}

.mdi-format-header-6:before {
	content: "\F270"
}

.mdi-format-header-decrease:before {
	content: "\F271"
}

.mdi-format-header-equal:before {
	content: "\F272"
}

.mdi-format-header-increase:before {
	content: "\F273"
}

.mdi-format-header-pound:before {
	content: "\F274"
}

.mdi-format-horizontal-align-center:before {
	content: "\F61E"
}

.mdi-format-horizontal-align-left:before {
	content: "\F61F"
}

.mdi-format-horizontal-align-right:before {
	content: "\F620"
}

.mdi-format-indent-decrease:before {
	content: "\F275"
}

.mdi-format-indent-increase:before {
	content: "\F276"
}

.mdi-format-italic:before {
	content: "\F277"
}

.mdi-format-line-spacing:before {
	content: "\F278"
}

.mdi-format-line-style:before {
	content: "\F5C8"
}

.mdi-format-line-weight:before {
	content: "\F5C9"
}

.mdi-format-list-bulleted:before {
	content: "\F279"
}

.mdi-format-list-bulleted-type:before {
	content: "\F27A"
}

.mdi-format-list-checkbox:before {
	content: "\F969"
}

.mdi-format-list-checks:before {
	content: "\F755"
}

.mdi-format-list-numbers:before {
	content: "\F27B"
}

.mdi-format-page-break:before {
	content: "\F6D6"
}

.mdi-format-paint:before {
	content: "\F27C"
}

.mdi-format-paragraph:before {
	content: "\F27D"
}

.mdi-format-pilcrow:before {
	content: "\F6D7"
}

.mdi-format-quote-close:before {
	content: "\F27E"
}

.mdi-format-quote-open:before {
	content: "\F756"
}

.mdi-format-rotate-90:before {
	content: "\F6A9"
}

.mdi-format-section:before {
	content: "\F69E"
}

.mdi-format-size:before {
	content: "\F27F"
}

.mdi-format-strikethrough:before {
	content: "\F280"
}

.mdi-format-strikethrough-variant:before {
	content: "\F281"
}

.mdi-format-subscript:before {
	content: "\F282"
}

.mdi-format-superscript:before {
	content: "\F283"
}

.mdi-format-text:before {
	content: "\F284"
}

.mdi-format-textdirection-l-to-r:before {
	content: "\F285"
}

.mdi-format-textdirection-r-to-l:before {
	content: "\F286"
}

.mdi-format-title:before {
	content: "\F5F4"
}

.mdi-format-underline:before {
	content: "\F287"
}

.mdi-format-vertical-align-bottom:before {
	content: "\F621"
}

.mdi-format-vertical-align-center:before {
	content: "\F622"
}

.mdi-format-vertical-align-top:before {
	content: "\F623"
}

.mdi-format-wrap-inline:before {
	content: "\F288"
}

.mdi-format-wrap-square:before {
	content: "\F289"
}

.mdi-format-wrap-tight:before {
	content: "\F28A"
}

.mdi-format-wrap-top-bottom:before {
	content: "\F28B"
}

.mdi-forum:before {
	content: "\F28C"
}

.mdi-forum-outline:before {
	content: "\F821"
}

.mdi-forward:before {
	content: "\F28D"
}

.mdi-fountain:before {
	content: "\F96A"
}

.mdi-foursquare:before {
	content: "\F28E"
}

.mdi-freebsd:before {
	content: "\F8DF"
}

.mdi-fridge:before {
	content: "\F28F"
}

.mdi-fridge-filled:before {
	content: "\F290"
}

.mdi-fridge-filled-bottom:before {
	content: "\F291"
}

.mdi-fridge-filled-top:before {
	content: "\F292"
}

.mdi-fuel:before {
	content: "\F7C9"
}

.mdi-fullscreen:before {
	content: "\F293"
}

.mdi-fullscreen-exit:before {
	content: "\F294"
}

.mdi-function:before {
	content: "\F295"
}

.mdi-function-variant:before {
	content: "\F870"
}

.mdi-gamepad:before {
	content: "\F296"
}

.mdi-gamepad-variant:before {
	content: "\F297"
}

.mdi-garage:before {
	content: "\F6D8"
}

.mdi-garage-alert:before {
	content: "\F871"
}

.mdi-garage-open:before {
	content: "\F6D9"
}

.mdi-gas-cylinder:before {
	content: "\F647"
}

.mdi-gas-station:before {
	content: "\F298"
}

.mdi-gate:before {
	content: "\F299"
}

.mdi-gate-and:before {
	content: "\F8E0"
}

.mdi-gate-nand:before {
	content: "\F8E1"
}

.mdi-gate-nor:before {
	content: "\F8E2"
}

.mdi-gate-not:before {
	content: "\F8E3"
}

.mdi-gate-or:before {
	content: "\F8E4"
}

.mdi-gate-xnor:before {
	content: "\F8E5"
}

.mdi-gate-xor:before {
	content: "\F8E6"
}

.mdi-gauge:before {
	content: "\F29A"
}

.mdi-gauge-empty:before {
	content: "\F872"
}

.mdi-gauge-full:before {
	content: "\F873"
}

.mdi-gauge-low:before {
	content: "\F874"
}

.mdi-gavel:before {
	content: "\F29B"
}

.mdi-gender-female:before {
	content: "\F29C"
}

.mdi-gender-male:before {
	content: "\F29D"
}

.mdi-gender-male-female:before {
	content: "\F29E"
}

.mdi-gender-transgender:before {
	content: "\F29F"
}

.mdi-gentoo:before {
	content: "\F8E7"
}

.mdi-gesture:before {
	content: "\F7CA"
}

.mdi-gesture-double-tap:before {
	content: "\F73B"
}

.mdi-gesture-pinch:before {
	content: "\FABC"
}

.mdi-gesture-spread:before {
	content: "\FABD"
}

.mdi-gesture-swipe-down:before {
	content: "\F73C"
}

.mdi-gesture-swipe-horizontal:before {
	content: "\FABE"
}

.mdi-gesture-swipe-left:before {
	content: "\F73D"
}

.mdi-gesture-swipe-right:before {
	content: "\F73E"
}

.mdi-gesture-swipe-up:before {
	content: "\F73F"
}

.mdi-gesture-swipe-vertical:before {
	content: "\FABF"
}

.mdi-gesture-tap:before {
	content: "\F740"
}

.mdi-gesture-two-double-tap:before {
	content: "\F741"
}

.mdi-gesture-two-tap:before {
	content: "\F742"
}

.mdi-ghost:before {
	content: "\F2A0"
}

.mdi-ghost-off:before {
	content: "\F9F4"
}

.mdi-gift:before {
	content: "\F2A1"
}

.mdi-git:before {
	content: "\F2A2"
}

.mdi-github-box:before {
	content: "\F2A3"
}

.mdi-github-circle:before {
	content: "\F2A4"
}

.mdi-github-face:before {
	content: "\F6DA"
}

.mdi-glass-cocktail:before {
	content: "\F356"
}

.mdi-glass-flute:before {
	content: "\F2A5"
}

.mdi-glass-mug:before {
	content: "\F2A6"
}

.mdi-glass-stange:before {
	content: "\F2A7"
}

.mdi-glass-tulip:before {
	content: "\F2A8"
}

.mdi-glass-wine:before {
	content: "\F875"
}

.mdi-glassdoor:before {
	content: "\F2A9"
}

.mdi-glasses:before {
	content: "\F2AA"
}

.mdi-globe-model:before {
	content: "\F8E8"
}

.mdi-gmail:before {
	content: "\F2AB"
}

.mdi-gnome:before {
	content: "\F2AC"
}

.mdi-golf:before {
	content: "\F822"
}

.mdi-gondola:before {
	content: "\F685"
}

.mdi-google:before {
	content: "\F2AD"
}

.mdi-google-allo:before {
	content: "\F801"
}

.mdi-google-analytics:before {
	content: "\F7CB"
}

.mdi-google-assistant:before {
	content: "\F7CC"
}

.mdi-google-cardboard:before {
	content: "\F2AE"
}

.mdi-google-chrome:before {
	content: "\F2AF"
}

.mdi-google-circles:before {
	content: "\F2B0"
}

.mdi-google-circles-communities:before {
	content: "\F2B1"
}

.mdi-google-circles-extended:before {
	content: "\F2B2"
}

.mdi-google-circles-group:before {
	content: "\F2B3"
}

.mdi-google-controller:before {
	content: "\F2B4"
}

.mdi-google-controller-off:before {
	content: "\F2B5"
}

.mdi-google-drive:before {
	content: "\F2B6"
}

.mdi-google-earth:before {
	content: "\F2B7"
}

.mdi-google-fit:before {
	content: "\F96B"
}

.mdi-google-glass:before {
	content: "\F2B8"
}

.mdi-google-hangouts:before {
	content: "\F2C9"
}

.mdi-google-home:before {
	content: "\F823"
}

.mdi-google-keep:before {
	content: "\F6DB"
}

.mdi-google-lens:before {
	content: "\F9F5"
}

.mdi-google-maps:before {
	content: "\F5F5"
}

.mdi-google-nearby:before {
	content: "\F2B9"
}

.mdi-google-pages:before {
	content: "\F2BA"
}

.mdi-google-photos:before {
	content: "\F6DC"
}

.mdi-google-physical-web:before {
	content: "\F2BB"
}

.mdi-google-play:before {
	content: "\F2BC"
}

.mdi-google-plus:before {
	content: "\F2BD"
}

.mdi-google-plus-box:before {
	content: "\F2BE"
}

.mdi-google-spreadsheet:before {
	content: "\F9F6"
}

.mdi-google-translate:before {
	content: "\F2BF"
}

.mdi-google-wallet:before {
	content: "\F2C0"
}

.mdi-gpu:before {
	content: "\F8AD"
}

.mdi-gradient:before {
	content: "\F69F"
}

.mdi-graphql:before {
	content: "\F876"
}

.mdi-grease-pencil:before {
	content: "\F648"
}

.mdi-greater-than:before {
	content: "\F96C"
}

.mdi-greater-than-or-equal:before {
	content: "\F96D"
}

.mdi-grid:before {
	content: "\F2C1"
}

.mdi-grid-large:before {
	content: "\F757"
}

.mdi-grid-off:before {
	content: "\F2C2"
}

.mdi-group:before {
	content: "\F2C3"
}

.mdi-guitar-acoustic:before {
	content: "\F770"
}

.mdi-guitar-electric:before {
	content: "\F2C4"
}

.mdi-guitar-pick:before {
	content: "\F2C5"
}

.mdi-guitar-pick-outline:before {
	content: "\F2C6"
}

.mdi-guy-fawkes-mask:before {
	content: "\F824"
}

.mdi-hackernews:before {
	content: "\F624"
}

.mdi-hail:before {
	content: "\FAC0"
}

.mdi-hamburger:before {
	content: "\F684"
}

.mdi-hammer:before {
	content: "\F8E9"
}

.mdi-hand:before {
	content: "\FA4E"
}

.mdi-hand-okay:before {
	content: "\FA4F"
}

.mdi-hand-peace:before {
	content: "\FA50"
}

.mdi-hand-peace-variant:before {
	content: "\FA51"
}

.mdi-hand-pointing-down:before {
	content: "\FA52"
}

.mdi-hand-pointing-left:before {
	content: "\FA53"
}

.mdi-hand-pointing-right:before {
	content: "\F2C7"
}

.mdi-hand-pointing-up:before {
	content: "\FA54"
}

.mdi-hanger:before {
	content: "\F2C8"
}

.mdi-hard-hat:before {
	content: "\F96E"
}

.mdi-harddisk:before {
	content: "\F2CA"
}

.mdi-headphones:before {
	content: "\F2CB"
}

.mdi-headphones-bluetooth:before {
	content: "\F96F"
}

.mdi-headphones-box:before {
	content: "\F2CC"
}

.mdi-headphones-off:before {
	content: "\F7CD"
}

.mdi-headphones-settings:before {
	content: "\F2CD"
}

.mdi-headset:before {
	content: "\F2CE"
}

.mdi-headset-dock:before {
	content: "\F2CF"
}

.mdi-headset-off:before {
	content: "\F2D0"
}

.mdi-heart:before {
	content: "\F2D1"
}

.mdi-heart-box:before {
	content: "\F2D2"
}

.mdi-heart-box-outline:before {
	content: "\F2D3"
}

.mdi-heart-broken:before {
	content: "\F2D4"
}

.mdi-heart-circle:before {
	content: "\F970"
}

.mdi-heart-circle-outline:before {
	content: "\F971"
}

.mdi-heart-half:before {
	content: "\F6DE"
}

.mdi-heart-half-full:before {
	content: "\F6DD"
}

.mdi-heart-half-outline:before {
	content: "\F6DF"
}

.mdi-heart-multiple:before {
	content: "\FA55"
}

.mdi-heart-multiple-outline:before {
	content: "\FA56"
}

.mdi-heart-off:before {
	content: "\F758"
}

.mdi-heart-outline:before {
	content: "\F2D5"
}

.mdi-heart-pulse:before {
	content: "\F5F6"
}

.mdi-helicopter:before {
	content: "\FAC1"
}

.mdi-help:before {
	content: "\F2D6"
}

.mdi-help-box:before {
	content: "\F78A"
}

.mdi-help-circle:before {
	content: "\F2D7"
}

.mdi-help-circle-outline:before {
	content: "\F625"
}

.mdi-help-network:before {
	content: "\F6F4"
}

.mdi-hexagon:before {
	content: "\F2D8"
}

.mdi-hexagon-multiple:before {
	content: "\F6E0"
}

.mdi-hexagon-outline:before {
	content: "\F2D9"
}

.mdi-hexagon-slice-1:before {
	content: "\FAC2"
}

.mdi-hexagon-slice-2:before {
	content: "\FAC3"
}

.mdi-hexagon-slice-3:before {
	content: "\FAC4"
}

.mdi-hexagon-slice-4:before {
	content: "\FAC5"
}

.mdi-hexagon-slice-5:before {
	content: "\FAC6"
}

.mdi-hexagon-slice-6:before {
	content: "\FAC7"
}

.mdi-hexagram:before {
	content: "\FAC8"
}

.mdi-hexagram-outline:before {
	content: "\FAC9"
}

.mdi-high-definition:before {
	content: "\F7CE"
}

.mdi-high-definition-box:before {
	content: "\F877"
}

.mdi-highway:before {
	content: "\F5F7"
}

.mdi-hinduism:before {
	content: "\F972"
}

.mdi-history:before {
	content: "\F2DA"
}

.mdi-hockey-puck:before {
	content: "\F878"
}

.mdi-hockey-sticks:before {
	content: "\F879"
}

.mdi-hololens:before {
	content: "\F2DB"
}

.mdi-home:before {
	content: "\F2DC"
}

.mdi-home-account:before {
	content: "\F825"
}

.mdi-home-alert:before {
	content: "\F87A"
}

.mdi-home-assistant:before {
	content: "\F7CF"
}

.mdi-home-automation:before {
	content: "\F7D0"
}

.mdi-home-circle:before {
	content: "\F7D1"
}

.mdi-home-currency-usd:before {
	content: "\F8AE"
}

.mdi-home-heart:before {
	content: "\F826"
}

.mdi-home-lock:before {
	content: "\F8EA"
}

.mdi-home-lock-open:before {
	content: "\F8EB"
}

.mdi-home-map-marker:before {
	content: "\F5F8"
}

.mdi-home-minus:before {
	content: "\F973"
}

.mdi-home-modern:before {
	content: "\F2DD"
}

.mdi-home-outline:before {
	content: "\F6A0"
}

.mdi-home-plus:before {
	content: "\F974"
}

.mdi-home-variant:before {
	content: "\F2DE"
}

.mdi-hook:before {
	content: "\F6E1"
}

.mdi-hook-off:before {
	content: "\F6E2"
}

.mdi-hops:before {
	content: "\F2DF"
}

.mdi-horseshoe:before {
	content: "\FA57"
}

.mdi-hospital:before {
	content: "\F2E0"
}

.mdi-hospital-building:before {
	content: "\F2E1"
}

.mdi-hospital-marker:before {
	content: "\F2E2"
}

.mdi-hot-tub:before {
	content: "\F827"
}

.mdi-hotel:before {
	content: "\F2E3"
}

.mdi-houzz:before {
	content: "\F2E4"
}

.mdi-houzz-box:before {
	content: "\F2E5"
}

.mdi-hulu:before {
	content: "\F828"
}

.mdi-human:before {
	content: "\F2E6"
}

.mdi-human-child:before {
	content: "\F2E7"
}

.mdi-human-female:before {
	content: "\F649"
}

.mdi-human-female-boy:before {
	content: "\FA58"
}

.mdi-human-female-female:before {
	content: "\FA59"
}

.mdi-human-female-girl:before {
	content: "\FA5A"
}

.mdi-human-greeting:before {
	content: "\F64A"
}

.mdi-human-handsdown:before {
	content: "\F64B"
}

.mdi-human-handsup:before {
	content: "\F64C"
}

.mdi-human-male:before {
	content: "\F64D"
}

.mdi-human-male-boy:before {
	content: "\FA5B"
}

.mdi-human-male-female:before {
	content: "\F2E8"
}

.mdi-human-male-girl:before {
	content: "\FA5C"
}

.mdi-human-male-male:before {
	content: "\FA5D"
}

.mdi-human-pregnant:before {
	content: "\F5CF"
}

.mdi-humble-bundle:before {
	content: "\F743"
}

.mdi-ice-cream:before {
	content: "\F829"
}

.mdi-image:before {
	content: "\F2E9"
}

.mdi-image-album:before {
	content: "\F2EA"
}

.mdi-image-area:before {
	content: "\F2EB"
}

.mdi-image-area-close:before {
	content: "\F2EC"
}

.mdi-image-broken:before {
	content: "\F2ED"
}

.mdi-image-broken-variant:before {
	content: "\F2EE"
}

.mdi-image-filter:before {
	content: "\F2EF"
}

.mdi-image-filter-black-white:before {
	content: "\F2F0"
}

.mdi-image-filter-center-focus:before {
	content: "\F2F1"
}

.mdi-image-filter-center-focus-weak:before {
	content: "\F2F2"
}

.mdi-image-filter-drama:before {
	content: "\F2F3"
}

.mdi-image-filter-frames:before {
	content: "\F2F4"
}

.mdi-image-filter-hdr:before {
	content: "\F2F5"
}

.mdi-image-filter-none:before {
	content: "\F2F6"
}

.mdi-image-filter-tilt-shift:before {
	content: "\F2F7"
}

.mdi-image-filter-vintage:before {
	content: "\F2F8"
}

.mdi-image-move:before {
	content: "\F9F7"
}

.mdi-image-multiple:before {
	content: "\F2F9"
}

.mdi-image-off:before {
	content: "\F82A"
}

.mdi-image-outline:before {
	content: "\F975"
}

.mdi-image-plus:before {
	content: "\F87B"
}

.mdi-image-search:before {
	content: "\F976"
}

.mdi-image-search-outline:before {
	content: "\F977"
}

.mdi-import:before {
	content: "\F2FA"
}

.mdi-inbox:before {
	content: "\F686"
}

.mdi-inbox-arrow-down:before {
	content: "\F2FB"
}

.mdi-inbox-arrow-up:before {
	content: "\F3D1"
}

.mdi-inbox-multiple:before {
	content: "\F8AF"
}

.mdi-incognito:before {
	content: "\F5F9"
}

.mdi-infinity:before {
	content: "\F6E3"
}

.mdi-information:before {
	content: "\F2FC"
}

.mdi-information-outline:before {
	content: "\F2FD"
}

.mdi-information-variant:before {
	content: "\F64E"
}

.mdi-instagram:before {
	content: "\F2FE"
}

.mdi-instapaper:before {
	content: "\F2FF"
}

.mdi-internet-explorer:before {
	content: "\F300"
}

.mdi-invert-colors:before {
	content: "\F301"
}

.mdi-ip:before {
	content: "\FA5E"
}

.mdi-ip-network:before {
	content: "\FA5F"
}

.mdi-islam:before {
	content: "\F978"
}

.mdi-itunes:before {
	content: "\F676"
}

.mdi-jeepney:before {
	content: "\F302"
}

.mdi-jira:before {
	content: "\F303"
}

.mdi-jquery:before {
	content: "\F87C"
}

.mdi-jsfiddle:before {
	content: "\F304"
}

.mdi-json:before {
	content: "\F626"
}

.mdi-judaism:before {
	content: "\F979"
}

.mdi-karate:before {
	content: "\F82B"
}

.mdi-keg:before {
	content: "\F305"
}

.mdi-kettle:before {
	content: "\F5FA"
}

.mdi-key:before {
	content: "\F306"
}

.mdi-key-change:before {
	content: "\F307"
}

.mdi-key-minus:before {
	content: "\F308"
}

.mdi-key-plus:before {
	content: "\F309"
}

.mdi-key-remove:before {
	content: "\F30A"
}

.mdi-key-variant:before {
	content: "\F30B"
}

.mdi-keyboard:before {
	content: "\F30C"
}

.mdi-keyboard-backspace:before {
	content: "\F30D"
}

.mdi-keyboard-caps:before {
	content: "\F30E"
}

.mdi-keyboard-close:before {
	content: "\F30F"
}

.mdi-keyboard-off:before {
	content: "\F310"
}

.mdi-keyboard-outline:before {
	content: "\F97A"
}

.mdi-keyboard-return:before {
	content: "\F311"
}

.mdi-keyboard-settings:before {
	content: "\F9F8"
}

.mdi-keyboard-settings-outline:before {
	content: "\F9F9"
}

.mdi-keyboard-tab:before {
	content: "\F312"
}

.mdi-keyboard-variant:before {
	content: "\F313"
}

.mdi-kickstarter:before {
	content: "\F744"
}

.mdi-knife:before {
	content: "\F9FA"
}

.mdi-knife-military:before {
	content: "\F9FB"
}

.mdi-kodi:before {
	content: "\F314"
}

.mdi-label:before {
	content: "\F315"
}

.mdi-label-off:before {
	content: "\FACA"
}

.mdi-label-off-outline:before {
	content: "\FACB"
}

.mdi-label-outline:before {
	content: "\F316"
}

.mdi-label-variant:before {
	content: "\FACC"
}

.mdi-label-variant-outline:before {
	content: "\FACD"
}

.mdi-ladybug:before {
	content: "\F82C"
}

.mdi-lambda:before {
	content: "\F627"
}

.mdi-lamp:before {
	content: "\F6B4"
}

.mdi-lan:before {
	content: "\F317"
}

.mdi-lan-connect:before {
	content: "\F318"
}

.mdi-lan-disconnect:before {
	content: "\F319"
}

.mdi-lan-pending:before {
	content: "\F31A"
}

.mdi-language-c:before {
	content: "\F671"
}

.mdi-language-cpp:before {
	content: "\F672"
}

.mdi-language-csharp:before {
	content: "\F31B"
}

.mdi-language-css3:before {
	content: "\F31C"
}

.mdi-language-go:before {
	content: "\F7D2"
}

.mdi-language-html5:before {
	content: "\F31D"
}

.mdi-language-javascript:before {
	content: "\F31E"
}

.mdi-language-lua:before {
	content: "\F8B0"
}

.mdi-language-php:before {
	content: "\F31F"
}

.mdi-language-python:before {
	content: "\F320"
}

.mdi-language-python-text:before {
	content: "\F321"
}

.mdi-language-r:before {
	content: "\F7D3"
}

.mdi-language-ruby-on-rails:before {
	content: "\FACE"
}

.mdi-language-swift:before {
	content: "\F6E4"
}

.mdi-language-typescript:before {
	content: "\F6E5"
}

.mdi-laptop:before {
	content: "\F322"
}

.mdi-laptop-chromebook:before {
	content: "\F323"
}

.mdi-laptop-mac:before {
	content: "\F324"
}

.mdi-laptop-off:before {
	content: "\F6E6"
}

.mdi-laptop-windows:before {
	content: "\F325"
}

.mdi-laravel:before {
	content: "\FACF"
}

.mdi-lastfm:before {
	content: "\F326"
}

.mdi-lastpass:before {
	content: "\F446"
}

.mdi-launch:before {
	content: "\F327"
}

.mdi-lava-lamp:before {
	content: "\F7D4"
}

.mdi-layers:before {
	content: "\F328"
}

.mdi-layers-off:before {
	content: "\F329"
}

.mdi-layers-off-outline:before {
	content: "\F9FC"
}

.mdi-layers-outline:before {
	content: "\F9FD"
}

.mdi-lead-pencil:before {
	content: "\F64F"
}

.mdi-leaf:before {
	content: "\F32A"
}

.mdi-led-off:before {
	content: "\F32B"
}

.mdi-led-on:before {
	content: "\F32C"
}

.mdi-led-outline:before {
	content: "\F32D"
}

.mdi-led-strip:before {
	content: "\F7D5"
}

.mdi-led-variant-off:before {
	content: "\F32E"
}

.mdi-led-variant-on:before {
	content: "\F32F"
}

.mdi-led-variant-outline:before {
	content: "\F330"
}

.mdi-less-than:before {
	content: "\F97B"
}

.mdi-less-than-or-equal:before {
	content: "\F97C"
}

.mdi-library:before {
	content: "\F331"
}

.mdi-library-books:before {
	content: "\F332"
}

.mdi-library-music:before {
	content: "\F333"
}

.mdi-library-plus:before {
	content: "\F334"
}

.mdi-lifebuoy:before {
	content: "\F87D"
}

.mdi-light-switch:before {
	content: "\F97D"
}

.mdi-lightbulb:before {
	content: "\F335"
}

.mdi-lightbulb-on:before {
	content: "\F6E7"
}

.mdi-lightbulb-on-outline:before {
	content: "\F6E8"
}

.mdi-lightbulb-outline:before {
	content: "\F336"
}

.mdi-lighthouse:before {
	content: "\F9FE"
}

.mdi-lighthouse-on:before {
	content: "\F9FF"
}

.mdi-link:before {
	content: "\F337"
}

.mdi-link-off:before {
	content: "\F338"
}

.mdi-link-variant:before {
	content: "\F339"
}

.mdi-link-variant-off:before {
	content: "\F33A"
}

.mdi-linkedin:before {
	content: "\F33B"
}

.mdi-linkedin-box:before {
	content: "\F33C"
}

.mdi-linux:before {
	content: "\F33D"
}

.mdi-linux-mint:before {
	content: "\F8EC"
}

.mdi-litecoin:before {
	content: "\FA60"
}

.mdi-loading:before {
	content: "\F771"
}

.mdi-lock:before {
	content: "\F33E"
}

.mdi-lock-alert:before {
	content: "\F8ED"
}

.mdi-lock-clock:before {
	content: "\F97E"
}

.mdi-lock-open:before {
	content: "\F33F"
}

.mdi-lock-open-outline:before {
	content: "\F340"
}

.mdi-lock-outline:before {
	content: "\F341"
}

.mdi-lock-pattern:before {
	content: "\F6E9"
}

.mdi-lock-plus:before {
	content: "\F5FB"
}

.mdi-lock-question:before {
	content: "\F8EE"
}

.mdi-lock-reset:before {
	content: "\F772"
}

.mdi-lock-smart:before {
	content: "\F8B1"
}

.mdi-locker:before {
	content: "\F7D6"
}

.mdi-locker-multiple:before {
	content: "\F7D7"
}

.mdi-login:before {
	content: "\F342"
}

.mdi-login-variant:before {
	content: "\F5FC"
}

.mdi-logout:before {
	content: "\F343"
}

.mdi-logout-variant:before {
	content: "\F5FD"
}

.mdi-looks:before {
	content: "\F344"
}

.mdi-loop:before {
	content: "\F6EA"
}

.mdi-loupe:before {
	content: "\F345"
}

.mdi-lumx:before {
	content: "\F346"
}

.mdi-magnet:before {
	content: "\F347"
}

.mdi-magnet-on:before {
	content: "\F348"
}

.mdi-magnify:before {
	content: "\F349"
}

.mdi-magnify-close:before {
	content: "\F97F"
}

.mdi-magnify-minus:before {
	content: "\F34A"
}

.mdi-magnify-minus-cursor:before {
	content: "\FA61"
}

.mdi-magnify-minus-outline:before {
	content: "\F6EB"
}

.mdi-magnify-plus:before {
	content: "\F34B"
}

.mdi-magnify-plus-cursor:before {
	content: "\FA62"
}

.mdi-magnify-plus-outline:before {
	content: "\F6EC"
}

.mdi-mail-ru:before {
	content: "\F34C"
}

.mdi-mailbox:before {
	content: "\F6ED"
}

.mdi-map:before {
	content: "\F34D"
}

.mdi-map-legend:before {
	content: "\FA00"
}

.mdi-map-marker:before {
	content: "\F34E"
}

.mdi-map-marker-circle:before {
	content: "\F34F"
}

.mdi-map-marker-distance:before {
	content: "\F8EF"
}

.mdi-map-marker-minus:before {
	content: "\F650"
}

.mdi-map-marker-multiple:before {
	content: "\F350"
}

.mdi-map-marker-off:before {
	content: "\F351"
}

.mdi-map-marker-outline:before {
	content: "\F7D8"
}

.mdi-map-marker-plus:before {
	content: "\F651"
}

.mdi-map-marker-radius:before {
	content: "\F352"
}

.mdi-map-minus:before {
	content: "\F980"
}

.mdi-map-outline:before {
	content: "\F981"
}

.mdi-map-plus:before {
	content: "\F982"
}

.mdi-map-search:before {
	content: "\F983"
}

.mdi-map-search-outline:before {
	content: "\F984"
}

.mdi-margin:before {
	content: "\F353"
}

.mdi-markdown:before {
	content: "\F354"
}

.mdi-marker:before {
	content: "\F652"
}

.mdi-marker-check:before {
	content: "\F355"
}

.mdi-mastodon:before {
	content: "\FAD0"
}

.mdi-mastodon-variant:before {
	content: "\FAD1"
}

.mdi-material-design:before {
	content: "\F985"
}

.mdi-material-ui:before {
	content: "\F357"
}

.mdi-math-compass:before {
	content: "\F358"
}

.mdi-matrix:before {
	content: "\F628"
}

.mdi-maxcdn:before {
	content: "\F359"
}

.mdi-medal:before {
	content: "\F986"
}

.mdi-medical-bag:before {
	content: "\F6EE"
}

.mdi-medium:before {
	content: "\F35A"
}

.mdi-meetup:before {
	content: "\FAD2"
}

.mdi-memory:before {
	content: "\F35B"
}

.mdi-menu:before {
	content: "\F35C"
}

.mdi-menu-down:before {
	content: "\F35D"
}

.mdi-menu-down-outline:before {
	content: "\F6B5"
}

.mdi-menu-left:before {
	content: "\F35E"
}

.mdi-menu-left-outline:before {
	content: "\FA01"
}

.mdi-menu-right:before {
	content: "\F35F"
}

.mdi-menu-right-outline:before {
	content: "\FA02"
}

.mdi-menu-swap:before {
	content: "\FA63"
}

.mdi-menu-swap-outline:before {
	content: "\FA64"
}

.mdi-menu-up:before {
	content: "\F360"
}

.mdi-menu-up-outline:before {
	content: "\F6B6"
}

.mdi-message:before {
	content: "\F361"
}

.mdi-message-alert:before {
	content: "\F362"
}

.mdi-message-alert-outline:before {
	content: "\FA03"
}

.mdi-message-bulleted:before {
	content: "\F6A1"
}

.mdi-message-bulleted-off:before {
	content: "\F6A2"
}

.mdi-message-draw:before {
	content: "\F363"
}

.mdi-message-image:before {
	content: "\F364"
}

.mdi-message-outline:before {
	content: "\F365"
}

.mdi-message-plus:before {
	content: "\F653"
}

.mdi-message-processing:before {
	content: "\F366"
}

.mdi-message-reply:before {
	content: "\F367"
}

.mdi-message-reply-text:before {
	content: "\F368"
}

.mdi-message-settings:before {
	content: "\F6EF"
}

.mdi-message-settings-variant:before {
	content: "\F6F0"
}

.mdi-message-text:before {
	content: "\F369"
}

.mdi-message-text-outline:before {
	content: "\F36A"
}

.mdi-message-video:before {
	content: "\F36B"
}

.mdi-meteor:before {
	content: "\F629"
}

.mdi-metronome:before {
	content: "\F7D9"
}

.mdi-metronome-tick:before {
	content: "\F7DA"
}

.mdi-micro-sd:before {
	content: "\F7DB"
}

.mdi-microphone:before {
	content: "\F36C"
}

.mdi-microphone-minus:before {
	content: "\F8B2"
}

.mdi-microphone-off:before {
	content: "\F36D"
}

.mdi-microphone-outline:before {
	content: "\F36E"
}

.mdi-microphone-plus:before {
	content: "\F8B3"
}

.mdi-microphone-settings:before {
	content: "\F36F"
}

.mdi-microphone-variant:before {
	content: "\F370"
}

.mdi-microphone-variant-off:before {
	content: "\F371"
}

.mdi-microscope:before {
	content: "\F654"
}

.mdi-microsoft:before {
	content: "\F372"
}

.mdi-microsoft-dynamics:before {
	content: "\F987"
}

.mdi-midi:before {
	content: "\F8F0"
}

.mdi-midi-port:before {
	content: "\F8F1"
}

.mdi-minecraft:before {
	content: "\F373"
}

.mdi-mini-sd:before {
	content: "\FA04"
}

.mdi-minidisc:before {
	content: "\FA05"
}

.mdi-minus:before {
	content: "\F374"
}

.mdi-minus-box:before {
	content: "\F375"
}

.mdi-minus-box-outline:before {
	content: "\F6F1"
}

.mdi-minus-circle:before {
	content: "\F376"
}

.mdi-minus-circle-outline:before {
	content: "\F377"
}

.mdi-minus-network:before {
	content: "\F378"
}

.mdi-mixcloud:before {
	content: "\F62A"
}

.mdi-mixed-reality:before {
	content: "\F87E"
}

.mdi-mixer:before {
	content: "\F7DC"
}

.mdi-monitor:before {
	content: "\F379"
}

.mdi-monitor-cellphone:before {
	content: "\F988"
}

.mdi-monitor-cellphone-star:before {
	content: "\F989"
}

.mdi-monitor-dashboard:before {
	content: "\FA06"
}

.mdi-monitor-multiple:before {
	content: "\F37A"
}

.mdi-more:before {
	content: "\F37B"
}

.mdi-motorbike:before {
	content: "\F37C"
}

.mdi-mouse:before {
	content: "\F37D"
}

.mdi-mouse-bluetooth:before {
	content: "\F98A"
}

.mdi-mouse-off:before {
	content: "\F37E"
}

.mdi-mouse-variant:before {
	content: "\F37F"
}

.mdi-mouse-variant-off:before {
	content: "\F380"
}

.mdi-move-resize:before {
	content: "\F655"
}

.mdi-move-resize-variant:before {
	content: "\F656"
}

.mdi-movie:before {
	content: "\F381"
}

.mdi-movie-roll:before {
	content: "\F7DD"
}

.mdi-muffin:before {
	content: "\F98B"
}

.mdi-multiplication:before {
	content: "\F382"
}

.mdi-multiplication-box:before {
	content: "\F383"
}

.mdi-mushroom:before {
	content: "\F7DE"
}

.mdi-mushroom-outline:before {
	content: "\F7DF"
}

.mdi-music:before {
	content: "\F759"
}

.mdi-music-box:before {
	content: "\F384"
}

.mdi-music-box-outline:before {
	content: "\F385"
}

.mdi-music-circle:before {
	content: "\F386"
}

.mdi-music-circle-outline:before {
	content: "\FAD3"
}

.mdi-music-note:before {
	content: "\F387"
}

.mdi-music-note-bluetooth:before {
	content: "\F5FE"
}

.mdi-music-note-bluetooth-off:before {
	content: "\F5FF"
}

.mdi-music-note-eighth:before {
	content: "\F388"
}

.mdi-music-note-half:before {
	content: "\F389"
}

.mdi-music-note-off:before {
	content: "\F38A"
}

.mdi-music-note-quarter:before {
	content: "\F38B"
}

.mdi-music-note-sixteenth:before {
	content: "\F38C"
}

.mdi-music-note-whole:before {
	content: "\F38D"
}

.mdi-music-off:before {
	content: "\F75A"
}

.mdi-nas:before {
	content: "\F8F2"
}

.mdi-nativescript:before {
	content: "\F87F"
}

.mdi-nature:before {
	content: "\F38E"
}

.mdi-nature-people:before {
	content: "\F38F"
}

.mdi-navigation:before {
	content: "\F390"
}

.mdi-near-me:before {
	content: "\F5CD"
}

.mdi-needle:before {
	content: "\F391"
}

.mdi-netflix:before {
	content: "\F745"
}

.mdi-network:before {
	content: "\F6F2"
}

.mdi-network-strength-1:before {
	content: "\F8F3"
}

.mdi-network-strength-1-alert:before {
	content: "\F8F4"
}

.mdi-network-strength-2:before {
	content: "\F8F5"
}

.mdi-network-strength-2-alert:before {
	content: "\F8F6"
}

.mdi-network-strength-3:before {
	content: "\F8F7"
}

.mdi-network-strength-3-alert:before {
	content: "\F8F8"
}

.mdi-network-strength-4:before {
	content: "\F8F9"
}

.mdi-network-strength-4-alert:before {
	content: "\F8FA"
}

.mdi-network-strength-off:before {
	content: "\F8FB"
}

.mdi-network-strength-off-outline:before {
	content: "\F8FC"
}

.mdi-network-strength-outline:before {
	content: "\F8FD"
}

.mdi-new-box:before {
	content: "\F394"
}

.mdi-newspaper:before {
	content: "\F395"
}

.mdi-nfc:before {
	content: "\F396"
}

.mdi-nfc-tap:before {
	content: "\F397"
}

.mdi-nfc-variant:before {
	content: "\F398"
}

.mdi-ninja:before {
	content: "\F773"
}

.mdi-nintendo-switch:before {
	content: "\F7E0"
}

.mdi-nodejs:before {
	content: "\F399"
}

.mdi-not-equal:before {
	content: "\F98C"
}

.mdi-not-equal-variant:before {
	content: "\F98D"
}

.mdi-note:before {
	content: "\F39A"
}

.mdi-note-multiple:before {
	content: "\F6B7"
}

.mdi-note-multiple-outline:before {
	content: "\F6B8"
}

.mdi-note-outline:before {
	content: "\F39B"
}

.mdi-note-plus:before {
	content: "\F39C"
}

.mdi-note-plus-outline:before {
	content: "\F39D"
}

.mdi-note-text:before {
	content: "\F39E"
}

.mdi-notebook:before {
	content: "\F82D"
}

.mdi-notification-clear-all:before {
	content: "\F39F"
}

.mdi-npm:before {
	content: "\F6F6"
}

.mdi-npm-variant:before {
	content: "\F98E"
}

.mdi-npm-variant-outline:before {
	content: "\F98F"
}

.mdi-nuke:before {
	content: "\F6A3"
}

.mdi-null:before {
	content: "\F7E1"
}

.mdi-numeric:before {
	content: "\F3A0"
}

.mdi-numeric-0-box:before {
	content: "\F3A1"
}

.mdi-numeric-0-box-multiple-outline:before {
	content: "\F3A2"
}

.mdi-numeric-0-box-outline:before {
	content: "\F3A3"
}

.mdi-numeric-1-box:before {
	content: "\F3A4"
}

.mdi-numeric-1-box-multiple-outline:before {
	content: "\F3A5"
}

.mdi-numeric-1-box-outline:before {
	content: "\F3A6"
}

.mdi-numeric-2-box:before {
	content: "\F3A7"
}

.mdi-numeric-2-box-multiple-outline:before {
	content: "\F3A8"
}

.mdi-numeric-2-box-outline:before {
	content: "\F3A9"
}

.mdi-numeric-3-box:before {
	content: "\F3AA"
}

.mdi-numeric-3-box-multiple-outline:before {
	content: "\F3AB"
}

.mdi-numeric-3-box-outline:before {
	content: "\F3AC"
}

.mdi-numeric-4-box:before {
	content: "\F3AD"
}

.mdi-numeric-4-box-multiple-outline:before {
	content: "\F3AE"
}

.mdi-numeric-4-box-outline:before {
	content: "\F3AF"
}

.mdi-numeric-5-box:before {
	content: "\F3B0"
}

.mdi-numeric-5-box-multiple-outline:before {
	content: "\F3B1"
}

.mdi-numeric-5-box-outline:before {
	content: "\F3B2"
}

.mdi-numeric-6-box:before {
	content: "\F3B3"
}

.mdi-numeric-6-box-multiple-outline:before {
	content: "\F3B4"
}

.mdi-numeric-6-box-outline:before {
	content: "\F3B5"
}

.mdi-numeric-7-box:before {
	content: "\F3B6"
}

.mdi-numeric-7-box-multiple-outline:before {
	content: "\F3B7"
}

.mdi-numeric-7-box-outline:before {
	content: "\F3B8"
}

.mdi-numeric-8-box:before {
	content: "\F3B9"
}

.mdi-numeric-8-box-multiple-outline:before {
	content: "\F3BA"
}

.mdi-numeric-8-box-outline:before {
	content: "\F3BB"
}

.mdi-numeric-9-box:before {
	content: "\F3BC"
}

.mdi-numeric-9-box-multiple-outline:before {
	content: "\F3BD"
}

.mdi-numeric-9-box-outline:before {
	content: "\F3BE"
}

.mdi-numeric-9-plus-box:before {
	content: "\F3BF"
}

.mdi-numeric-9-plus-box-multiple-outline:before {
	content: "\F3C0"
}

.mdi-numeric-9-plus-box-outline:before {
	content: "\F3C1"
}

.mdi-nut:before {
	content: "\F6F7"
}

.mdi-nutrition:before {
	content: "\F3C2"
}

.mdi-oar:before {
	content: "\F67B"
}

.mdi-octagon:before {
	content: "\F3C3"
}

.mdi-octagon-outline:before {
	content: "\F3C4"
}

.mdi-octagram:before {
	content: "\F6F8"
}

.mdi-octagram-outline:before {
	content: "\F774"
}

.mdi-odnoklassniki:before {
	content: "\F3C5"
}

.mdi-office:before {
	content: "\F3C6"
}

.mdi-office-building:before {
	content: "\F990"
}

.mdi-oil:before {
	content: "\F3C7"
}

.mdi-oil-temperature:before {
	content: "\F3C8"
}

.mdi-omega:before {
	content: "\F3C9"
}

.mdi-onedrive:before {
	content: "\F3CA"
}

.mdi-onenote:before {
	content: "\F746"
}

.mdi-onepassword:before {
	content: "\F880"
}

.mdi-opacity:before {
	content: "\F5CC"
}

.mdi-open-in-app:before {
	content: "\F3CB"
}

.mdi-open-in-new:before {
	content: "\F3CC"
}

.mdi-openid:before {
	content: "\F3CD"
}

.mdi-opera:before {
	content: "\F3CE"
}

.mdi-orbit:before {
	content: "\F018"
}

.mdi-ornament:before {
	content: "\F3CF"
}

.mdi-ornament-variant:before {
	content: "\F3D0"
}

.mdi-owl:before {
	content: "\F3D2"
}

.mdi-package:before {
	content: "\F3D3"
}

.mdi-package-down:before {
	content: "\F3D4"
}

.mdi-package-up:before {
	content: "\F3D5"
}

.mdi-package-variant:before {
	content: "\F3D6"
}

.mdi-package-variant-closed:before {
	content: "\F3D7"
}

.mdi-page-first:before {
	content: "\F600"
}

.mdi-page-last:before {
	content: "\F601"
}

.mdi-page-layout-body:before {
	content: "\F6F9"
}

.mdi-page-layout-footer:before {
	content: "\F6FA"
}

.mdi-page-layout-header:before {
	content: "\F6FB"
}

.mdi-page-layout-sidebar-left:before {
	content: "\F6FC"
}

.mdi-page-layout-sidebar-right:before {
	content: "\F6FD"
}

.mdi-palette:before {
	content: "\F3D8"
}

.mdi-palette-advanced:before {
	content: "\F3D9"
}

.mdi-palette-swatch:before {
	content: "\F8B4"
}

.mdi-panda:before {
	content: "\F3DA"
}

.mdi-pandora:before {
	content: "\F3DB"
}

.mdi-panorama:before {
	content: "\F3DC"
}

.mdi-panorama-fisheye:before {
	content: "\F3DD"
}

.mdi-panorama-horizontal:before {
	content: "\F3DE"
}

.mdi-panorama-vertical:before {
	content: "\F3DF"
}

.mdi-panorama-wide-angle:before {
	content: "\F3E0"
}

.mdi-paper-cut-vertical:before {
	content: "\F3E1"
}

.mdi-paperclip:before {
	content: "\F3E2"
}

.mdi-parking:before {
	content: "\F3E3"
}

.mdi-passport:before {
	content: "\F7E2"
}

.mdi-patreon:before {
	content: "\F881"
}

.mdi-pause:before {
	content: "\F3E4"
}

.mdi-pause-circle:before {
	content: "\F3E5"
}

.mdi-pause-circle-outline:before {
	content: "\F3E6"
}

.mdi-pause-octagon:before {
	content: "\F3E7"
}

.mdi-pause-octagon-outline:before {
	content: "\F3E8"
}

.mdi-paw:before {
	content: "\F3E9"
}

.mdi-paw-off:before {
	content: "\F657"
}

.mdi-paypal:before {
	content: "\F882"
}

.mdi-peace:before {
	content: "\F883"
}

.mdi-pen:before {
	content: "\F3EA"
}

.mdi-pencil:before {
	content: "\F3EB"
}

.mdi-pencil-box:before {
	content: "\F3EC"
}

.mdi-pencil-box-outline:before {
	content: "\F3ED"
}

.mdi-pencil-circle:before {
	content: "\F6FE"
}

.mdi-pencil-circle-outline:before {
	content: "\F775"
}

.mdi-pencil-lock:before {
	content: "\F3EE"
}

.mdi-pencil-off:before {
	content: "\F3EF"
}

.mdi-pentagon:before {
	content: "\F6FF"
}

.mdi-pentagon-outline:before {
	content: "\F700"
}

.mdi-percent:before {
	content: "\F3F0"
}

.mdi-periodic-table:before {
	content: "\F8B5"
}

.mdi-periodic-table-co2:before {
	content: "\F7E3"
}

.mdi-periscope:before {
	content: "\F747"
}

.mdi-pharmacy:before {
	content: "\F3F1"
}

.mdi-phone:before {
	content: "\F3F2"
}

.mdi-phone-bluetooth:before {
	content: "\F3F3"
}

.mdi-phone-classic:before {
	content: "\F602"
}

.mdi-phone-forward:before {
	content: "\F3F4"
}

.mdi-phone-hangup:before {
	content: "\F3F5"
}

.mdi-phone-in-talk:before {
	content: "\F3F6"
}

.mdi-phone-incoming:before {
	content: "\F3F7"
}

.mdi-phone-lock:before {
	content: "\F3F8"
}

.mdi-phone-log:before {
	content: "\F3F9"
}

.mdi-phone-minus:before {
	content: "\F658"
}

.mdi-phone-missed:before {
	content: "\F3FA"
}

.mdi-phone-outgoing:before {
	content: "\F3FB"
}

.mdi-phone-paused:before {
	content: "\F3FC"
}

.mdi-phone-plus:before {
	content: "\F659"
}

.mdi-phone-return:before {
	content: "\F82E"
}

.mdi-phone-rotate-landscape:before {
	content: "\F884"
}

.mdi-phone-rotate-portrait:before {
	content: "\F885"
}

.mdi-phone-settings:before {
	content: "\F3FD"
}

.mdi-phone-voip:before {
	content: "\F3FE"
}

.mdi-pi:before {
	content: "\F3FF"
}

.mdi-pi-box:before {
	content: "\F400"
}

.mdi-piano:before {
	content: "\F67C"
}

.mdi-pickaxe:before {
	content: "\F8B6"
}

.mdi-pier:before {
	content: "\F886"
}

.mdi-pier-crane:before {
	content: "\F887"
}

.mdi-pig:before {
	content: "\F401"
}

.mdi-pill:before {
	content: "\F402"
}

.mdi-pillar:before {
	content: "\F701"
}

.mdi-pin:before {
	content: "\F403"
}

.mdi-pin-off:before {
	content: "\F404"
}

.mdi-pin-off-outline:before {
	content: "\F92F"
}

.mdi-pin-outline:before {
	content: "\F930"
}

.mdi-pine-tree:before {
	content: "\F405"
}

.mdi-pine-tree-box:before {
	content: "\F406"
}

.mdi-pinterest:before {
	content: "\F407"
}

.mdi-pinterest-box:before {
	content: "\F408"
}

.mdi-pinwheel:before {
	content: "\FAD4"
}

.mdi-pinwheel-outline:before {
	content: "\FAD5"
}

.mdi-pipe:before {
	content: "\F7E4"
}

.mdi-pipe-disconnected:before {
	content: "\F7E5"
}

.mdi-pipe-leak:before {
	content: "\F888"
}

.mdi-pirate:before {
	content: "\FA07"
}

.mdi-pistol:before {
	content: "\F702"
}

.mdi-piston:before {
	content: "\F889"
}

.mdi-pizza:before {
	content: "\F409"
}

.mdi-plane-shield:before {
	content: "\F6BA"
}

.mdi-play:before {
	content: "\F40A"
}

.mdi-play-box-outline:before {
	content: "\F40B"
}

.mdi-play-circle:before {
	content: "\F40C"
}

.mdi-play-circle-outline:before {
	content: "\F40D"
}

.mdi-play-network:before {
	content: "\F88A"
}

.mdi-play-pause:before {
	content: "\F40E"
}

.mdi-play-protected-content:before {
	content: "\F40F"
}

.mdi-play-speed:before {
	content: "\F8FE"
}

.mdi-playlist-check:before {
	content: "\F5C7"
}

.mdi-playlist-edit:before {
	content: "\F8FF"
}

.mdi-playlist-minus:before {
	content: "\F410"
}

.mdi-playlist-play:before {
	content: "\F411"
}

.mdi-playlist-plus:before {
	content: "\F412"
}

.mdi-playlist-remove:before {
	content: "\F413"
}

.mdi-playstation:before {
	content: "\F414"
}

.mdi-plex:before {
	content: "\F6B9"
}

.mdi-plus:before {
	content: "\F415"
}

.mdi-plus-box:before {
	content: "\F416"
}

.mdi-plus-box-outline:before {
	content: "\F703"
}

.mdi-plus-circle:before {
	content: "\F417"
}

.mdi-plus-circle-multiple-outline:before {
	content: "\F418"
}

.mdi-plus-circle-outline:before {
	content: "\F419"
}

.mdi-plus-minus:before {
	content: "\F991"
}

.mdi-plus-minus-box:before {
	content: "\F992"
}

.mdi-plus-network:before {
	content: "\F41A"
}

.mdi-plus-one:before {
	content: "\F41B"
}

.mdi-plus-outline:before {
	content: "\F704"
}

.mdi-pocket:before {
	content: "\F41C"
}

.mdi-podcast:before {
	content: "\F993"
}

.mdi-pokeball:before {
	content: "\F41D"
}

.mdi-pokemon-go:before {
	content: "\FA08"
}

.mdi-poker-chip:before {
	content: "\F82F"
}

.mdi-polaroid:before {
	content: "\F41E"
}

.mdi-poll:before {
	content: "\F41F"
}

.mdi-poll-box:before {
	content: "\F420"
}

.mdi-polymer:before {
	content: "\F421"
}

.mdi-pool:before {
	content: "\F606"
}

.mdi-popcorn:before {
	content: "\F422"
}

.mdi-pot:before {
	content: "\F65A"
}

.mdi-pot-mix:before {
	content: "\F65B"
}

.mdi-pound:before {
	content: "\F423"
}

.mdi-pound-box:before {
	content: "\F424"
}

.mdi-power:before {
	content: "\F425"
}

.mdi-power-cycle:before {
	content: "\F900"
}

.mdi-power-off:before {
	content: "\F901"
}

.mdi-power-on:before {
	content: "\F902"
}

.mdi-power-plug:before {
	content: "\F6A4"
}

.mdi-power-plug-off:before {
	content: "\F6A5"
}

.mdi-power-settings:before {
	content: "\F426"
}

.mdi-power-sleep:before {
	content: "\F903"
}

.mdi-power-socket:before {
	content: "\F427"
}

.mdi-power-socket-au:before {
	content: "\F904"
}

.mdi-power-socket-eu:before {
	content: "\F7E6"
}

.mdi-power-socket-uk:before {
	content: "\F7E7"
}

.mdi-power-socket-us:before {
	content: "\F7E8"
}

.mdi-power-standby:before {
	content: "\F905"
}

.mdi-powershell:before {
	content: "\FA09"
}

.mdi-prescription:before {
	content: "\F705"
}

.mdi-presentation:before {
	content: "\F428"
}

.mdi-presentation-play:before {
	content: "\F429"
}

.mdi-printer:before {
	content: "\F42A"
}

.mdi-printer-3d:before {
	content: "\F42B"
}

.mdi-printer-alert:before {
	content: "\F42C"
}

.mdi-printer-settings:before {
	content: "\F706"
}

.mdi-printer-wireless:before {
	content: "\FA0A"
}

.mdi-priority-high:before {
	content: "\F603"
}

.mdi-priority-low:before {
	content: "\F604"
}

.mdi-professional-hexagon:before {
	content: "\F42D"
}

.mdi-progress-check:before {
	content: "\F994"
}

.mdi-progress-clock:before {
	content: "\F995"
}

.mdi-progress-download:before {
	content: "\F996"
}

.mdi-progress-upload:before {
	content: "\F997"
}

.mdi-projector:before {
	content: "\F42E"
}

.mdi-projector-screen:before {
	content: "\F42F"
}

.mdi-publish:before {
	content: "\F6A6"
}

.mdi-pulse:before {
	content: "\F430"
}

.mdi-puzzle:before {
	content: "\F431"
}

.mdi-puzzle-outline:before {
	content: "\FA65"
}

.mdi-qi:before {
	content: "\F998"
}

.mdi-qqchat:before {
	content: "\F605"
}

.mdi-qrcode:before {
	content: "\F432"
}

.mdi-qrcode-edit:before {
	content: "\F8B7"
}

.mdi-qrcode-scan:before {
	content: "\F433"
}

.mdi-quadcopter:before {
	content: "\F434"
}

.mdi-quality-high:before {
	content: "\F435"
}

.mdi-quality-low:before {
	content: "\FA0B"
}

.mdi-quality-medium:before {
	content: "\FA0C"
}

.mdi-quicktime:before {
	content: "\F436"
}

.mdi-rabbit:before {
	content: "\F906"
}

.mdi-radar:before {
	content: "\F437"
}

.mdi-radiator:before {
	content: "\F438"
}

.mdi-radiator-disabled:before {
	content: "\FAD6"
}

.mdi-radiator-off:before {
	content: "\FAD7"
}

.mdi-radio:before {
	content: "\F439"
}

.mdi-radio-handheld:before {
	content: "\F43A"
}

.mdi-radio-tower:before {
	content: "\F43B"
}

.mdi-radioactive:before {
	content: "\F43C"
}

.mdi-radiobox-blank:before {
	content: "\F43D"
}

.mdi-radiobox-marked:before {
	content: "\F43E"
}

.mdi-raspberrypi:before {
	content: "\F43F"
}

.mdi-ray-end:before {
	content: "\F440"
}

.mdi-ray-end-arrow:before {
	content: "\F441"
}

.mdi-ray-start:before {
	content: "\F442"
}

.mdi-ray-start-arrow:before {
	content: "\F443"
}

.mdi-ray-start-end:before {
	content: "\F444"
}

.mdi-ray-vertex:before {
	content: "\F445"
}

.mdi-react:before {
	content: "\F707"
}

.mdi-read:before {
	content: "\F447"
}

.mdi-receipt:before {
	content: "\F449"
}

.mdi-record:before {
	content: "\F44A"
}

.mdi-record-player:before {
	content: "\F999"
}

.mdi-record-rec:before {
	content: "\F44B"
}

.mdi-recycle:before {
	content: "\F44C"
}

.mdi-reddit:before {
	content: "\F44D"
}

.mdi-redo:before {
	content: "\F44E"
}

.mdi-redo-variant:before {
	content: "\F44F"
}

.mdi-reflect-horizontal:before {
	content: "\FA0D"
}

.mdi-reflect-vertical:before {
	content: "\FA0E"
}

.mdi-refresh:before {
	content: "\F450"
}

.mdi-regex:before {
	content: "\F451"
}

.mdi-registered-trademark:before {
	content: "\FA66"
}

.mdi-relative-scale:before {
	content: "\F452"
}

.mdi-reload:before {
	content: "\F453"
}

.mdi-reminder:before {
	content: "\F88B"
}

.mdi-remote:before {
	content: "\F454"
}

.mdi-remote-desktop:before {
	content: "\F8B8"
}

.mdi-rename-box:before {
	content: "\F455"
}

.mdi-reorder-horizontal:before {
	content: "\F687"
}

.mdi-reorder-vertical:before {
	content: "\F688"
}

.mdi-repeat:before {
	content: "\F456"
}

.mdi-repeat-off:before {
	content: "\F457"
}

.mdi-repeat-once:before {
	content: "\F458"
}

.mdi-replay:before {
	content: "\F459"
}

.mdi-reply:before {
	content: "\F45A"
}

.mdi-reply-all:before {
	content: "\F45B"
}

.mdi-reproduction:before {
	content: "\F45C"
}

.mdi-resize:before {
	content: "\FA67"
}

.mdi-resize-bottom-right:before {
	content: "\F45D"
}

.mdi-responsive:before {
	content: "\F45E"
}

.mdi-restart:before {
	content: "\F708"
}

.mdi-restore:before {
	content: "\F99A"
}

.mdi-restore-clock:before {
	content: "\F6A7"
}

.mdi-rewind:before {
	content: "\F45F"
}

.mdi-rewind-outline:before {
	content: "\F709"
}

.mdi-rhombus:before {
	content: "\F70A"
}

.mdi-rhombus-medium:before {
	content: "\FA0F"
}

.mdi-rhombus-outline:before {
	content: "\F70B"
}

.mdi-rhombus-split:before {
	content: "\FA10"
}

.mdi-ribbon:before {
	content: "\F460"
}

.mdi-rice:before {
	content: "\F7E9"
}

.mdi-ring:before {
	content: "\F7EA"
}

.mdi-road:before {
	content: "\F461"
}

.mdi-road-variant:before {
	content: "\F462"
}

.mdi-robot:before {
	content: "\F6A8"
}

.mdi-robot-vacuum:before {
	content: "\F70C"
}

.mdi-robot-vacuum-variant:before {
	content: "\F907"
}

.mdi-rocket:before {
	content: "\F463"
}

.mdi-room-service:before {
	content: "\F88C"
}

.mdi-rotate-3d:before {
	content: "\F464"
}

.mdi-rotate-left:before {
	content: "\F465"
}

.mdi-rotate-left-variant:before {
	content: "\F466"
}

.mdi-rotate-right:before {
	content: "\F467"
}

.mdi-rotate-right-variant:before {
	content: "\F468"
}

.mdi-rounded-corner:before {
	content: "\F607"
}

.mdi-router-wireless:before {
	content: "\F469"
}

.mdi-router-wireless-settings:before {
	content: "\FA68"
}

.mdi-routes:before {
	content: "\F46A"
}

.mdi-rowing:before {
	content: "\F608"
}

.mdi-rss:before {
	content: "\F46B"
}

.mdi-rss-box:before {
	content: "\F46C"
}

.mdi-ruler:before {
	content: "\F46D"
}

.mdi-run:before {
	content: "\F70D"
}

.mdi-run-fast:before {
	content: "\F46E"
}

.mdi-safe:before {
	content: "\FA69"
}

.mdi-sale:before {
	content: "\F46F"
}

.mdi-salesforce:before {
	content: "\F88D"
}

.mdi-sass:before {
	content: "\F7EB"
}

.mdi-satellite:before {
	content: "\F470"
}

.mdi-satellite-uplink:before {
	content: "\F908"
}

.mdi-satellite-variant:before {
	content: "\F471"
}

.mdi-sausage:before {
	content: "\F8B9"
}

.mdi-saxophone:before {
	content: "\F609"
}

.mdi-scale:before {
	content: "\F472"
}

.mdi-scale-balance:before {
	content: "\F5D1"
}

.mdi-scale-bathroom:before {
	content: "\F473"
}

.mdi-scanner:before {
	content: "\F6AA"
}

.mdi-scanner-off:before {
	content: "\F909"
}

.mdi-school:before {
	content: "\F474"
}

.mdi-scissors-cutting:before {
	content: "\FA6A"
}

.mdi-screen-rotation:before {
	content: "\F475"
}

.mdi-screen-rotation-lock:before {
	content: "\F476"
}

.mdi-screwdriver:before {
	content: "\F477"
}

.mdi-script:before {
	content: "\F478"
}

.mdi-sd:before {
	content: "\F479"
}

.mdi-seal:before {
	content: "\F47A"
}

.mdi-search-web:before {
	content: "\F70E"
}

.mdi-seat-flat:before {
	content: "\F47B"
}

.mdi-seat-flat-angled:before {
	content: "\F47C"
}

.mdi-seat-individual-suite:before {
	content: "\F47D"
}

.mdi-seat-legroom-extra:before {
	content: "\F47E"
}

.mdi-seat-legroom-normal:before {
	content: "\F47F"
}

.mdi-seat-legroom-reduced:before {
	content: "\F480"
}

.mdi-seat-recline-extra:before {
	content: "\F481"
}

.mdi-seat-recline-normal:before {
	content: "\F482"
}

.mdi-security:before {
	content: "\F483"
}

.mdi-security-account:before {
	content: "\F88E"
}

.mdi-security-account-outline:before {
	content: "\FA11"
}

.mdi-security-close:before {
	content: "\F99B"
}

.mdi-security-home:before {
	content: "\F689"
}

.mdi-security-lock:before {
	content: "\F99C"
}

.mdi-security-network:before {
	content: "\F484"
}

.mdi-security-off:before {
	content: "\F99D"
}

.mdi-select:before {
	content: "\F485"
}

.mdi-select-all:before {
	content: "\F486"
}

.mdi-select-compare:before {
	content: "\FAD8"
}

.mdi-select-drag:before {
	content: "\FA6B"
}

.mdi-select-inverse:before {
	content: "\F487"
}

.mdi-select-off:before {
	content: "\F488"
}

.mdi-selection:before {
	content: "\F489"
}

.mdi-selection-drag:before {
	content: "\FA6C"
}

.mdi-selection-off:before {
	content: "\F776"
}

.mdi-send:before {
	content: "\F48A"
}

.mdi-send-lock:before {
	content: "\F7EC"
}

.mdi-serial-port:before {
	content: "\F65C"
}

.mdi-server:before {
	content: "\F48B"
}

.mdi-server-minus:before {
	content: "\F48C"
}

.mdi-server-network:before {
	content: "\F48D"
}

.mdi-server-network-off:before {
	content: "\F48E"
}

.mdi-server-off:before {
	content: "\F48F"
}

.mdi-server-plus:before {
	content: "\F490"
}

.mdi-server-remove:before {
	content: "\F491"
}

.mdi-server-security:before {
	content: "\F492"
}

.mdi-set-all:before {
	content: "\F777"
}

.mdi-set-center:before {
	content: "\F778"
}

.mdi-set-center-right:before {
	content: "\F779"
}

.mdi-set-left:before {
	content: "\F77A"
}

.mdi-set-left-center:before {
	content: "\F77B"
}

.mdi-set-left-right:before {
	content: "\F77C"
}

.mdi-set-none:before {
	content: "\F77D"
}

.mdi-set-right:before {
	content: "\F77E"
}

.mdi-set-top-box:before {
	content: "\F99E"
}

.mdi-settings:before {
	content: "\F493"
}

.mdi-settings-box:before {
	content: "\F494"
}

.mdi-settings-helper:before {
	content: "\FA6D"
}

.mdi-settings-outline:before {
	content: "\F8BA"
}

.mdi-shape:before {
	content: "\F830"
}

.mdi-shape-circle-plus:before {
	content: "\F65D"
}

.mdi-shape-outline:before {
	content: "\F831"
}

.mdi-shape-plus:before {
	content: "\F495"
}

.mdi-shape-polygon-plus:before {
	content: "\F65E"
}

.mdi-shape-rectangle-plus:before {
	content: "\F65F"
}

.mdi-shape-square-plus:before {
	content: "\F660"
}

.mdi-share:before {
	content: "\F496"
}

.mdi-share-outline:before {
	content: "\F931"
}

.mdi-share-variant:before {
	content: "\F497"
}

.mdi-shield:before {
	content: "\F498"
}

.mdi-shield-half-full:before {
	content: "\F77F"
}

.mdi-shield-outline:before {
	content: "\F499"
}

.mdi-shield-plus:before {
	content: "\FAD9"
}

.mdi-shield-plus-outline:before {
	content: "\FADA"
}

.mdi-shield-remove:before {
	content: "\FADB"
}

.mdi-shield-remove-outline:before {
	content: "\FADC"
}

.mdi-ship-wheel:before {
	content: "\F832"
}

.mdi-shopify:before {
	content: "\FADD"
}

.mdi-shopping:before {
	content: "\F49A"
}

.mdi-shopping-music:before {
	content: "\F49B"
}

.mdi-shovel:before {
	content: "\F70F"
}

.mdi-shovel-off:before {
	content: "\F710"
}

.mdi-shower:before {
	content: "\F99F"
}

.mdi-shower-head:before {
	content: "\F9A0"
}

.mdi-shredder:before {
	content: "\F49C"
}

.mdi-shuffle:before {
	content: "\F49D"
}

.mdi-shuffle-disabled:before {
	content: "\F49E"
}

.mdi-shuffle-variant:before {
	content: "\F49F"
}

.mdi-sigma:before {
	content: "\F4A0"
}

.mdi-sigma-lower:before {
	content: "\F62B"
}

.mdi-sign-caution:before {
	content: "\F4A1"
}

.mdi-sign-direction:before {
	content: "\F780"
}

.mdi-sign-text:before {
	content: "\F781"
}

.mdi-signal:before {
	content: "\F4A2"
}

.mdi-signal-2g:before {
	content: "\F711"
}

.mdi-signal-3g:before {
	content: "\F712"
}

.mdi-signal-4g:before {
	content: "\F713"
}

.mdi-signal-5g:before {
	content: "\FA6E"
}

.mdi-signal-cellular-1:before {
	content: "\F8BB"
}

.mdi-signal-cellular-2:before {
	content: "\F8BC"
}

.mdi-signal-cellular-3:before {
	content: "\F8BD"
}

.mdi-signal-cellular-outline:before {
	content: "\F8BE"
}

.mdi-signal-hspa:before {
	content: "\F714"
}

.mdi-signal-hspa-plus:before {
	content: "\F715"
}

.mdi-signal-off:before {
	content: "\F782"
}

.mdi-signal-variant:before {
	content: "\F60A"
}

.mdi-silverware:before {
	content: "\F4A3"
}

.mdi-silverware-fork:before {
	content: "\F4A4"
}

.mdi-silverware-fork-knife:before {
	content: "\FA6F"
}

.mdi-silverware-spoon:before {
	content: "\F4A5"
}

.mdi-silverware-variant:before {
	content: "\F4A6"
}

.mdi-sim:before {
	content: "\F4A7"
}

.mdi-sim-alert:before {
	content: "\F4A8"
}

.mdi-sim-off:before {
	content: "\F4A9"
}

.mdi-sina-weibo:before {
	content: "\FADE"
}

.mdi-sitemap:before {
	content: "\F4AA"
}

.mdi-skip-backward:before {
	content: "\F4AB"
}

.mdi-skip-forward:before {
	content: "\F4AC"
}

.mdi-skip-next:before {
	content: "\F4AD"
}

.mdi-skip-next-circle:before {
	content: "\F661"
}

.mdi-skip-next-circle-outline:before {
	content: "\F662"
}

.mdi-skip-previous:before {
	content: "\F4AE"
}

.mdi-skip-previous-circle:before {
	content: "\F663"
}

.mdi-skip-previous-circle-outline:before {
	content: "\F664"
}

.mdi-skull:before {
	content: "\F68B"
}

.mdi-skype:before {
	content: "\F4AF"
}

.mdi-skype-business:before {
	content: "\F4B0"
}

.mdi-slack:before {
	content: "\F4B1"
}

.mdi-slackware:before {
	content: "\F90A"
}

.mdi-sleep:before {
	content: "\F4B2"
}

.mdi-sleep-off:before {
	content: "\F4B3"
}

.mdi-smog:before {
	content: "\FA70"
}

.mdi-smoke-detector:before {
	content: "\F392"
}

.mdi-smoking:before {
	content: "\F4B4"
}

.mdi-smoking-off:before {
	content: "\F4B5"
}

.mdi-snapchat:before {
	content: "\F4B6"
}

.mdi-snowflake:before {
	content: "\F716"
}

.mdi-snowman:before {
	content: "\F4B7"
}

.mdi-soccer:before {
	content: "\F4B8"
}

.mdi-soccer-field:before {
	content: "\F833"
}

.mdi-sofa:before {
	content: "\F4B9"
}

.mdi-solar-power:before {
	content: "\FA71"
}

.mdi-solid:before {
	content: "\F68C"
}

.mdi-sort:before {
	content: "\F4BA"
}

.mdi-sort-alphabetical:before {
	content: "\F4BB"
}

.mdi-sort-ascending:before {
	content: "\F4BC"
}

.mdi-sort-descending:before {
	content: "\F4BD"
}

.mdi-sort-numeric:before {
	content: "\F4BE"
}

.mdi-sort-variant:before {
	content: "\F4BF"
}

.mdi-soundcloud:before {
	content: "\F4C0"
}

.mdi-source-branch:before {
	content: "\F62C"
}

.mdi-source-commit:before {
	content: "\F717"
}

.mdi-source-commit-end:before {
	content: "\F718"
}

.mdi-source-commit-end-local:before {
	content: "\F719"
}

.mdi-source-commit-local:before {
	content: "\F71A"
}

.mdi-source-commit-next-local:before {
	content: "\F71B"
}

.mdi-source-commit-start:before {
	content: "\F71C"
}

.mdi-source-commit-start-next-local:before {
	content: "\F71D"
}

.mdi-source-fork:before {
	content: "\F4C1"
}

.mdi-source-merge:before {
	content: "\F62D"
}

.mdi-source-pull:before {
	content: "\F4C2"
}

.mdi-soy-sauce:before {
	content: "\F7ED"
}

.mdi-speaker:before {
	content: "\F4C3"
}

.mdi-speaker-bluetooth:before {
	content: "\F9A1"
}

.mdi-speaker-off:before {
	content: "\F4C4"
}

.mdi-speaker-wireless:before {
	content: "\F71E"
}

.mdi-speedometer:before {
	content: "\F4C5"
}

.mdi-spellcheck:before {
	content: "\F4C6"
}

.mdi-spotify:before {
	content: "\F4C7"
}

.mdi-spotlight:before {
	content: "\F4C8"
}

.mdi-spotlight-beam:before {
	content: "\F4C9"
}

.mdi-spray:before {
	content: "\F665"
}

.mdi-spray-bottle:before {
	content: "\FADF"
}

.mdi-square:before {
	content: "\F763"
}

.mdi-square-edit-outline:before {
	content: "\F90B"
}

.mdi-square-inc:before {
	content: "\F4CA"
}

.mdi-square-inc-cash:before {
	content: "\F4CB"
}

.mdi-square-medium:before {
	content: "\FA12"
}

.mdi-square-medium-outline:before {
	content: "\FA13"
}

.mdi-square-outline:before {
	content: "\F762"
}

.mdi-square-root:before {
	content: "\F783"
}

.mdi-square-root-box:before {
	content: "\F9A2"
}

.mdi-square-small:before {
	content: "\FA14"
}

.mdi-squeegee:before {
	content: "\FAE0"
}

.mdi-ssh:before {
	content: "\F8BF"
}

.mdi-stack-exchange:before {
	content: "\F60B"
}

.mdi-stack-overflow:before {
	content: "\F4CC"
}

.mdi-stadium:before {
	content: "\F71F"
}

.mdi-stairs:before {
	content: "\F4CD"
}

.mdi-standard-definition:before {
	content: "\F7EE"
}

.mdi-star:before {
	content: "\F4CE"
}

.mdi-star-box:before {
	content: "\FA72"
}

.mdi-star-box-outline:before {
	content: "\FA73"
}

.mdi-star-circle:before {
	content: "\F4CF"
}

.mdi-star-circle-outline:before {
	content: "\F9A3"
}

.mdi-star-face:before {
	content: "\F9A4"
}

.mdi-star-four-points:before {
	content: "\FAE1"
}

.mdi-star-four-points-outline:before {
	content: "\FAE2"
}

.mdi-star-half:before {
	content: "\F4D0"
}

.mdi-star-off:before {
	content: "\F4D1"
}

.mdi-star-outline:before {
	content: "\F4D2"
}

.mdi-star-three-points:before {
	content: "\FAE3"
}

.mdi-star-three-points-outline:before {
	content: "\FAE4"
}

.mdi-steam:before {
	content: "\F4D3"
}

.mdi-steam-box:before {
	content: "\F90C"
}

.mdi-steering:before {
	content: "\F4D4"
}

.mdi-steering-off:before {
	content: "\F90D"
}

.mdi-step-backward:before {
	content: "\F4D5"
}

.mdi-step-backward-2:before {
	content: "\F4D6"
}

.mdi-step-forward:before {
	content: "\F4D7"
}

.mdi-step-forward-2:before {
	content: "\F4D8"
}

.mdi-stethoscope:before {
	content: "\F4D9"
}

.mdi-sticker:before {
	content: "\F5D0"
}

.mdi-sticker-emoji:before {
	content: "\F784"
}

.mdi-stocking:before {
	content: "\F4DA"
}

.mdi-stop:before {
	content: "\F4DB"
}

.mdi-stop-circle:before {
	content: "\F666"
}

.mdi-stop-circle-outline:before {
	content: "\F667"
}

.mdi-store:before {
	content: "\F4DC"
}

.mdi-store-24-hour:before {
	content: "\F4DD"
}

.mdi-stove:before {
	content: "\F4DE"
}

.mdi-subdirectory-arrow-left:before {
	content: "\F60C"
}

.mdi-subdirectory-arrow-right:before {
	content: "\F60D"
}

.mdi-subtitles:before {
	content: "\FA15"
}

.mdi-subtitles-outline:before {
	content: "\FA16"
}

.mdi-subway:before {
	content: "\F6AB"
}

.mdi-subway-variant:before {
	content: "\F4DF"
}

.mdi-summit:before {
	content: "\F785"
}

.mdi-sunglasses:before {
	content: "\F4E0"
}

.mdi-surround-sound:before {
	content: "\F5C5"
}

.mdi-surround-sound-2-0:before {
	content: "\F7EF"
}

.mdi-surround-sound-3-1:before {
	content: "\F7F0"
}

.mdi-surround-sound-5-1:before {
	content: "\F7F1"
}

.mdi-surround-sound-7-1:before {
	content: "\F7F2"
}

.mdi-svg:before {
	content: "\F720"
}

.mdi-swap-horizontal:before {
	content: "\F4E1"
}

.mdi-swap-horizontal-variant:before {
	content: "\F8C0"
}

.mdi-swap-vertical:before {
	content: "\F4E2"
}

.mdi-swap-vertical-variant:before {
	content: "\F8C1"
}

.mdi-swim:before {
	content: "\F4E3"
}

.mdi-switch:before {
	content: "\F4E4"
}

.mdi-sword:before {
	content: "\F4E5"
}

.mdi-sword-cross:before {
	content: "\F786"
}

.mdi-symfony:before {
	content: "\FAE5"
}

.mdi-sync:before {
	content: "\F4E6"
}

.mdi-sync-alert:before {
	content: "\F4E7"
}

.mdi-sync-off:before {
	content: "\F4E8"
}

.mdi-tab:before {
	content: "\F4E9"
}

.mdi-tab-plus:before {
	content: "\F75B"
}

.mdi-tab-unselected:before {
	content: "\F4EA"
}

.mdi-table:before {
	content: "\F4EB"
}

.mdi-table-border:before {
	content: "\FA17"
}

.mdi-table-column:before {
	content: "\F834"
}

.mdi-table-column-plus-after:before {
	content: "\F4EC"
}

.mdi-table-column-plus-before:before {
	content: "\F4ED"
}

.mdi-table-column-remove:before {
	content: "\F4EE"
}

.mdi-table-column-width:before {
	content: "\F4EF"
}

.mdi-table-edit:before {
	content: "\F4F0"
}

.mdi-table-large:before {
	content: "\F4F1"
}

.mdi-table-merge-cells:before {
	content: "\F9A5"
}

.mdi-table-of-contents:before {
	content: "\F835"
}

.mdi-table-plus:before {
	content: "\FA74"
}

.mdi-table-remove:before {
	content: "\FA75"
}

.mdi-table-row:before {
	content: "\F836"
}

.mdi-table-row-height:before {
	content: "\F4F2"
}

.mdi-table-row-plus-after:before {
	content: "\F4F3"
}

.mdi-table-row-plus-before:before {
	content: "\F4F4"
}

.mdi-table-row-remove:before {
	content: "\F4F5"
}

.mdi-table-search:before {
	content: "\F90E"
}

.mdi-table-settings:before {
	content: "\F837"
}

.mdi-tablet:before {
	content: "\F4F6"
}

.mdi-tablet-android:before {
	content: "\F4F7"
}

.mdi-tablet-cellphone:before {
	content: "\F9A6"
}

.mdi-tablet-ipad:before {
	content: "\F4F8"
}

.mdi-taco:before {
	content: "\F761"
}

.mdi-tag:before {
	content: "\F4F9"
}

.mdi-tag-faces:before {
	content: "\F4FA"
}

.mdi-tag-heart:before {
	content: "\F68A"
}

.mdi-tag-minus:before {
	content: "\F90F"
}

.mdi-tag-multiple:before {
	content: "\F4FB"
}

.mdi-tag-outline:before {
	content: "\F4FC"
}

.mdi-tag-plus:before {
	content: "\F721"
}

.mdi-tag-remove:before {
	content: "\F722"
}

.mdi-tag-text-outline:before {
	content: "\F4FD"
}

.mdi-target:before {
	content: "\F4FE"
}

.mdi-target-variant:before {
	content: "\FA76"
}

.mdi-taxi:before {
	content: "\F4FF"
}

.mdi-teach:before {
	content: "\F88F"
}

.mdi-teamviewer:before {
	content: "\F500"
}

.mdi-telegram:before {
	content: "\F501"
}

.mdi-television:before {
	content: "\F502"
}

.mdi-television-box:before {
	content: "\F838"
}

.mdi-television-classic:before {
	content: "\F7F3"
}

.mdi-television-classic-off:before {
	content: "\F839"
}

.mdi-television-guide:before {
	content: "\F503"
}

.mdi-television-off:before {
	content: "\F83A"
}

.mdi-temperature-celsius:before {
	content: "\F504"
}

.mdi-temperature-fahrenheit:before {
	content: "\F505"
}

.mdi-temperature-kelvin:before {
	content: "\F506"
}

.mdi-tennis:before {
	content: "\F507"
}

.mdi-tent:before {
	content: "\F508"
}

.mdi-terrain:before {
	content: "\F509"
}

.mdi-test-tube:before {
	content: "\F668"
}

.mdi-test-tube-empty:before {
	content: "\F910"
}

.mdi-test-tube-off:before {
	content: "\F911"
}

.mdi-text:before {
	content: "\F9A7"
}

.mdi-text-shadow:before {
	content: "\F669"
}

.mdi-text-short:before {
	content: "\F9A8"
}

.mdi-text-subject:before {
	content: "\F9A9"
}

.mdi-text-to-speech:before {
	content: "\F50A"
}

.mdi-text-to-speech-off:before {
	content: "\F50B"
}

.mdi-textbox:before {
	content: "\F60E"
}

.mdi-textbox-password:before {
	content: "\F7F4"
}

.mdi-texture:before {
	content: "\F50C"
}

.mdi-theater:before {
	content: "\F50D"
}

.mdi-theme-light-dark:before {
	content: "\F50E"
}

.mdi-thermometer:before {
	content: "\F50F"
}

.mdi-thermometer-lines:before {
	content: "\F510"
}

.mdi-thermostat:before {
	content: "\F393"
}

.mdi-thermostat-box:before {
	content: "\F890"
}

.mdi-thought-bubble:before {
	content: "\F7F5"
}

.mdi-thought-bubble-outline:before {
	content: "\F7F6"
}

.mdi-thumb-down:before {
	content: "\F511"
}

.mdi-thumb-down-outline:before {
	content: "\F512"
}

.mdi-thumb-up:before {
	content: "\F513"
}

.mdi-thumb-up-outline:before {
	content: "\F514"
}

.mdi-thumbs-up-down:before {
	content: "\F515"
}

.mdi-ticket:before {
	content: "\F516"
}

.mdi-ticket-account:before {
	content: "\F517"
}

.mdi-ticket-confirmation:before {
	content: "\F518"
}

.mdi-ticket-outline:before {
	content: "\F912"
}

.mdi-ticket-percent:before {
	content: "\F723"
}

.mdi-tie:before {
	content: "\F519"
}

.mdi-tilde:before {
	content: "\F724"
}

.mdi-timelapse:before {
	content: "\F51A"
}

.mdi-timer:before {
	content: "\F51B"
}

.mdi-timer-10:before {
	content: "\F51C"
}

.mdi-timer-3:before {
	content: "\F51D"
}

.mdi-timer-off:before {
	content: "\F51E"
}

.mdi-timer-sand:before {
	content: "\F51F"
}

.mdi-timer-sand-empty:before {
	content: "\F6AC"
}

.mdi-timer-sand-full:before {
	content: "\F78B"
}

.mdi-timetable:before {
	content: "\F520"
}

.mdi-toggle-switch:before {
	content: "\F521"
}

.mdi-toggle-switch-off:before {
	content: "\F522"
}

.mdi-toggle-switch-off-outline:before {
	content: "\FA18"
}

.mdi-toggle-switch-outline:before {
	content: "\FA19"
}

.mdi-toilet:before {
	content: "\F9AA"
}

.mdi-toolbox:before {
	content: "\F9AB"
}

.mdi-toolbox-outline:before {
	content: "\F9AC"
}

.mdi-tooltip:before {
	content: "\F523"
}

.mdi-tooltip-edit:before {
	content: "\F524"
}

.mdi-tooltip-image:before {
	content: "\F525"
}

.mdi-tooltip-outline:before {
	content: "\F526"
}

.mdi-tooltip-outline-plus:before {
	content: "\F527"
}

.mdi-tooltip-text:before {
	content: "\F528"
}

.mdi-tooth:before {
	content: "\F8C2"
}

.mdi-tooth-outline:before {
	content: "\F529"
}

.mdi-tor:before {
	content: "\F52A"
}

.mdi-tournament:before {
	content: "\F9AD"
}

.mdi-tower-beach:before {
	content: "\F680"
}

.mdi-tower-fire:before {
	content: "\F681"
}

.mdi-towing:before {
	content: "\F83B"
}

.mdi-track-light:before {
	content: "\F913"
}

.mdi-trackpad:before {
	content: "\F7F7"
}

.mdi-trackpad-lock:before {
	content: "\F932"
}

.mdi-tractor:before {
	content: "\F891"
}

.mdi-trademark:before {
	content: "\FA77"
}

.mdi-traffic-light:before {
	content: "\F52B"
}

.mdi-train:before {
	content: "\F52C"
}

.mdi-train-variant:before {
	content: "\F8C3"
}

.mdi-tram:before {
	content: "\F52D"
}

.mdi-transcribe:before {
	content: "\F52E"
}

.mdi-transcribe-close:before {
	content: "\F52F"
}

.mdi-transfer:before {
	content: "\F530"
}

.mdi-transit-transfer:before {
	content: "\F6AD"
}

.mdi-transition:before {
	content: "\F914"
}

.mdi-transition-masked:before {
	content: "\F915"
}

.mdi-translate:before {
	content: "\F5CA"
}

.mdi-trash-can:before {
	content: "\FA78"
}

.mdi-trash-can-outline:before {
	content: "\FA79"
}

.mdi-treasure-chest:before {
	content: "\F725"
}

.mdi-tree:before {
	content: "\F531"
}

.mdi-trello:before {
	content: "\F532"
}

.mdi-trending-down:before {
	content: "\F533"
}

.mdi-trending-neutral:before {
	content: "\F534"
}

.mdi-trending-up:before {
	content: "\F535"
}

.mdi-triangle:before {
	content: "\F536"
}

.mdi-triangle-outline:before {
	content: "\F537"
}

.mdi-trophy:before {
	content: "\F538"
}

.mdi-trophy-award:before {
	content: "\F539"
}

.mdi-trophy-outline:before {
	content: "\F53A"
}

.mdi-trophy-variant:before {
	content: "\F53B"
}

.mdi-trophy-variant-outline:before {
	content: "\F53C"
}

.mdi-truck:before {
	content: "\F53D"
}

.mdi-truck-delivery:before {
	content: "\F53E"
}

.mdi-truck-fast:before {
	content: "\F787"
}

.mdi-truck-trailer:before {
	content: "\F726"
}

.mdi-tshirt-crew:before {
	content: "\FA7A"
}

.mdi-tshirt-crew-outline:before {
	content: "\F53F"
}

.mdi-tshirt-v:before {
	content: "\FA7B"
}

.mdi-tshirt-v-outline:before {
	content: "\F540"
}

.mdi-tumble-dryer:before {
	content: "\F916"
}

.mdi-tumblr:before {
	content: "\F541"
}

.mdi-tumblr-box:before {
	content: "\F917"
}

.mdi-tumblr-reblog:before {
	content: "\F542"
}

.mdi-tune:before {
	content: "\F62E"
}

.mdi-tune-vertical:before {
	content: "\F66A"
}

.mdi-twitch:before {
	content: "\F543"
}

.mdi-twitter:before {
	content: "\F544"
}

.mdi-twitter-box:before {
	content: "\F545"
}

.mdi-twitter-circle:before {
	content: "\F546"
}

.mdi-twitter-retweet:before {
	content: "\F547"
}

.mdi-two-factor-authentication:before {
	content: "\F9AE"
}

.mdi-uber:before {
	content: "\F748"
}

.mdi-ubuntu:before {
	content: "\F548"
}

.mdi-ultra-high-definition:before {
	content: "\F7F8"
}

.mdi-umbraco:before {
	content: "\F549"
}

.mdi-umbrella:before {
	content: "\F54A"
}

.mdi-umbrella-closed:before {
	content: "\F9AF"
}

.mdi-umbrella-outline:before {
	content: "\F54B"
}

.mdi-undo:before {
	content: "\F54C"
}

.mdi-undo-variant:before {
	content: "\F54D"
}

.mdi-unfold-less-horizontal:before {
	content: "\F54E"
}

.mdi-unfold-less-vertical:before {
	content: "\F75F"
}

.mdi-unfold-more-horizontal:before {
	content: "\F54F"
}

.mdi-unfold-more-vertical:before {
	content: "\F760"
}

.mdi-ungroup:before {
	content: "\F550"
}

.mdi-unity:before {
	content: "\F6AE"
}

.mdi-unreal:before {
	content: "\F9B0"
}

.mdi-untappd:before {
	content: "\F551"
}

.mdi-update:before {
	content: "\F6AF"
}

.mdi-upload:before {
	content: "\F552"
}

.mdi-upload-multiple:before {
	content: "\F83C"
}

.mdi-upload-network:before {
	content: "\F6F5"
}

.mdi-usb:before {
	content: "\F553"
}

.mdi-van-passenger:before {
	content: "\F7F9"
}

.mdi-van-utility:before {
	content: "\F7FA"
}

.mdi-vanish:before {
	content: "\F7FB"
}

.mdi-variable:before {
	content: "\FAE6"
}

.mdi-vector-arrange-above:before {
	content: "\F554"
}

.mdi-vector-arrange-below:before {
	content: "\F555"
}

.mdi-vector-bezier:before {
	content: "\FAE7"
}

.mdi-vector-circle:before {
	content: "\F556"
}

.mdi-vector-circle-variant:before {
	content: "\F557"
}

.mdi-vector-combine:before {
	content: "\F558"
}

.mdi-vector-curve:before {
	content: "\F559"
}

.mdi-vector-difference:before {
	content: "\F55A"
}

.mdi-vector-difference-ab:before {
	content: "\F55B"
}

.mdi-vector-difference-ba:before {
	content: "\F55C"
}

.mdi-vector-ellipse:before {
	content: "\F892"
}

.mdi-vector-intersection:before {
	content: "\F55D"
}

.mdi-vector-line:before {
	content: "\F55E"
}

.mdi-vector-point:before {
	content: "\F55F"
}

.mdi-vector-polygon:before {
	content: "\F560"
}

.mdi-vector-polyline:before {
	content: "\F561"
}

.mdi-vector-radius:before {
	content: "\F749"
}

.mdi-vector-rectangle:before {
	content: "\F5C6"
}

.mdi-vector-selection:before {
	content: "\F562"
}

.mdi-vector-square:before {
	content: "\F001"
}

.mdi-vector-triangle:before {
	content: "\F563"
}

.mdi-vector-union:before {
	content: "\F564"
}

.mdi-venmo:before {
	content: "\F578"
}

.mdi-verified:before {
	content: "\F565"
}

.mdi-vhs:before {
	content: "\FA1A"
}

.mdi-vibrate:before {
	content: "\F566"
}

.mdi-video:before {
	content: "\F567"
}

.mdi-video-3d:before {
	content: "\F7FC"
}

.mdi-video-4k-box:before {
	content: "\F83D"
}

.mdi-video-account:before {
	content: "\F918"
}

.mdi-video-image:before {
	content: "\F919"
}

.mdi-video-input-antenna:before {
	content: "\F83E"
}

.mdi-video-input-component:before {
	content: "\F83F"
}

.mdi-video-input-hdmi:before {
	content: "\F840"
}

.mdi-video-input-svideo:before {
	content: "\F841"
}

.mdi-video-minus:before {
	content: "\F9B1"
}

.mdi-video-off:before {
	content: "\F568"
}

.mdi-video-plus:before {
	content: "\F9B2"
}

.mdi-video-stabilization:before {
	content: "\F91A"
}

.mdi-video-switch:before {
	content: "\F569"
}

.mdi-video-vintage:before {
	content: "\FA1B"
}

.mdi-view-agenda:before {
	content: "\F56A"
}

.mdi-view-array:before {
	content: "\F56B"
}

.mdi-view-carousel:before {
	content: "\F56C"
}

.mdi-view-column:before {
	content: "\F56D"
}

.mdi-view-dashboard:before {
	content: "\F56E"
}

.mdi-view-dashboard-outline:before {
	content: "\FA1C"
}

.mdi-view-dashboard-variant:before {
	content: "\F842"
}

.mdi-view-day:before {
	content: "\F56F"
}

.mdi-view-grid:before {
	content: "\F570"
}

.mdi-view-headline:before {
	content: "\F571"
}

.mdi-view-list:before {
	content: "\F572"
}

.mdi-view-module:before {
	content: "\F573"
}

.mdi-view-parallel:before {
	content: "\F727"
}

.mdi-view-quilt:before {
	content: "\F574"
}

.mdi-view-sequential:before {
	content: "\F728"
}

.mdi-view-stream:before {
	content: "\F575"
}

.mdi-view-week:before {
	content: "\F576"
}

.mdi-vimeo:before {
	content: "\F577"
}

.mdi-violin:before {
	content: "\F60F"
}

.mdi-virtual-reality:before {
	content: "\F893"
}

.mdi-visual-studio:before {
	content: "\F610"
}

.mdi-visual-studio-code:before {
	content: "\FA1D"
}

.mdi-vk:before {
	content: "\F579"
}

.mdi-vk-box:before {
	content: "\F57A"
}

.mdi-vk-circle:before {
	content: "\F57B"
}

.mdi-vlc:before {
	content: "\F57C"
}

.mdi-voice:before {
	content: "\F5CB"
}

.mdi-voicemail:before {
	content: "\F57D"
}

.mdi-volleyball:before {
	content: "\F9B3"
}

.mdi-volume-high:before {
	content: "\F57E"
}

.mdi-volume-low:before {
	content: "\F57F"
}

.mdi-volume-medium:before {
	content: "\F580"
}

.mdi-volume-minus:before {
	content: "\F75D"
}

.mdi-volume-mute:before {
	content: "\F75E"
}

.mdi-volume-off:before {
	content: "\F581"
}

.mdi-volume-plus:before {
	content: "\F75C"
}

.mdi-vote:before {
	content: "\FA1E"
}

.mdi-vote-outline:before {
	content: "\FA1F"
}

.mdi-vpn:before {
	content: "\F582"
}

.mdi-vuejs:before {
	content: "\F843"
}

.mdi-walk:before {
	content: "\F583"
}

.mdi-wall:before {
	content: "\F7FD"
}

.mdi-wall-sconce:before {
	content: "\F91B"
}

.mdi-wall-sconce-flat:before {
	content: "\F91C"
}

.mdi-wall-sconce-variant:before {
	content: "\F91D"
}

.mdi-wallet:before {
	content: "\F584"
}

.mdi-wallet-giftcard:before {
	content: "\F585"
}

.mdi-wallet-membership:before {
	content: "\F586"
}

.mdi-wallet-travel:before {
	content: "\F587"
}

.mdi-wan:before {
	content: "\F588"
}

.mdi-washing-machine:before {
	content: "\F729"
}

.mdi-watch:before {
	content: "\F589"
}

.mdi-watch-export:before {
	content: "\F58A"
}

.mdi-watch-export-variant:before {
	content: "\F894"
}

.mdi-watch-import:before {
	content: "\F58B"
}

.mdi-watch-import-variant:before {
	content: "\F895"
}

.mdi-watch-variant:before {
	content: "\F896"
}

.mdi-watch-vibrate:before {
	content: "\F6B0"
}

.mdi-water:before {
	content: "\F58C"
}

.mdi-water-off:before {
	content: "\F58D"
}

.mdi-water-percent:before {
	content: "\F58E"
}

.mdi-water-pump:before {
	content: "\F58F"
}

.mdi-watermark:before {
	content: "\F612"
}

.mdi-waves:before {
	content: "\F78C"
}

.mdi-weather-cloudy:before {
	content: "\F590"
}

.mdi-weather-fog:before {
	content: "\F591"
}

.mdi-weather-hail:before {
	content: "\F592"
}

.mdi-weather-hurricane:before {
	content: "\F897"
}

.mdi-weather-lightning:before {
	content: "\F593"
}

.mdi-weather-lightning-rainy:before {
	content: "\F67D"
}

.mdi-weather-night:before {
	content: "\F594"
}

.mdi-weather-partlycloudy:before {
	content: "\F595"
}

.mdi-weather-pouring:before {
	content: "\F596"
}

.mdi-weather-rainy:before {
	content: "\F597"
}

.mdi-weather-snowy:before {
	content: "\F598"
}

.mdi-weather-snowy-rainy:before {
	content: "\F67E"
}

.mdi-weather-sunny:before {
	content: "\F599"
}

.mdi-weather-sunset:before {
	content: "\F59A"
}

.mdi-weather-sunset-down:before {
	content: "\F59B"
}

.mdi-weather-sunset-up:before {
	content: "\F59C"
}

.mdi-weather-windy:before {
	content: "\F59D"
}

.mdi-weather-windy-variant:before {
	content: "\F59E"
}

.mdi-web:before {
	content: "\F59F"
}

.mdi-webcam:before {
	content: "\F5A0"
}

.mdi-webhook:before {
	content: "\F62F"
}

.mdi-webpack:before {
	content: "\F72A"
}

.mdi-wechat:before {
	content: "\F611"
}

.mdi-weight:before {
	content: "\F5A1"
}

.mdi-weight-kilogram:before {
	content: "\F5A2"
}

.mdi-weight-pound:before {
	content: "\F9B4"
}

.mdi-whatsapp:before {
	content: "\F5A3"
}

.mdi-wheelchair-accessibility:before {
	content: "\F5A4"
}

.mdi-whistle:before {
	content: "\F9B5"
}

.mdi-white-balance-auto:before {
	content: "\F5A5"
}

.mdi-white-balance-incandescent:before {
	content: "\F5A6"
}

.mdi-white-balance-iridescent:before {
	content: "\F5A7"
}

.mdi-white-balance-sunny:before {
	content: "\F5A8"
}

.mdi-widgets:before {
	content: "\F72B"
}

.mdi-wifi:before {
	content: "\F5A9"
}

.mdi-wifi-off:before {
	content: "\F5AA"
}

.mdi-wifi-strength-1:before {
	content: "\F91E"
}

.mdi-wifi-strength-1-alert:before {
	content: "\F91F"
}

.mdi-wifi-strength-1-lock:before {
	content: "\F920"
}

.mdi-wifi-strength-2:before {
	content: "\F921"
}

.mdi-wifi-strength-2-alert:before {
	content: "\F922"
}

.mdi-wifi-strength-2-lock:before {
	content: "\F923"
}

.mdi-wifi-strength-3:before {
	content: "\F924"
}

.mdi-wifi-strength-3-alert:before {
	content: "\F925"
}

.mdi-wifi-strength-3-lock:before {
	content: "\F926"
}

.mdi-wifi-strength-4:before {
	content: "\F927"
}

.mdi-wifi-strength-4-alert:before {
	content: "\F928"
}

.mdi-wifi-strength-4-lock:before {
	content: "\F929"
}

.mdi-wifi-strength-alert-outline:before {
	content: "\F92A"
}

.mdi-wifi-strength-lock-outline:before {
	content: "\F92B"
}

.mdi-wifi-strength-off:before {
	content: "\F92C"
}

.mdi-wifi-strength-off-outline:before {
	content: "\F92D"
}

.mdi-wifi-strength-outline:before {
	content: "\F92E"
}

.mdi-wii:before {
	content: "\F5AB"
}

.mdi-wiiu:before {
	content: "\F72C"
}

.mdi-wikipedia:before {
	content: "\F5AC"
}

.mdi-window-close:before {
	content: "\F5AD"
}

.mdi-window-closed:before {
	content: "\F5AE"
}

.mdi-window-maximize:before {
	content: "\F5AF"
}

.mdi-window-minimize:before {
	content: "\F5B0"
}

.mdi-window-open:before {
	content: "\F5B1"
}

.mdi-window-restore:before {
	content: "\F5B2"
}

.mdi-windows:before {
	content: "\F5B3"
}

.mdi-windows-classic:before {
	content: "\FA20"
}

.mdi-wiper:before {
	content: "\FAE8"
}

.mdi-wordpress:before {
	content: "\F5B4"
}

.mdi-worker:before {
	content: "\F5B5"
}

.mdi-wrap:before {
	content: "\F5B6"
}

.mdi-wrench:before {
	content: "\F5B7"
}

.mdi-wunderlist:before {
	content: "\F5B8"
}

.mdi-xamarin:before {
	content: "\F844"
}

.mdi-xamarin-outline:before {
	content: "\F845"
}

.mdi-xaml:before {
	content: "\F673"
}

.mdi-xbox:before {
	content: "\F5B9"
}

.mdi-xbox-controller:before {
	content: "\F5BA"
}

.mdi-xbox-controller-battery-alert:before {
	content: "\F74A"
}

.mdi-xbox-controller-battery-charging:before {
	content: "\FA21"
}

.mdi-xbox-controller-battery-empty:before {
	content: "\F74B"
}

.mdi-xbox-controller-battery-full:before {
	content: "\F74C"
}

.mdi-xbox-controller-battery-low:before {
	content: "\F74D"
}

.mdi-xbox-controller-battery-medium:before {
	content: "\F74E"
}

.mdi-xbox-controller-battery-unknown:before {
	content: "\F74F"
}

.mdi-xbox-controller-off:before {
	content: "\F5BB"
}

.mdi-xda:before {
	content: "\F5BC"
}

.mdi-xing:before {
	content: "\F5BD"
}

.mdi-xing-box:before {
	content: "\F5BE"
}

.mdi-xing-circle:before {
	content: "\F5BF"
}

.mdi-xml:before {
	content: "\F5C0"
}

.mdi-xmpp:before {
	content: "\F7FE"
}

.mdi-yammer:before {
	content: "\F788"
}

.mdi-yeast:before {
	content: "\F5C1"
}

.mdi-yelp:before {
	content: "\F5C2"
}

.mdi-yin-yang:before {
	content: "\F67F"
}

.mdi-youtube:before {
	content: "\F5C3"
}

.mdi-youtube-creator-studio:before {
	content: "\F846"
}

.mdi-youtube-gaming:before {
	content: "\F847"
}

.mdi-youtube-tv:before {
	content: "\F448"
}

.mdi-z-wave:before {
	content: "\FAE9"
}

.mdi-zend:before {
	content: "\FAEA"
}

.mdi-zip-box:before {
	content: "\F5C4"
}

.mdi-zip-disk:before {
	content: "\FA22"
}

.mdi-zodiac-aquarius:before {
	content: "\FA7C"
}

.mdi-zodiac-aries:before {
	content: "\FA7D"
}

.mdi-zodiac-cancer:before {
	content: "\FA7E"
}

.mdi-zodiac-capricorn:before {
	content: "\FA7F"
}

.mdi-zodiac-gemini:before {
	content: "\FA80"
}

.mdi-zodiac-leo:before {
	content: "\FA81"
}

.mdi-zodiac-libra:before {
	content: "\FA82"
}

.mdi-zodiac-pisces:before {
	content: "\FA83"
}

.mdi-zodiac-sagittarius:before {
	content: "\FA84"
}

.mdi-zodiac-scorpio:before {
	content: "\FA85"
}

.mdi-zodiac-taurus:before {
	content: "\FA86"
}

.mdi-zodiac-virgo:before {
	content: "\FA87"
}

.mdi-blank:before {
	content: "\F68C";
	visibility: hidden
}

.mdi-18px.mdi-set,
.mdi-18px.mdi:before {
	font-size: 18px
}

.mdi-24px.mdi-set,
.mdi-24px.mdi:before {
	font-size: 24px
}

.mdi-36px.mdi-set,
.mdi-36px.mdi:before {
	font-size: 36px
}

.mdi-48px.mdi-set,
.mdi-48px.mdi:before {
	font-size: 48px
}

.mdi-dark:before {
	color: rgba(0, 0, 0, .54)
}

.mdi-dark.mdi-inactive:before {
	color: rgba(0, 0, 0, .26)
}

.mdi-light:before {
	color: #fff
}

.mdi-light.mdi-inactive:before {
	color: hsla(0, 0%, 100%, .3)
}

.mdi-rotate-45:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.mdi-rotate-90:before {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg)
}

.mdi-rotate-135:before {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg)
}

.mdi-rotate-180:before {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}

.mdi-rotate-225:before {
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg)
}

.mdi-rotate-270:before {
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg)
}

.mdi-rotate-315:before {
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg)
}

.mdi-flip-h:before {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	-webkit-filter: FlipH;
	filter: FlipH;
	-ms-filter: "FlipH"
}

.mdi-flip-v:before {
	-webkit-transform: scaleY(-1);
	transform: scaleY(-1);
	-webkit-filter: FlipV;
	filter: FlipV;
	-ms-filter: "FlipV"
}

.mdi-spin:before {
	-webkit-animation: mdi-spin 2s infinite linear;
	animation: mdi-spin 2s infinite linear
}

@-webkit-keyframes mdi-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg)
	}
}

@keyframes mdi-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg)
	}
}

.dropdown-menu {
	border: 0;
	margin: 0;
	padding: 0;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
	box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.dropdown-menu .dropdown-header {
	font-weight: 400;
	padding: 10px 20px;
	font-size: .8125rem
}

.dropdown-menu .dropdown-item {
	padding: 10px 20px;
	font-weight: 300;
	color: #5d6b8d
}

.dropdown-menu .dropdown-divider {
	margin: 0;
	border-color: #f1f1f1
}

.list-unstyled li {
	margin-bottom: 10px
}

.list-unstyled li ul li:first-child {
	margin-top: 10px
}

.form-control {
	border-color: #f1f1f1;
	font-weight: 300
}

.form-control-xs-sm {
	height: calc(1.56640625rem + 2px);
	padding: .25rem .5rem;
	font-size: .7109375rem;
	line-height: 1.5;
	border-radius: .2rem
}

.form-control-xs-md {
	height: calc(1.96875rem + 2px);
	padding: .375rem .75rem;
	font-size: .8125rem;
	line-height: 1.5;
	border-radius: .2rem
}

.form-control-xs-lg {
	height: calc(2.5234375rem + 2px);
	padding: .5rem 1rem;
	font-size: 1.015625rem;
	line-height: 1.5;
	border-radius: .3rem
}

@media (min-width:576px) {
	.form-control-sm-sm {
		height: calc(1.56640625rem + 2px);
		padding: .25rem .5rem;
		font-size: .7109375rem;
		line-height: 1.5;
		border-radius: .2rem
	}

	.form-control-sm-md {
		height: calc(1.96875rem + 2px);
		padding: .375rem .75rem;
		font-size: .8125rem;
		line-height: 1.5;
		border-radius: .2rem
	}

	.form-control-sm-lg {
		height: calc(2.5234375rem + 2px);
		padding: .5rem 1rem;
		font-size: 1.015625rem;
		line-height: 1.5;
		border-radius: .3rem
	}
}

@media (min-width:768px) {
	.form-control-md-sm {
		height: calc(1.56640625rem + 2px);
		padding: .25rem .5rem;
		font-size: .7109375rem;
		line-height: 1.5;
		border-radius: .2rem
	}

	.form-control-md-md {
		height: calc(1.96875rem + 2px);
		padding: .375rem .75rem;
		font-size: .8125rem;
		line-height: 1.5;
		border-radius: .2rem
	}

	.form-control-md-lg {
		height: calc(2.5234375rem + 2px);
		padding: .5rem 1rem;
		font-size: 1.015625rem;
		line-height: 1.5;
		border-radius: .3rem
	}
}

@media (min-width:992px) {
	.form-control-lg-sm {
		height: calc(1.56640625rem + 2px);
		padding: .25rem .5rem;
		font-size: .7109375rem;
		line-height: 1.5;
		border-radius: .2rem
	}

	.form-control-lg-md {
		height: calc(1.96875rem + 2px);
		padding: .375rem .75rem;
		font-size: .8125rem;
		line-height: 1.5;
		border-radius: .2rem
	}

	.form-control-lg-lg {
		height: calc(2.5234375rem + 2px);
		padding: .5rem 1rem;
		font-size: 1.015625rem;
		line-height: 1.5;
		border-radius: .3rem
	}
}

@media (min-width:1200px) {
	.form-control-xl-sm {
		height: calc(1.56640625rem + 2px);
		padding: .25rem .5rem;
		font-size: .7109375rem;
		line-height: 1.5;
		border-radius: .2rem
	}

	.form-control-xl-md {
		height: calc(1.96875rem + 2px);
		padding: .375rem .75rem;
		font-size: .8125rem;
		line-height: 1.5;
		border-radius: .2rem
	}

	.form-control-xl-lg {
		height: calc(2.5234375rem + 2px);
		padding: .5rem 1rem;
		font-size: 1.015625rem;
		line-height: 1.5;
		border-radius: .3rem
	}
}

.input-group-text {
	font-weight: 300
}

.pagination.no-border > .page-item > .page-link {
	border: 0
}

.pagination > .page-item {
	margin: 0 .1875rem
}

.pagination > .page-item.active > .page-link {
	color: #fff;
	background: #898eab
}

.pagination > .page-item.active > .page-link:hover {
	background: #898eab
}

.pagination > .page-item > .page-link {
	border-top-left-radius: 50px !important;
	border-bottom-left-radius: 50px !important;
	border-top-right-radius: 50px !important;
	border-bottom-right-radius: 50px !important;
	color: #898eab;
	border-color: #ecf2f9
}

.pagination > .page-item > .page-link:hover {
	background: #f7f7f7
}

.blockquote-footer {
	margin-top: 10px;
	color: #979fb7
}

.breadcrumb {
	padding: 5px 10px;
	background: #fafbfc;
	border: 1px solid #fafbfc
}

.breadcrumb .breadcrumb-item.active {
	font-weight: 400
}

.breadcrumb.breadcrumb-outline-primary {
	border-color: #3b7ae2;
	color: #fff;
	background: transparent
}

.breadcrumb.breadcrumb-primary {
	background: #3b7ae2;
	border-color: #3b7ae2
}

.breadcrumb.breadcrumb-primary li,
.breadcrumb.breadcrumb-primary li:before,
.breadcrumb.breadcrumb-primary li a {
	color: #fff
}

.breadcrumb.breadcrumb-outline-secondary {
	border-color: #6c757d;
	color: #fff;
	background: transparent
}

.breadcrumb.breadcrumb-secondary {
	background: #6c757d;
	border-color: #6c757d
}

.breadcrumb.breadcrumb-secondary li,
.breadcrumb.breadcrumb-secondary li:before,
.breadcrumb.breadcrumb-secondary li a {
	color: #fff
}

.breadcrumb.breadcrumb-outline-success {
	border-color: #1aae88;
	color: #fff;
	background: transparent
}

.breadcrumb.breadcrumb-success {
	background: #1aae88;
	border-color: #1aae88
}

.breadcrumb.breadcrumb-success li,
.breadcrumb.breadcrumb-success li:before,
.breadcrumb.breadcrumb-success li a {
	color: #fff
}

.breadcrumb.breadcrumb-outline-info {
	border-color: #1ccacc;
	color: #212529;
	background: transparent
}

.breadcrumb.breadcrumb-info {
	background: #1ccacc;
	border-color: #1ccacc
}

.breadcrumb.breadcrumb-info li,
.breadcrumb.breadcrumb-info li:before,
.breadcrumb.breadcrumb-info li a {
	color: #212529
}

.breadcrumb.breadcrumb-outline-warning {
	border-color: #4d8cbf;
	color: #212529;
	background: transparent
}

.breadcrumb.breadcrumb-warning {
	background: #4d8cbf;
	border-color: #4d8cbf
}

.breadcrumb.breadcrumb-warning li,
.breadcrumb.breadcrumb-warning li:before,
.breadcrumb.breadcrumb-warning li a {
	color: #212529
}

.breadcrumb.breadcrumb-outline-danger {
	border-color: #e33244;
	color: #fff;
	background: transparent
}

.breadcrumb.breadcrumb-danger {
	background: #e33244;
	border-color: #e33244
}

.breadcrumb.breadcrumb-danger li,
.breadcrumb.breadcrumb-danger li:before,
.breadcrumb.breadcrumb-danger li a {
	color: #fff
}

.breadcrumb.breadcrumb-outline-light {
	border-color: #fcfcfd;
	color: #212529;
	background: transparent
}

.breadcrumb.breadcrumb-light {
	background: #fcfcfd;
	border-color: #fcfcfd
}

.breadcrumb.breadcrumb-light li,
.breadcrumb.breadcrumb-light li:before,
.breadcrumb.breadcrumb-light li a {
	color: #212529
}

.breadcrumb.breadcrumb-outline-dark {
	border-color: #343a40;
	color: #fff;
	background: transparent
}

.breadcrumb.breadcrumb-dark {
	background: #343a40;
	border-color: #343a40
}

.breadcrumb.breadcrumb-dark li,
.breadcrumb.breadcrumb-dark li:before,
.breadcrumb.breadcrumb-dark li a {
	color: #fff
}

.list-group-item-primary {
	color: #d8e4f9;
	border-color: #3b7ae2;
	background-color: #3b7ae2
}

.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
	color: #d8e4f9;
	background-color: #256bdf
}

.list-group-item-primary.list-group-item-action.active {
	color: #fff;
	background-color: #d8e4f9;
	border-color: #d8e4f9
}

.list-group-item-secondary {
	color: #e2e3e5;
	border-color: #6c757d;
	background-color: #6c757d
}

.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
	color: #e2e3e5;
	background-color: #60686f
}

.list-group-item-secondary.list-group-item-action.active {
	color: #fff;
	background-color: #e2e3e5;
	border-color: #e2e3e5
}

.list-group-item-success {
	color: #d1efe7;
	border-color: #1aae88;
	background-color: #1aae88
}

.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
	color: #d1efe7;
	background-color: #179877
}

.list-group-item-success.list-group-item-action.active {
	color: #fff;
	background-color: #d1efe7;
	border-color: #d1efe7
}

.list-group-item-info {
	color: #d2f4f5;
	border-color: #1ccacc;
	background-color: #1ccacc
}

.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
	color: #d2f4f5;
	background-color: #19b4b6
}

.list-group-item-info.list-group-item-action.active {
	color: #fff;
	background-color: #d2f4f5;
	border-color: #d2f4f5
}

.list-group-item-warning {
	color: #fef4d6;
	border-color: #4d8cbf;
	background-color: #4d8cbf
}

.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
	color: #fef4d6;
	background-color: #fcbf1a
}

.list-group-item-warning.list-group-item-action.active {
	color: #fff;
	background-color: #fef4d6;
	border-color: #fef4d6
}

.list-group-item-danger {
	color: #f9d6da;
	border-color: #e33244;
	background-color: #e33244
}

.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
	color: #f9d6da;
	background-color: #dd1e32
}

.list-group-item-danger.list-group-item-action.active {
	color: #fff;
	background-color: #f9d6da;
	border-color: #f9d6da
}

.list-group-item-light {
	color: #fefeff;
	border-color: #fcfcfd;
	background-color: #fcfcfd
}

.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
	color: #fefeff;
	background-color: #ededf3
}

.list-group-item-light.list-group-item-action.active {
	color: #fff;
	background-color: #fefeff;
	border-color: #fefeff
}

.list-group-item-dark {
	color: #d6d8d9;
	border-color: #343a40;
	background-color: #343a40
}

.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
	color: #d6d8d9;
	background-color: #292d32
}

.list-group-item-dark.list-group-item-action.active {
	color: #fff;
	background-color: #d6d8d9;
	border-color: #d6d8d9
}

.list-group-item-light {
	color: #343a40
}

.container,
.container-fluid {
	padding: 0 20px
}

.progress {
	height: 4px
}

.btn.btn-light {
	color: #788288;
	background: #fcfcfd
}

.btn.btn-info,
.btn.btn-warning {
	color: #fff
}

.btn.btn-link {
	border-color: #3b7ae2
}

.btn.btn-outline-light {
	color: #cbd0d8;
	border-color: #e5e8ec
}

@media (min-width:576px) {
	.border-sm {
		border: 1px solid #dee2e6 !important
	}

	.border-sm-top {
		border-top: 1px solid #dee2e6 !important
	}

	.border-sm-right {
		border-right: 1px solid #dee2e6 !important
	}

	.border-sm-bottom {
		border-bottom: 1px solid #dee2e6 !important
	}

	.border-sm-left {
		border-left: 1px solid #dee2e6 !important
	}

	.border-sm-0 {
		border: 0 !important
	}

	.border-sm-top-0 {
		border-top: 0 !important
	}

	.border-sm-right-0 {
		border-right: 0 !important
	}

	.border-sm-bottom-0 {
		border-bottom: 0 !important
	}

	.border-sm-left-0 {
		border-left: 0 !important
	}

	.border-sm-primary {
		border-color: #3b7ae2 !important
	}

	.border-sm-secondary {
		border-color: #6c757d !important
	}

	.border-sm-success {
		border-color: #1aae88 !important
	}

	.border-sm-info {
		border-color: #1ccacc !important
	}

	.border-sm-warning {
		border-color: #4d8cbf !important
	}

	.border-sm-danger {
		border-color: #e33244 !important
	}

	.border-sm-light {
		border-color: #fcfcfd !important
	}

	.border-sm-dark {
		border-color: #343a40 !important
	}

	.border-sm-white {
		border-color: #fff !important
	}

	.rounded-sm {
		border-radius: .2rem !important
	}

	.rounded-sm-top {
		border-top-left-radius: .2rem !important
	}

	.rounded-sm-right,
	.rounded-sm-top {
		border-top-right-radius: .2rem !important
	}

	.rounded-sm-bottom,
	.rounded-sm-right {
		border-bottom-right-radius: .2rem !important
	}

	.rounded-sm-bottom,
	.rounded-sm-left {
		border-bottom-left-radius: .2rem !important
	}

	.rounded-sm-left,
	.rounded-sm-top-left {
		border-top-left-radius: .2rem !important
	}

	.rounded-sm-top-right {
		border-top-right-radius: .2rem !important
	}

	.rounded-sm-bottom-left {
		border-bottom-left-radius: .2rem !important
	}

	.rounded-sm-bottom-right {
		border-bottom-right-radius: .2rem !important
	}

	.rounded-sm-circle {
		border-radius: 50% !important
	}

	.rounded-sm-0 {
		border-radius: 0 !important
	}

	.rounded-sm-top-left-0 {
		border-top-left-radius: 0 !important
	}

	.rounded-sm-top-right-0 {
		border-top-right-radius: 0 !important
	}

	.rounded-sm-bottom-left-0 {
		border-bottom-left-radius: 0 !important
	}

	.rounded-sm-bottom-right-0 {
		border-bottom-right-radius: 0 !important
	}
}

@media (min-width:768px) {
	.border-md {
		border: 1px solid #dee2e6 !important
	}

	.border-md-top {
		border-top: 1px solid #dee2e6 !important
	}

	.border-md-right {
		border-right: 1px solid #dee2e6 !important
	}

	.border-md-bottom {
		border-bottom: 1px solid #dee2e6 !important
	}

	.border-md-left {
		border-left: 1px solid #dee2e6 !important
	}

	.border-md-0 {
		border: 0 !important
	}

	.border-md-top-0 {
		border-top: 0 !important
	}

	.border-md-right-0 {
		border-right: 0 !important
	}

	.border-md-bottom-0 {
		border-bottom: 0 !important
	}

	.border-md-left-0 {
		border-left: 0 !important
	}

	.border-md-primary {
		border-color: #3b7ae2 !important
	}

	.border-md-secondary {
		border-color: #6c757d !important
	}

	.border-md-success {
		border-color: #1aae88 !important
	}

	.border-md-info {
		border-color: #1ccacc !important
	}

	.border-md-warning {
		border-color: #4d8cbf !important
	}

	.border-md-danger {
		border-color: #e33244 !important
	}

	.border-md-light {
		border-color: #fcfcfd !important
	}

	.border-md-dark {
		border-color: #343a40 !important
	}

	.border-md-white {
		border-color: #fff !important
	}

	.rounded-md {
		border-radius: .2rem !important
	}

	.rounded-md-top {
		border-top-left-radius: .2rem !important
	}

	.rounded-md-right,
	.rounded-md-top {
		border-top-right-radius: .2rem !important
	}

	.rounded-md-bottom,
	.rounded-md-right {
		border-bottom-right-radius: .2rem !important
	}

	.rounded-md-bottom,
	.rounded-md-left {
		border-bottom-left-radius: .2rem !important
	}

	.rounded-md-left,
	.rounded-md-top-left {
		border-top-left-radius: .2rem !important
	}

	.rounded-md-top-right {
		border-top-right-radius: .2rem !important
	}

	.rounded-md-bottom-left {
		border-bottom-left-radius: .2rem !important
	}

	.rounded-md-bottom-right {
		border-bottom-right-radius: .2rem !important
	}

	.rounded-md-circle {
		border-radius: 50% !important
	}

	.rounded-md-0 {
		border-radius: 0 !important
	}

	.rounded-md-top-left-0 {
		border-top-left-radius: 0 !important
	}

	.rounded-md-top-right-0 {
		border-top-right-radius: 0 !important
	}

	.rounded-md-bottom-left-0 {
		border-bottom-left-radius: 0 !important
	}

	.rounded-md-bottom-right-0 {
		border-bottom-right-radius: 0 !important
	}
}

@media (min-width:992px) {
	.border-lg {
		border: 1px solid #dee2e6 !important
	}

	.border-lg-top {
		border-top: 1px solid #dee2e6 !important
	}

	.border-lg-right {
		border-right: 1px solid #dee2e6 !important
	}

	.border-lg-bottom {
		border-bottom: 1px solid #dee2e6 !important
	}

	.border-lg-left {
		border-left: 1px solid #dee2e6 !important
	}

	.border-lg-0 {
		border: 0 !important
	}

	.border-lg-top-0 {
		border-top: 0 !important
	}

	.border-lg-right-0 {
		border-right: 0 !important
	}

	.border-lg-bottom-0 {
		border-bottom: 0 !important
	}

	.border-lg-left-0 {
		border-left: 0 !important
	}

	.border-lg-primary {
		border-color: #3b7ae2 !important
	}

	.border-lg-secondary {
		border-color: #6c757d !important
	}

	.border-lg-success {
		border-color: #1aae88 !important
	}

	.border-lg-info {
		border-color: #1ccacc !important
	}

	.border-lg-warning {
		border-color: #4d8cbf !important
	}

	.border-lg-danger {
		border-color: #e33244 !important
	}

	.border-lg-light {
		border-color: #fcfcfd !important
	}

	.border-lg-dark {
		border-color: #343a40 !important
	}

	.border-lg-white {
		border-color: #fff !important
	}

	.rounded-lg {
		border-radius: .2rem !important
	}

	.rounded-lg-top {
		border-top-left-radius: .2rem !important
	}

	.rounded-lg-right,
	.rounded-lg-top {
		border-top-right-radius: .2rem !important
	}

	.rounded-lg-bottom,
	.rounded-lg-right {
		border-bottom-right-radius: .2rem !important
	}

	.rounded-lg-bottom,
	.rounded-lg-left {
		border-bottom-left-radius: .2rem !important
	}

	.rounded-lg-left,
	.rounded-lg-top-left {
		border-top-left-radius: .2rem !important
	}

	.rounded-lg-top-right {
		border-top-right-radius: .2rem !important
	}

	.rounded-lg-bottom-left {
		border-bottom-left-radius: .2rem !important
	}

	.rounded-lg-bottom-right {
		border-bottom-right-radius: .2rem !important
	}

	.rounded-lg-circle {
		border-radius: 50% !important
	}

	.rounded-lg-0 {
		border-radius: 0 !important
	}

	.rounded-lg-top-left-0 {
		border-top-left-radius: 0 !important
	}

	.rounded-lg-top-right-0 {
		border-top-right-radius: 0 !important
	}

	.rounded-lg-bottom-left-0 {
		border-bottom-left-radius: 0 !important
	}

	.rounded-lg-bottom-right-0 {
		border-bottom-right-radius: 0 !important
	}
}

@media (min-width:1200px) {
	.border-xl {
		border: 1px solid #dee2e6 !important
	}

	.border-xl-top {
		border-top: 1px solid #dee2e6 !important
	}

	.border-xl-right {
		border-right: 1px solid #dee2e6 !important
	}

	.border-xl-bottom {
		border-bottom: 1px solid #dee2e6 !important
	}

	.border-xl-left {
		border-left: 1px solid #dee2e6 !important
	}

	.border-xl-0 {
		border: 0 !important
	}

	.border-xl-top-0 {
		border-top: 0 !important
	}

	.border-xl-right-0 {
		border-right: 0 !important
	}

	.border-xl-bottom-0 {
		border-bottom: 0 !important
	}

	.border-xl-left-0 {
		border-left: 0 !important
	}

	.border-xl-primary {
		border-color: #3b7ae2 !important
	}

	.border-xl-secondary {
		border-color: #6c757d !important
	}

	.border-xl-success {
		border-color: #1aae88 !important
	}

	.border-xl-info {
		border-color: #1ccacc !important
	}

	.border-xl-warning {
		border-color: #4d8cbf !important
	}

	.border-xl-danger {
		border-color: #e33244 !important
	}

	.border-xl-light {
		border-color: #fcfcfd !important
	}

	.border-xl-dark {
		border-color: #343a40 !important
	}

	.border-xl-white {
		border-color: #fff !important
	}

	.rounded-xl {
		border-radius: .2rem !important
	}

	.rounded-xl-top {
		border-top-left-radius: .2rem !important
	}

	.rounded-xl-right,
	.rounded-xl-top {
		border-top-right-radius: .2rem !important
	}

	.rounded-xl-bottom,
	.rounded-xl-right {
		border-bottom-right-radius: .2rem !important
	}

	.rounded-xl-bottom,
	.rounded-xl-left {
		border-bottom-left-radius: .2rem !important
	}

	.rounded-xl-left,
	.rounded-xl-top-left {
		border-top-left-radius: .2rem !important
	}

	.rounded-xl-top-right {
		border-top-right-radius: .2rem !important
	}

	.rounded-xl-bottom-left {
		border-bottom-left-radius: .2rem !important
	}

	.rounded-xl-bottom-right {
		border-bottom-right-radius: .2rem !important
	}

	.rounded-xl-circle {
		border-radius: 50% !important
	}

	.rounded-xl-0 {
		border-radius: 0 !important
	}

	.rounded-xl-top-left-0 {
		border-top-left-radius: 0 !important
	}

	.rounded-xl-top-right-0 {
		border-top-right-radius: 0 !important
	}

	.rounded-xl-bottom-left-0 {
		border-bottom-left-radius: 0 !important
	}

	.rounded-xl-bottom-right-0 {
		border-bottom-right-radius: 0 !important
	}
}

.badge {
	font-size: .87em;
	padding: 4px 6px;
	font-weight: 400
}

.badge.badge-outline-primary {
	border: 1px solid #3b7ae2;
	background: transparent
}

.badge.badge-outline-secondary {
	border: 1px solid #6c757d;
	background: transparent
}

.badge.badge-outline-success {
	border: 1px solid #1aae88;
	background: transparent
}

.badge.badge-outline-info {
	border: 1px solid #1ccacc;
	background: transparent
}

.badge.badge-outline-warning {
	border: 1px solid #4d8cbf;
	background: transparent
}

.badge.badge-outline-danger {
	border: 1px solid #e33244;
	background: transparent
}

.badge.badge-outline-light {
	border: 1px solid #fcfcfd;
	background: transparent
}

.badge.badge-outline-dark {
	border: 1px solid #343a40;
	background: transparent
}

.table.table-bordered {
	border-color: #ecf2f9
}

.table.table-bordered tbody td,
.table.table-bordered tbody th,
.table.table-bordered thead th {
	border: 1px solid #ecf2f9
}

.table.table-dark.table-bordered {
	border-color: #32383e
}

.table.table-dark.table-bordered tbody td,
.table.table-dark.table-bordered tbody th,
.table.table-dark.table-bordered thead th {
	border: 1px solid #32383e
}

.table.table-sm tbody td,
.table.table-sm tbody th,
.table.table-sm thead th {
	padding-top: .625rem;
	padding-bottom: .625rem
}

.table.table-borderless td,
.table.table-borderless th,
.table.table-borderless thead th {
	background: none;
	border-color: transparent
}

.table.table-borderless.table-dark td,
.table.table-borderless.table-dark th,
.table.table-borderless.table-dark thead th {
	border-color: transparent
}

.table.table-hover tbody tr:hover {
	background: #fafbfc
}

.table.table-dark.table-hover tbody tr:hover td,
.table.table-dark.table-hover tbody tr:hover th {
	background: #32383e
}

.table.table-striped tbody tr:nth-of-type(odd) {
	background: #fdfdfd
}

.table.table-dark.table-striped tbody tr:nth-of-type(odd) td,
.table.table-dark.table-striped tbody tr:nth-of-type(odd) th {
	background-color: #2c3034
}

.table.table-dark td,
.table.table-dark th,
.table.table-dark thead th {
	background: #212529;
	border-bottom: 2px solid #32383e
}

.table .thead-light th {
	color: #5d6b8d;
	background: #fafbfc
}

.table thead th {
	border: 0;
	font-weight: 400;
	font-size: .875rem;
	background: #fafbfc;
	padding: .9375rem 1.25rem
}

.table tbody td,
.table tbody th {
	border-top: 0;
	border-bottom: 2px solid #fafbfc;
	padding: .9375rem 1.25rem
}

.table tbody th {
	font-weight: 400
}

.alert {
	color: #fff
}

.alert.alert-light,
.alert.alert-light .alert-link,
.alert.alert-light .close:hover .icon {
	color: #5d6b8d
}

.alert .close:hover .icon {
	color: #fff
}

.alert .close .icon {
	display: block;
	margin-top: 2px;
	font-size: .9375rem
}

.card.bg-primary {
	border-color: #3b7ae2
}

.card.bg-primary .card-header {
	background: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.card.bg-secondary {
	border-color: #6c757d
}

.card.bg-secondary .card-header {
	background: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.card.bg-success {
	border-color: #1aae88
}

.card.bg-success .card-header {
	background: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.card.bg-info {
	border-color: #1ccacc
}

.card.bg-info .card-header {
	background: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.card.bg-warning {
	border-color: #4d8cbf
}

.card.bg-warning .card-header {
	background: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.card.bg-danger {
	border-color: #e33244
}

.card.bg-danger .card-header {
	background: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.card.bg-light {
	border-color: #fcfcfd
}

.card.bg-light .card-header {
	background: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, .08)
}

.card.bg-dark {
	border-color: #343a40
}

.card.bg-dark .card-header {
	background: transparent;
	border-bottom: 1px solid rgba(0, 0, 0, .08)
}

@media (min-width:576px) {
	.w-sm-25 {
		width: 25% !important
	}
}

@media (min-width:576px) {
	.h-sm-25 {
		height: 25% !important
	}
}

@media (min-width:576px) {
	.w-sm-50 {
		width: 50% !important
	}
}

@media (min-width:576px) {
	.h-sm-50 {
		height: 50% !important
	}
}

@media (min-width:576px) {
	.w-sm-75 {
		width: 75% !important
	}
}

@media (min-width:576px) {
	.h-sm-75 {
		height: 75% !important
	}
}

@media (min-width:576px) {
	.w-sm-100 {
		width: 100% !important
	}
}

@media (min-width:576px) {
	.h-sm-100 {
		height: 100% !important
	}
}

@media (min-width:576px) {
	.w-sm-auto {
		width: auto !important
	}
}

@media (min-width:576px) {
	.h-sm-auto {
		height: auto !important
	}
}

@media (min-width:576px) {
	.w-sm-1 {
		width: 1% !important
	}
}

@media (min-width:576px) {
	.h-sm-1 {
		height: 1% !important
	}
}

@media (min-width:576px) {
	.w-sm-2 {
		width: 2% !important
	}
}

@media (min-width:576px) {
	.h-sm-2 {
		height: 2% !important
	}
}

@media (min-width:576px) {
	.w-sm-3 {
		width: 3% !important
	}
}

@media (min-width:576px) {
	.h-sm-3 {
		height: 3% !important
	}
}

@media (min-width:576px) {
	.w-sm-4 {
		width: 4% !important
	}
}

@media (min-width:576px) {
	.h-sm-4 {
		height: 4% !important
	}
}

@media (min-width:576px) {
	.w-sm-5 {
		width: 5% !important
	}
}

@media (min-width:576px) {
	.h-sm-5 {
		height: 5% !important
	}
}

@media (min-width:576px) {
	.w-sm-6 {
		width: 6% !important
	}
}

@media (min-width:576px) {
	.h-sm-6 {
		height: 6% !important
	}
}

@media (min-width:576px) {
	.w-sm-7 {
		width: 7% !important
	}
}

@media (min-width:576px) {
	.h-sm-7 {
		height: 7% !important
	}
}

@media (min-width:576px) {
	.w-sm-8 {
		width: 8% !important
	}
}

@media (min-width:576px) {
	.h-sm-8 {
		height: 8% !important
	}
}

@media (min-width:576px) {
	.w-sm-9 {
		width: 9% !important
	}
}

@media (min-width:576px) {
	.h-sm-9 {
		height: 9% !important
	}
}

@media (min-width:576px) {
	.w-sm-10 {
		width: 10% !important
	}
}

@media (min-width:576px) {
	.h-sm-10 {
		height: 10% !important
	}
}

@media (min-width:576px) {
	.w-sm-11 {
		width: 11% !important
	}
}

@media (min-width:576px) {
	.h-sm-11 {
		height: 11% !important
	}
}

@media (min-width:576px) {
	.w-sm-12 {
		width: 12% !important
	}
}

@media (min-width:576px) {
	.h-sm-12 {
		height: 12% !important
	}
}

@media (min-width:576px) {
	.w-sm-13 {
		width: 13% !important
	}
}

@media (min-width:576px) {
	.h-sm-13 {
		height: 13% !important
	}
}

@media (min-width:576px) {
	.w-sm-14 {
		width: 14% !important
	}
}

@media (min-width:576px) {
	.h-sm-14 {
		height: 14% !important
	}
}

@media (min-width:576px) {
	.w-sm-15 {
		width: 15% !important
	}
}

@media (min-width:576px) {
	.h-sm-15 {
		height: 15% !important
	}
}

@media (min-width:576px) {
	.w-sm-16 {
		width: 16% !important
	}
}

@media (min-width:576px) {
	.h-sm-16 {
		height: 16% !important
	}
}

@media (min-width:576px) {
	.w-sm-17 {
		width: 17% !important
	}
}

@media (min-width:576px) {
	.h-sm-17 {
		height: 17% !important
	}
}

@media (min-width:576px) {
	.w-sm-18 {
		width: 18% !important
	}
}

@media (min-width:576px) {
	.h-sm-18 {
		height: 18% !important
	}
}

@media (min-width:576px) {
	.w-sm-19 {
		width: 19% !important
	}
}

@media (min-width:576px) {
	.h-sm-19 {
		height: 19% !important
	}
}

@media (min-width:576px) {
	.w-sm-20 {
		width: 20% !important
	}
}

@media (min-width:576px) {
	.h-sm-20 {
		height: 20% !important
	}
}

@media (min-width:576px) {
	.w-sm-21 {
		width: 21% !important
	}
}

@media (min-width:576px) {
	.h-sm-21 {
		height: 21% !important
	}
}

@media (min-width:576px) {
	.w-sm-22 {
		width: 22% !important
	}
}

@media (min-width:576px) {
	.h-sm-22 {
		height: 22% !important
	}
}

@media (min-width:576px) {
	.w-sm-23 {
		width: 23% !important
	}
}

@media (min-width:576px) {
	.h-sm-23 {
		height: 23% !important
	}
}

@media (min-width:576px) {
	.w-sm-24 {
		width: 24% !important
	}
}

@media (min-width:576px) {
	.h-sm-24 {
		height: 24% !important
	}
}

@media (min-width:576px) {
	.w-sm-26 {
		width: 26% !important
	}
}

@media (min-width:576px) {
	.h-sm-26 {
		height: 26% !important
	}
}

@media (min-width:576px) {
	.w-sm-27 {
		width: 27% !important
	}
}

@media (min-width:576px) {
	.h-sm-27 {
		height: 27% !important
	}
}

@media (min-width:576px) {
	.w-sm-28 {
		width: 28% !important
	}
}

@media (min-width:576px) {
	.h-sm-28 {
		height: 28% !important
	}
}

@media (min-width:576px) {
	.w-sm-29 {
		width: 29% !important
	}
}

@media (min-width:576px) {
	.h-sm-29 {
		height: 29% !important
	}
}

@media (min-width:576px) {
	.w-sm-30 {
		width: 30% !important
	}
}

@media (min-width:576px) {
	.h-sm-30 {
		height: 30% !important
	}
}

@media (min-width:576px) {
	.w-sm-31 {
		width: 31% !important
	}
}

@media (min-width:576px) {
	.h-sm-31 {
		height: 31% !important
	}
}

@media (min-width:576px) {
	.w-sm-32 {
		width: 32% !important
	}
}

@media (min-width:576px) {
	.h-sm-32 {
		height: 32% !important
	}
}

@media (min-width:576px) {
	.w-sm-33 {
		width: 33% !important
	}
}

@media (min-width:576px) {
	.h-sm-33 {
		height: 33% !important
	}
}

@media (min-width:576px) {
	.w-sm-34 {
		width: 34% !important
	}
}

@media (min-width:576px) {
	.h-sm-34 {
		height: 34% !important
	}
}

@media (min-width:576px) {
	.w-sm-35 {
		width: 35% !important
	}
}

@media (min-width:576px) {
	.h-sm-35 {
		height: 35% !important
	}
}

@media (min-width:576px) {
	.w-sm-36 {
		width: 36% !important
	}
}

@media (min-width:576px) {
	.h-sm-36 {
		height: 36% !important
	}
}

@media (min-width:576px) {
	.w-sm-37 {
		width: 37% !important
	}
}

@media (min-width:576px) {
	.h-sm-37 {
		height: 37% !important
	}
}

@media (min-width:576px) {
	.w-sm-38 {
		width: 38% !important
	}
}

@media (min-width:576px) {
	.h-sm-38 {
		height: 38% !important
	}
}

@media (min-width:576px) {
	.w-sm-39 {
		width: 39% !important
	}
}

@media (min-width:576px) {
	.h-sm-39 {
		height: 39% !important
	}
}

@media (min-width:576px) {
	.w-sm-40 {
		width: 40% !important
	}
}

@media (min-width:576px) {
	.h-sm-40 {
		height: 40% !important
	}
}

@media (min-width:576px) {
	.w-sm-41 {
		width: 41% !important
	}
}

@media (min-width:576px) {
	.h-sm-41 {
		height: 41% !important
	}
}

@media (min-width:576px) {
	.w-sm-42 {
		width: 42% !important
	}
}

@media (min-width:576px) {
	.h-sm-42 {
		height: 42% !important
	}
}

@media (min-width:576px) {
	.w-sm-43 {
		width: 43% !important
	}
}

@media (min-width:576px) {
	.h-sm-43 {
		height: 43% !important
	}
}

@media (min-width:576px) {
	.w-sm-44 {
		width: 44% !important
	}
}

@media (min-width:576px) {
	.h-sm-44 {
		height: 44% !important
	}
}

@media (min-width:576px) {
	.w-sm-45 {
		width: 45% !important
	}
}

@media (min-width:576px) {
	.h-sm-45 {
		height: 45% !important
	}
}

@media (min-width:576px) {
	.w-sm-46 {
		width: 46% !important
	}
}

@media (min-width:576px) {
	.h-sm-46 {
		height: 46% !important
	}
}

@media (min-width:576px) {
	.w-sm-47 {
		width: 47% !important
	}
}

@media (min-width:576px) {
	.h-sm-47 {
		height: 47% !important
	}
}

@media (min-width:576px) {
	.w-sm-48 {
		width: 48% !important
	}
}

@media (min-width:576px) {
	.h-sm-48 {
		height: 48% !important
	}
}

@media (min-width:576px) {
	.w-sm-49 {
		width: 49% !important
	}
}

@media (min-width:576px) {
	.h-sm-49 {
		height: 49% !important
	}
}

@media (min-width:576px) {
	.w-sm-51 {
		width: 51% !important
	}
}

@media (min-width:576px) {
	.h-sm-51 {
		height: 51% !important
	}
}

@media (min-width:576px) {
	.w-sm-52 {
		width: 52% !important
	}
}

@media (min-width:576px) {
	.h-sm-52 {
		height: 52% !important
	}
}

@media (min-width:576px) {
	.w-sm-53 {
		width: 53% !important
	}
}

@media (min-width:576px) {
	.h-sm-53 {
		height: 53% !important
	}
}

@media (min-width:576px) {
	.w-sm-54 {
		width: 54% !important
	}
}

@media (min-width:576px) {
	.h-sm-54 {
		height: 54% !important
	}
}

@media (min-width:576px) {
	.w-sm-55 {
		width: 55% !important
	}
}

@media (min-width:576px) {
	.h-sm-55 {
		height: 55% !important
	}
}

@media (min-width:576px) {
	.w-sm-56 {
		width: 56% !important
	}
}

@media (min-width:576px) {
	.h-sm-56 {
		height: 56% !important
	}
}

@media (min-width:576px) {
	.w-sm-57 {
		width: 57% !important
	}
}

@media (min-width:576px) {
	.h-sm-57 {
		height: 57% !important
	}
}

@media (min-width:576px) {
	.w-sm-58 {
		width: 58% !important
	}
}

@media (min-width:576px) {
	.h-sm-58 {
		height: 58% !important
	}
}

@media (min-width:576px) {
	.w-sm-59 {
		width: 59% !important
	}
}

@media (min-width:576px) {
	.h-sm-59 {
		height: 59% !important
	}
}

@media (min-width:576px) {
	.w-sm-60 {
		width: 60% !important
	}
}

@media (min-width:576px) {
	.h-sm-60 {
		height: 60% !important
	}
}

@media (min-width:576px) {
	.w-sm-61 {
		width: 61% !important
	}
}

@media (min-width:576px) {
	.h-sm-61 {
		height: 61% !important
	}
}

@media (min-width:576px) {
	.w-sm-62 {
		width: 62% !important
	}
}

@media (min-width:576px) {
	.h-sm-62 {
		height: 62% !important
	}
}

@media (min-width:576px) {
	.w-sm-63 {
		width: 63% !important
	}
}

@media (min-width:576px) {
	.h-sm-63 {
		height: 63% !important
	}
}

@media (min-width:576px) {
	.w-sm-64 {
		width: 64% !important
	}
}

@media (min-width:576px) {
	.h-sm-64 {
		height: 64% !important
	}
}

@media (min-width:576px) {
	.w-sm-65 {
		width: 65% !important
	}
}

@media (min-width:576px) {
	.h-sm-65 {
		height: 65% !important
	}
}

@media (min-width:576px) {
	.w-sm-66 {
		width: 66% !important
	}
}

@media (min-width:576px) {
	.h-sm-66 {
		height: 66% !important
	}
}

@media (min-width:576px) {
	.w-sm-67 {
		width: 67% !important
	}
}

@media (min-width:576px) {
	.h-sm-67 {
		height: 67% !important
	}
}

@media (min-width:576px) {
	.w-sm-68 {
		width: 68% !important
	}
}

@media (min-width:576px) {
	.h-sm-68 {
		height: 68% !important
	}
}

@media (min-width:576px) {
	.w-sm-69 {
		width: 69% !important
	}
}

@media (min-width:576px) {
	.h-sm-69 {
		height: 69% !important
	}
}

@media (min-width:576px) {
	.w-sm-70 {
		width: 70% !important
	}
}

@media (min-width:576px) {
	.h-sm-70 {
		height: 70% !important
	}
}

@media (min-width:576px) {
	.w-sm-71 {
		width: 71% !important
	}
}

@media (min-width:576px) {
	.h-sm-71 {
		height: 71% !important
	}
}

@media (min-width:576px) {
	.w-sm-72 {
		width: 72% !important
	}
}

@media (min-width:576px) {
	.h-sm-72 {
		height: 72% !important
	}
}

@media (min-width:576px) {
	.w-sm-73 {
		width: 73% !important
	}
}

@media (min-width:576px) {
	.h-sm-73 {
		height: 73% !important
	}
}

@media (min-width:576px) {
	.w-sm-74 {
		width: 74% !important
	}
}

@media (min-width:576px) {
	.h-sm-74 {
		height: 74% !important
	}
}

@media (min-width:576px) {
	.w-sm-76 {
		width: 76% !important
	}
}

@media (min-width:576px) {
	.h-sm-76 {
		height: 76% !important
	}
}

@media (min-width:576px) {
	.w-sm-77 {
		width: 77% !important
	}
}

@media (min-width:576px) {
	.h-sm-77 {
		height: 77% !important
	}
}

@media (min-width:576px) {
	.w-sm-78 {
		width: 78% !important
	}
}

@media (min-width:576px) {
	.h-sm-78 {
		height: 78% !important
	}
}

@media (min-width:576px) {
	.w-sm-79 {
		width: 79% !important
	}
}

@media (min-width:576px) {
	.h-sm-79 {
		height: 79% !important
	}
}

@media (min-width:576px) {
	.w-sm-80 {
		width: 80% !important
	}
}

@media (min-width:576px) {
	.h-sm-80 {
		height: 80% !important
	}
}

@media (min-width:576px) {
	.w-sm-81 {
		width: 81% !important
	}
}

@media (min-width:576px) {
	.h-sm-81 {
		height: 81% !important
	}
}

@media (min-width:576px) {
	.w-sm-82 {
		width: 82% !important
	}
}

@media (min-width:576px) {
	.h-sm-82 {
		height: 82% !important
	}
}

@media (min-width:576px) {
	.w-sm-83 {
		width: 83% !important
	}
}

@media (min-width:576px) {
	.h-sm-83 {
		height: 83% !important
	}
}

@media (min-width:576px) {
	.w-sm-84 {
		width: 84% !important
	}
}

@media (min-width:576px) {
	.h-sm-84 {
		height: 84% !important
	}
}

@media (min-width:576px) {
	.w-sm-85 {
		width: 85% !important
	}
}

@media (min-width:576px) {
	.h-sm-85 {
		height: 85% !important
	}
}

@media (min-width:576px) {
	.w-sm-86 {
		width: 86% !important
	}
}

@media (min-width:576px) {
	.h-sm-86 {
		height: 86% !important
	}
}

@media (min-width:576px) {
	.w-sm-87 {
		width: 87% !important
	}
}

@media (min-width:576px) {
	.h-sm-87 {
		height: 87% !important
	}
}

@media (min-width:576px) {
	.w-sm-88 {
		width: 88% !important
	}
}

@media (min-width:576px) {
	.h-sm-88 {
		height: 88% !important
	}
}

@media (min-width:576px) {
	.w-sm-89 {
		width: 89% !important
	}
}

@media (min-width:576px) {
	.h-sm-89 {
		height: 89% !important
	}
}

@media (min-width:576px) {
	.w-sm-90 {
		width: 90% !important
	}
}

@media (min-width:576px) {
	.h-sm-90 {
		height: 90% !important
	}
}

@media (min-width:576px) {
	.w-sm-91 {
		width: 91% !important
	}
}

@media (min-width:576px) {
	.h-sm-91 {
		height: 91% !important
	}
}

@media (min-width:576px) {
	.w-sm-92 {
		width: 92% !important
	}
}

@media (min-width:576px) {
	.h-sm-92 {
		height: 92% !important
	}
}

@media (min-width:576px) {
	.w-sm-93 {
		width: 93% !important
	}
}

@media (min-width:576px) {
	.h-sm-93 {
		height: 93% !important
	}
}

@media (min-width:576px) {
	.w-sm-94 {
		width: 94% !important
	}
}

@media (min-width:576px) {
	.h-sm-94 {
		height: 94% !important
	}
}

@media (min-width:576px) {
	.w-sm-95 {
		width: 95% !important
	}
}

@media (min-width:576px) {
	.h-sm-95 {
		height: 95% !important
	}
}

@media (min-width:576px) {
	.w-sm-96 {
		width: 96% !important
	}
}

@media (min-width:576px) {
	.h-sm-96 {
		height: 96% !important
	}
}

@media (min-width:576px) {
	.w-sm-97 {
		width: 97% !important
	}
}

@media (min-width:576px) {
	.h-sm-97 {
		height: 97% !important
	}
}

@media (min-width:576px) {
	.w-sm-98 {
		width: 98% !important
	}
}

@media (min-width:576px) {
	.h-sm-98 {
		height: 98% !important
	}
}

@media (min-width:576px) {
	.w-sm-99 {
		width: 99% !important
	}
}

@media (min-width:576px) {
	.h-sm-99 {
		height: 99% !important
	}
}

@media (min-width:768px) {
	.w-md-25 {
		width: 25% !important
	}
}

@media (min-width:768px) {
	.h-md-25 {
		height: 25% !important
	}
}

@media (min-width:768px) {
	.w-md-50 {
		width: 50% !important
	}
}

@media (min-width:768px) {
	.h-md-50 {
		height: 50% !important
	}
}

@media (min-width:768px) {
	.w-md-75 {
		width: 75% !important
	}
}

@media (min-width:768px) {
	.h-md-75 {
		height: 75% !important
	}
}

@media (min-width:768px) {
	.w-md-100 {
		width: 100% !important
	}
}

@media (min-width:768px) {
	.h-md-100 {
		height: 100% !important
	}
}

@media (min-width:768px) {
	.w-md-auto {
		width: auto !important
	}
}

@media (min-width:768px) {
	.h-md-auto {
		height: auto !important
	}
}

@media (min-width:768px) {
	.w-md-1 {
		width: 1% !important
	}
}

@media (min-width:768px) {
	.h-md-1 {
		height: 1% !important
	}
}

@media (min-width:768px) {
	.w-md-2 {
		width: 2% !important
	}
}

@media (min-width:768px) {
	.h-md-2 {
		height: 2% !important
	}
}

@media (min-width:768px) {
	.w-md-3 {
		width: 3% !important
	}
}

@media (min-width:768px) {
	.h-md-3 {
		height: 3% !important
	}
}

@media (min-width:768px) {
	.w-md-4 {
		width: 4% !important
	}
}

@media (min-width:768px) {
	.h-md-4 {
		height: 4% !important
	}
}

@media (min-width:768px) {
	.w-md-5 {
		width: 5% !important
	}
}

@media (min-width:768px) {
	.h-md-5 {
		height: 5% !important
	}
}

@media (min-width:768px) {
	.w-md-6 {
		width: 6% !important
	}
}

@media (min-width:768px) {
	.h-md-6 {
		height: 6% !important
	}
}

@media (min-width:768px) {
	.w-md-7 {
		width: 7% !important
	}
}

@media (min-width:768px) {
	.h-md-7 {
		height: 7% !important
	}
}

@media (min-width:768px) {
	.w-md-8 {
		width: 8% !important
	}
}

@media (min-width:768px) {
	.h-md-8 {
		height: 8% !important
	}
}

@media (min-width:768px) {
	.w-md-9 {
		width: 9% !important
	}
}

@media (min-width:768px) {
	.h-md-9 {
		height: 9% !important
	}
}

@media (min-width:768px) {
	.w-md-10 {
		width: 10% !important
	}
}

@media (min-width:768px) {
	.h-md-10 {
		height: 10% !important
	}
}

@media (min-width:768px) {
	.w-md-11 {
		width: 11% !important
	}
}

@media (min-width:768px) {
	.h-md-11 {
		height: 11% !important
	}
}

@media (min-width:768px) {
	.w-md-12 {
		width: 12% !important
	}
}

@media (min-width:768px) {
	.h-md-12 {
		height: 12% !important
	}
}

@media (min-width:768px) {
	.w-md-13 {
		width: 13% !important
	}
}

@media (min-width:768px) {
	.h-md-13 {
		height: 13% !important
	}
}

@media (min-width:768px) {
	.w-md-14 {
		width: 14% !important
	}
}

@media (min-width:768px) {
	.h-md-14 {
		height: 14% !important
	}
}

@media (min-width:768px) {
	.w-md-15 {
		width: 15% !important
	}
}

@media (min-width:768px) {
	.h-md-15 {
		height: 15% !important
	}
}

@media (min-width:768px) {
	.w-md-16 {
		width: 16% !important
	}
}

@media (min-width:768px) {
	.h-md-16 {
		height: 16% !important
	}
}

@media (min-width:768px) {
	.w-md-17 {
		width: 17% !important
	}
}

@media (min-width:768px) {
	.h-md-17 {
		height: 17% !important
	}
}

@media (min-width:768px) {
	.w-md-18 {
		width: 18% !important
	}
}

@media (min-width:768px) {
	.h-md-18 {
		height: 18% !important
	}
}

@media (min-width:768px) {
	.w-md-19 {
		width: 19% !important
	}
}

@media (min-width:768px) {
	.h-md-19 {
		height: 19% !important
	}
}

@media (min-width:768px) {
	.w-md-20 {
		width: 20% !important
	}
}

@media (min-width:768px) {
	.h-md-20 {
		height: 20% !important
	}
}

@media (min-width:768px) {
	.w-md-21 {
		width: 21% !important
	}
}

@media (min-width:768px) {
	.h-md-21 {
		height: 21% !important
	}
}

@media (min-width:768px) {
	.w-md-22 {
		width: 22% !important
	}
}

@media (min-width:768px) {
	.h-md-22 {
		height: 22% !important
	}
}

@media (min-width:768px) {
	.w-md-23 {
		width: 23% !important
	}
}

@media (min-width:768px) {
	.h-md-23 {
		height: 23% !important
	}
}

@media (min-width:768px) {
	.w-md-24 {
		width: 24% !important
	}
}

@media (min-width:768px) {
	.h-md-24 {
		height: 24% !important
	}
}

@media (min-width:768px) {
	.w-md-26 {
		width: 26% !important
	}
}

@media (min-width:768px) {
	.h-md-26 {
		height: 26% !important
	}
}

@media (min-width:768px) {
	.w-md-27 {
		width: 27% !important
	}
}

@media (min-width:768px) {
	.h-md-27 {
		height: 27% !important
	}
}

@media (min-width:768px) {
	.w-md-28 {
		width: 28% !important
	}
}

@media (min-width:768px) {
	.h-md-28 {
		height: 28% !important
	}
}

@media (min-width:768px) {
	.w-md-29 {
		width: 29% !important
	}
}

@media (min-width:768px) {
	.h-md-29 {
		height: 29% !important
	}
}

@media (min-width:768px) {
	.w-md-30 {
		width: 30% !important
	}
}

@media (min-width:768px) {
	.h-md-30 {
		height: 30% !important
	}
}

@media (min-width:768px) {
	.w-md-31 {
		width: 31% !important
	}
}

@media (min-width:768px) {
	.h-md-31 {
		height: 31% !important
	}
}

@media (min-width:768px) {
	.w-md-32 {
		width: 32% !important
	}
}

@media (min-width:768px) {
	.h-md-32 {
		height: 32% !important
	}
}

@media (min-width:768px) {
	.w-md-33 {
		width: 33% !important
	}
}

@media (min-width:768px) {
	.h-md-33 {
		height: 33% !important
	}
}

@media (min-width:768px) {
	.w-md-34 {
		width: 34% !important
	}
}

@media (min-width:768px) {
	.h-md-34 {
		height: 34% !important
	}
}

@media (min-width:768px) {
	.w-md-35 {
		width: 35% !important
	}
}

@media (min-width:768px) {
	.h-md-35 {
		height: 35% !important
	}
}

@media (min-width:768px) {
	.w-md-36 {
		width: 36% !important
	}
}

@media (min-width:768px) {
	.h-md-36 {
		height: 36% !important
	}
}

@media (min-width:768px) {
	.w-md-37 {
		width: 37% !important
	}
}

@media (min-width:768px) {
	.h-md-37 {
		height: 37% !important
	}
}

@media (min-width:768px) {
	.w-md-38 {
		width: 38% !important
	}
}

@media (min-width:768px) {
	.h-md-38 {
		height: 38% !important
	}
}

@media (min-width:768px) {
	.w-md-39 {
		width: 39% !important
	}
}

@media (min-width:768px) {
	.h-md-39 {
		height: 39% !important
	}
}

@media (min-width:768px) {
	.w-md-40 {
		width: 40% !important
	}
}

@media (min-width:768px) {
	.h-md-40 {
		height: 40% !important
	}
}

@media (min-width:768px) {
	.w-md-41 {
		width: 41% !important
	}
}

@media (min-width:768px) {
	.h-md-41 {
		height: 41% !important
	}
}

@media (min-width:768px) {
	.w-md-42 {
		width: 42% !important
	}
}

@media (min-width:768px) {
	.h-md-42 {
		height: 42% !important
	}
}

@media (min-width:768px) {
	.w-md-43 {
		width: 43% !important
	}
}

@media (min-width:768px) {
	.h-md-43 {
		height: 43% !important
	}
}

@media (min-width:768px) {
	.w-md-44 {
		width: 44% !important
	}
}

@media (min-width:768px) {
	.h-md-44 {
		height: 44% !important
	}
}

@media (min-width:768px) {
	.w-md-45 {
		width: 45% !important
	}
}

@media (min-width:768px) {
	.h-md-45 {
		height: 45% !important
	}
}

@media (min-width:768px) {
	.w-md-46 {
		width: 46% !important
	}
}

@media (min-width:768px) {
	.h-md-46 {
		height: 46% !important
	}
}

@media (min-width:768px) {
	.w-md-47 {
		width: 47% !important
	}
}

@media (min-width:768px) {
	.h-md-47 {
		height: 47% !important
	}
}

@media (min-width:768px) {
	.w-md-48 {
		width: 48% !important
	}
}

@media (min-width:768px) {
	.h-md-48 {
		height: 48% !important
	}
}

@media (min-width:768px) {
	.w-md-49 {
		width: 49% !important
	}
}

@media (min-width:768px) {
	.h-md-49 {
		height: 49% !important
	}
}

@media (min-width:768px) {
	.w-md-51 {
		width: 51% !important
	}
}

@media (min-width:768px) {
	.h-md-51 {
		height: 51% !important
	}
}

@media (min-width:768px) {
	.w-md-52 {
		width: 52% !important
	}
}

@media (min-width:768px) {
	.h-md-52 {
		height: 52% !important
	}
}

@media (min-width:768px) {
	.w-md-53 {
		width: 53% !important
	}
}

@media (min-width:768px) {
	.h-md-53 {
		height: 53% !important
	}
}

@media (min-width:768px) {
	.w-md-54 {
		width: 54% !important
	}
}

@media (min-width:768px) {
	.h-md-54 {
		height: 54% !important
	}
}

@media (min-width:768px) {
	.w-md-55 {
		width: 55% !important
	}
}

@media (min-width:768px) {
	.h-md-55 {
		height: 55% !important
	}
}

@media (min-width:768px) {
	.w-md-56 {
		width: 56% !important
	}
}

@media (min-width:768px) {
	.h-md-56 {
		height: 56% !important
	}
}

@media (min-width:768px) {
	.w-md-57 {
		width: 57% !important
	}
}

@media (min-width:768px) {
	.h-md-57 {
		height: 57% !important
	}
}

@media (min-width:768px) {
	.w-md-58 {
		width: 58% !important
	}
}

@media (min-width:768px) {
	.h-md-58 {
		height: 58% !important
	}
}

@media (min-width:768px) {
	.w-md-59 {
		width: 59% !important
	}
}

@media (min-width:768px) {
	.h-md-59 {
		height: 59% !important
	}
}

@media (min-width:768px) {
	.w-md-60 {
		width: 60% !important
	}
}

@media (min-width:768px) {
	.h-md-60 {
		height: 60% !important
	}
}

@media (min-width:768px) {
	.w-md-61 {
		width: 61% !important
	}
}

@media (min-width:768px) {
	.h-md-61 {
		height: 61% !important
	}
}

@media (min-width:768px) {
	.w-md-62 {
		width: 62% !important
	}
}

@media (min-width:768px) {
	.h-md-62 {
		height: 62% !important
	}
}

@media (min-width:768px) {
	.w-md-63 {
		width: 63% !important
	}
}

@media (min-width:768px) {
	.h-md-63 {
		height: 63% !important
	}
}

@media (min-width:768px) {
	.w-md-64 {
		width: 64% !important
	}
}

@media (min-width:768px) {
	.h-md-64 {
		height: 64% !important
	}
}

@media (min-width:768px) {
	.w-md-65 {
		width: 65% !important
	}
}

@media (min-width:768px) {
	.h-md-65 {
		height: 65% !important
	}
}

@media (min-width:768px) {
	.w-md-66 {
		width: 66% !important
	}
}

@media (min-width:768px) {
	.h-md-66 {
		height: 66% !important
	}
}

@media (min-width:768px) {
	.w-md-67 {
		width: 67% !important
	}
}

@media (min-width:768px) {
	.h-md-67 {
		height: 67% !important
	}
}

@media (min-width:768px) {
	.w-md-68 {
		width: 68% !important
	}
}

@media (min-width:768px) {
	.h-md-68 {
		height: 68% !important
	}
}

@media (min-width:768px) {
	.w-md-69 {
		width: 69% !important
	}
}

@media (min-width:768px) {
	.h-md-69 {
		height: 69% !important
	}
}

@media (min-width:768px) {
	.w-md-70 {
		width: 70% !important
	}
}

@media (min-width:768px) {
	.h-md-70 {
		height: 70% !important
	}
}

@media (min-width:768px) {
	.w-md-71 {
		width: 71% !important
	}
}

@media (min-width:768px) {
	.h-md-71 {
		height: 71% !important
	}
}

@media (min-width:768px) {
	.w-md-72 {
		width: 72% !important
	}
}

@media (min-width:768px) {
	.h-md-72 {
		height: 72% !important
	}
}

@media (min-width:768px) {
	.w-md-73 {
		width: 73% !important
	}
}

@media (min-width:768px) {
	.h-md-73 {
		height: 73% !important
	}
}

@media (min-width:768px) {
	.w-md-74 {
		width: 74% !important
	}
}

@media (min-width:768px) {
	.h-md-74 {
		height: 74% !important
	}
}

@media (min-width:768px) {
	.w-md-76 {
		width: 76% !important
	}
}

@media (min-width:768px) {
	.h-md-76 {
		height: 76% !important
	}
}

@media (min-width:768px) {
	.w-md-77 {
		width: 77% !important
	}
}

@media (min-width:768px) {
	.h-md-77 {
		height: 77% !important
	}
}

@media (min-width:768px) {
	.w-md-78 {
		width: 78% !important
	}
}

@media (min-width:768px) {
	.h-md-78 {
		height: 78% !important
	}
}

@media (min-width:768px) {
	.w-md-79 {
		width: 79% !important
	}
}

@media (min-width:768px) {
	.h-md-79 {
		height: 79% !important
	}
}

@media (min-width:768px) {
	.w-md-80 {
		width: 80% !important
	}
}

@media (min-width:768px) {
	.h-md-80 {
		height: 80% !important
	}
}

@media (min-width:768px) {
	.w-md-81 {
		width: 81% !important
	}
}

@media (min-width:768px) {
	.h-md-81 {
		height: 81% !important
	}
}

@media (min-width:768px) {
	.w-md-82 {
		width: 82% !important
	}
}

@media (min-width:768px) {
	.h-md-82 {
		height: 82% !important
	}
}

@media (min-width:768px) {
	.w-md-83 {
		width: 83% !important
	}
}

@media (min-width:768px) {
	.h-md-83 {
		height: 83% !important
	}
}

@media (min-width:768px) {
	.w-md-84 {
		width: 84% !important
	}
}

@media (min-width:768px) {
	.h-md-84 {
		height: 84% !important
	}
}

@media (min-width:768px) {
	.w-md-85 {
		width: 85% !important
	}
}

@media (min-width:768px) {
	.h-md-85 {
		height: 85% !important
	}
}

@media (min-width:768px) {
	.w-md-86 {
		width: 86% !important
	}
}

@media (min-width:768px) {
	.h-md-86 {
		height: 86% !important
	}
}

@media (min-width:768px) {
	.w-md-87 {
		width: 87% !important
	}
}

@media (min-width:768px) {
	.h-md-87 {
		height: 87% !important
	}
}

@media (min-width:768px) {
	.w-md-88 {
		width: 88% !important
	}
}

@media (min-width:768px) {
	.h-md-88 {
		height: 88% !important
	}
}

@media (min-width:768px) {
	.w-md-89 {
		width: 89% !important
	}
}

@media (min-width:768px) {
	.h-md-89 {
		height: 89% !important
	}
}

@media (min-width:768px) {
	.w-md-90 {
		width: 90% !important
	}
}

@media (min-width:768px) {
	.h-md-90 {
		height: 90% !important
	}
}

@media (min-width:768px) {
	.w-md-91 {
		width: 91% !important
	}
}

@media (min-width:768px) {
	.h-md-91 {
		height: 91% !important
	}
}

@media (min-width:768px) {
	.w-md-92 {
		width: 92% !important
	}
}

@media (min-width:768px) {
	.h-md-92 {
		height: 92% !important
	}
}

@media (min-width:768px) {
	.w-md-93 {
		width: 93% !important
	}
}

@media (min-width:768px) {
	.h-md-93 {
		height: 93% !important
	}
}

@media (min-width:768px) {
	.w-md-94 {
		width: 94% !important
	}
}

@media (min-width:768px) {
	.h-md-94 {
		height: 94% !important
	}
}

@media (min-width:768px) {
	.w-md-95 {
		width: 95% !important
	}
}

@media (min-width:768px) {
	.h-md-95 {
		height: 95% !important
	}
}

@media (min-width:768px) {
	.w-md-96 {
		width: 96% !important
	}
}

@media (min-width:768px) {
	.h-md-96 {
		height: 96% !important
	}
}

@media (min-width:768px) {
	.w-md-97 {
		width: 97% !important
	}
}

@media (min-width:768px) {
	.h-md-97 {
		height: 97% !important
	}
}

@media (min-width:768px) {
	.w-md-98 {
		width: 98% !important
	}
}

@media (min-width:768px) {
	.h-md-98 {
		height: 98% !important
	}
}

@media (min-width:768px) {
	.w-md-99 {
		width: 99% !important
	}
}

@media (min-width:768px) {
	.h-md-99 {
		height: 99% !important
	}
}

@media (min-width:992px) {
	.w-lg-25 {
		width: 25% !important
	}
}

@media (min-width:992px) {
	.h-lg-25 {
		height: 25% !important
	}
}

@media (min-width:992px) {
	.w-lg-50 {
		width: 50% !important
	}
}

@media (min-width:992px) {
	.h-lg-50 {
		height: 50% !important
	}
}

@media (min-width:992px) {
	.w-lg-75 {
		width: 75% !important
	}
}

@media (min-width:992px) {
	.h-lg-75 {
		height: 75% !important
	}
}

@media (min-width:992px) {
	.w-lg-100 {
		width: 100% !important
	}
}

@media (min-width:992px) {
	.h-lg-100 {
		height: 100% !important
	}
}

@media (min-width:992px) {
	.w-lg-auto {
		width: auto !important
	}
}

@media (min-width:992px) {
	.h-lg-auto {
		height: auto !important
	}
}

@media (min-width:992px) {
	.w-lg-1 {
		width: 1% !important
	}
}

@media (min-width:992px) {
	.h-lg-1 {
		height: 1% !important
	}
}

@media (min-width:992px) {
	.w-lg-2 {
		width: 2% !important
	}
}

@media (min-width:992px) {
	.h-lg-2 {
		height: 2% !important
	}
}

@media (min-width:992px) {
	.w-lg-3 {
		width: 3% !important
	}
}

@media (min-width:992px) {
	.h-lg-3 {
		height: 3% !important
	}
}

@media (min-width:992px) {
	.w-lg-4 {
		width: 4% !important
	}
}

@media (min-width:992px) {
	.h-lg-4 {
		height: 4% !important
	}
}

@media (min-width:992px) {
	.w-lg-5 {
		width: 5% !important
	}
}

@media (min-width:992px) {
	.h-lg-5 {
		height: 5% !important
	}
}

@media (min-width:992px) {
	.w-lg-6 {
		width: 6% !important
	}
}

@media (min-width:992px) {
	.h-lg-6 {
		height: 6% !important
	}
}

@media (min-width:992px) {
	.w-lg-7 {
		width: 7% !important
	}
}

@media (min-width:992px) {
	.h-lg-7 {
		height: 7% !important
	}
}

@media (min-width:992px) {
	.w-lg-8 {
		width: 8% !important
	}
}

@media (min-width:992px) {
	.h-lg-8 {
		height: 8% !important
	}
}

@media (min-width:992px) {
	.w-lg-9 {
		width: 9% !important
	}
}

@media (min-width:992px) {
	.h-lg-9 {
		height: 9% !important
	}
}

@media (min-width:992px) {
	.w-lg-10 {
		width: 10% !important
	}
}

@media (min-width:992px) {
	.h-lg-10 {
		height: 10% !important
	}
}

@media (min-width:992px) {
	.w-lg-11 {
		width: 11% !important
	}
}

@media (min-width:992px) {
	.h-lg-11 {
		height: 11% !important
	}
}

@media (min-width:992px) {
	.w-lg-12 {
		width: 12% !important
	}
}

@media (min-width:992px) {
	.h-lg-12 {
		height: 12% !important
	}
}

@media (min-width:992px) {
	.w-lg-13 {
		width: 13% !important
	}
}

@media (min-width:992px) {
	.h-lg-13 {
		height: 13% !important
	}
}

@media (min-width:992px) {
	.w-lg-14 {
		width: 14% !important
	}
}

@media (min-width:992px) {
	.h-lg-14 {
		height: 14% !important
	}
}

@media (min-width:992px) {
	.w-lg-15 {
		width: 15% !important
	}
}

@media (min-width:992px) {
	.h-lg-15 {
		height: 15% !important
	}
}

@media (min-width:992px) {
	.w-lg-16 {
		width: 16% !important
	}
}

@media (min-width:992px) {
	.h-lg-16 {
		height: 16% !important
	}
}

@media (min-width:992px) {
	.w-lg-17 {
		width: 17% !important
	}
}

@media (min-width:992px) {
	.h-lg-17 {
		height: 17% !important
	}
}

@media (min-width:992px) {
	.w-lg-18 {
		width: 18% !important
	}
}

@media (min-width:992px) {
	.h-lg-18 {
		height: 18% !important
	}
}

@media (min-width:992px) {
	.w-lg-19 {
		width: 19% !important
	}
}

@media (min-width:992px) {
	.h-lg-19 {
		height: 19% !important
	}
}

@media (min-width:992px) {
	.w-lg-20 {
		width: 20% !important
	}
}

@media (min-width:992px) {
	.h-lg-20 {
		height: 20% !important
	}
}

@media (min-width:992px) {
	.w-lg-21 {
		width: 21% !important
	}
}

@media (min-width:992px) {
	.h-lg-21 {
		height: 21% !important
	}
}

@media (min-width:992px) {
	.w-lg-22 {
		width: 22% !important
	}
}

@media (min-width:992px) {
	.h-lg-22 {
		height: 22% !important
	}
}

@media (min-width:992px) {
	.w-lg-23 {
		width: 23% !important
	}
}

@media (min-width:992px) {
	.h-lg-23 {
		height: 23% !important
	}
}

@media (min-width:992px) {
	.w-lg-24 {
		width: 24% !important
	}
}

@media (min-width:992px) {
	.h-lg-24 {
		height: 24% !important
	}
}

@media (min-width:992px) {
	.w-lg-26 {
		width: 26% !important
	}
}

@media (min-width:992px) {
	.h-lg-26 {
		height: 26% !important
	}
}

@media (min-width:992px) {
	.w-lg-27 {
		width: 27% !important
	}
}

@media (min-width:992px) {
	.h-lg-27 {
		height: 27% !important
	}
}

@media (min-width:992px) {
	.w-lg-28 {
		width: 28% !important
	}
}

@media (min-width:992px) {
	.h-lg-28 {
		height: 28% !important
	}
}

@media (min-width:992px) {
	.w-lg-29 {
		width: 29% !important
	}
}

@media (min-width:992px) {
	.h-lg-29 {
		height: 29% !important
	}
}

@media (min-width:992px) {
	.w-lg-30 {
		width: 30% !important
	}
}

@media (min-width:992px) {
	.h-lg-30 {
		height: 30% !important
	}
}

@media (min-width:992px) {
	.w-lg-31 {
		width: 31% !important
	}
}

@media (min-width:992px) {
	.h-lg-31 {
		height: 31% !important
	}
}

@media (min-width:992px) {
	.w-lg-32 {
		width: 32% !important
	}
}

@media (min-width:992px) {
	.h-lg-32 {
		height: 32% !important
	}
}

@media (min-width:992px) {
	.w-lg-33 {
		width: 33% !important
	}
}

@media (min-width:992px) {
	.h-lg-33 {
		height: 33% !important
	}
}

@media (min-width:992px) {
	.w-lg-34 {
		width: 34% !important
	}
}

@media (min-width:992px) {
	.h-lg-34 {
		height: 34% !important
	}
}

@media (min-width:992px) {
	.w-lg-35 {
		width: 35% !important
	}
}

@media (min-width:992px) {
	.h-lg-35 {
		height: 35% !important
	}
}

@media (min-width:992px) {
	.w-lg-36 {
		width: 36% !important
	}
}

@media (min-width:992px) {
	.h-lg-36 {
		height: 36% !important
	}
}

@media (min-width:992px) {
	.w-lg-37 {
		width: 37% !important
	}
}

@media (min-width:992px) {
	.h-lg-37 {
		height: 37% !important
	}
}

@media (min-width:992px) {
	.w-lg-38 {
		width: 38% !important
	}
}

@media (min-width:992px) {
	.h-lg-38 {
		height: 38% !important
	}
}

@media (min-width:992px) {
	.w-lg-39 {
		width: 39% !important
	}
}

@media (min-width:992px) {
	.h-lg-39 {
		height: 39% !important
	}
}

@media (min-width:992px) {
	.w-lg-40 {
		width: 40% !important
	}
}

@media (min-width:992px) {
	.h-lg-40 {
		height: 40% !important
	}
}

@media (min-width:992px) {
	.w-lg-41 {
		width: 41% !important
	}
}

@media (min-width:992px) {
	.h-lg-41 {
		height: 41% !important
	}
}

@media (min-width:992px) {
	.w-lg-42 {
		width: 42% !important
	}
}

@media (min-width:992px) {
	.h-lg-42 {
		height: 42% !important
	}
}

@media (min-width:992px) {
	.w-lg-43 {
		width: 43% !important
	}
}

@media (min-width:992px) {
	.h-lg-43 {
		height: 43% !important
	}
}

@media (min-width:992px) {
	.w-lg-44 {
		width: 44% !important
	}
}

@media (min-width:992px) {
	.h-lg-44 {
		height: 44% !important
	}
}

@media (min-width:992px) {
	.w-lg-45 {
		width: 45% !important
	}
}

@media (min-width:992px) {
	.h-lg-45 {
		height: 45% !important
	}
}

@media (min-width:992px) {
	.w-lg-46 {
		width: 46% !important
	}
}

@media (min-width:992px) {
	.h-lg-46 {
		height: 46% !important
	}
}

@media (min-width:992px) {
	.w-lg-47 {
		width: 47% !important
	}
}

@media (min-width:992px) {
	.h-lg-47 {
		height: 47% !important
	}
}

@media (min-width:992px) {
	.w-lg-48 {
		width: 48% !important
	}
}

@media (min-width:992px) {
	.h-lg-48 {
		height: 48% !important
	}
}

@media (min-width:992px) {
	.w-lg-49 {
		width: 49% !important
	}
}

@media (min-width:992px) {
	.h-lg-49 {
		height: 49% !important
	}
}

@media (min-width:992px) {
	.w-lg-51 {
		width: 51% !important
	}
}

@media (min-width:992px) {
	.h-lg-51 {
		height: 51% !important
	}
}

@media (min-width:992px) {
	.w-lg-52 {
		width: 52% !important
	}
}

@media (min-width:992px) {
	.h-lg-52 {
		height: 52% !important
	}
}

@media (min-width:992px) {
	.w-lg-53 {
		width: 53% !important
	}
}

@media (min-width:992px) {
	.h-lg-53 {
		height: 53% !important
	}
}

@media (min-width:992px) {
	.w-lg-54 {
		width: 54% !important
	}
}

@media (min-width:992px) {
	.h-lg-54 {
		height: 54% !important
	}
}

@media (min-width:992px) {
	.w-lg-55 {
		width: 55% !important
	}
}

@media (min-width:992px) {
	.h-lg-55 {
		height: 55% !important
	}
}

@media (min-width:992px) {
	.w-lg-56 {
		width: 56% !important
	}
}

@media (min-width:992px) {
	.h-lg-56 {
		height: 56% !important
	}
}

@media (min-width:992px) {
	.w-lg-57 {
		width: 57% !important
	}
}

@media (min-width:992px) {
	.h-lg-57 {
		height: 57% !important
	}
}

@media (min-width:992px) {
	.w-lg-58 {
		width: 58% !important
	}
}

@media (min-width:992px) {
	.h-lg-58 {
		height: 58% !important
	}
}

@media (min-width:992px) {
	.w-lg-59 {
		width: 59% !important
	}
}

@media (min-width:992px) {
	.h-lg-59 {
		height: 59% !important
	}
}

@media (min-width:992px) {
	.w-lg-60 {
		width: 60% !important
	}
}

@media (min-width:992px) {
	.h-lg-60 {
		height: 60% !important
	}
}

@media (min-width:992px) {
	.w-lg-61 {
		width: 61% !important
	}
}

@media (min-width:992px) {
	.h-lg-61 {
		height: 61% !important
	}
}

@media (min-width:992px) {
	.w-lg-62 {
		width: 62% !important
	}
}

@media (min-width:992px) {
	.h-lg-62 {
		height: 62% !important
	}
}

@media (min-width:992px) {
	.w-lg-63 {
		width: 63% !important
	}
}

@media (min-width:992px) {
	.h-lg-63 {
		height: 63% !important
	}
}

@media (min-width:992px) {
	.w-lg-64 {
		width: 64% !important
	}
}

@media (min-width:992px) {
	.h-lg-64 {
		height: 64% !important
	}
}

@media (min-width:992px) {
	.w-lg-65 {
		width: 65% !important
	}
}

@media (min-width:992px) {
	.h-lg-65 {
		height: 65% !important
	}
}

@media (min-width:992px) {
	.w-lg-66 {
		width: 66% !important
	}
}

@media (min-width:992px) {
	.h-lg-66 {
		height: 66% !important
	}
}

@media (min-width:992px) {
	.w-lg-67 {
		width: 67% !important
	}
}

@media (min-width:992px) {
	.h-lg-67 {
		height: 67% !important
	}
}

@media (min-width:992px) {
	.w-lg-68 {
		width: 68% !important
	}
}

@media (min-width:992px) {
	.h-lg-68 {
		height: 68% !important
	}
}

@media (min-width:992px) {
	.w-lg-69 {
		width: 69% !important
	}
}

@media (min-width:992px) {
	.h-lg-69 {
		height: 69% !important
	}
}

@media (min-width:992px) {
	.w-lg-70 {
		width: 70% !important
	}
}

@media (min-width:992px) {
	.h-lg-70 {
		height: 70% !important
	}
}

@media (min-width:992px) {
	.w-lg-71 {
		width: 71% !important
	}
}

@media (min-width:992px) {
	.h-lg-71 {
		height: 71% !important
	}
}

@media (min-width:992px) {
	.w-lg-72 {
		width: 72% !important
	}
}

@media (min-width:992px) {
	.h-lg-72 {
		height: 72% !important
	}
}

@media (min-width:992px) {
	.w-lg-73 {
		width: 73% !important
	}
}

@media (min-width:992px) {
	.h-lg-73 {
		height: 73% !important
	}
}

@media (min-width:992px) {
	.w-lg-74 {
		width: 74% !important
	}
}

@media (min-width:992px) {
	.h-lg-74 {
		height: 74% !important
	}
}

@media (min-width:992px) {
	.w-lg-76 {
		width: 76% !important
	}
}

@media (min-width:992px) {
	.h-lg-76 {
		height: 76% !important
	}
}

@media (min-width:992px) {
	.w-lg-77 {
		width: 77% !important
	}
}

@media (min-width:992px) {
	.h-lg-77 {
		height: 77% !important
	}
}

@media (min-width:992px) {
	.w-lg-78 {
		width: 78% !important
	}
}

@media (min-width:992px) {
	.h-lg-78 {
		height: 78% !important
	}
}

@media (min-width:992px) {
	.w-lg-79 {
		width: 79% !important
	}
}

@media (min-width:992px) {
	.h-lg-79 {
		height: 79% !important
	}
}

@media (min-width:992px) {
	.w-lg-80 {
		width: 80% !important
	}
}

@media (min-width:992px) {
	.h-lg-80 {
		height: 80% !important
	}
}

@media (min-width:992px) {
	.w-lg-81 {
		width: 81% !important
	}
}

@media (min-width:992px) {
	.h-lg-81 {
		height: 81% !important
	}
}

@media (min-width:992px) {
	.w-lg-82 {
		width: 82% !important
	}
}

@media (min-width:992px) {
	.h-lg-82 {
		height: 82% !important
	}
}

@media (min-width:992px) {
	.w-lg-83 {
		width: 83% !important
	}
}

@media (min-width:992px) {
	.h-lg-83 {
		height: 83% !important
	}
}

@media (min-width:992px) {
	.w-lg-84 {
		width: 84% !important
	}
}

@media (min-width:992px) {
	.h-lg-84 {
		height: 84% !important
	}
}

@media (min-width:992px) {
	.w-lg-85 {
		width: 85% !important
	}
}

@media (min-width:992px) {
	.h-lg-85 {
		height: 85% !important
	}
}

@media (min-width:992px) {
	.w-lg-86 {
		width: 86% !important
	}
}

@media (min-width:992px) {
	.h-lg-86 {
		height: 86% !important
	}
}

@media (min-width:992px) {
	.w-lg-87 {
		width: 87% !important
	}
}

@media (min-width:992px) {
	.h-lg-87 {
		height: 87% !important
	}
}

@media (min-width:992px) {
	.w-lg-88 {
		width: 88% !important
	}
}

@media (min-width:992px) {
	.h-lg-88 {
		height: 88% !important
	}
}

@media (min-width:992px) {
	.w-lg-89 {
		width: 89% !important
	}
}

@media (min-width:992px) {
	.h-lg-89 {
		height: 89% !important
	}
}

@media (min-width:992px) {
	.w-lg-90 {
		width: 90% !important
	}
}

@media (min-width:992px) {
	.h-lg-90 {
		height: 90% !important
	}
}

@media (min-width:992px) {
	.w-lg-91 {
		width: 91% !important
	}
}

@media (min-width:992px) {
	.h-lg-91 {
		height: 91% !important
	}
}

@media (min-width:992px) {
	.w-lg-92 {
		width: 92% !important
	}
}

@media (min-width:992px) {
	.h-lg-92 {
		height: 92% !important
	}
}

@media (min-width:992px) {
	.w-lg-93 {
		width: 93% !important
	}
}

@media (min-width:992px) {
	.h-lg-93 {
		height: 93% !important
	}
}

@media (min-width:992px) {
	.w-lg-94 {
		width: 94% !important
	}
}

@media (min-width:992px) {
	.h-lg-94 {
		height: 94% !important
	}
}

@media (min-width:992px) {
	.w-lg-95 {
		width: 95% !important
	}
}

@media (min-width:992px) {
	.h-lg-95 {
		height: 95% !important
	}
}

@media (min-width:992px) {
	.w-lg-96 {
		width: 96% !important
	}
}

@media (min-width:992px) {
	.h-lg-96 {
		height: 96% !important
	}
}

@media (min-width:992px) {
	.w-lg-97 {
		width: 97% !important
	}
}

@media (min-width:992px) {
	.h-lg-97 {
		height: 97% !important
	}
}

@media (min-width:992px) {
	.w-lg-98 {
		width: 98% !important
	}
}

@media (min-width:992px) {
	.h-lg-98 {
		height: 98% !important
	}
}

@media (min-width:992px) {
	.w-lg-99 {
		width: 99% !important
	}
}

@media (min-width:992px) {
	.h-lg-99 {
		height: 99% !important
	}
}

@media (min-width:1200px) {
	.w-xl-25 {
		width: 25% !important
	}
}

@media (min-width:1200px) {
	.h-xl-25 {
		height: 25% !important
	}
}

@media (min-width:1200px) {
	.w-xl-50 {
		width: 50% !important
	}
}

@media (min-width:1200px) {
	.h-xl-50 {
		height: 50% !important
	}
}

@media (min-width:1200px) {
	.w-xl-75 {
		width: 75% !important
	}
}

@media (min-width:1200px) {
	.h-xl-75 {
		height: 75% !important
	}
}

@media (min-width:1200px) {
	.w-xl-100 {
		width: 100% !important
	}
}

@media (min-width:1200px) {
	.h-xl-100 {
		height: 100% !important
	}
}

@media (min-width:1200px) {
	.w-xl-auto {
		width: auto !important
	}
}

@media (min-width:1200px) {
	.h-xl-auto {
		height: auto !important
	}
}

@media (min-width:1200px) {
	.w-xl-1 {
		width: 1% !important
	}
}

@media (min-width:1200px) {
	.h-xl-1 {
		height: 1% !important
	}
}

@media (min-width:1200px) {
	.w-xl-2 {
		width: 2% !important
	}
}

@media (min-width:1200px) {
	.h-xl-2 {
		height: 2% !important
	}
}

@media (min-width:1200px) {
	.w-xl-3 {
		width: 3% !important
	}
}

@media (min-width:1200px) {
	.h-xl-3 {
		height: 3% !important
	}
}

@media (min-width:1200px) {
	.w-xl-4 {
		width: 4% !important
	}
}

@media (min-width:1200px) {
	.h-xl-4 {
		height: 4% !important
	}
}

@media (min-width:1200px) {
	.w-xl-5 {
		width: 5% !important
	}
}

@media (min-width:1200px) {
	.h-xl-5 {
		height: 5% !important
	}
}

@media (min-width:1200px) {
	.w-xl-6 {
		width: 6% !important
	}
}

@media (min-width:1200px) {
	.h-xl-6 {
		height: 6% !important
	}
}

@media (min-width:1200px) {
	.w-xl-7 {
		width: 7% !important
	}
}

@media (min-width:1200px) {
	.h-xl-7 {
		height: 7% !important
	}
}

@media (min-width:1200px) {
	.w-xl-8 {
		width: 8% !important
	}
}

@media (min-width:1200px) {
	.h-xl-8 {
		height: 8% !important
	}
}

@media (min-width:1200px) {
	.w-xl-9 {
		width: 9% !important
	}
}

@media (min-width:1200px) {
	.h-xl-9 {
		height: 9% !important
	}
}

@media (min-width:1200px) {
	.w-xl-10 {
		width: 10% !important
	}
}

@media (min-width:1200px) {
	.h-xl-10 {
		height: 10% !important
	}
}

@media (min-width:1200px) {
	.w-xl-11 {
		width: 11% !important
	}
}

@media (min-width:1200px) {
	.h-xl-11 {
		height: 11% !important
	}
}

@media (min-width:1200px) {
	.w-xl-12 {
		width: 12% !important
	}
}

@media (min-width:1200px) {
	.h-xl-12 {
		height: 12% !important
	}
}

@media (min-width:1200px) {
	.w-xl-13 {
		width: 13% !important
	}
}

@media (min-width:1200px) {
	.h-xl-13 {
		height: 13% !important
	}
}

@media (min-width:1200px) {
	.w-xl-14 {
		width: 14% !important
	}
}

@media (min-width:1200px) {
	.h-xl-14 {
		height: 14% !important
	}
}

@media (min-width:1200px) {
	.w-xl-15 {
		width: 15% !important
	}
}

@media (min-width:1200px) {
	.h-xl-15 {
		height: 15% !important
	}
}

@media (min-width:1200px) {
	.w-xl-16 {
		width: 16% !important
	}
}

@media (min-width:1200px) {
	.h-xl-16 {
		height: 16% !important
	}
}

@media (min-width:1200px) {
	.w-xl-17 {
		width: 17% !important
	}
}

@media (min-width:1200px) {
	.h-xl-17 {
		height: 17% !important
	}
}

@media (min-width:1200px) {
	.w-xl-18 {
		width: 18% !important
	}
}

@media (min-width:1200px) {
	.h-xl-18 {
		height: 18% !important
	}
}

@media (min-width:1200px) {
	.w-xl-19 {
		width: 19% !important
	}
}

@media (min-width:1200px) {
	.h-xl-19 {
		height: 19% !important
	}
}

@media (min-width:1200px) {
	.w-xl-20 {
		width: 20% !important
	}
}

@media (min-width:1200px) {
	.h-xl-20 {
		height: 20% !important
	}
}

@media (min-width:1200px) {
	.w-xl-21 {
		width: 21% !important
	}
}

@media (min-width:1200px) {
	.h-xl-21 {
		height: 21% !important
	}
}

@media (min-width:1200px) {
	.w-xl-22 {
		width: 22% !important
	}
}

@media (min-width:1200px) {
	.h-xl-22 {
		height: 22% !important
	}
}

@media (min-width:1200px) {
	.w-xl-23 {
		width: 23% !important
	}
}

@media (min-width:1200px) {
	.h-xl-23 {
		height: 23% !important
	}
}

@media (min-width:1200px) {
	.w-xl-24 {
		width: 24% !important
	}
}

@media (min-width:1200px) {
	.h-xl-24 {
		height: 24% !important
	}
}

@media (min-width:1200px) {
	.w-xl-26 {
		width: 26% !important
	}
}

@media (min-width:1200px) {
	.h-xl-26 {
		height: 26% !important
	}
}

@media (min-width:1200px) {
	.w-xl-27 {
		width: 27% !important
	}
}

@media (min-width:1200px) {
	.h-xl-27 {
		height: 27% !important
	}
}

@media (min-width:1200px) {
	.w-xl-28 {
		width: 28% !important
	}
}

@media (min-width:1200px) {
	.h-xl-28 {
		height: 28% !important
	}
}

@media (min-width:1200px) {
	.w-xl-29 {
		width: 29% !important
	}
}

@media (min-width:1200px) {
	.h-xl-29 {
		height: 29% !important
	}
}

@media (min-width:1200px) {
	.w-xl-30 {
		width: 30% !important
	}
}

@media (min-width:1200px) {
	.h-xl-30 {
		height: 30% !important
	}
}

@media (min-width:1200px) {
	.w-xl-31 {
		width: 31% !important
	}
}

@media (min-width:1200px) {
	.h-xl-31 {
		height: 31% !important
	}
}

@media (min-width:1200px) {
	.w-xl-32 {
		width: 32% !important
	}
}

@media (min-width:1200px) {
	.h-xl-32 {
		height: 32% !important
	}
}

@media (min-width:1200px) {
	.w-xl-33 {
		width: 33% !important
	}
}

@media (min-width:1200px) {
	.h-xl-33 {
		height: 33% !important
	}
}

@media (min-width:1200px) {
	.w-xl-34 {
		width: 34% !important
	}
}

@media (min-width:1200px) {
	.h-xl-34 {
		height: 34% !important
	}
}

@media (min-width:1200px) {
	.w-xl-35 {
		width: 35% !important
	}
}

@media (min-width:1200px) {
	.h-xl-35 {
		height: 35% !important
	}
}

@media (min-width:1200px) {
	.w-xl-36 {
		width: 36% !important
	}
}

@media (min-width:1200px) {
	.h-xl-36 {
		height: 36% !important
	}
}

@media (min-width:1200px) {
	.w-xl-37 {
		width: 37% !important
	}
}

@media (min-width:1200px) {
	.h-xl-37 {
		height: 37% !important
	}
}

@media (min-width:1200px) {
	.w-xl-38 {
		width: 38% !important
	}
}

@media (min-width:1200px) {
	.h-xl-38 {
		height: 38% !important
	}
}

@media (min-width:1200px) {
	.w-xl-39 {
		width: 39% !important
	}
}

@media (min-width:1200px) {
	.h-xl-39 {
		height: 39% !important
	}
}

@media (min-width:1200px) {
	.w-xl-40 {
		width: 40% !important
	}
}

@media (min-width:1200px) {
	.h-xl-40 {
		height: 40% !important
	}
}

@media (min-width:1200px) {
	.w-xl-41 {
		width: 41% !important
	}
}

@media (min-width:1200px) {
	.h-xl-41 {
		height: 41% !important
	}
}

@media (min-width:1200px) {
	.w-xl-42 {
		width: 42% !important
	}
}

@media (min-width:1200px) {
	.h-xl-42 {
		height: 42% !important
	}
}

@media (min-width:1200px) {
	.w-xl-43 {
		width: 43% !important
	}
}

@media (min-width:1200px) {
	.h-xl-43 {
		height: 43% !important
	}
}

@media (min-width:1200px) {
	.w-xl-44 {
		width: 44% !important
	}
}

@media (min-width:1200px) {
	.h-xl-44 {
		height: 44% !important
	}
}

@media (min-width:1200px) {
	.w-xl-45 {
		width: 45% !important
	}
}

@media (min-width:1200px) {
	.h-xl-45 {
		height: 45% !important
	}
}

@media (min-width:1200px) {
	.w-xl-46 {
		width: 46% !important
	}
}

@media (min-width:1200px) {
	.h-xl-46 {
		height: 46% !important
	}
}

@media (min-width:1200px) {
	.w-xl-47 {
		width: 47% !important
	}
}

@media (min-width:1200px) {
	.h-xl-47 {
		height: 47% !important
	}
}

@media (min-width:1200px) {
	.w-xl-48 {
		width: 48% !important
	}
}

@media (min-width:1200px) {
	.h-xl-48 {
		height: 48% !important
	}
}

@media (min-width:1200px) {
	.w-xl-49 {
		width: 49% !important
	}
}

@media (min-width:1200px) {
	.h-xl-49 {
		height: 49% !important
	}
}

@media (min-width:1200px) {
	.w-xl-51 {
		width: 51% !important
	}
}

@media (min-width:1200px) {
	.h-xl-51 {
		height: 51% !important
	}
}

@media (min-width:1200px) {
	.w-xl-52 {
		width: 52% !important
	}
}

@media (min-width:1200px) {
	.h-xl-52 {
		height: 52% !important
	}
}

@media (min-width:1200px) {
	.w-xl-53 {
		width: 53% !important
	}
}

@media (min-width:1200px) {
	.h-xl-53 {
		height: 53% !important
	}
}

@media (min-width:1200px) {
	.w-xl-54 {
		width: 54% !important
	}
}

@media (min-width:1200px) {
	.h-xl-54 {
		height: 54% !important
	}
}

@media (min-width:1200px) {
	.w-xl-55 {
		width: 55% !important
	}
}

@media (min-width:1200px) {
	.h-xl-55 {
		height: 55% !important
	}
}

@media (min-width:1200px) {
	.w-xl-56 {
		width: 56% !important
	}
}

@media (min-width:1200px) {
	.h-xl-56 {
		height: 56% !important
	}
}

@media (min-width:1200px) {
	.w-xl-57 {
		width: 57% !important
	}
}

@media (min-width:1200px) {
	.h-xl-57 {
		height: 57% !important
	}
}

@media (min-width:1200px) {
	.w-xl-58 {
		width: 58% !important
	}
}

@media (min-width:1200px) {
	.h-xl-58 {
		height: 58% !important
	}
}

@media (min-width:1200px) {
	.w-xl-59 {
		width: 59% !important
	}
}

@media (min-width:1200px) {
	.h-xl-59 {
		height: 59% !important
	}
}

@media (min-width:1200px) {
	.w-xl-60 {
		width: 60% !important
	}
}

@media (min-width:1200px) {
	.h-xl-60 {
		height: 60% !important
	}
}

@media (min-width:1200px) {
	.w-xl-61 {
		width: 61% !important
	}
}

@media (min-width:1200px) {
	.h-xl-61 {
		height: 61% !important
	}
}

@media (min-width:1200px) {
	.w-xl-62 {
		width: 62% !important
	}
}

@media (min-width:1200px) {
	.h-xl-62 {
		height: 62% !important
	}
}

@media (min-width:1200px) {
	.w-xl-63 {
		width: 63% !important
	}
}

@media (min-width:1200px) {
	.h-xl-63 {
		height: 63% !important
	}
}

@media (min-width:1200px) {
	.w-xl-64 {
		width: 64% !important
	}
}

@media (min-width:1200px) {
	.h-xl-64 {
		height: 64% !important
	}
}

@media (min-width:1200px) {
	.w-xl-65 {
		width: 65% !important
	}
}

@media (min-width:1200px) {
	.h-xl-65 {
		height: 65% !important
	}
}

@media (min-width:1200px) {
	.w-xl-66 {
		width: 66% !important
	}
}

@media (min-width:1200px) {
	.h-xl-66 {
		height: 66% !important
	}
}

@media (min-width:1200px) {
	.w-xl-67 {
		width: 67% !important
	}
}

@media (min-width:1200px) {
	.h-xl-67 {
		height: 67% !important
	}
}

@media (min-width:1200px) {
	.w-xl-68 {
		width: 68% !important
	}
}

@media (min-width:1200px) {
	.h-xl-68 {
		height: 68% !important
	}
}

@media (min-width:1200px) {
	.w-xl-69 {
		width: 69% !important
	}
}

@media (min-width:1200px) {
	.h-xl-69 {
		height: 69% !important
	}
}

@media (min-width:1200px) {
	.w-xl-70 {
		width: 70% !important
	}
}

@media (min-width:1200px) {
	.h-xl-70 {
		height: 70% !important
	}
}

@media (min-width:1200px) {
	.w-xl-71 {
		width: 71% !important
	}
}

@media (min-width:1200px) {
	.h-xl-71 {
		height: 71% !important
	}
}

@media (min-width:1200px) {
	.w-xl-72 {
		width: 72% !important
	}
}

@media (min-width:1200px) {
	.h-xl-72 {
		height: 72% !important
	}
}

@media (min-width:1200px) {
	.w-xl-73 {
		width: 73% !important
	}
}

@media (min-width:1200px) {
	.h-xl-73 {
		height: 73% !important
	}
}

@media (min-width:1200px) {
	.w-xl-74 {
		width: 74% !important
	}
}

@media (min-width:1200px) {
	.h-xl-74 {
		height: 74% !important
	}
}

@media (min-width:1200px) {
	.w-xl-76 {
		width: 76% !important
	}
}

@media (min-width:1200px) {
	.h-xl-76 {
		height: 76% !important
	}
}

@media (min-width:1200px) {
	.w-xl-77 {
		width: 77% !important
	}
}

@media (min-width:1200px) {
	.h-xl-77 {
		height: 77% !important
	}
}

@media (min-width:1200px) {
	.w-xl-78 {
		width: 78% !important
	}
}

@media (min-width:1200px) {
	.h-xl-78 {
		height: 78% !important
	}
}

@media (min-width:1200px) {
	.w-xl-79 {
		width: 79% !important
	}
}

@media (min-width:1200px) {
	.h-xl-79 {
		height: 79% !important
	}
}

@media (min-width:1200px) {
	.w-xl-80 {
		width: 80% !important
	}
}

@media (min-width:1200px) {
	.h-xl-80 {
		height: 80% !important
	}
}

@media (min-width:1200px) {
	.w-xl-81 {
		width: 81% !important
	}
}

@media (min-width:1200px) {
	.h-xl-81 {
		height: 81% !important
	}
}

@media (min-width:1200px) {
	.w-xl-82 {
		width: 82% !important
	}
}

@media (min-width:1200px) {
	.h-xl-82 {
		height: 82% !important
	}
}

@media (min-width:1200px) {
	.w-xl-83 {
		width: 83% !important
	}
}

@media (min-width:1200px) {
	.h-xl-83 {
		height: 83% !important
	}
}

@media (min-width:1200px) {
	.w-xl-84 {
		width: 84% !important
	}
}

@media (min-width:1200px) {
	.h-xl-84 {
		height: 84% !important
	}
}

@media (min-width:1200px) {
	.w-xl-85 {
		width: 85% !important
	}
}

@media (min-width:1200px) {
	.h-xl-85 {
		height: 85% !important
	}
}

@media (min-width:1200px) {
	.w-xl-86 {
		width: 86% !important
	}
}

@media (min-width:1200px) {
	.h-xl-86 {
		height: 86% !important
	}
}

@media (min-width:1200px) {
	.w-xl-87 {
		width: 87% !important
	}
}

@media (min-width:1200px) {
	.h-xl-87 {
		height: 87% !important
	}
}

@media (min-width:1200px) {
	.w-xl-88 {
		width: 88% !important
	}
}

@media (min-width:1200px) {
	.h-xl-88 {
		height: 88% !important
	}
}

@media (min-width:1200px) {
	.w-xl-89 {
		width: 89% !important
	}
}

@media (min-width:1200px) {
	.h-xl-89 {
		height: 89% !important
	}
}

@media (min-width:1200px) {
	.w-xl-90 {
		width: 90% !important
	}
}

@media (min-width:1200px) {
	.h-xl-90 {
		height: 90% !important
	}
}

@media (min-width:1200px) {
	.w-xl-91 {
		width: 91% !important
	}
}

@media (min-width:1200px) {
	.h-xl-91 {
		height: 91% !important
	}
}

@media (min-width:1200px) {
	.w-xl-92 {
		width: 92% !important
	}
}

@media (min-width:1200px) {
	.h-xl-92 {
		height: 92% !important
	}
}

@media (min-width:1200px) {
	.w-xl-93 {
		width: 93% !important
	}
}

@media (min-width:1200px) {
	.h-xl-93 {
		height: 93% !important
	}
}

@media (min-width:1200px) {
	.w-xl-94 {
		width: 94% !important
	}
}

@media (min-width:1200px) {
	.h-xl-94 {
		height: 94% !important
	}
}

@media (min-width:1200px) {
	.w-xl-95 {
		width: 95% !important
	}
}

@media (min-width:1200px) {
	.h-xl-95 {
		height: 95% !important
	}
}

@media (min-width:1200px) {
	.w-xl-96 {
		width: 96% !important
	}
}

@media (min-width:1200px) {
	.h-xl-96 {
		height: 96% !important
	}
}

@media (min-width:1200px) {
	.w-xl-97 {
		width: 97% !important
	}
}

@media (min-width:1200px) {
	.h-xl-97 {
		height: 97% !important
	}
}

@media (min-width:1200px) {
	.w-xl-98 {
		width: 98% !important
	}
}

@media (min-width:1200px) {
	.h-xl-98 {
		height: 98% !important
	}
}

@media (min-width:1200px) {
	.w-xl-99 {
		width: 99% !important
	}
}

@media (min-width:1200px) {
	.h-xl-99 {
		height: 99% !important
	}
}

.font-weight-xs-light {
	font-weight: 300 !important
}

.font-weight-xs-normal {
	font-weight: 400 !important
}

.font-weight-xs-bold {
	font-weight: 700 !important
}

.font-weight-xs-italic {
	font-style: italic !important
}

@media (min-width:576px) {
	.font-weight-sm-light {
		font-weight: 300 !important
	}

	.font-weight-sm-normal {
		font-weight: 400 !important
	}

	.font-weight-sm-bold {
		font-weight: 700 !important
	}

	.font-weight-sm-italic {
		font-style: italic !important
	}
}

@media (min-width:768px) {
	.font-weight-md-light {
		font-weight: 300 !important
	}

	.font-weight-md-normal {
		font-weight: 400 !important
	}

	.font-weight-md-bold {
		font-weight: 700 !important
	}

	.font-weight-md-italic {
		font-style: italic !important
	}
}

@media (min-width:992px) {
	.font-weight-lg-light {
		font-weight: 300 !important
	}

	.font-weight-lg-normal {
		font-weight: 400 !important
	}

	.font-weight-lg-bold {
		font-weight: 700 !important
	}

	.font-weight-lg-italic {
		font-style: italic !important
	}
}

@media (min-width:1200px) {
	.font-weight-xl-light {
		font-weight: 300 !important
	}

	.font-weight-xl-normal {
		font-weight: 400 !important
	}

	.font-weight-xl-bold {
		font-weight: 700 !important
	}

	.font-weight-xl-italic {
		font-style: italic !important
	}
}

.nav .active,
dt {
	font-weight: 400
}

.nav.nav-dark a {
	color: #5d6b8d
}

.nav.nav-dark .nav-link {
	background: #fff
}

.nav.nav-dark .nav-link.active {
	background: #1c1e2b
}

.nav.nav-yellow-dark a {
	color: #fff
}

.nav.nav-yellow-dark .nav-link {
	background: #1c1e2b
}

.nav.nav-yellow-dark .nav-link.active {
	background: #4d8cbf
}

.ck-editor__editable {
	min-height: 300px
}

.daterangepicker {
	width: 530px;
	padding: 15px;
	margin-top: 13px;
	z-index: 99999 !important;
	border-color: transparent;
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
	box-shadow: 0 2px 6px rgba(0, 0, 0, .08)
}

.daterangepicker:before {
	top: -18px;
	border: 9px solid #f5f4f4;
	border-left-color: transparent;
	border-right-color: transparent;
	border-top-color: transparent
}

.daterangepicker:after,
.daterangepicker:before {
	width: 0;
	content: "";
	position: absolute;
	left: 20px !important
}

.daterangepicker:after {
	top: -17px;
	border: 9px solid #fff;
	border-left-color: transparent;
	border-right-color: transparent;
	border-top-color: transparent
}

.daterangepicker.single {
	width: 280px;
	padding: 5px 15px 15px
}

.daterangepicker.single .calendar.left {
	width: 100%;
	margin-right: 0
}

.daterangepicker.single .calendar.left .start-date {
	border-radius: .2em !important
}

.daterangepicker.single .calendar.left tbody tr td {
	padding: 10px 0 !important
}

.daterangepicker .calendar.left {
	width: 48.5%;
	float: left;
	margin-right: 1.5%
}

.daterangepicker .calendar.right {
	width: 48.5%;
	float: left;
	margin-left: 1.5%
}

.daterangepicker .calendar .daterangepicker_input {
	position: relative
}

.daterangepicker .calendar .daterangepicker_input .form-control {
	border-color: #d6d6d6
}

.daterangepicker .calendar .daterangepicker_input i {
	height: 16px;
	color: #a2a2a2;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto 0;
	position: absolute
}

.daterangepicker .calendar .calendar-table,
.daterangepicker .calendar .calendar-table .table-condensed {
	width: 100%
}

.daterangepicker .calendar .calendar-table .table-condensed thead tr:first-child th {
	padding-top: 15px;
	padding-bottom: 7px
}

.daterangepicker .calendar .calendar-table .table-condensed thead tr:first-child th.month {
	color: #333;
	text-align: center;
	font-weight: 700
}

.daterangepicker .calendar .calendar-table .table-condensed thead tr:first-child th.prev {
	color: #222;
	font-size: 12px;
	text-align: left;
	padding-left: 5px
}

.daterangepicker .calendar .calendar-table .table-condensed thead tr:first-child th.next {
	color: #222;
	font-size: 12px;
	text-align: right;
	padding-right: 5px
}

.daterangepicker .calendar .calendar-table .table-condensed thead tr:last-child th {
	font-size: 14px;
	padding: 5px 0;
	text-align: center;
	font-weight: 700
}

.daterangepicker .calendar .calendar-table .table-condensed tbody tr td {
	width: 14.28571429%;
	cursor: pointer;
	font-size: 13px;
	padding: 2px 0;
	text-align: center
}

.daterangepicker .calendar .calendar-table .table-condensed tbody tr td.off,
.daterangepicker .calendar .calendar-table .table-condensed tbody tr td.off:hover {
	color: #ccc
}

.daterangepicker .calendar .calendar-table .table-condensed tbody tr td.disabled {
	color: #ccc;
	cursor: not-allowed;
	text-decoration: line-through
}

.daterangepicker .calendar .calendar-table .table-condensed tbody tr td.disabled:hover {
	color: #ccc
}

.daterangepicker .calendar .calendar-table .table-condensed tbody tr td.in-range {
	color: #707070;
	background: #f7f7f7
}

.daterangepicker .calendar .calendar-table .table-condensed tbody tr td.in-range:hover {
	color: #707070
}

.daterangepicker .calendar .calendar-table .table-condensed tbody tr td.active {
	background: #1e88e5
}

.daterangepicker .calendar .calendar-table .table-condensed tbody tr td.active:hover {
	color: #fff
}

.daterangepicker .calendar .calendar-table .table-condensed tbody tr td.start-date {
	color: #fff;
	font-weight: 700;
	border-radius: .2em 0 0 .2em
}

.daterangepicker .calendar .calendar-table .table-condensed tbody tr td.start-date:hover {
	color: #fff
}

.daterangepicker .calendar .calendar-table .table-condensed tbody tr td.end-date {
	color: #fff;
	font-weight: 700;
	border-radius: 0 .2em .2em 0
}

.daterangepicker .calendar .calendar-table .table-condensed tbody tr td.end-date:hover {
	color: #fff
}

.daterangepicker .calendar .calendar-table .table-condensed tbody tr td:hover {
	color: #000
}

.daterangepicker .ranges {
	width: 100%;
	float: left;
	margin-top: 20px
}

.daterangepicker .ranges .btn {
	height: 36px;
	cursor: pointer;
	font-size: 15px;
	padding: 0 13px;
	border-radius: .2em
}

.daterangepicker .ranges .btn:focus {
	-webkit-box-shadow: none;
	box-shadow: none
}

.bg-color-1 {
	background-color: #858ba5 !important
}

.bg-color-2 {
	background-color: #8a95a9 !important
}

.bg-color-3 {
	background-color: #575e7d !important
}

.bg-color-4 {
	background-color: #1c1e2b !important
}

.bg-color-5 {
	background-color: #242935 !important
}

.bg-color-6 {
	background-color: #222531 !important
}

.bg-color-7 {
	background-color: #1e202b !important
}

.bg-color-8 {
	background-color: #7b85a2 !important
}

.bg-color-9 {
	background-color: #a2acbf !important
}

.bg-color-10 {
	background-color: #41475d !important
}

.bg-color-11 {
	background-color: #fafbfd !important
}

.bg-color-12 {
	background-color: #5d6b8d !important
}

.bg-color-13 {
	background-color: #f4f7fb !important
}

.bg-color-14 {
	background-color: #3589d2 !important
}

.bg-color-15 {
	background-color: #5ddcdf !important
}

.bg-color-16 {
	background-color: #d3e7f7 !important
}

.bg-color-17 {
	background-color: #dbf7f9 !important
}

.bg-color-18 {
	background-color: #646c86 !important
}

.bg-color-19 {
	background-color: #fafbfc !important
}

.bg-color-20 {
	background-color: #8b98b1 !important
}

.bg-color-21 {
	background-color: #ecf2f9 !important
}

.bg-color-22 {
	background-color: #f7f7f7 !important
}

.bg-color-23 {
	background-color: #e8e9ea !important
}

.bg-color-24 {
	background-color: rgba(28, 29, 42, .4) !important
}

.bg-color-25 {
	background-color: #1c1d2a !important
}

.bg-color-26 {
	background-color: #676f8f !important
}

.bg-color-27 {
	background-color: #5b617e !important
}

.bg-color-28 {
	background-color: #898eab !important
}

.bg-color-29 {
	background-color: #dadce6 !important
}

.bg-color-30 {
	background-color: #9a9aa3 !important
}

.bg-color-31 {
	background-color: rgba(43, 47, 62, .8) !important
}

.bg-color-32 {
	background-color: #94a0b3 !important
}

.bg-color-33 {
	background-color: #888ea9 !important
}

.bg-color-34 {
	background-color: #ecf0f7 !important
}

.bg-color-35 {
	background-color: #97a3c5 !important
}

.bg-color-36 {
	background-color: #c32aa3 !important
}

.bg-color-37 {
	background-color: #007bb5 !important
}

.bg-color-38 {
	background-color: #bd081c !important
}

.bg-color-39 {
	background-color: #f40083 !important
}

.bg-color-40 {
	background-color: #616887 !important
}

.bg-color-41 {
	background-color: #f3f6fb !important
}

.bg-color-42 {
	background-color: hsla(0, 0%, 100%, .74) !important
}

.bg-color-43 {
	background-color: #f5f6f9 !important
}

.bg-color-44 {
	background-color: hsla(0, 0%, 100%, 0) !important
}

.bg-color-45 {
	background-color: #ced4da !important
}

.bg-color-46 {
	background-color: #fcfcfd !important
}

.bg-color-47 {
	background-color: #f9f9f9 !important
}

.bg-color-48 {
	background-color: #f1f1f1 !important
}

.bg-color-49 {
	background-color: #788288 !important
}

.bg-color-50 {
	background-color: #e7ebf5 !important
}

.bg-color-51 {
	background-color: #d54800 !important
}

.bg-color-52 {
	background-color: #bcc6d8 !important
}

.bg-color-53 {
	background-color: #9c9fa9 !important
}

.bg-color-54 {
	background-color: #fbfafa !important
}

.bg-color-55 {
	background-color: #fdfdfd !important
}

.bg-color-56 {
	background-color: #979fb7 !important
}

.bg-color-57 {
	background-color: #cbd0d8 !important
}

.bg-color-58 {
	background-color: #e5e8ec !important
}

.bg-color-59 {
	background-color: #2c3034 !important
}

.bg-color-60 {
	background-color: #2e3446 !important
}

.bg-color-61 {
	background-color: #e3eaf3 !important
}

.bg-color-62 {
	background-color: #f5f8fb !important
}

.bg-color-63 {
	background-color: #9fb1ca !important
}

@media (min-width:576px) {
	.bg-color-sm-1 {
		background-color: #858ba5 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-2 {
		background-color: #8a95a9 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-3 {
		background-color: #575e7d !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-4 {
		background-color: #1c1e2b !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-5 {
		background-color: #242935 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-6 {
		background-color: #222531 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-7 {
		background-color: #1e202b !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-8 {
		background-color: #7b85a2 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-9 {
		background-color: #a2acbf !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-10 {
		background-color: #41475d !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-11 {
		background-color: #fafbfd !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-12 {
		background-color: #5d6b8d !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-13 {
		background-color: #f4f7fb !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-14 {
		background-color: #3589d2 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-15 {
		background-color: #5ddcdf !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-16 {
		background-color: #d3e7f7 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-17 {
		background-color: #dbf7f9 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-18 {
		background-color: #646c86 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-19 {
		background-color: #fafbfc !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-20 {
		background-color: #8b98b1 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-21 {
		background-color: #ecf2f9 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-22 {
		background-color: #f7f7f7 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-23 {
		background-color: #e8e9ea !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-24 {
		background-color: rgba(28, 29, 42, .4) !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-25 {
		background-color: #1c1d2a !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-26 {
		background-color: #676f8f !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-27 {
		background-color: #5b617e !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-28 {
		background-color: #898eab !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-29 {
		background-color: #dadce6 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-30 {
		background-color: #9a9aa3 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-31 {
		background-color: rgba(43, 47, 62, .8) !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-32 {
		background-color: #94a0b3 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-33 {
		background-color: #888ea9 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-34 {
		background-color: #ecf0f7 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-35 {
		background-color: #97a3c5 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-36 {
		background-color: #c32aa3 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-37 {
		background-color: #007bb5 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-38 {
		background-color: #bd081c !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-39 {
		background-color: #f40083 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-40 {
		background-color: #616887 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-41 {
		background-color: #f3f6fb !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-42 {
		background-color: hsla(0, 0%, 100%, .74) !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-43 {
		background-color: #f5f6f9 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-44 {
		background-color: hsla(0, 0%, 100%, 0) !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-45 {
		background-color: #ced4da !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-46 {
		background-color: #fcfcfd !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-47 {
		background-color: #f9f9f9 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-48 {
		background-color: #f1f1f1 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-49 {
		background-color: #788288 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-50 {
		background-color: #e7ebf5 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-51 {
		background-color: #d54800 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-52 {
		background-color: #bcc6d8 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-53 {
		background-color: #9c9fa9 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-54 {
		background-color: #fbfafa !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-55 {
		background-color: #fdfdfd !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-56 {
		background-color: #979fb7 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-57 {
		background-color: #cbd0d8 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-58 {
		background-color: #e5e8ec !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-59 {
		background-color: #2c3034 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-60 {
		background-color: #2e3446 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-61 {
		background-color: #e3eaf3 !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-62 {
		background-color: #f5f8fb !important
	}
}

@media (min-width:576px) {
	.bg-color-sm-63 {
		background-color: #9fb1ca !important
	}
}

@media (min-width:768px) {
	.bg-color-md-1 {
		background-color: #858ba5 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-2 {
		background-color: #8a95a9 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-3 {
		background-color: #575e7d !important
	}
}

@media (min-width:768px) {
	.bg-color-md-4 {
		background-color: #1c1e2b !important
	}
}

@media (min-width:768px) {
	.bg-color-md-5 {
		background-color: #242935 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-6 {
		background-color: #222531 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-7 {
		background-color: #1e202b !important
	}
}

@media (min-width:768px) {
	.bg-color-md-8 {
		background-color: #7b85a2 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-9 {
		background-color: #a2acbf !important
	}
}

@media (min-width:768px) {
	.bg-color-md-10 {
		background-color: #41475d !important
	}
}

@media (min-width:768px) {
	.bg-color-md-11 {
		background-color: #fafbfd !important
	}
}

@media (min-width:768px) {
	.bg-color-md-12 {
		background-color: #5d6b8d !important
	}
}

@media (min-width:768px) {
	.bg-color-md-13 {
		background-color: #f4f7fb !important
	}
}

@media (min-width:768px) {
	.bg-color-md-14 {
		background-color: #3589d2 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-15 {
		background-color: #5ddcdf !important
	}
}

@media (min-width:768px) {
	.bg-color-md-16 {
		background-color: #d3e7f7 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-17 {
		background-color: #dbf7f9 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-18 {
		background-color: #646c86 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-19 {
		background-color: #fafbfc !important
	}
}

@media (min-width:768px) {
	.bg-color-md-20 {
		background-color: #8b98b1 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-21 {
		background-color: #ecf2f9 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-22 {
		background-color: #f7f7f7 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-23 {
		background-color: #e8e9ea !important
	}
}

@media (min-width:768px) {
	.bg-color-md-24 {
		background-color: rgba(28, 29, 42, .4) !important
	}
}

@media (min-width:768px) {
	.bg-color-md-25 {
		background-color: #1c1d2a !important
	}
}

@media (min-width:768px) {
	.bg-color-md-26 {
		background-color: #676f8f !important
	}
}

@media (min-width:768px) {
	.bg-color-md-27 {
		background-color: #5b617e !important
	}
}

@media (min-width:768px) {
	.bg-color-md-28 {
		background-color: #898eab !important
	}
}

@media (min-width:768px) {
	.bg-color-md-29 {
		background-color: #dadce6 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-30 {
		background-color: #9a9aa3 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-31 {
		background-color: rgba(43, 47, 62, .8) !important
	}
}

@media (min-width:768px) {
	.bg-color-md-32 {
		background-color: #94a0b3 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-33 {
		background-color: #888ea9 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-34 {
		background-color: #ecf0f7 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-35 {
		background-color: #97a3c5 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-36 {
		background-color: #c32aa3 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-37 {
		background-color: #007bb5 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-38 {
		background-color: #bd081c !important
	}
}

@media (min-width:768px) {
	.bg-color-md-39 {
		background-color: #f40083 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-40 {
		background-color: #616887 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-41 {
		background-color: #f3f6fb !important
	}
}

@media (min-width:768px) {
	.bg-color-md-42 {
		background-color: hsla(0, 0%, 100%, .74) !important
	}
}

@media (min-width:768px) {
	.bg-color-md-43 {
		background-color: #f5f6f9 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-44 {
		background-color: hsla(0, 0%, 100%, 0) !important
	}
}

@media (min-width:768px) {
	.bg-color-md-45 {
		background-color: #ced4da !important
	}
}

@media (min-width:768px) {
	.bg-color-md-46 {
		background-color: #fcfcfd !important
	}
}

@media (min-width:768px) {
	.bg-color-md-47 {
		background-color: #f9f9f9 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-48 {
		background-color: #f1f1f1 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-49 {
		background-color: #788288 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-50 {
		background-color: #e7ebf5 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-51 {
		background-color: #d54800 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-52 {
		background-color: #bcc6d8 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-53 {
		background-color: #9c9fa9 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-54 {
		background-color: #fbfafa !important
	}
}

@media (min-width:768px) {
	.bg-color-md-55 {
		background-color: #fdfdfd !important
	}
}

@media (min-width:768px) {
	.bg-color-md-56 {
		background-color: #979fb7 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-57 {
		background-color: #cbd0d8 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-58 {
		background-color: #e5e8ec !important
	}
}

@media (min-width:768px) {
	.bg-color-md-59 {
		background-color: #2c3034 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-60 {
		background-color: #2e3446 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-61 {
		background-color: #e3eaf3 !important
	}
}

@media (min-width:768px) {
	.bg-color-md-62 {
		background-color: #f5f8fb !important
	}
}

@media (min-width:768px) {
	.bg-color-md-63 {
		background-color: #9fb1ca !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-1 {
		background-color: #858ba5 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-2 {
		background-color: #8a95a9 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-3 {
		background-color: #575e7d !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-4 {
		background-color: #1c1e2b !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-5 {
		background-color: #242935 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-6 {
		background-color: #222531 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-7 {
		background-color: #1e202b !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-8 {
		background-color: #7b85a2 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-9 {
		background-color: #a2acbf !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-10 {
		background-color: #41475d !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-11 {
		background-color: #fafbfd !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-12 {
		background-color: #5d6b8d !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-13 {
		background-color: #f4f7fb !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-14 {
		background-color: #3589d2 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-15 {
		background-color: #5ddcdf !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-16 {
		background-color: #d3e7f7 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-17 {
		background-color: #dbf7f9 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-18 {
		background-color: #646c86 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-19 {
		background-color: #fafbfc !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-20 {
		background-color: #8b98b1 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-21 {
		background-color: #ecf2f9 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-22 {
		background-color: #f7f7f7 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-23 {
		background-color: #e8e9ea !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-24 {
		background-color: rgba(28, 29, 42, .4) !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-25 {
		background-color: #1c1d2a !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-26 {
		background-color: #676f8f !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-27 {
		background-color: #5b617e !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-28 {
		background-color: #898eab !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-29 {
		background-color: #dadce6 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-30 {
		background-color: #9a9aa3 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-31 {
		background-color: rgba(43, 47, 62, .8) !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-32 {
		background-color: #94a0b3 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-33 {
		background-color: #888ea9 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-34 {
		background-color: #ecf0f7 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-35 {
		background-color: #97a3c5 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-36 {
		background-color: #c32aa3 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-37 {
		background-color: #007bb5 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-38 {
		background-color: #bd081c !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-39 {
		background-color: #f40083 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-40 {
		background-color: #616887 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-41 {
		background-color: #f3f6fb !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-42 {
		background-color: hsla(0, 0%, 100%, .74) !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-43 {
		background-color: #f5f6f9 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-44 {
		background-color: hsla(0, 0%, 100%, 0) !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-45 {
		background-color: #ced4da !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-46 {
		background-color: #fcfcfd !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-47 {
		background-color: #f9f9f9 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-48 {
		background-color: #f1f1f1 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-49 {
		background-color: #788288 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-50 {
		background-color: #e7ebf5 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-51 {
		background-color: #d54800 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-52 {
		background-color: #bcc6d8 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-53 {
		background-color: #9c9fa9 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-54 {
		background-color: #fbfafa !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-55 {
		background-color: #fdfdfd !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-56 {
		background-color: #979fb7 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-57 {
		background-color: #cbd0d8 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-58 {
		background-color: #e5e8ec !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-59 {
		background-color: #2c3034 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-60 {
		background-color: #2e3446 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-61 {
		background-color: #e3eaf3 !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-62 {
		background-color: #f5f8fb !important
	}
}

@media (min-width:992px) {
	.bg-color-lg-63 {
		background-color: #9fb1ca !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-1 {
		background-color: #858ba5 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-2 {
		background-color: #8a95a9 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-3 {
		background-color: #575e7d !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-4 {
		background-color: #1c1e2b !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-5 {
		background-color: #242935 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-6 {
		background-color: #222531 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-7 {
		background-color: #1e202b !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-8 {
		background-color: #7b85a2 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-9 {
		background-color: #a2acbf !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-10 {
		background-color: #41475d !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-11 {
		background-color: #fafbfd !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-12 {
		background-color: #5d6b8d !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-13 {
		background-color: #f4f7fb !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-14 {
		background-color: #3589d2 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-15 {
		background-color: #5ddcdf !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-16 {
		background-color: #d3e7f7 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-17 {
		background-color: #dbf7f9 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-18 {
		background-color: #646c86 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-19 {
		background-color: #fafbfc !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-20 {
		background-color: #8b98b1 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-21 {
		background-color: #ecf2f9 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-22 {
		background-color: #f7f7f7 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-23 {
		background-color: #e8e9ea !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-24 {
		background-color: rgba(28, 29, 42, .4) !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-25 {
		background-color: #1c1d2a !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-26 {
		background-color: #676f8f !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-27 {
		background-color: #5b617e !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-28 {
		background-color: #898eab !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-29 {
		background-color: #dadce6 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-30 {
		background-color: #9a9aa3 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-31 {
		background-color: rgba(43, 47, 62, .8) !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-32 {
		background-color: #94a0b3 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-33 {
		background-color: #888ea9 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-34 {
		background-color: #ecf0f7 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-35 {
		background-color: #97a3c5 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-36 {
		background-color: #c32aa3 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-37 {
		background-color: #007bb5 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-38 {
		background-color: #bd081c !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-39 {
		background-color: #f40083 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-40 {
		background-color: #616887 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-41 {
		background-color: #f3f6fb !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-42 {
		background-color: hsla(0, 0%, 100%, .74) !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-43 {
		background-color: #f5f6f9 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-44 {
		background-color: hsla(0, 0%, 100%, 0) !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-45 {
		background-color: #ced4da !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-46 {
		background-color: #fcfcfd !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-47 {
		background-color: #f9f9f9 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-48 {
		background-color: #f1f1f1 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-49 {
		background-color: #788288 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-50 {
		background-color: #e7ebf5 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-51 {
		background-color: #d54800 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-52 {
		background-color: #bcc6d8 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-53 {
		background-color: #9c9fa9 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-54 {
		background-color: #fbfafa !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-55 {
		background-color: #fdfdfd !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-56 {
		background-color: #979fb7 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-57 {
		background-color: #cbd0d8 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-58 {
		background-color: #e5e8ec !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-59 {
		background-color: #2c3034 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-60 {
		background-color: #2e3446 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-61 {
		background-color: #e3eaf3 !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-62 {
		background-color: #f5f8fb !important
	}
}

@media (min-width:1200px) {
	.bg-color-xl-63 {
		background-color: #9fb1ca !important
	}
}

.mm-0 {
	margin: 0 !important
}

.mmx-0 {
	margin-left: 0 !important;
	margin-right: 0 !important
}

.mmy-0 {
	margin-bottom: 0 !important
}

.mmt-0,
.mmy-0 {
	margin-top: 0 !important
}

.mmr-0 {
	margin-right: 0 !important
}

.mmb-0 {
	margin-bottom: 0 !important
}

.mml-0 {
	margin-left: 0 !important
}

.mm-1 {
	margin: -.0625rem !important
}

.mmx-1 {
	margin-left: -.0625rem !important;
	margin-right: -.0625rem !important
}

.mmy-1 {
	margin-bottom: -.0625rem !important
}

.mmt-1,
.mmy-1 {
	margin-top: -.0625rem !important
}

.mmr-1 {
	margin-right: -.0625rem !important
}

.mmb-1 {
	margin-bottom: -.0625rem !important
}

.mml-1 {
	margin-left: -.0625rem !important
}

.mm-2 {
	margin: -.125rem !important
}

.mmx-2 {
	margin-left: -.125rem !important;
	margin-right: -.125rem !important
}

.mmy-2 {
	margin-bottom: -.125rem !important
}

.mmt-2,
.mmy-2 {
	margin-top: -.125rem !important
}

.mmr-2 {
	margin-right: -.125rem !important
}

.mmb-2 {
	margin-bottom: -.125rem !important
}

.mml-2 {
	margin-left: -.125rem !important
}

.mm-3 {
	margin: -.1875rem !important
}

.mmx-3 {
	margin-left: -.1875rem !important;
	margin-right: -.1875rem !important
}

.mmy-3 {
	margin-bottom: -.1875rem !important
}

.mmt-3,
.mmy-3 {
	margin-top: -.1875rem !important
}

.mmr-3 {
	margin-right: -.1875rem !important
}

.mmb-3 {
	margin-bottom: -.1875rem !important
}

.mml-3 {
	margin-left: -.1875rem !important
}

.mm-4 {
	margin: -.25rem !important
}

.mmx-4 {
	margin-left: -.25rem !important;
	margin-right: -.25rem !important
}

.mmy-4 {
	margin-bottom: -.25rem !important
}

.mmt-4,
.mmy-4 {
	margin-top: -.25rem !important
}

.mmr-4 {
	margin-right: -.25rem !important
}

.mmb-4 {
	margin-bottom: -.25rem !important
}

.mml-4 {
	margin-left: -.25rem !important
}

.mm-5 {
	margin: -.3125rem !important
}

.mmx-5 {
	margin-left: -.3125rem !important;
	margin-right: -.3125rem !important
}

.mmy-5 {
	margin-bottom: -.3125rem !important
}

.mmt-5,
.mmy-5 {
	margin-top: -.3125rem !important
}

.mmr-5 {
	margin-right: -.3125rem !important
}

.mmb-5 {
	margin-bottom: -.3125rem !important
}

.mml-5 {
	margin-left: -.3125rem !important
}

.mm-6 {
	margin: -.375rem !important
}

.mmx-6 {
	margin-left: -.375rem !important;
	margin-right: -.375rem !important
}

.mmy-6 {
	margin-bottom: -.375rem !important
}

.mmt-6,
.mmy-6 {
	margin-top: -.375rem !important
}

.mmr-6 {
	margin-right: -.375rem !important
}

.mmb-6 {
	margin-bottom: -.375rem !important
}

.mml-6 {
	margin-left: -.375rem !important
}

.mm-7 {
	margin: -.4375rem !important
}

.mmx-7 {
	margin-left: -.4375rem !important;
	margin-right: -.4375rem !important
}

.mmy-7 {
	margin-bottom: -.4375rem !important
}

.mmt-7,
.mmy-7 {
	margin-top: -.4375rem !important
}

.mmr-7 {
	margin-right: -.4375rem !important
}

.mmb-7 {
	margin-bottom: -.4375rem !important
}

.mml-7 {
	margin-left: -.4375rem !important
}

.mm-8 {
	margin: -.5rem !important
}

.mmx-8 {
	margin-left: -.5rem !important;
	margin-right: -.5rem !important
}

.mmy-8 {
	margin-bottom: -.5rem !important
}

.mmt-8,
.mmy-8 {
	margin-top: -.5rem !important
}

.mmr-8 {
	margin-right: -.5rem !important
}

.mmb-8 {
	margin-bottom: -.5rem !important
}

.mml-8 {
	margin-left: -.5rem !important
}

.mm-9 {
	margin: -.5625rem !important
}

.mmx-9 {
	margin-left: -.5625rem !important;
	margin-right: -.5625rem !important
}

.mmy-9 {
	margin-bottom: -.5625rem !important
}

.mmt-9,
.mmy-9 {
	margin-top: -.5625rem !important
}

.mmr-9 {
	margin-right: -.5625rem !important
}

.mmb-9 {
	margin-bottom: -.5625rem !important
}

.mml-9 {
	margin-left: -.5625rem !important
}

.mm-10 {
	margin: -.625rem !important
}

.mmx-10 {
	margin-left: -.625rem !important;
	margin-right: -.625rem !important
}

.mmy-10 {
	margin-bottom: -.625rem !important
}

.mmt-10,
.mmy-10 {
	margin-top: -.625rem !important
}

.mmr-10 {
	margin-right: -.625rem !important
}

.mmb-10 {
	margin-bottom: -.625rem !important
}

.mml-10 {
	margin-left: -.625rem !important
}

.mm-11 {
	margin: -.6875rem !important
}

.mmx-11 {
	margin-left: -.6875rem !important;
	margin-right: -.6875rem !important
}

.mmy-11 {
	margin-bottom: -.6875rem !important
}

.mmt-11,
.mmy-11 {
	margin-top: -.6875rem !important
}

.mmr-11 {
	margin-right: -.6875rem !important
}

.mmb-11 {
	margin-bottom: -.6875rem !important
}

.mml-11 {
	margin-left: -.6875rem !important
}

.mm-12 {
	margin: -.75rem !important
}

.mmx-12 {
	margin-left: -.75rem !important;
	margin-right: -.75rem !important
}

.mmy-12 {
	margin-bottom: -.75rem !important
}

.mmt-12,
.mmy-12 {
	margin-top: -.75rem !important
}

.mmr-12 {
	margin-right: -.75rem !important
}

.mmb-12 {
	margin-bottom: -.75rem !important
}

.mml-12 {
	margin-left: -.75rem !important
}

.mm-13 {
	margin: -.8125rem !important
}

.mmx-13 {
	margin-left: -.8125rem !important;
	margin-right: -.8125rem !important
}

.mmy-13 {
	margin-bottom: -.8125rem !important
}

.mmt-13,
.mmy-13 {
	margin-top: -.8125rem !important
}

.mmr-13 {
	margin-right: -.8125rem !important
}

.mmb-13 {
	margin-bottom: -.8125rem !important
}

.mml-13 {
	margin-left: -.8125rem !important
}

.mm-14 {
	margin: -.875rem !important
}

.mmx-14 {
	margin-left: -.875rem !important;
	margin-right: -.875rem !important
}

.mmy-14 {
	margin-bottom: -.875rem !important
}

.mmt-14,
.mmy-14 {
	margin-top: -.875rem !important
}

.mmr-14 {
	margin-right: -.875rem !important
}

.mmb-14 {
	margin-bottom: -.875rem !important
}

.mml-14 {
	margin-left: -.875rem !important
}

.mm-15 {
	margin: -.9375rem !important
}

.mmx-15 {
	margin-left: -.9375rem !important;
	margin-right: -.9375rem !important
}

.mmy-15 {
	margin-bottom: -.9375rem !important
}

.mmt-15,
.mmy-15 {
	margin-top: -.9375rem !important
}

.mmr-15 {
	margin-right: -.9375rem !important
}

.mmb-15 {
	margin-bottom: -.9375rem !important
}

.mml-15 {
	margin-left: -.9375rem !important
}

.mm-16 {
	margin: -1rem !important
}

.mmx-16 {
	margin-left: -1rem !important;
	margin-right: -1rem !important
}

.mmy-16 {
	margin-bottom: -1rem !important
}

.mmt-16,
.mmy-16 {
	margin-top: -1rem !important
}

.mmr-16 {
	margin-right: -1rem !important
}

.mmb-16 {
	margin-bottom: -1rem !important
}

.mml-16 {
	margin-left: -1rem !important
}

.mm-17 {
	margin: -1.0625rem !important
}

.mmx-17 {
	margin-left: -1.0625rem !important;
	margin-right: -1.0625rem !important
}

.mmy-17 {
	margin-bottom: -1.0625rem !important
}

.mmt-17,
.mmy-17 {
	margin-top: -1.0625rem !important
}

.mmr-17 {
	margin-right: -1.0625rem !important
}

.mmb-17 {
	margin-bottom: -1.0625rem !important
}

.mml-17 {
	margin-left: -1.0625rem !important
}

.mm-18 {
	margin: -1.125rem !important
}

.mmx-18 {
	margin-left: -1.125rem !important;
	margin-right: -1.125rem !important
}

.mmy-18 {
	margin-bottom: -1.125rem !important
}

.mmt-18,
.mmy-18 {
	margin-top: -1.125rem !important
}

.mmr-18 {
	margin-right: -1.125rem !important
}

.mmb-18 {
	margin-bottom: -1.125rem !important
}

.mml-18 {
	margin-left: -1.125rem !important
}

.mm-19 {
	margin: -1.1875rem !important
}

.mmx-19 {
	margin-left: -1.1875rem !important;
	margin-right: -1.1875rem !important
}

.mmy-19 {
	margin-bottom: -1.1875rem !important
}

.mmt-19,
.mmy-19 {
	margin-top: -1.1875rem !important
}

.mmr-19 {
	margin-right: -1.1875rem !important
}

.mmb-19 {
	margin-bottom: -1.1875rem !important
}

.mml-19 {
	margin-left: -1.1875rem !important
}

.mm-20 {
	margin: -1.25rem !important
}

.mmx-20 {
	margin-left: -1.25rem !important;
	margin-right: -1.25rem !important
}

.mmy-20 {
	margin-bottom: -1.25rem !important
}

.mmt-20,
.mmy-20 {
	margin-top: -1.25rem !important
}

.mmr-20 {
	margin-right: -1.25rem !important
}

.mmb-20 {
	margin-bottom: -1.25rem !important
}

.mml-20 {
	margin-left: -1.25rem !important
}

.mm-21 {
	margin: -1.3125rem !important
}

.mmx-21 {
	margin-left: -1.3125rem !important;
	margin-right: -1.3125rem !important
}

.mmy-21 {
	margin-bottom: -1.3125rem !important
}

.mmt-21,
.mmy-21 {
	margin-top: -1.3125rem !important
}

.mmr-21 {
	margin-right: -1.3125rem !important
}

.mmb-21 {
	margin-bottom: -1.3125rem !important
}

.mml-21 {
	margin-left: -1.3125rem !important
}

.mm-22 {
	margin: -1.375rem !important
}

.mmx-22 {
	margin-left: -1.375rem !important;
	margin-right: -1.375rem !important
}

.mmy-22 {
	margin-bottom: -1.375rem !important
}

.mmt-22,
.mmy-22 {
	margin-top: -1.375rem !important
}

.mmr-22 {
	margin-right: -1.375rem !important
}

.mmb-22 {
	margin-bottom: -1.375rem !important
}

.mml-22 {
	margin-left: -1.375rem !important
}

.mm-23 {
	margin: -1.4375rem !important
}

.mmx-23 {
	margin-left: -1.4375rem !important;
	margin-right: -1.4375rem !important
}

.mmy-23 {
	margin-bottom: -1.4375rem !important
}

.mmt-23,
.mmy-23 {
	margin-top: -1.4375rem !important
}

.mmr-23 {
	margin-right: -1.4375rem !important
}

.mmb-23 {
	margin-bottom: -1.4375rem !important
}

.mml-23 {
	margin-left: -1.4375rem !important
}

.mm-24 {
	margin: -1.5rem !important
}

.mmx-24 {
	margin-left: -1.5rem !important;
	margin-right: -1.5rem !important
}

.mmy-24 {
	margin-bottom: -1.5rem !important
}

.mmt-24,
.mmy-24 {
	margin-top: -1.5rem !important
}

.mmr-24 {
	margin-right: -1.5rem !important
}

.mmb-24 {
	margin-bottom: -1.5rem !important
}

.mml-24 {
	margin-left: -1.5rem !important
}

.mm-25 {
	margin: -1.5625rem !important
}

.mmx-25 {
	margin-left: -1.5625rem !important;
	margin-right: -1.5625rem !important
}

.mmy-25 {
	margin-bottom: -1.5625rem !important
}

.mmt-25,
.mmy-25 {
	margin-top: -1.5625rem !important
}

.mmr-25 {
	margin-right: -1.5625rem !important
}

.mmb-25 {
	margin-bottom: -1.5625rem !important
}

.mml-25 {
	margin-left: -1.5625rem !important
}

.mm-26 {
	margin: -1.625rem !important
}

.mmx-26 {
	margin-left: -1.625rem !important;
	margin-right: -1.625rem !important
}

.mmy-26 {
	margin-bottom: -1.625rem !important
}

.mmt-26,
.mmy-26 {
	margin-top: -1.625rem !important
}

.mmr-26 {
	margin-right: -1.625rem !important
}

.mmb-26 {
	margin-bottom: -1.625rem !important
}

.mml-26 {
	margin-left: -1.625rem !important
}

.mm-27 {
	margin: -1.6875rem !important
}

.mmx-27 {
	margin-left: -1.6875rem !important;
	margin-right: -1.6875rem !important
}

.mmy-27 {
	margin-bottom: -1.6875rem !important
}

.mmt-27,
.mmy-27 {
	margin-top: -1.6875rem !important
}

.mmr-27 {
	margin-right: -1.6875rem !important
}

.mmb-27 {
	margin-bottom: -1.6875rem !important
}

.mml-27 {
	margin-left: -1.6875rem !important
}

.mm-28 {
	margin: -1.75rem !important
}

.mmx-28 {
	margin-left: -1.75rem !important;
	margin-right: -1.75rem !important
}

.mmy-28 {
	margin-bottom: -1.75rem !important
}

.mmt-28,
.mmy-28 {
	margin-top: -1.75rem !important
}

.mmr-28 {
	margin-right: -1.75rem !important
}

.mmb-28 {
	margin-bottom: -1.75rem !important
}

.mml-28 {
	margin-left: -1.75rem !important
}

.mm-29 {
	margin: -1.8125rem !important
}

.mmx-29 {
	margin-left: -1.8125rem !important;
	margin-right: -1.8125rem !important
}

.mmy-29 {
	margin-bottom: -1.8125rem !important
}

.mmt-29,
.mmy-29 {
	margin-top: -1.8125rem !important
}

.mmr-29 {
	margin-right: -1.8125rem !important
}

.mmb-29 {
	margin-bottom: -1.8125rem !important
}

.mml-29 {
	margin-left: -1.8125rem !important
}

.mm-30 {
	margin: -1.875rem !important
}

.mmx-30 {
	margin-left: -1.875rem !important;
	margin-right: -1.875rem !important
}

.mmy-30 {
	margin-bottom: -1.875rem !important
}

.mmt-30,
.mmy-30 {
	margin-top: -1.875rem !important
}

.mmr-30 {
	margin-right: -1.875rem !important
}

.mmb-30 {
	margin-bottom: -1.875rem !important
}

.mml-30 {
	margin-left: -1.875rem !important
}

.mm-31 {
	margin: -1.9375rem !important
}

.mmx-31 {
	margin-left: -1.9375rem !important;
	margin-right: -1.9375rem !important
}

.mmy-31 {
	margin-bottom: -1.9375rem !important
}

.mmt-31,
.mmy-31 {
	margin-top: -1.9375rem !important
}

.mmr-31 {
	margin-right: -1.9375rem !important
}

.mmb-31 {
	margin-bottom: -1.9375rem !important
}

.mml-31 {
	margin-left: -1.9375rem !important
}

.mm-32 {
	margin: -2rem !important
}

.mmx-32 {
	margin-left: -2rem !important;
	margin-right: -2rem !important
}

.mmy-32 {
	margin-bottom: -2rem !important
}

.mmt-32,
.mmy-32 {
	margin-top: -2rem !important
}

.mmr-32 {
	margin-right: -2rem !important
}

.mmb-32 {
	margin-bottom: -2rem !important
}

.mml-32 {
	margin-left: -2rem !important
}

.mm-33 {
	margin: -2.0625rem !important
}

.mmx-33 {
	margin-left: -2.0625rem !important;
	margin-right: -2.0625rem !important
}

.mmy-33 {
	margin-bottom: -2.0625rem !important
}

.mmt-33,
.mmy-33 {
	margin-top: -2.0625rem !important
}

.mmr-33 {
	margin-right: -2.0625rem !important
}

.mmb-33 {
	margin-bottom: -2.0625rem !important
}

.mml-33 {
	margin-left: -2.0625rem !important
}

.mm-34 {
	margin: -2.125rem !important
}

.mmx-34 {
	margin-left: -2.125rem !important;
	margin-right: -2.125rem !important
}

.mmy-34 {
	margin-bottom: -2.125rem !important
}

.mmt-34,
.mmy-34 {
	margin-top: -2.125rem !important
}

.mmr-34 {
	margin-right: -2.125rem !important
}

.mmb-34 {
	margin-bottom: -2.125rem !important
}

.mml-34 {
	margin-left: -2.125rem !important
}

.mm-35 {
	margin: -2.1875rem !important
}

.mmx-35 {
	margin-left: -2.1875rem !important;
	margin-right: -2.1875rem !important
}

.mmy-35 {
	margin-bottom: -2.1875rem !important
}

.mmt-35,
.mmy-35 {
	margin-top: -2.1875rem !important
}

.mmr-35 {
	margin-right: -2.1875rem !important
}

.mmb-35 {
	margin-bottom: -2.1875rem !important
}

.mml-35 {
	margin-left: -2.1875rem !important
}

.mm-36 {
	margin: -2.25rem !important
}

.mmx-36 {
	margin-left: -2.25rem !important;
	margin-right: -2.25rem !important
}

.mmy-36 {
	margin-bottom: -2.25rem !important
}

.mmt-36,
.mmy-36 {
	margin-top: -2.25rem !important
}

.mmr-36 {
	margin-right: -2.25rem !important
}

.mmb-36 {
	margin-bottom: -2.25rem !important
}

.mml-36 {
	margin-left: -2.25rem !important
}

.mm-37 {
	margin: -2.3125rem !important
}

.mmx-37 {
	margin-left: -2.3125rem !important;
	margin-right: -2.3125rem !important
}

.mmy-37 {
	margin-bottom: -2.3125rem !important
}

.mmt-37,
.mmy-37 {
	margin-top: -2.3125rem !important
}

.mmr-37 {
	margin-right: -2.3125rem !important
}

.mmb-37 {
	margin-bottom: -2.3125rem !important
}

.mml-37 {
	margin-left: -2.3125rem !important
}

.mm-38 {
	margin: -2.375rem !important
}

.mmx-38 {
	margin-left: -2.375rem !important;
	margin-right: -2.375rem !important
}

.mmy-38 {
	margin-bottom: -2.375rem !important
}

.mmt-38,
.mmy-38 {
	margin-top: -2.375rem !important
}

.mmr-38 {
	margin-right: -2.375rem !important
}

.mmb-38 {
	margin-bottom: -2.375rem !important
}

.mml-38 {
	margin-left: -2.375rem !important
}

.mm-39 {
	margin: -2.4375rem !important
}

.mmx-39 {
	margin-left: -2.4375rem !important;
	margin-right: -2.4375rem !important
}

.mmy-39 {
	margin-bottom: -2.4375rem !important
}

.mmt-39,
.mmy-39 {
	margin-top: -2.4375rem !important
}

.mmr-39 {
	margin-right: -2.4375rem !important
}

.mmb-39 {
	margin-bottom: -2.4375rem !important
}

.mml-39 {
	margin-left: -2.4375rem !important
}

.mm-40 {
	margin: -2.5rem !important
}

.mmx-40 {
	margin-left: -2.5rem !important;
	margin-right: -2.5rem !important
}

.mmy-40 {
	margin-bottom: -2.5rem !important
}

.mmt-40,
.mmy-40 {
	margin-top: -2.5rem !important
}

.mmr-40 {
	margin-right: -2.5rem !important
}

.mmb-40 {
	margin-bottom: -2.5rem !important
}

.mml-40 {
	margin-left: -2.5rem !important
}

.mm-41 {
	margin: -2.5625rem !important
}

.mmx-41 {
	margin-left: -2.5625rem !important;
	margin-right: -2.5625rem !important
}

.mmy-41 {
	margin-bottom: -2.5625rem !important
}

.mmt-41,
.mmy-41 {
	margin-top: -2.5625rem !important
}

.mmr-41 {
	margin-right: -2.5625rem !important
}

.mmb-41 {
	margin-bottom: -2.5625rem !important
}

.mml-41 {
	margin-left: -2.5625rem !important
}

.mm-42 {
	margin: -2.625rem !important
}

.mmx-42 {
	margin-left: -2.625rem !important;
	margin-right: -2.625rem !important
}

.mmy-42 {
	margin-bottom: -2.625rem !important
}

.mmt-42,
.mmy-42 {
	margin-top: -2.625rem !important
}

.mmr-42 {
	margin-right: -2.625rem !important
}

.mmb-42 {
	margin-bottom: -2.625rem !important
}

.mml-42 {
	margin-left: -2.625rem !important
}

.mm-43 {
	margin: -2.6875rem !important
}

.mmx-43 {
	margin-left: -2.6875rem !important;
	margin-right: -2.6875rem !important
}

.mmy-43 {
	margin-bottom: -2.6875rem !important
}

.mmt-43,
.mmy-43 {
	margin-top: -2.6875rem !important
}

.mmr-43 {
	margin-right: -2.6875rem !important
}

.mmb-43 {
	margin-bottom: -2.6875rem !important
}

.mml-43 {
	margin-left: -2.6875rem !important
}

.mm-44 {
	margin: -2.75rem !important
}

.mmx-44 {
	margin-left: -2.75rem !important;
	margin-right: -2.75rem !important
}

.mmy-44 {
	margin-bottom: -2.75rem !important
}

.mmt-44,
.mmy-44 {
	margin-top: -2.75rem !important
}

.mmr-44 {
	margin-right: -2.75rem !important
}

.mmb-44 {
	margin-bottom: -2.75rem !important
}

.mml-44 {
	margin-left: -2.75rem !important
}

.mm-45 {
	margin: -2.8125rem !important
}

.mmx-45 {
	margin-left: -2.8125rem !important;
	margin-right: -2.8125rem !important
}

.mmy-45 {
	margin-bottom: -2.8125rem !important
}

.mmt-45,
.mmy-45 {
	margin-top: -2.8125rem !important
}

.mmr-45 {
	margin-right: -2.8125rem !important
}

.mmb-45 {
	margin-bottom: -2.8125rem !important
}

.mml-45 {
	margin-left: -2.8125rem !important
}

.mm-46 {
	margin: -2.875rem !important
}

.mmx-46 {
	margin-left: -2.875rem !important;
	margin-right: -2.875rem !important
}

.mmy-46 {
	margin-bottom: -2.875rem !important
}

.mmt-46,
.mmy-46 {
	margin-top: -2.875rem !important
}

.mmr-46 {
	margin-right: -2.875rem !important
}

.mmb-46 {
	margin-bottom: -2.875rem !important
}

.mml-46 {
	margin-left: -2.875rem !important
}

.mm-47 {
	margin: -2.9375rem !important
}

.mmx-47 {
	margin-left: -2.9375rem !important;
	margin-right: -2.9375rem !important
}

.mmy-47 {
	margin-bottom: -2.9375rem !important
}

.mmt-47,
.mmy-47 {
	margin-top: -2.9375rem !important
}

.mmr-47 {
	margin-right: -2.9375rem !important
}

.mmb-47 {
	margin-bottom: -2.9375rem !important
}

.mml-47 {
	margin-left: -2.9375rem !important
}

.mm-48 {
	margin: -3rem !important
}

.mmx-48 {
	margin-left: -3rem !important;
	margin-right: -3rem !important
}

.mmy-48 {
	margin-bottom: -3rem !important
}

.mmt-48,
.mmy-48 {
	margin-top: -3rem !important
}

.mmr-48 {
	margin-right: -3rem !important
}

.mmb-48 {
	margin-bottom: -3rem !important
}

.mml-48 {
	margin-left: -3rem !important
}

.mm-49 {
	margin: -3.0625rem !important
}

.mmx-49 {
	margin-left: -3.0625rem !important;
	margin-right: -3.0625rem !important
}

.mmy-49 {
	margin-bottom: -3.0625rem !important
}

.mmt-49,
.mmy-49 {
	margin-top: -3.0625rem !important
}

.mmr-49 {
	margin-right: -3.0625rem !important
}

.mmb-49 {
	margin-bottom: -3.0625rem !important
}

.mml-49 {
	margin-left: -3.0625rem !important
}

.mm-50 {
	margin: -3.125rem !important
}

.mmx-50 {
	margin-left: -3.125rem !important;
	margin-right: -3.125rem !important
}

.mmy-50 {
	margin-bottom: -3.125rem !important
}

.mmt-50,
.mmy-50 {
	margin-top: -3.125rem !important
}

.mmr-50 {
	margin-right: -3.125rem !important
}

.mmb-50 {
	margin-bottom: -3.125rem !important
}

.mml-50 {
	margin-left: -3.125rem !important
}

.mm-51 {
	margin: -3.1875rem !important
}

.mmx-51 {
	margin-left: -3.1875rem !important;
	margin-right: -3.1875rem !important
}

.mmy-51 {
	margin-bottom: -3.1875rem !important
}

.mmt-51,
.mmy-51 {
	margin-top: -3.1875rem !important
}

.mmr-51 {
	margin-right: -3.1875rem !important
}

.mmb-51 {
	margin-bottom: -3.1875rem !important
}

.mml-51 {
	margin-left: -3.1875rem !important
}

.mm-52 {
	margin: -3.25rem !important
}

.mmx-52 {
	margin-left: -3.25rem !important;
	margin-right: -3.25rem !important
}

.mmy-52 {
	margin-bottom: -3.25rem !important
}

.mmt-52,
.mmy-52 {
	margin-top: -3.25rem !important
}

.mmr-52 {
	margin-right: -3.25rem !important
}

.mmb-52 {
	margin-bottom: -3.25rem !important
}

.mml-52 {
	margin-left: -3.25rem !important
}

.mm-53 {
	margin: -3.3125rem !important
}

.mmx-53 {
	margin-left: -3.3125rem !important;
	margin-right: -3.3125rem !important
}

.mmy-53 {
	margin-bottom: -3.3125rem !important
}

.mmt-53,
.mmy-53 {
	margin-top: -3.3125rem !important
}

.mmr-53 {
	margin-right: -3.3125rem !important
}

.mmb-53 {
	margin-bottom: -3.3125rem !important
}

.mml-53 {
	margin-left: -3.3125rem !important
}

.mm-54 {
	margin: -3.375rem !important
}

.mmx-54 {
	margin-left: -3.375rem !important;
	margin-right: -3.375rem !important
}

.mmy-54 {
	margin-bottom: -3.375rem !important
}

.mmt-54,
.mmy-54 {
	margin-top: -3.375rem !important
}

.mmr-54 {
	margin-right: -3.375rem !important
}

.mmb-54 {
	margin-bottom: -3.375rem !important
}

.mml-54 {
	margin-left: -3.375rem !important
}

.mm-55 {
	margin: -3.4375rem !important
}

.mmx-55 {
	margin-left: -3.4375rem !important;
	margin-right: -3.4375rem !important
}

.mmy-55 {
	margin-bottom: -3.4375rem !important
}

.mmt-55,
.mmy-55 {
	margin-top: -3.4375rem !important
}

.mmr-55 {
	margin-right: -3.4375rem !important
}

.mmb-55 {
	margin-bottom: -3.4375rem !important
}

.mml-55 {
	margin-left: -3.4375rem !important
}

.mm-56 {
	margin: -3.5rem !important
}

.mmx-56 {
	margin-left: -3.5rem !important;
	margin-right: -3.5rem !important
}

.mmy-56 {
	margin-bottom: -3.5rem !important
}

.mmt-56,
.mmy-56 {
	margin-top: -3.5rem !important
}

.mmr-56 {
	margin-right: -3.5rem !important
}

.mmb-56 {
	margin-bottom: -3.5rem !important
}

.mml-56 {
	margin-left: -3.5rem !important
}

.mm-57 {
	margin: -3.5625rem !important
}

.mmx-57 {
	margin-left: -3.5625rem !important;
	margin-right: -3.5625rem !important
}

.mmy-57 {
	margin-bottom: -3.5625rem !important
}

.mmt-57,
.mmy-57 {
	margin-top: -3.5625rem !important
}

.mmr-57 {
	margin-right: -3.5625rem !important
}

.mmb-57 {
	margin-bottom: -3.5625rem !important
}

.mml-57 {
	margin-left: -3.5625rem !important
}

.mm-58 {
	margin: -3.625rem !important
}

.mmx-58 {
	margin-left: -3.625rem !important;
	margin-right: -3.625rem !important
}

.mmy-58 {
	margin-bottom: -3.625rem !important
}

.mmt-58,
.mmy-58 {
	margin-top: -3.625rem !important
}

.mmr-58 {
	margin-right: -3.625rem !important
}

.mmb-58 {
	margin-bottom: -3.625rem !important
}

.mml-58 {
	margin-left: -3.625rem !important
}

.mm-59 {
	margin: -3.6875rem !important
}

.mmx-59 {
	margin-left: -3.6875rem !important;
	margin-right: -3.6875rem !important
}

.mmy-59 {
	margin-bottom: -3.6875rem !important
}

.mmt-59,
.mmy-59 {
	margin-top: -3.6875rem !important
}

.mmr-59 {
	margin-right: -3.6875rem !important
}

.mmb-59 {
	margin-bottom: -3.6875rem !important
}

.mml-59 {
	margin-left: -3.6875rem !important
}

.mm-60 {
	margin: -3.75rem !important
}

.mmx-60 {
	margin-left: -3.75rem !important;
	margin-right: -3.75rem !important
}

.mmy-60 {
	margin-bottom: -3.75rem !important
}

.mmt-60,
.mmy-60 {
	margin-top: -3.75rem !important
}

.mmr-60 {
	margin-right: -3.75rem !important
}

.mmb-60 {
	margin-bottom: -3.75rem !important
}

.mml-60 {
	margin-left: -3.75rem !important
}

.mm-61 {
	margin: -3.8125rem !important
}

.mmx-61 {
	margin-left: -3.8125rem !important;
	margin-right: -3.8125rem !important
}

.mmy-61 {
	margin-bottom: -3.8125rem !important
}

.mmt-61,
.mmy-61 {
	margin-top: -3.8125rem !important
}

.mmr-61 {
	margin-right: -3.8125rem !important
}

.mmb-61 {
	margin-bottom: -3.8125rem !important
}

.mml-61 {
	margin-left: -3.8125rem !important
}

.mm-62 {
	margin: -3.875rem !important
}

.mmx-62 {
	margin-left: -3.875rem !important;
	margin-right: -3.875rem !important
}

.mmy-62 {
	margin-bottom: -3.875rem !important
}

.mmt-62,
.mmy-62 {
	margin-top: -3.875rem !important
}

.mmr-62 {
	margin-right: -3.875rem !important
}

.mmb-62 {
	margin-bottom: -3.875rem !important
}

.mml-62 {
	margin-left: -3.875rem !important
}

.mm-63 {
	margin: -3.9375rem !important
}

.mmx-63 {
	margin-left: -3.9375rem !important;
	margin-right: -3.9375rem !important
}

.mmy-63 {
	margin-bottom: -3.9375rem !important
}

.mmt-63,
.mmy-63 {
	margin-top: -3.9375rem !important
}

.mmr-63 {
	margin-right: -3.9375rem !important
}

.mmb-63 {
	margin-bottom: -3.9375rem !important
}

.mml-63 {
	margin-left: -3.9375rem !important
}

.mm-64 {
	margin: -4rem !important
}

.mmx-64 {
	margin-left: -4rem !important;
	margin-right: -4rem !important
}

.mmy-64 {
	margin-bottom: -4rem !important
}

.mmt-64,
.mmy-64 {
	margin-top: -4rem !important
}

.mmr-64 {
	margin-right: -4rem !important
}

.mmb-64 {
	margin-bottom: -4rem !important
}

.mml-64 {
	margin-left: -4rem !important
}

.mm-65 {
	margin: -4.0625rem !important
}

.mmx-65 {
	margin-left: -4.0625rem !important;
	margin-right: -4.0625rem !important
}

.mmy-65 {
	margin-bottom: -4.0625rem !important
}

.mmt-65,
.mmy-65 {
	margin-top: -4.0625rem !important
}

.mmr-65 {
	margin-right: -4.0625rem !important
}

.mmb-65 {
	margin-bottom: -4.0625rem !important
}

.mml-65 {
	margin-left: -4.0625rem !important
}

.mm-66 {
	margin: -4.125rem !important
}

.mmx-66 {
	margin-left: -4.125rem !important;
	margin-right: -4.125rem !important
}

.mmy-66 {
	margin-bottom: -4.125rem !important
}

.mmt-66,
.mmy-66 {
	margin-top: -4.125rem !important
}

.mmr-66 {
	margin-right: -4.125rem !important
}

.mmb-66 {
	margin-bottom: -4.125rem !important
}

.mml-66 {
	margin-left: -4.125rem !important
}

.mm-67 {
	margin: -4.1875rem !important
}

.mmx-67 {
	margin-left: -4.1875rem !important;
	margin-right: -4.1875rem !important
}

.mmy-67 {
	margin-bottom: -4.1875rem !important
}

.mmt-67,
.mmy-67 {
	margin-top: -4.1875rem !important
}

.mmr-67 {
	margin-right: -4.1875rem !important
}

.mmb-67 {
	margin-bottom: -4.1875rem !important
}

.mml-67 {
	margin-left: -4.1875rem !important
}

.mm-68 {
	margin: -4.25rem !important
}

.mmx-68 {
	margin-left: -4.25rem !important;
	margin-right: -4.25rem !important
}

.mmy-68 {
	margin-bottom: -4.25rem !important
}

.mmt-68,
.mmy-68 {
	margin-top: -4.25rem !important
}

.mmr-68 {
	margin-right: -4.25rem !important
}

.mmb-68 {
	margin-bottom: -4.25rem !important
}

.mml-68 {
	margin-left: -4.25rem !important
}

.mm-69 {
	margin: -4.3125rem !important
}

.mmx-69 {
	margin-left: -4.3125rem !important;
	margin-right: -4.3125rem !important
}

.mmy-69 {
	margin-bottom: -4.3125rem !important
}

.mmt-69,
.mmy-69 {
	margin-top: -4.3125rem !important
}

.mmr-69 {
	margin-right: -4.3125rem !important
}

.mmb-69 {
	margin-bottom: -4.3125rem !important
}

.mml-69 {
	margin-left: -4.3125rem !important
}

.mm-70 {
	margin: -4.375rem !important
}

.mmx-70 {
	margin-left: -4.375rem !important;
	margin-right: -4.375rem !important
}

.mmy-70 {
	margin-bottom: -4.375rem !important
}

.mmt-70,
.mmy-70 {
	margin-top: -4.375rem !important
}

.mmr-70 {
	margin-right: -4.375rem !important
}

.mmb-70 {
	margin-bottom: -4.375rem !important
}

.mml-70 {
	margin-left: -4.375rem !important
}

.mm-71 {
	margin: -4.4375rem !important
}

.mmx-71 {
	margin-left: -4.4375rem !important;
	margin-right: -4.4375rem !important
}

.mmy-71 {
	margin-bottom: -4.4375rem !important
}

.mmt-71,
.mmy-71 {
	margin-top: -4.4375rem !important
}

.mmr-71 {
	margin-right: -4.4375rem !important
}

.mmb-71 {
	margin-bottom: -4.4375rem !important
}

.mml-71 {
	margin-left: -4.4375rem !important
}

.mm-72 {
	margin: -4.5rem !important
}

.mmx-72 {
	margin-left: -4.5rem !important;
	margin-right: -4.5rem !important
}

.mmy-72 {
	margin-bottom: -4.5rem !important
}

.mmt-72,
.mmy-72 {
	margin-top: -4.5rem !important
}

.mmr-72 {
	margin-right: -4.5rem !important
}

.mmb-72 {
	margin-bottom: -4.5rem !important
}

.mml-72 {
	margin-left: -4.5rem !important
}

.mm-73 {
	margin: -4.5625rem !important
}

.mmx-73 {
	margin-left: -4.5625rem !important;
	margin-right: -4.5625rem !important
}

.mmy-73 {
	margin-bottom: -4.5625rem !important
}

.mmt-73,
.mmy-73 {
	margin-top: -4.5625rem !important
}

.mmr-73 {
	margin-right: -4.5625rem !important
}

.mmb-73 {
	margin-bottom: -4.5625rem !important
}

.mml-73 {
	margin-left: -4.5625rem !important
}

.mm-74 {
	margin: -4.625rem !important
}

.mmx-74 {
	margin-left: -4.625rem !important;
	margin-right: -4.625rem !important
}

.mmy-74 {
	margin-bottom: -4.625rem !important
}

.mmt-74,
.mmy-74 {
	margin-top: -4.625rem !important
}

.mmr-74 {
	margin-right: -4.625rem !important
}

.mmb-74 {
	margin-bottom: -4.625rem !important
}

.mml-74 {
	margin-left: -4.625rem !important
}

.mm-75 {
	margin: -4.6875rem !important
}

.mmx-75 {
	margin-left: -4.6875rem !important;
	margin-right: -4.6875rem !important
}

.mmy-75 {
	margin-bottom: -4.6875rem !important
}

.mmt-75,
.mmy-75 {
	margin-top: -4.6875rem !important
}

.mmr-75 {
	margin-right: -4.6875rem !important
}

.mmb-75 {
	margin-bottom: -4.6875rem !important
}

.mml-75 {
	margin-left: -4.6875rem !important
}

.mm-76 {
	margin: -4.75rem !important
}

.mmx-76 {
	margin-left: -4.75rem !important;
	margin-right: -4.75rem !important
}

.mmy-76 {
	margin-bottom: -4.75rem !important
}

.mmt-76,
.mmy-76 {
	margin-top: -4.75rem !important
}

.mmr-76 {
	margin-right: -4.75rem !important
}

.mmb-76 {
	margin-bottom: -4.75rem !important
}

.mml-76 {
	margin-left: -4.75rem !important
}

.mm-77 {
	margin: -4.8125rem !important
}

.mmx-77 {
	margin-left: -4.8125rem !important;
	margin-right: -4.8125rem !important
}

.mmy-77 {
	margin-bottom: -4.8125rem !important
}

.mmt-77,
.mmy-77 {
	margin-top: -4.8125rem !important
}

.mmr-77 {
	margin-right: -4.8125rem !important
}

.mmb-77 {
	margin-bottom: -4.8125rem !important
}

.mml-77 {
	margin-left: -4.8125rem !important
}

.mm-78 {
	margin: -4.875rem !important
}

.mmx-78 {
	margin-left: -4.875rem !important;
	margin-right: -4.875rem !important
}

.mmy-78 {
	margin-bottom: -4.875rem !important
}

.mmt-78,
.mmy-78 {
	margin-top: -4.875rem !important
}

.mmr-78 {
	margin-right: -4.875rem !important
}

.mmb-78 {
	margin-bottom: -4.875rem !important
}

.mml-78 {
	margin-left: -4.875rem !important
}

.mm-79 {
	margin: -4.9375rem !important
}

.mmx-79 {
	margin-left: -4.9375rem !important;
	margin-right: -4.9375rem !important
}

.mmy-79 {
	margin-bottom: -4.9375rem !important
}

.mmt-79,
.mmy-79 {
	margin-top: -4.9375rem !important
}

.mmr-79 {
	margin-right: -4.9375rem !important
}

.mmb-79 {
	margin-bottom: -4.9375rem !important
}

.mml-79 {
	margin-left: -4.9375rem !important
}

.mm-80 {
	margin: -5rem !important
}

.mmx-80 {
	margin-left: -5rem !important;
	margin-right: -5rem !important
}

.mmy-80 {
	margin-bottom: -5rem !important
}

.mmt-80,
.mmy-80 {
	margin-top: -5rem !important
}

.mmr-80 {
	margin-right: -5rem !important
}

.mmb-80 {
	margin-bottom: -5rem !important
}

.mml-80 {
	margin-left: -5rem !important
}

.mm-81 {
	margin: -5.0625rem !important
}

.mmx-81 {
	margin-left: -5.0625rem !important;
	margin-right: -5.0625rem !important
}

.mmy-81 {
	margin-bottom: -5.0625rem !important
}

.mmt-81,
.mmy-81 {
	margin-top: -5.0625rem !important
}

.mmr-81 {
	margin-right: -5.0625rem !important
}

.mmb-81 {
	margin-bottom: -5.0625rem !important
}

.mml-81 {
	margin-left: -5.0625rem !important
}

.mm-82 {
	margin: -5.125rem !important
}

.mmx-82 {
	margin-left: -5.125rem !important;
	margin-right: -5.125rem !important
}

.mmy-82 {
	margin-bottom: -5.125rem !important
}

.mmt-82,
.mmy-82 {
	margin-top: -5.125rem !important
}

.mmr-82 {
	margin-right: -5.125rem !important
}

.mmb-82 {
	margin-bottom: -5.125rem !important
}

.mml-82 {
	margin-left: -5.125rem !important
}

.mm-83 {
	margin: -5.1875rem !important
}

.mmx-83 {
	margin-left: -5.1875rem !important;
	margin-right: -5.1875rem !important
}

.mmy-83 {
	margin-bottom: -5.1875rem !important
}

.mmt-83,
.mmy-83 {
	margin-top: -5.1875rem !important
}

.mmr-83 {
	margin-right: -5.1875rem !important
}

.mmb-83 {
	margin-bottom: -5.1875rem !important
}

.mml-83 {
	margin-left: -5.1875rem !important
}

.mm-84 {
	margin: -5.25rem !important
}

.mmx-84 {
	margin-left: -5.25rem !important;
	margin-right: -5.25rem !important
}

.mmy-84 {
	margin-bottom: -5.25rem !important
}

.mmt-84,
.mmy-84 {
	margin-top: -5.25rem !important
}

.mmr-84 {
	margin-right: -5.25rem !important
}

.mmb-84 {
	margin-bottom: -5.25rem !important
}

.mml-84 {
	margin-left: -5.25rem !important
}

.mm-85 {
	margin: -5.3125rem !important
}

.mmx-85 {
	margin-left: -5.3125rem !important;
	margin-right: -5.3125rem !important
}

.mmy-85 {
	margin-bottom: -5.3125rem !important
}

.mmt-85,
.mmy-85 {
	margin-top: -5.3125rem !important
}

.mmr-85 {
	margin-right: -5.3125rem !important
}

.mmb-85 {
	margin-bottom: -5.3125rem !important
}

.mml-85 {
	margin-left: -5.3125rem !important
}

.mm-86 {
	margin: -5.375rem !important
}

.mmx-86 {
	margin-left: -5.375rem !important;
	margin-right: -5.375rem !important
}

.mmy-86 {
	margin-bottom: -5.375rem !important
}

.mmt-86,
.mmy-86 {
	margin-top: -5.375rem !important
}

.mmr-86 {
	margin-right: -5.375rem !important
}

.mmb-86 {
	margin-bottom: -5.375rem !important
}

.mml-86 {
	margin-left: -5.375rem !important
}

.mm-87 {
	margin: -5.4375rem !important
}

.mmx-87 {
	margin-left: -5.4375rem !important;
	margin-right: -5.4375rem !important
}

.mmy-87 {
	margin-bottom: -5.4375rem !important
}

.mmt-87,
.mmy-87 {
	margin-top: -5.4375rem !important
}

.mmr-87 {
	margin-right: -5.4375rem !important
}

.mmb-87 {
	margin-bottom: -5.4375rem !important
}

.mml-87 {
	margin-left: -5.4375rem !important
}

.mm-88 {
	margin: -5.5rem !important
}

.mmx-88 {
	margin-left: -5.5rem !important;
	margin-right: -5.5rem !important
}

.mmy-88 {
	margin-bottom: -5.5rem !important
}

.mmt-88,
.mmy-88 {
	margin-top: -5.5rem !important
}

.mmr-88 {
	margin-right: -5.5rem !important
}

.mmb-88 {
	margin-bottom: -5.5rem !important
}

.mml-88 {
	margin-left: -5.5rem !important
}

.mm-89 {
	margin: -5.5625rem !important
}

.mmx-89 {
	margin-left: -5.5625rem !important;
	margin-right: -5.5625rem !important
}

.mmy-89 {
	margin-bottom: -5.5625rem !important
}

.mmt-89,
.mmy-89 {
	margin-top: -5.5625rem !important
}

.mmr-89 {
	margin-right: -5.5625rem !important
}

.mmb-89 {
	margin-bottom: -5.5625rem !important
}

.mml-89 {
	margin-left: -5.5625rem !important
}

.mm-90 {
	margin: -5.625rem !important
}

.mmx-90 {
	margin-left: -5.625rem !important;
	margin-right: -5.625rem !important
}

.mmy-90 {
	margin-bottom: -5.625rem !important
}

.mmt-90,
.mmy-90 {
	margin-top: -5.625rem !important
}

.mmr-90 {
	margin-right: -5.625rem !important
}

.mmb-90 {
	margin-bottom: -5.625rem !important
}

.mml-90 {
	margin-left: -5.625rem !important
}

.mm-91 {
	margin: -5.6875rem !important
}

.mmx-91 {
	margin-left: -5.6875rem !important;
	margin-right: -5.6875rem !important
}

.mmy-91 {
	margin-bottom: -5.6875rem !important
}

.mmt-91,
.mmy-91 {
	margin-top: -5.6875rem !important
}

.mmr-91 {
	margin-right: -5.6875rem !important
}

.mmb-91 {
	margin-bottom: -5.6875rem !important
}

.mml-91 {
	margin-left: -5.6875rem !important
}

.mm-92 {
	margin: -5.75rem !important
}

.mmx-92 {
	margin-left: -5.75rem !important;
	margin-right: -5.75rem !important
}

.mmy-92 {
	margin-bottom: -5.75rem !important
}

.mmt-92,
.mmy-92 {
	margin-top: -5.75rem !important
}

.mmr-92 {
	margin-right: -5.75rem !important
}

.mmb-92 {
	margin-bottom: -5.75rem !important
}

.mml-92 {
	margin-left: -5.75rem !important
}

.mm-93 {
	margin: -5.8125rem !important
}

.mmx-93 {
	margin-left: -5.8125rem !important;
	margin-right: -5.8125rem !important
}

.mmy-93 {
	margin-bottom: -5.8125rem !important
}

.mmt-93,
.mmy-93 {
	margin-top: -5.8125rem !important
}

.mmr-93 {
	margin-right: -5.8125rem !important
}

.mmb-93 {
	margin-bottom: -5.8125rem !important
}

.mml-93 {
	margin-left: -5.8125rem !important
}

.mm-94 {
	margin: -5.875rem !important
}

.mmx-94 {
	margin-left: -5.875rem !important;
	margin-right: -5.875rem !important
}

.mmy-94 {
	margin-bottom: -5.875rem !important
}

.mmt-94,
.mmy-94 {
	margin-top: -5.875rem !important
}

.mmr-94 {
	margin-right: -5.875rem !important
}

.mmb-94 {
	margin-bottom: -5.875rem !important
}

.mml-94 {
	margin-left: -5.875rem !important
}

.mm-95 {
	margin: -5.9375rem !important
}

.mmx-95 {
	margin-left: -5.9375rem !important;
	margin-right: -5.9375rem !important
}

.mmy-95 {
	margin-bottom: -5.9375rem !important
}

.mmt-95,
.mmy-95 {
	margin-top: -5.9375rem !important
}

.mmr-95 {
	margin-right: -5.9375rem !important
}

.mmb-95 {
	margin-bottom: -5.9375rem !important
}

.mml-95 {
	margin-left: -5.9375rem !important
}

.mm-96 {
	margin: -6rem !important
}

.mmx-96 {
	margin-left: -6rem !important;
	margin-right: -6rem !important
}

.mmy-96 {
	margin-bottom: -6rem !important
}

.mmt-96,
.mmy-96 {
	margin-top: -6rem !important
}

.mmr-96 {
	margin-right: -6rem !important
}

.mmb-96 {
	margin-bottom: -6rem !important
}

.mml-96 {
	margin-left: -6rem !important
}

.mm-97 {
	margin: -6.0625rem !important
}

.mmx-97 {
	margin-left: -6.0625rem !important;
	margin-right: -6.0625rem !important
}

.mmy-97 {
	margin-bottom: -6.0625rem !important
}

.mmt-97,
.mmy-97 {
	margin-top: -6.0625rem !important
}

.mmr-97 {
	margin-right: -6.0625rem !important
}

.mmb-97 {
	margin-bottom: -6.0625rem !important
}

.mml-97 {
	margin-left: -6.0625rem !important
}

.mm-98 {
	margin: -6.125rem !important
}

.mmx-98 {
	margin-left: -6.125rem !important;
	margin-right: -6.125rem !important
}

.mmy-98 {
	margin-bottom: -6.125rem !important
}

.mmt-98,
.mmy-98 {
	margin-top: -6.125rem !important
}

.mmr-98 {
	margin-right: -6.125rem !important
}

.mmb-98 {
	margin-bottom: -6.125rem !important
}

.mml-98 {
	margin-left: -6.125rem !important
}

.mm-99 {
	margin: -6.1875rem !important
}

.mmx-99 {
	margin-left: -6.1875rem !important;
	margin-right: -6.1875rem !important
}

.mmy-99 {
	margin-bottom: -6.1875rem !important
}

.mmt-99,
.mmy-99 {
	margin-top: -6.1875rem !important
}

.mmr-99 {
	margin-right: -6.1875rem !important
}

.mmb-99 {
	margin-bottom: -6.1875rem !important
}

.mml-99 {
	margin-left: -6.1875rem !important
}

.mm-100 {
	margin: -6.25rem !important
}

.mmx-100 {
	margin-left: -6.25rem !important;
	margin-right: -6.25rem !important
}

.mmy-100 {
	margin-bottom: -6.25rem !important
}

.mmt-100,
.mmy-100 {
	margin-top: -6.25rem !important
}

.mmr-100 {
	margin-right: -6.25rem !important
}

.mmb-100 {
	margin-bottom: -6.25rem !important
}

.mml-100 {
	margin-left: -6.25rem !important
}

.mm-101 {
	margin: -6.3125rem !important
}

.mmx-101 {
	margin-left: -6.3125rem !important;
	margin-right: -6.3125rem !important
}

.mmy-101 {
	margin-bottom: -6.3125rem !important
}

.mmt-101,
.mmy-101 {
	margin-top: -6.3125rem !important
}

.mmr-101 {
	margin-right: -6.3125rem !important
}

.mmb-101 {
	margin-bottom: -6.3125rem !important
}

.mml-101 {
	margin-left: -6.3125rem !important
}

.mm-102 {
	margin: -6.375rem !important
}

.mmx-102 {
	margin-left: -6.375rem !important;
	margin-right: -6.375rem !important
}

.mmy-102 {
	margin-bottom: -6.375rem !important
}

.mmt-102,
.mmy-102 {
	margin-top: -6.375rem !important
}

.mmr-102 {
	margin-right: -6.375rem !important
}

.mmb-102 {
	margin-bottom: -6.375rem !important
}

.mml-102 {
	margin-left: -6.375rem !important
}

.mm-103 {
	margin: -6.4375rem !important
}

.mmx-103 {
	margin-left: -6.4375rem !important;
	margin-right: -6.4375rem !important
}

.mmy-103 {
	margin-bottom: -6.4375rem !important
}

.mmt-103,
.mmy-103 {
	margin-top: -6.4375rem !important
}

.mmr-103 {
	margin-right: -6.4375rem !important
}

.mmb-103 {
	margin-bottom: -6.4375rem !important
}

.mml-103 {
	margin-left: -6.4375rem !important
}

.mm-104 {
	margin: -6.5rem !important
}

.mmx-104 {
	margin-left: -6.5rem !important;
	margin-right: -6.5rem !important
}

.mmy-104 {
	margin-bottom: -6.5rem !important
}

.mmt-104,
.mmy-104 {
	margin-top: -6.5rem !important
}

.mmr-104 {
	margin-right: -6.5rem !important
}

.mmb-104 {
	margin-bottom: -6.5rem !important
}

.mml-104 {
	margin-left: -6.5rem !important
}

.mm-105 {
	margin: -6.5625rem !important
}

.mmx-105 {
	margin-left: -6.5625rem !important;
	margin-right: -6.5625rem !important
}

.mmy-105 {
	margin-bottom: -6.5625rem !important
}

.mmt-105,
.mmy-105 {
	margin-top: -6.5625rem !important
}

.mmr-105 {
	margin-right: -6.5625rem !important
}

.mmb-105 {
	margin-bottom: -6.5625rem !important
}

.mml-105 {
	margin-left: -6.5625rem !important
}

.mm-106 {
	margin: -6.625rem !important
}

.mmx-106 {
	margin-left: -6.625rem !important;
	margin-right: -6.625rem !important
}

.mmy-106 {
	margin-bottom: -6.625rem !important
}

.mmt-106,
.mmy-106 {
	margin-top: -6.625rem !important
}

.mmr-106 {
	margin-right: -6.625rem !important
}

.mmb-106 {
	margin-bottom: -6.625rem !important
}

.mml-106 {
	margin-left: -6.625rem !important
}

.mm-107 {
	margin: -6.6875rem !important
}

.mmx-107 {
	margin-left: -6.6875rem !important;
	margin-right: -6.6875rem !important
}

.mmy-107 {
	margin-bottom: -6.6875rem !important
}

.mmt-107,
.mmy-107 {
	margin-top: -6.6875rem !important
}

.mmr-107 {
	margin-right: -6.6875rem !important
}

.mmb-107 {
	margin-bottom: -6.6875rem !important
}

.mml-107 {
	margin-left: -6.6875rem !important
}

.mm-108 {
	margin: -6.75rem !important
}

.mmx-108 {
	margin-left: -6.75rem !important;
	margin-right: -6.75rem !important
}

.mmy-108 {
	margin-bottom: -6.75rem !important
}

.mmt-108,
.mmy-108 {
	margin-top: -6.75rem !important
}

.mmr-108 {
	margin-right: -6.75rem !important
}

.mmb-108 {
	margin-bottom: -6.75rem !important
}

.mml-108 {
	margin-left: -6.75rem !important
}

.mm-109 {
	margin: -6.8125rem !important
}

.mmx-109 {
	margin-left: -6.8125rem !important;
	margin-right: -6.8125rem !important
}

.mmy-109 {
	margin-bottom: -6.8125rem !important
}

.mmt-109,
.mmy-109 {
	margin-top: -6.8125rem !important
}

.mmr-109 {
	margin-right: -6.8125rem !important
}

.mmb-109 {
	margin-bottom: -6.8125rem !important
}

.mml-109 {
	margin-left: -6.8125rem !important
}

.mm-110 {
	margin: -6.875rem !important
}

.mmx-110 {
	margin-left: -6.875rem !important;
	margin-right: -6.875rem !important
}

.mmy-110 {
	margin-bottom: -6.875rem !important
}

.mmt-110,
.mmy-110 {
	margin-top: -6.875rem !important
}

.mmr-110 {
	margin-right: -6.875rem !important
}

.mmb-110 {
	margin-bottom: -6.875rem !important
}

.mml-110 {
	margin-left: -6.875rem !important
}

.mm-111 {
	margin: -6.9375rem !important
}

.mmx-111 {
	margin-left: -6.9375rem !important;
	margin-right: -6.9375rem !important
}

.mmy-111 {
	margin-bottom: -6.9375rem !important
}

.mmt-111,
.mmy-111 {
	margin-top: -6.9375rem !important
}

.mmr-111 {
	margin-right: -6.9375rem !important
}

.mmb-111 {
	margin-bottom: -6.9375rem !important
}

.mml-111 {
	margin-left: -6.9375rem !important
}

.mm-112 {
	margin: -7rem !important
}

.mmx-112 {
	margin-left: -7rem !important;
	margin-right: -7rem !important
}

.mmy-112 {
	margin-bottom: -7rem !important
}

.mmt-112,
.mmy-112 {
	margin-top: -7rem !important
}

.mmr-112 {
	margin-right: -7rem !important
}

.mmb-112 {
	margin-bottom: -7rem !important
}

.mml-112 {
	margin-left: -7rem !important
}

.mm-113 {
	margin: -7.0625rem !important
}

.mmx-113 {
	margin-left: -7.0625rem !important;
	margin-right: -7.0625rem !important
}

.mmy-113 {
	margin-bottom: -7.0625rem !important
}

.mmt-113,
.mmy-113 {
	margin-top: -7.0625rem !important
}

.mmr-113 {
	margin-right: -7.0625rem !important
}

.mmb-113 {
	margin-bottom: -7.0625rem !important
}

.mml-113 {
	margin-left: -7.0625rem !important
}

.mm-114 {
	margin: -7.125rem !important
}

.mmx-114 {
	margin-left: -7.125rem !important;
	margin-right: -7.125rem !important
}

.mmy-114 {
	margin-bottom: -7.125rem !important
}

.mmt-114,
.mmy-114 {
	margin-top: -7.125rem !important
}

.mmr-114 {
	margin-right: -7.125rem !important
}

.mmb-114 {
	margin-bottom: -7.125rem !important
}

.mml-114 {
	margin-left: -7.125rem !important
}

.mm-115 {
	margin: -7.1875rem !important
}

.mmx-115 {
	margin-left: -7.1875rem !important;
	margin-right: -7.1875rem !important
}

.mmy-115 {
	margin-bottom: -7.1875rem !important
}

.mmt-115,
.mmy-115 {
	margin-top: -7.1875rem !important
}

.mmr-115 {
	margin-right: -7.1875rem !important
}

.mmb-115 {
	margin-bottom: -7.1875rem !important
}

.mml-115 {
	margin-left: -7.1875rem !important
}

.mm-116 {
	margin: -7.25rem !important
}

.mmx-116 {
	margin-left: -7.25rem !important;
	margin-right: -7.25rem !important
}

.mmy-116 {
	margin-bottom: -7.25rem !important
}

.mmt-116,
.mmy-116 {
	margin-top: -7.25rem !important
}

.mmr-116 {
	margin-right: -7.25rem !important
}

.mmb-116 {
	margin-bottom: -7.25rem !important
}

.mml-116 {
	margin-left: -7.25rem !important
}

.mm-117 {
	margin: -7.3125rem !important
}

.mmx-117 {
	margin-left: -7.3125rem !important;
	margin-right: -7.3125rem !important
}

.mmy-117 {
	margin-bottom: -7.3125rem !important
}

.mmt-117,
.mmy-117 {
	margin-top: -7.3125rem !important
}

.mmr-117 {
	margin-right: -7.3125rem !important
}

.mmb-117 {
	margin-bottom: -7.3125rem !important
}

.mml-117 {
	margin-left: -7.3125rem !important
}

.mm-118 {
	margin: -7.375rem !important
}

.mmx-118 {
	margin-left: -7.375rem !important;
	margin-right: -7.375rem !important
}

.mmy-118 {
	margin-bottom: -7.375rem !important
}

.mmt-118,
.mmy-118 {
	margin-top: -7.375rem !important
}

.mmr-118 {
	margin-right: -7.375rem !important
}

.mmb-118 {
	margin-bottom: -7.375rem !important
}

.mml-118 {
	margin-left: -7.375rem !important
}

.mm-119 {
	margin: -7.4375rem !important
}

.mmx-119 {
	margin-left: -7.4375rem !important;
	margin-right: -7.4375rem !important
}

.mmy-119 {
	margin-bottom: -7.4375rem !important
}

.mmt-119,
.mmy-119 {
	margin-top: -7.4375rem !important
}

.mmr-119 {
	margin-right: -7.4375rem !important
}

.mmb-119 {
	margin-bottom: -7.4375rem !important
}

.mml-119 {
	margin-left: -7.4375rem !important
}

.mm-120 {
	margin: -7.5rem !important
}

.mmx-120 {
	margin-left: -7.5rem !important;
	margin-right: -7.5rem !important
}

.mmy-120 {
	margin-bottom: -7.5rem !important
}

.mmt-120,
.mmy-120 {
	margin-top: -7.5rem !important
}

.mmr-120 {
	margin-right: -7.5rem !important
}

.mmb-120 {
	margin-bottom: -7.5rem !important
}

.mml-120 {
	margin-left: -7.5rem !important
}

.mm-121 {
	margin: -7.5625rem !important
}

.mmx-121 {
	margin-left: -7.5625rem !important;
	margin-right: -7.5625rem !important
}

.mmy-121 {
	margin-bottom: -7.5625rem !important
}

.mmt-121,
.mmy-121 {
	margin-top: -7.5625rem !important
}

.mmr-121 {
	margin-right: -7.5625rem !important
}

.mmb-121 {
	margin-bottom: -7.5625rem !important
}

.mml-121 {
	margin-left: -7.5625rem !important
}

.mm-122 {
	margin: -7.625rem !important
}

.mmx-122 {
	margin-left: -7.625rem !important;
	margin-right: -7.625rem !important
}

.mmy-122 {
	margin-bottom: -7.625rem !important
}

.mmt-122,
.mmy-122 {
	margin-top: -7.625rem !important
}

.mmr-122 {
	margin-right: -7.625rem !important
}

.mmb-122 {
	margin-bottom: -7.625rem !important
}

.mml-122 {
	margin-left: -7.625rem !important
}

.mm-123 {
	margin: -7.6875rem !important
}

.mmx-123 {
	margin-left: -7.6875rem !important;
	margin-right: -7.6875rem !important
}

.mmy-123 {
	margin-bottom: -7.6875rem !important
}

.mmt-123,
.mmy-123 {
	margin-top: -7.6875rem !important
}

.mmr-123 {
	margin-right: -7.6875rem !important
}

.mmb-123 {
	margin-bottom: -7.6875rem !important
}

.mml-123 {
	margin-left: -7.6875rem !important
}

.mm-124 {
	margin: -7.75rem !important
}

.mmx-124 {
	margin-left: -7.75rem !important;
	margin-right: -7.75rem !important
}

.mmy-124 {
	margin-bottom: -7.75rem !important
}

.mmt-124,
.mmy-124 {
	margin-top: -7.75rem !important
}

.mmr-124 {
	margin-right: -7.75rem !important
}

.mmb-124 {
	margin-bottom: -7.75rem !important
}

.mml-124 {
	margin-left: -7.75rem !important
}

.mm-125 {
	margin: -7.8125rem !important
}

.mmx-125 {
	margin-left: -7.8125rem !important;
	margin-right: -7.8125rem !important
}

.mmy-125 {
	margin-bottom: -7.8125rem !important
}

.mmt-125,
.mmy-125 {
	margin-top: -7.8125rem !important
}

.mmr-125 {
	margin-right: -7.8125rem !important
}

.mmb-125 {
	margin-bottom: -7.8125rem !important
}

.mml-125 {
	margin-left: -7.8125rem !important
}

.mm-126 {
	margin: -7.875rem !important
}

.mmx-126 {
	margin-left: -7.875rem !important;
	margin-right: -7.875rem !important
}

.mmy-126 {
	margin-bottom: -7.875rem !important
}

.mmt-126,
.mmy-126 {
	margin-top: -7.875rem !important
}

.mmr-126 {
	margin-right: -7.875rem !important
}

.mmb-126 {
	margin-bottom: -7.875rem !important
}

.mml-126 {
	margin-left: -7.875rem !important
}

.mm-127 {
	margin: -7.9375rem !important
}

.mmx-127 {
	margin-left: -7.9375rem !important;
	margin-right: -7.9375rem !important
}

.mmy-127 {
	margin-bottom: -7.9375rem !important
}

.mmt-127,
.mmy-127 {
	margin-top: -7.9375rem !important
}

.mmr-127 {
	margin-right: -7.9375rem !important
}

.mmb-127 {
	margin-bottom: -7.9375rem !important
}

.mml-127 {
	margin-left: -7.9375rem !important
}

.mm-128 {
	margin: -8rem !important
}

.mmx-128 {
	margin-left: -8rem !important;
	margin-right: -8rem !important
}

.mmy-128 {
	margin-bottom: -8rem !important
}

.mmt-128,
.mmy-128 {
	margin-top: -8rem !important
}

.mmr-128 {
	margin-right: -8rem !important
}

.mmb-128 {
	margin-bottom: -8rem !important
}

.mml-128 {
	margin-left: -8rem !important
}

.mm-129 {
	margin: -8.0625rem !important
}

.mmx-129 {
	margin-left: -8.0625rem !important;
	margin-right: -8.0625rem !important
}

.mmy-129 {
	margin-bottom: -8.0625rem !important
}

.mmt-129,
.mmy-129 {
	margin-top: -8.0625rem !important
}

.mmr-129 {
	margin-right: -8.0625rem !important
}

.mmb-129 {
	margin-bottom: -8.0625rem !important
}

.mml-129 {
	margin-left: -8.0625rem !important
}

.mm-130 {
	margin: -8.125rem !important
}

.mmx-130 {
	margin-left: -8.125rem !important;
	margin-right: -8.125rem !important
}

.mmy-130 {
	margin-bottom: -8.125rem !important
}

.mmt-130,
.mmy-130 {
	margin-top: -8.125rem !important
}

.mmr-130 {
	margin-right: -8.125rem !important
}

.mmb-130 {
	margin-bottom: -8.125rem !important
}

.mml-130 {
	margin-left: -8.125rem !important
}

.mm-131 {
	margin: -8.1875rem !important
}

.mmx-131 {
	margin-left: -8.1875rem !important;
	margin-right: -8.1875rem !important
}

.mmy-131 {
	margin-bottom: -8.1875rem !important
}

.mmt-131,
.mmy-131 {
	margin-top: -8.1875rem !important
}

.mmr-131 {
	margin-right: -8.1875rem !important
}

.mmb-131 {
	margin-bottom: -8.1875rem !important
}

.mml-131 {
	margin-left: -8.1875rem !important
}

.mm-132 {
	margin: -8.25rem !important
}

.mmx-132 {
	margin-left: -8.25rem !important;
	margin-right: -8.25rem !important
}

.mmy-132 {
	margin-bottom: -8.25rem !important
}

.mmt-132,
.mmy-132 {
	margin-top: -8.25rem !important
}

.mmr-132 {
	margin-right: -8.25rem !important
}

.mmb-132 {
	margin-bottom: -8.25rem !important
}

.mml-132 {
	margin-left: -8.25rem !important
}

.mm-133 {
	margin: -8.3125rem !important
}

.mmx-133 {
	margin-left: -8.3125rem !important;
	margin-right: -8.3125rem !important
}

.mmy-133 {
	margin-bottom: -8.3125rem !important
}

.mmt-133,
.mmy-133 {
	margin-top: -8.3125rem !important
}

.mmr-133 {
	margin-right: -8.3125rem !important
}

.mmb-133 {
	margin-bottom: -8.3125rem !important
}

.mml-133 {
	margin-left: -8.3125rem !important
}

.mm-134 {
	margin: -8.375rem !important
}

.mmx-134 {
	margin-left: -8.375rem !important;
	margin-right: -8.375rem !important
}

.mmy-134 {
	margin-bottom: -8.375rem !important
}

.mmt-134,
.mmy-134 {
	margin-top: -8.375rem !important
}

.mmr-134 {
	margin-right: -8.375rem !important
}

.mmb-134 {
	margin-bottom: -8.375rem !important
}

.mml-134 {
	margin-left: -8.375rem !important
}

.mm-135 {
	margin: -8.4375rem !important
}

.mmx-135 {
	margin-left: -8.4375rem !important;
	margin-right: -8.4375rem !important
}

.mmy-135 {
	margin-bottom: -8.4375rem !important
}

.mmt-135,
.mmy-135 {
	margin-top: -8.4375rem !important
}

.mmr-135 {
	margin-right: -8.4375rem !important
}

.mmb-135 {
	margin-bottom: -8.4375rem !important
}

.mml-135 {
	margin-left: -8.4375rem !important
}

.mm-136 {
	margin: -8.5rem !important
}

.mmx-136 {
	margin-left: -8.5rem !important;
	margin-right: -8.5rem !important
}

.mmy-136 {
	margin-bottom: -8.5rem !important
}

.mmt-136,
.mmy-136 {
	margin-top: -8.5rem !important
}

.mmr-136 {
	margin-right: -8.5rem !important
}

.mmb-136 {
	margin-bottom: -8.5rem !important
}

.mml-136 {
	margin-left: -8.5rem !important
}

.mm-137 {
	margin: -8.5625rem !important
}

.mmx-137 {
	margin-left: -8.5625rem !important;
	margin-right: -8.5625rem !important
}

.mmy-137 {
	margin-bottom: -8.5625rem !important
}

.mmt-137,
.mmy-137 {
	margin-top: -8.5625rem !important
}

.mmr-137 {
	margin-right: -8.5625rem !important
}

.mmb-137 {
	margin-bottom: -8.5625rem !important
}

.mml-137 {
	margin-left: -8.5625rem !important
}

.mm-138 {
	margin: -8.625rem !important
}

.mmx-138 {
	margin-left: -8.625rem !important;
	margin-right: -8.625rem !important
}

.mmy-138 {
	margin-bottom: -8.625rem !important
}

.mmt-138,
.mmy-138 {
	margin-top: -8.625rem !important
}

.mmr-138 {
	margin-right: -8.625rem !important
}

.mmb-138 {
	margin-bottom: -8.625rem !important
}

.mml-138 {
	margin-left: -8.625rem !important
}

.mm-139 {
	margin: -8.6875rem !important
}

.mmx-139 {
	margin-left: -8.6875rem !important;
	margin-right: -8.6875rem !important
}

.mmy-139 {
	margin-bottom: -8.6875rem !important
}

.mmt-139,
.mmy-139 {
	margin-top: -8.6875rem !important
}

.mmr-139 {
	margin-right: -8.6875rem !important
}

.mmb-139 {
	margin-bottom: -8.6875rem !important
}

.mml-139 {
	margin-left: -8.6875rem !important
}

.mm-140 {
	margin: -8.75rem !important
}

.mmx-140 {
	margin-left: -8.75rem !important;
	margin-right: -8.75rem !important
}

.mmy-140 {
	margin-bottom: -8.75rem !important
}

.mmt-140,
.mmy-140 {
	margin-top: -8.75rem !important
}

.mmr-140 {
	margin-right: -8.75rem !important
}

.mmb-140 {
	margin-bottom: -8.75rem !important
}

.mml-140 {
	margin-left: -8.75rem !important
}

.mm-141 {
	margin: -8.8125rem !important
}

.mmx-141 {
	margin-left: -8.8125rem !important;
	margin-right: -8.8125rem !important
}

.mmy-141 {
	margin-bottom: -8.8125rem !important
}

.mmt-141,
.mmy-141 {
	margin-top: -8.8125rem !important
}

.mmr-141 {
	margin-right: -8.8125rem !important
}

.mmb-141 {
	margin-bottom: -8.8125rem !important
}

.mml-141 {
	margin-left: -8.8125rem !important
}

.mm-142 {
	margin: -8.875rem !important
}

.mmx-142 {
	margin-left: -8.875rem !important;
	margin-right: -8.875rem !important
}

.mmy-142 {
	margin-bottom: -8.875rem !important
}

.mmt-142,
.mmy-142 {
	margin-top: -8.875rem !important
}

.mmr-142 {
	margin-right: -8.875rem !important
}

.mmb-142 {
	margin-bottom: -8.875rem !important
}

.mml-142 {
	margin-left: -8.875rem !important
}

.mm-143 {
	margin: -8.9375rem !important
}

.mmx-143 {
	margin-left: -8.9375rem !important;
	margin-right: -8.9375rem !important
}

.mmy-143 {
	margin-bottom: -8.9375rem !important
}

.mmt-143,
.mmy-143 {
	margin-top: -8.9375rem !important
}

.mmr-143 {
	margin-right: -8.9375rem !important
}

.mmb-143 {
	margin-bottom: -8.9375rem !important
}

.mml-143 {
	margin-left: -8.9375rem !important
}

.mm-144 {
	margin: -9rem !important
}

.mmx-144 {
	margin-left: -9rem !important;
	margin-right: -9rem !important
}

.mmy-144 {
	margin-bottom: -9rem !important
}

.mmt-144,
.mmy-144 {
	margin-top: -9rem !important
}

.mmr-144 {
	margin-right: -9rem !important
}

.mmb-144 {
	margin-bottom: -9rem !important
}

.mml-144 {
	margin-left: -9rem !important
}

.mm-145 {
	margin: -9.0625rem !important
}

.mmx-145 {
	margin-left: -9.0625rem !important;
	margin-right: -9.0625rem !important
}

.mmy-145 {
	margin-bottom: -9.0625rem !important
}

.mmt-145,
.mmy-145 {
	margin-top: -9.0625rem !important
}

.mmr-145 {
	margin-right: -9.0625rem !important
}

.mmb-145 {
	margin-bottom: -9.0625rem !important
}

.mml-145 {
	margin-left: -9.0625rem !important
}

.mm-146 {
	margin: -9.125rem !important
}

.mmx-146 {
	margin-left: -9.125rem !important;
	margin-right: -9.125rem !important
}

.mmy-146 {
	margin-bottom: -9.125rem !important
}

.mmt-146,
.mmy-146 {
	margin-top: -9.125rem !important
}

.mmr-146 {
	margin-right: -9.125rem !important
}

.mmb-146 {
	margin-bottom: -9.125rem !important
}

.mml-146 {
	margin-left: -9.125rem !important
}

.mm-147 {
	margin: -9.1875rem !important
}

.mmx-147 {
	margin-left: -9.1875rem !important;
	margin-right: -9.1875rem !important
}

.mmy-147 {
	margin-bottom: -9.1875rem !important
}

.mmt-147,
.mmy-147 {
	margin-top: -9.1875rem !important
}

.mmr-147 {
	margin-right: -9.1875rem !important
}

.mmb-147 {
	margin-bottom: -9.1875rem !important
}

.mml-147 {
	margin-left: -9.1875rem !important
}

.mm-148 {
	margin: -9.25rem !important
}

.mmx-148 {
	margin-left: -9.25rem !important;
	margin-right: -9.25rem !important
}

.mmy-148 {
	margin-bottom: -9.25rem !important
}

.mmt-148,
.mmy-148 {
	margin-top: -9.25rem !important
}

.mmr-148 {
	margin-right: -9.25rem !important
}

.mmb-148 {
	margin-bottom: -9.25rem !important
}

.mml-148 {
	margin-left: -9.25rem !important
}

.mm-149 {
	margin: -9.3125rem !important
}

.mmx-149 {
	margin-left: -9.3125rem !important;
	margin-right: -9.3125rem !important
}

.mmy-149 {
	margin-bottom: -9.3125rem !important
}

.mmt-149,
.mmy-149 {
	margin-top: -9.3125rem !important
}

.mmr-149 {
	margin-right: -9.3125rem !important
}

.mmb-149 {
	margin-bottom: -9.3125rem !important
}

.mml-149 {
	margin-left: -9.3125rem !important
}

.mm-150 {
	margin: -9.375rem !important
}

.mmx-150 {
	margin-left: -9.375rem !important;
	margin-right: -9.375rem !important
}

.mmy-150 {
	margin-bottom: -9.375rem !important
}

.mmt-150,
.mmy-150 {
	margin-top: -9.375rem !important
}

.mmr-150 {
	margin-right: -9.375rem !important
}

.mmb-150 {
	margin-bottom: -9.375rem !important
}

.mml-150 {
	margin-left: -9.375rem !important
}

.mm-151 {
	margin: -9.4375rem !important
}

.mmx-151 {
	margin-left: -9.4375rem !important;
	margin-right: -9.4375rem !important
}

.mmy-151 {
	margin-bottom: -9.4375rem !important
}

.mmt-151,
.mmy-151 {
	margin-top: -9.4375rem !important
}

.mmr-151 {
	margin-right: -9.4375rem !important
}

.mmb-151 {
	margin-bottom: -9.4375rem !important
}

.mml-151 {
	margin-left: -9.4375rem !important
}

.mm-152 {
	margin: -9.5rem !important
}

.mmx-152 {
	margin-left: -9.5rem !important;
	margin-right: -9.5rem !important
}

.mmy-152 {
	margin-bottom: -9.5rem !important
}

.mmt-152,
.mmy-152 {
	margin-top: -9.5rem !important
}

.mmr-152 {
	margin-right: -9.5rem !important
}

.mmb-152 {
	margin-bottom: -9.5rem !important
}

.mml-152 {
	margin-left: -9.5rem !important
}

.mm-153 {
	margin: -9.5625rem !important
}

.mmx-153 {
	margin-left: -9.5625rem !important;
	margin-right: -9.5625rem !important
}

.mmy-153 {
	margin-bottom: -9.5625rem !important
}

.mmt-153,
.mmy-153 {
	margin-top: -9.5625rem !important
}

.mmr-153 {
	margin-right: -9.5625rem !important
}

.mmb-153 {
	margin-bottom: -9.5625rem !important
}

.mml-153 {
	margin-left: -9.5625rem !important
}

.mm-154 {
	margin: -9.625rem !important
}

.mmx-154 {
	margin-left: -9.625rem !important;
	margin-right: -9.625rem !important
}

.mmy-154 {
	margin-bottom: -9.625rem !important
}

.mmt-154,
.mmy-154 {
	margin-top: -9.625rem !important
}

.mmr-154 {
	margin-right: -9.625rem !important
}

.mmb-154 {
	margin-bottom: -9.625rem !important
}

.mml-154 {
	margin-left: -9.625rem !important
}

.mm-155 {
	margin: -9.6875rem !important
}

.mmx-155 {
	margin-left: -9.6875rem !important;
	margin-right: -9.6875rem !important
}

.mmy-155 {
	margin-bottom: -9.6875rem !important
}

.mmt-155,
.mmy-155 {
	margin-top: -9.6875rem !important
}

.mmr-155 {
	margin-right: -9.6875rem !important
}

.mmb-155 {
	margin-bottom: -9.6875rem !important
}

.mml-155 {
	margin-left: -9.6875rem !important
}

.mm-156 {
	margin: -9.75rem !important
}

.mmx-156 {
	margin-left: -9.75rem !important;
	margin-right: -9.75rem !important
}

.mmy-156 {
	margin-bottom: -9.75rem !important
}

.mmt-156,
.mmy-156 {
	margin-top: -9.75rem !important
}

.mmr-156 {
	margin-right: -9.75rem !important
}

.mmb-156 {
	margin-bottom: -9.75rem !important
}

.mml-156 {
	margin-left: -9.75rem !important
}

.mm-157 {
	margin: -9.8125rem !important
}

.mmx-157 {
	margin-left: -9.8125rem !important;
	margin-right: -9.8125rem !important
}

.mmy-157 {
	margin-bottom: -9.8125rem !important
}

.mmt-157,
.mmy-157 {
	margin-top: -9.8125rem !important
}

.mmr-157 {
	margin-right: -9.8125rem !important
}

.mmb-157 {
	margin-bottom: -9.8125rem !important
}

.mml-157 {
	margin-left: -9.8125rem !important
}

.mm-158 {
	margin: -9.875rem !important
}

.mmx-158 {
	margin-left: -9.875rem !important;
	margin-right: -9.875rem !important
}

.mmy-158 {
	margin-bottom: -9.875rem !important
}

.mmt-158,
.mmy-158 {
	margin-top: -9.875rem !important
}

.mmr-158 {
	margin-right: -9.875rem !important
}

.mmb-158 {
	margin-bottom: -9.875rem !important
}

.mml-158 {
	margin-left: -9.875rem !important
}

.mm-159 {
	margin: -9.9375rem !important
}

.mmx-159 {
	margin-left: -9.9375rem !important;
	margin-right: -9.9375rem !important
}

.mmy-159 {
	margin-bottom: -9.9375rem !important
}

.mmt-159,
.mmy-159 {
	margin-top: -9.9375rem !important
}

.mmr-159 {
	margin-right: -9.9375rem !important
}

.mmb-159 {
	margin-bottom: -9.9375rem !important
}

.mml-159 {
	margin-left: -9.9375rem !important
}

.mm-160 {
	margin: -10rem !important
}

.mmx-160 {
	margin-left: -10rem !important;
	margin-right: -10rem !important
}

.mmy-160 {
	margin-bottom: -10rem !important
}

.mmt-160,
.mmy-160 {
	margin-top: -10rem !important
}

.mmr-160 {
	margin-right: -10rem !important
}

.mmb-160 {
	margin-bottom: -10rem !important
}

.mml-160 {
	margin-left: -10rem !important
}

.mm-161 {
	margin: -10.0625rem !important
}

.mmx-161 {
	margin-left: -10.0625rem !important;
	margin-right: -10.0625rem !important
}

.mmy-161 {
	margin-bottom: -10.0625rem !important
}

.mmt-161,
.mmy-161 {
	margin-top: -10.0625rem !important
}

.mmr-161 {
	margin-right: -10.0625rem !important
}

.mmb-161 {
	margin-bottom: -10.0625rem !important
}

.mml-161 {
	margin-left: -10.0625rem !important
}

.mm-162 {
	margin: -10.125rem !important
}

.mmx-162 {
	margin-left: -10.125rem !important;
	margin-right: -10.125rem !important
}

.mmy-162 {
	margin-bottom: -10.125rem !important
}

.mmt-162,
.mmy-162 {
	margin-top: -10.125rem !important
}

.mmr-162 {
	margin-right: -10.125rem !important
}

.mmb-162 {
	margin-bottom: -10.125rem !important
}

.mml-162 {
	margin-left: -10.125rem !important
}

.mm-163 {
	margin: -10.1875rem !important
}

.mmx-163 {
	margin-left: -10.1875rem !important;
	margin-right: -10.1875rem !important
}

.mmy-163 {
	margin-bottom: -10.1875rem !important
}

.mmt-163,
.mmy-163 {
	margin-top: -10.1875rem !important
}

.mmr-163 {
	margin-right: -10.1875rem !important
}

.mmb-163 {
	margin-bottom: -10.1875rem !important
}

.mml-163 {
	margin-left: -10.1875rem !important
}

.mm-164 {
	margin: -10.25rem !important
}

.mmx-164 {
	margin-left: -10.25rem !important;
	margin-right: -10.25rem !important
}

.mmy-164 {
	margin-bottom: -10.25rem !important
}

.mmt-164,
.mmy-164 {
	margin-top: -10.25rem !important
}

.mmr-164 {
	margin-right: -10.25rem !important
}

.mmb-164 {
	margin-bottom: -10.25rem !important
}

.mml-164 {
	margin-left: -10.25rem !important
}

.mm-165 {
	margin: -10.3125rem !important
}

.mmx-165 {
	margin-left: -10.3125rem !important;
	margin-right: -10.3125rem !important
}

.mmy-165 {
	margin-bottom: -10.3125rem !important
}

.mmt-165,
.mmy-165 {
	margin-top: -10.3125rem !important
}

.mmr-165 {
	margin-right: -10.3125rem !important
}

.mmb-165 {
	margin-bottom: -10.3125rem !important
}

.mml-165 {
	margin-left: -10.3125rem !important
}

.mm-166 {
	margin: -10.375rem !important
}

.mmx-166 {
	margin-left: -10.375rem !important;
	margin-right: -10.375rem !important
}

.mmy-166 {
	margin-bottom: -10.375rem !important
}

.mmt-166,
.mmy-166 {
	margin-top: -10.375rem !important
}

.mmr-166 {
	margin-right: -10.375rem !important
}

.mmb-166 {
	margin-bottom: -10.375rem !important
}

.mml-166 {
	margin-left: -10.375rem !important
}

.mm-167 {
	margin: -10.4375rem !important
}

.mmx-167 {
	margin-left: -10.4375rem !important;
	margin-right: -10.4375rem !important
}

.mmy-167 {
	margin-bottom: -10.4375rem !important
}

.mmt-167,
.mmy-167 {
	margin-top: -10.4375rem !important
}

.mmr-167 {
	margin-right: -10.4375rem !important
}

.mmb-167 {
	margin-bottom: -10.4375rem !important
}

.mml-167 {
	margin-left: -10.4375rem !important
}

.mm-168 {
	margin: -10.5rem !important
}

.mmx-168 {
	margin-left: -10.5rem !important;
	margin-right: -10.5rem !important
}

.mmy-168 {
	margin-bottom: -10.5rem !important
}

.mmt-168,
.mmy-168 {
	margin-top: -10.5rem !important
}

.mmr-168 {
	margin-right: -10.5rem !important
}

.mmb-168 {
	margin-bottom: -10.5rem !important
}

.mml-168 {
	margin-left: -10.5rem !important
}

.mm-169 {
	margin: -10.5625rem !important
}

.mmx-169 {
	margin-left: -10.5625rem !important;
	margin-right: -10.5625rem !important
}

.mmy-169 {
	margin-bottom: -10.5625rem !important
}

.mmt-169,
.mmy-169 {
	margin-top: -10.5625rem !important
}

.mmr-169 {
	margin-right: -10.5625rem !important
}

.mmb-169 {
	margin-bottom: -10.5625rem !important
}

.mml-169 {
	margin-left: -10.5625rem !important
}

.mm-170 {
	margin: -10.625rem !important
}

.mmx-170 {
	margin-left: -10.625rem !important;
	margin-right: -10.625rem !important
}

.mmy-170 {
	margin-bottom: -10.625rem !important
}

.mmt-170,
.mmy-170 {
	margin-top: -10.625rem !important
}

.mmr-170 {
	margin-right: -10.625rem !important
}

.mmb-170 {
	margin-bottom: -10.625rem !important
}

.mml-170 {
	margin-left: -10.625rem !important
}

.mm-171 {
	margin: -10.6875rem !important
}

.mmx-171 {
	margin-left: -10.6875rem !important;
	margin-right: -10.6875rem !important
}

.mmy-171 {
	margin-bottom: -10.6875rem !important
}

.mmt-171,
.mmy-171 {
	margin-top: -10.6875rem !important
}

.mmr-171 {
	margin-right: -10.6875rem !important
}

.mmb-171 {
	margin-bottom: -10.6875rem !important
}

.mml-171 {
	margin-left: -10.6875rem !important
}

.mm-172 {
	margin: -10.75rem !important
}

.mmx-172 {
	margin-left: -10.75rem !important;
	margin-right: -10.75rem !important
}

.mmy-172 {
	margin-bottom: -10.75rem !important
}

.mmt-172,
.mmy-172 {
	margin-top: -10.75rem !important
}

.mmr-172 {
	margin-right: -10.75rem !important
}

.mmb-172 {
	margin-bottom: -10.75rem !important
}

.mml-172 {
	margin-left: -10.75rem !important
}

.mm-173 {
	margin: -10.8125rem !important
}

.mmx-173 {
	margin-left: -10.8125rem !important;
	margin-right: -10.8125rem !important
}

.mmy-173 {
	margin-bottom: -10.8125rem !important
}

.mmt-173,
.mmy-173 {
	margin-top: -10.8125rem !important
}

.mmr-173 {
	margin-right: -10.8125rem !important
}

.mmb-173 {
	margin-bottom: -10.8125rem !important
}

.mml-173 {
	margin-left: -10.8125rem !important
}

.mm-174 {
	margin: -10.875rem !important
}

.mmx-174 {
	margin-left: -10.875rem !important;
	margin-right: -10.875rem !important
}

.mmy-174 {
	margin-bottom: -10.875rem !important
}

.mmt-174,
.mmy-174 {
	margin-top: -10.875rem !important
}

.mmr-174 {
	margin-right: -10.875rem !important
}

.mmb-174 {
	margin-bottom: -10.875rem !important
}

.mml-174 {
	margin-left: -10.875rem !important
}

.mm-175 {
	margin: -10.9375rem !important
}

.mmx-175 {
	margin-left: -10.9375rem !important;
	margin-right: -10.9375rem !important
}

.mmy-175 {
	margin-bottom: -10.9375rem !important
}

.mmt-175,
.mmy-175 {
	margin-top: -10.9375rem !important
}

.mmr-175 {
	margin-right: -10.9375rem !important
}

.mmb-175 {
	margin-bottom: -10.9375rem !important
}

.mml-175 {
	margin-left: -10.9375rem !important
}

.mm-176 {
	margin: -11rem !important
}

.mmx-176 {
	margin-left: -11rem !important;
	margin-right: -11rem !important
}

.mmy-176 {
	margin-bottom: -11rem !important
}

.mmt-176,
.mmy-176 {
	margin-top: -11rem !important
}

.mmr-176 {
	margin-right: -11rem !important
}

.mmb-176 {
	margin-bottom: -11rem !important
}

.mml-176 {
	margin-left: -11rem !important
}

.mm-177 {
	margin: -11.0625rem !important
}

.mmx-177 {
	margin-left: -11.0625rem !important;
	margin-right: -11.0625rem !important
}

.mmy-177 {
	margin-bottom: -11.0625rem !important
}

.mmt-177,
.mmy-177 {
	margin-top: -11.0625rem !important
}

.mmr-177 {
	margin-right: -11.0625rem !important
}

.mmb-177 {
	margin-bottom: -11.0625rem !important
}

.mml-177 {
	margin-left: -11.0625rem !important
}

.mm-178 {
	margin: -11.125rem !important
}

.mmx-178 {
	margin-left: -11.125rem !important;
	margin-right: -11.125rem !important
}

.mmy-178 {
	margin-bottom: -11.125rem !important
}

.mmt-178,
.mmy-178 {
	margin-top: -11.125rem !important
}

.mmr-178 {
	margin-right: -11.125rem !important
}

.mmb-178 {
	margin-bottom: -11.125rem !important
}

.mml-178 {
	margin-left: -11.125rem !important
}

.mm-179 {
	margin: -11.1875rem !important
}

.mmx-179 {
	margin-left: -11.1875rem !important;
	margin-right: -11.1875rem !important
}

.mmy-179 {
	margin-bottom: -11.1875rem !important
}

.mmt-179,
.mmy-179 {
	margin-top: -11.1875rem !important
}

.mmr-179 {
	margin-right: -11.1875rem !important
}

.mmb-179 {
	margin-bottom: -11.1875rem !important
}

.mml-179 {
	margin-left: -11.1875rem !important
}

.mm-180 {
	margin: -11.25rem !important
}

.mmx-180 {
	margin-left: -11.25rem !important;
	margin-right: -11.25rem !important
}

.mmy-180 {
	margin-bottom: -11.25rem !important
}

.mmt-180,
.mmy-180 {
	margin-top: -11.25rem !important
}

.mmr-180 {
	margin-right: -11.25rem !important
}

.mmb-180 {
	margin-bottom: -11.25rem !important
}

.mml-180 {
	margin-left: -11.25rem !important
}

.mm-181 {
	margin: -11.3125rem !important
}

.mmx-181 {
	margin-left: -11.3125rem !important;
	margin-right: -11.3125rem !important
}

.mmy-181 {
	margin-bottom: -11.3125rem !important
}

.mmt-181,
.mmy-181 {
	margin-top: -11.3125rem !important
}

.mmr-181 {
	margin-right: -11.3125rem !important
}

.mmb-181 {
	margin-bottom: -11.3125rem !important
}

.mml-181 {
	margin-left: -11.3125rem !important
}

.mm-182 {
	margin: -11.375rem !important
}

.mmx-182 {
	margin-left: -11.375rem !important;
	margin-right: -11.375rem !important
}

.mmy-182 {
	margin-bottom: -11.375rem !important
}

.mmt-182,
.mmy-182 {
	margin-top: -11.375rem !important
}

.mmr-182 {
	margin-right: -11.375rem !important
}

.mmb-182 {
	margin-bottom: -11.375rem !important
}

.mml-182 {
	margin-left: -11.375rem !important
}

.mm-183 {
	margin: -11.4375rem !important
}

.mmx-183 {
	margin-left: -11.4375rem !important;
	margin-right: -11.4375rem !important
}

.mmy-183 {
	margin-bottom: -11.4375rem !important
}

.mmt-183,
.mmy-183 {
	margin-top: -11.4375rem !important
}

.mmr-183 {
	margin-right: -11.4375rem !important
}

.mmb-183 {
	margin-bottom: -11.4375rem !important
}

.mml-183 {
	margin-left: -11.4375rem !important
}

.mm-184 {
	margin: -11.5rem !important
}

.mmx-184 {
	margin-left: -11.5rem !important;
	margin-right: -11.5rem !important
}

.mmy-184 {
	margin-bottom: -11.5rem !important
}

.mmt-184,
.mmy-184 {
	margin-top: -11.5rem !important
}

.mmr-184 {
	margin-right: -11.5rem !important
}

.mmb-184 {
	margin-bottom: -11.5rem !important
}

.mml-184 {
	margin-left: -11.5rem !important
}

.mm-185 {
	margin: -11.5625rem !important
}

.mmx-185 {
	margin-left: -11.5625rem !important;
	margin-right: -11.5625rem !important
}

.mmy-185 {
	margin-bottom: -11.5625rem !important
}

.mmt-185,
.mmy-185 {
	margin-top: -11.5625rem !important
}

.mmr-185 {
	margin-right: -11.5625rem !important
}

.mmb-185 {
	margin-bottom: -11.5625rem !important
}

.mml-185 {
	margin-left: -11.5625rem !important
}

.mm-186 {
	margin: -11.625rem !important
}

.mmx-186 {
	margin-left: -11.625rem !important;
	margin-right: -11.625rem !important
}

.mmy-186 {
	margin-bottom: -11.625rem !important
}

.mmt-186,
.mmy-186 {
	margin-top: -11.625rem !important
}

.mmr-186 {
	margin-right: -11.625rem !important
}

.mmb-186 {
	margin-bottom: -11.625rem !important
}

.mml-186 {
	margin-left: -11.625rem !important
}

.mm-187 {
	margin: -11.6875rem !important
}

.mmx-187 {
	margin-left: -11.6875rem !important;
	margin-right: -11.6875rem !important
}

.mmy-187 {
	margin-bottom: -11.6875rem !important
}

.mmt-187,
.mmy-187 {
	margin-top: -11.6875rem !important
}

.mmr-187 {
	margin-right: -11.6875rem !important
}

.mmb-187 {
	margin-bottom: -11.6875rem !important
}

.mml-187 {
	margin-left: -11.6875rem !important
}

.mm-188 {
	margin: -11.75rem !important
}

.mmx-188 {
	margin-left: -11.75rem !important;
	margin-right: -11.75rem !important
}

.mmy-188 {
	margin-bottom: -11.75rem !important
}

.mmt-188,
.mmy-188 {
	margin-top: -11.75rem !important
}

.mmr-188 {
	margin-right: -11.75rem !important
}

.mmb-188 {
	margin-bottom: -11.75rem !important
}

.mml-188 {
	margin-left: -11.75rem !important
}

.mm-189 {
	margin: -11.8125rem !important
}

.mmx-189 {
	margin-left: -11.8125rem !important;
	margin-right: -11.8125rem !important
}

.mmy-189 {
	margin-bottom: -11.8125rem !important
}

.mmt-189,
.mmy-189 {
	margin-top: -11.8125rem !important
}

.mmr-189 {
	margin-right: -11.8125rem !important
}

.mmb-189 {
	margin-bottom: -11.8125rem !important
}

.mml-189 {
	margin-left: -11.8125rem !important
}

.mm-190 {
	margin: -11.875rem !important
}

.mmx-190 {
	margin-left: -11.875rem !important;
	margin-right: -11.875rem !important
}

.mmy-190 {
	margin-bottom: -11.875rem !important
}

.mmt-190,
.mmy-190 {
	margin-top: -11.875rem !important
}

.mmr-190 {
	margin-right: -11.875rem !important
}

.mmb-190 {
	margin-bottom: -11.875rem !important
}

.mml-190 {
	margin-left: -11.875rem !important
}

.mm-191 {
	margin: -11.9375rem !important
}

.mmx-191 {
	margin-left: -11.9375rem !important;
	margin-right: -11.9375rem !important
}

.mmy-191 {
	margin-bottom: -11.9375rem !important
}

.mmt-191,
.mmy-191 {
	margin-top: -11.9375rem !important
}

.mmr-191 {
	margin-right: -11.9375rem !important
}

.mmb-191 {
	margin-bottom: -11.9375rem !important
}

.mml-191 {
	margin-left: -11.9375rem !important
}

.mm-192 {
	margin: -12rem !important
}

.mmx-192 {
	margin-left: -12rem !important;
	margin-right: -12rem !important
}

.mmy-192 {
	margin-bottom: -12rem !important
}

.mmt-192,
.mmy-192 {
	margin-top: -12rem !important
}

.mmr-192 {
	margin-right: -12rem !important
}

.mmb-192 {
	margin-bottom: -12rem !important
}

.mml-192 {
	margin-left: -12rem !important
}

.mm-193 {
	margin: -12.0625rem !important
}

.mmx-193 {
	margin-left: -12.0625rem !important;
	margin-right: -12.0625rem !important
}

.mmy-193 {
	margin-bottom: -12.0625rem !important
}

.mmt-193,
.mmy-193 {
	margin-top: -12.0625rem !important
}

.mmr-193 {
	margin-right: -12.0625rem !important
}

.mmb-193 {
	margin-bottom: -12.0625rem !important
}

.mml-193 {
	margin-left: -12.0625rem !important
}

.mm-194 {
	margin: -12.125rem !important
}

.mmx-194 {
	margin-left: -12.125rem !important;
	margin-right: -12.125rem !important
}

.mmy-194 {
	margin-bottom: -12.125rem !important
}

.mmt-194,
.mmy-194 {
	margin-top: -12.125rem !important
}

.mmr-194 {
	margin-right: -12.125rem !important
}

.mmb-194 {
	margin-bottom: -12.125rem !important
}

.mml-194 {
	margin-left: -12.125rem !important
}

.mm-195 {
	margin: -12.1875rem !important
}

.mmx-195 {
	margin-left: -12.1875rem !important;
	margin-right: -12.1875rem !important
}

.mmy-195 {
	margin-bottom: -12.1875rem !important
}

.mmt-195,
.mmy-195 {
	margin-top: -12.1875rem !important
}

.mmr-195 {
	margin-right: -12.1875rem !important
}

.mmb-195 {
	margin-bottom: -12.1875rem !important
}

.mml-195 {
	margin-left: -12.1875rem !important
}

.mm-196 {
	margin: -12.25rem !important
}

.mmx-196 {
	margin-left: -12.25rem !important;
	margin-right: -12.25rem !important
}

.mmy-196 {
	margin-bottom: -12.25rem !important
}

.mmt-196,
.mmy-196 {
	margin-top: -12.25rem !important
}

.mmr-196 {
	margin-right: -12.25rem !important
}

.mmb-196 {
	margin-bottom: -12.25rem !important
}

.mml-196 {
	margin-left: -12.25rem !important
}

.mm-197 {
	margin: -12.3125rem !important
}

.mmx-197 {
	margin-left: -12.3125rem !important;
	margin-right: -12.3125rem !important
}

.mmy-197 {
	margin-bottom: -12.3125rem !important
}

.mmt-197,
.mmy-197 {
	margin-top: -12.3125rem !important
}

.mmr-197 {
	margin-right: -12.3125rem !important
}

.mmb-197 {
	margin-bottom: -12.3125rem !important
}

.mml-197 {
	margin-left: -12.3125rem !important
}

.mm-198 {
	margin: -12.375rem !important
}

.mmx-198 {
	margin-left: -12.375rem !important;
	margin-right: -12.375rem !important
}

.mmy-198 {
	margin-bottom: -12.375rem !important
}

.mmt-198,
.mmy-198 {
	margin-top: -12.375rem !important
}

.mmr-198 {
	margin-right: -12.375rem !important
}

.mmb-198 {
	margin-bottom: -12.375rem !important
}

.mml-198 {
	margin-left: -12.375rem !important
}

.mm-199 {
	margin: -12.4375rem !important
}

.mmx-199 {
	margin-left: -12.4375rem !important;
	margin-right: -12.4375rem !important
}

.mmy-199 {
	margin-bottom: -12.4375rem !important
}

.mmt-199,
.mmy-199 {
	margin-top: -12.4375rem !important
}

.mmr-199 {
	margin-right: -12.4375rem !important
}

.mmb-199 {
	margin-bottom: -12.4375rem !important
}

.mml-199 {
	margin-left: -12.4375rem !important
}

.mm-200 {
	margin: -12.5rem !important
}

.mmx-200 {
	margin-left: -12.5rem !important;
	margin-right: -12.5rem !important
}

.mmy-200 {
	margin-bottom: -12.5rem !important
}

.mmt-200,
.mmy-200 {
	margin-top: -12.5rem !important
}

.mmr-200 {
	margin-right: -12.5rem !important
}

.mmb-200 {
	margin-bottom: -12.5rem !important
}

.mml-200 {
	margin-left: -12.5rem !important
}

.mm-auto {
	margin: -auto !important
}

.mmx-auto {
	margin-left: -auto !important;
	margin-right: -auto !important
}

.mmy-auto {
	margin-bottom: -auto !important
}

.mmt-auto,
.mmy-auto {
	margin-top: -auto !important
}

.mmr-auto {
	margin-right: -auto !important
}

.mmb-auto {
	margin-bottom: -auto !important
}

.mml-auto {
	margin-left: -auto !important
}

@media (min-width:576px) {
	.mm-sm-0 {
		margin: 0 !important
	}

	.mmx-sm-0 {
		margin-left: 0 !important;
		margin-right: 0 !important
	}

	.mmy-sm-0 {
		margin-bottom: 0 !important
	}

	.mmt-sm-0,
	.mmy-sm-0 {
		margin-top: 0 !important
	}

	.mmr-sm-0 {
		margin-right: 0 !important
	}

	.mmb-sm-0 {
		margin-bottom: 0 !important
	}

	.mml-sm-0 {
		margin-left: 0 !important
	}

	.mm-sm-1 {
		margin: -.0625rem !important
	}

	.mmx-sm-1 {
		margin-left: -.0625rem !important;
		margin-right: -.0625rem !important
	}

	.mmy-sm-1 {
		margin-bottom: -.0625rem !important
	}

	.mmt-sm-1,
	.mmy-sm-1 {
		margin-top: -.0625rem !important
	}

	.mmr-sm-1 {
		margin-right: -.0625rem !important
	}

	.mmb-sm-1 {
		margin-bottom: -.0625rem !important
	}

	.mml-sm-1 {
		margin-left: -.0625rem !important
	}

	.mm-sm-2 {
		margin: -.125rem !important
	}

	.mmx-sm-2 {
		margin-left: -.125rem !important;
		margin-right: -.125rem !important
	}

	.mmy-sm-2 {
		margin-bottom: -.125rem !important
	}

	.mmt-sm-2,
	.mmy-sm-2 {
		margin-top: -.125rem !important
	}

	.mmr-sm-2 {
		margin-right: -.125rem !important
	}

	.mmb-sm-2 {
		margin-bottom: -.125rem !important
	}

	.mml-sm-2 {
		margin-left: -.125rem !important
	}

	.mm-sm-3 {
		margin: -.1875rem !important
	}

	.mmx-sm-3 {
		margin-left: -.1875rem !important;
		margin-right: -.1875rem !important
	}

	.mmy-sm-3 {
		margin-bottom: -.1875rem !important
	}

	.mmt-sm-3,
	.mmy-sm-3 {
		margin-top: -.1875rem !important
	}

	.mmr-sm-3 {
		margin-right: -.1875rem !important
	}

	.mmb-sm-3 {
		margin-bottom: -.1875rem !important
	}

	.mml-sm-3 {
		margin-left: -.1875rem !important
	}

	.mm-sm-4 {
		margin: -.25rem !important
	}

	.mmx-sm-4 {
		margin-left: -.25rem !important;
		margin-right: -.25rem !important
	}

	.mmy-sm-4 {
		margin-bottom: -.25rem !important
	}

	.mmt-sm-4,
	.mmy-sm-4 {
		margin-top: -.25rem !important
	}

	.mmr-sm-4 {
		margin-right: -.25rem !important
	}

	.mmb-sm-4 {
		margin-bottom: -.25rem !important
	}

	.mml-sm-4 {
		margin-left: -.25rem !important
	}

	.mm-sm-5 {
		margin: -.3125rem !important
	}

	.mmx-sm-5 {
		margin-left: -.3125rem !important;
		margin-right: -.3125rem !important
	}

	.mmy-sm-5 {
		margin-bottom: -.3125rem !important
	}

	.mmt-sm-5,
	.mmy-sm-5 {
		margin-top: -.3125rem !important
	}

	.mmr-sm-5 {
		margin-right: -.3125rem !important
	}

	.mmb-sm-5 {
		margin-bottom: -.3125rem !important
	}

	.mml-sm-5 {
		margin-left: -.3125rem !important
	}

	.mm-sm-6 {
		margin: -.375rem !important
	}

	.mmx-sm-6 {
		margin-left: -.375rem !important;
		margin-right: -.375rem !important
	}

	.mmy-sm-6 {
		margin-bottom: -.375rem !important
	}

	.mmt-sm-6,
	.mmy-sm-6 {
		margin-top: -.375rem !important
	}

	.mmr-sm-6 {
		margin-right: -.375rem !important
	}

	.mmb-sm-6 {
		margin-bottom: -.375rem !important
	}

	.mml-sm-6 {
		margin-left: -.375rem !important
	}

	.mm-sm-7 {
		margin: -.4375rem !important
	}

	.mmx-sm-7 {
		margin-left: -.4375rem !important;
		margin-right: -.4375rem !important
	}

	.mmy-sm-7 {
		margin-bottom: -.4375rem !important
	}

	.mmt-sm-7,
	.mmy-sm-7 {
		margin-top: -.4375rem !important
	}

	.mmr-sm-7 {
		margin-right: -.4375rem !important
	}

	.mmb-sm-7 {
		margin-bottom: -.4375rem !important
	}

	.mml-sm-7 {
		margin-left: -.4375rem !important
	}

	.mm-sm-8 {
		margin: -.5rem !important
	}

	.mmx-sm-8 {
		margin-left: -.5rem !important;
		margin-right: -.5rem !important
	}

	.mmy-sm-8 {
		margin-bottom: -.5rem !important
	}

	.mmt-sm-8,
	.mmy-sm-8 {
		margin-top: -.5rem !important
	}

	.mmr-sm-8 {
		margin-right: -.5rem !important
	}

	.mmb-sm-8 {
		margin-bottom: -.5rem !important
	}

	.mml-sm-8 {
		margin-left: -.5rem !important
	}

	.mm-sm-9 {
		margin: -.5625rem !important
	}

	.mmx-sm-9 {
		margin-left: -.5625rem !important;
		margin-right: -.5625rem !important
	}

	.mmy-sm-9 {
		margin-bottom: -.5625rem !important
	}

	.mmt-sm-9,
	.mmy-sm-9 {
		margin-top: -.5625rem !important
	}

	.mmr-sm-9 {
		margin-right: -.5625rem !important
	}

	.mmb-sm-9 {
		margin-bottom: -.5625rem !important
	}

	.mml-sm-9 {
		margin-left: -.5625rem !important
	}

	.mm-sm-10 {
		margin: -.625rem !important
	}

	.mmx-sm-10 {
		margin-left: -.625rem !important;
		margin-right: -.625rem !important
	}

	.mmy-sm-10 {
		margin-bottom: -.625rem !important
	}

	.mmt-sm-10,
	.mmy-sm-10 {
		margin-top: -.625rem !important
	}

	.mmr-sm-10 {
		margin-right: -.625rem !important
	}

	.mmb-sm-10 {
		margin-bottom: -.625rem !important
	}

	.mml-sm-10 {
		margin-left: -.625rem !important
	}

	.mm-sm-11 {
		margin: -.6875rem !important
	}

	.mmx-sm-11 {
		margin-left: -.6875rem !important;
		margin-right: -.6875rem !important
	}

	.mmy-sm-11 {
		margin-bottom: -.6875rem !important
	}

	.mmt-sm-11,
	.mmy-sm-11 {
		margin-top: -.6875rem !important
	}

	.mmr-sm-11 {
		margin-right: -.6875rem !important
	}

	.mmb-sm-11 {
		margin-bottom: -.6875rem !important
	}

	.mml-sm-11 {
		margin-left: -.6875rem !important
	}

	.mm-sm-12 {
		margin: -.75rem !important
	}

	.mmx-sm-12 {
		margin-left: -.75rem !important;
		margin-right: -.75rem !important
	}

	.mmy-sm-12 {
		margin-bottom: -.75rem !important
	}

	.mmt-sm-12,
	.mmy-sm-12 {
		margin-top: -.75rem !important
	}

	.mmr-sm-12 {
		margin-right: -.75rem !important
	}

	.mmb-sm-12 {
		margin-bottom: -.75rem !important
	}

	.mml-sm-12 {
		margin-left: -.75rem !important
	}

	.mm-sm-13 {
		margin: -.8125rem !important
	}

	.mmx-sm-13 {
		margin-left: -.8125rem !important;
		margin-right: -.8125rem !important
	}

	.mmy-sm-13 {
		margin-bottom: -.8125rem !important
	}

	.mmt-sm-13,
	.mmy-sm-13 {
		margin-top: -.8125rem !important
	}

	.mmr-sm-13 {
		margin-right: -.8125rem !important
	}

	.mmb-sm-13 {
		margin-bottom: -.8125rem !important
	}

	.mml-sm-13 {
		margin-left: -.8125rem !important
	}

	.mm-sm-14 {
		margin: -.875rem !important
	}

	.mmx-sm-14 {
		margin-left: -.875rem !important;
		margin-right: -.875rem !important
	}

	.mmy-sm-14 {
		margin-bottom: -.875rem !important
	}

	.mmt-sm-14,
	.mmy-sm-14 {
		margin-top: -.875rem !important
	}

	.mmr-sm-14 {
		margin-right: -.875rem !important
	}

	.mmb-sm-14 {
		margin-bottom: -.875rem !important
	}

	.mml-sm-14 {
		margin-left: -.875rem !important
	}

	.mm-sm-15 {
		margin: -.9375rem !important
	}

	.mmx-sm-15 {
		margin-left: -.9375rem !important;
		margin-right: -.9375rem !important
	}

	.mmy-sm-15 {
		margin-bottom: -.9375rem !important
	}

	.mmt-sm-15,
	.mmy-sm-15 {
		margin-top: -.9375rem !important
	}

	.mmr-sm-15 {
		margin-right: -.9375rem !important
	}

	.mmb-sm-15 {
		margin-bottom: -.9375rem !important
	}

	.mml-sm-15 {
		margin-left: -.9375rem !important
	}

	.mm-sm-16 {
		margin: -1rem !important
	}

	.mmx-sm-16 {
		margin-left: -1rem !important;
		margin-right: -1rem !important
	}

	.mmy-sm-16 {
		margin-bottom: -1rem !important
	}

	.mmt-sm-16,
	.mmy-sm-16 {
		margin-top: -1rem !important
	}

	.mmr-sm-16 {
		margin-right: -1rem !important
	}

	.mmb-sm-16 {
		margin-bottom: -1rem !important
	}

	.mml-sm-16 {
		margin-left: -1rem !important
	}

	.mm-sm-17 {
		margin: -1.0625rem !important
	}

	.mmx-sm-17 {
		margin-left: -1.0625rem !important;
		margin-right: -1.0625rem !important
	}

	.mmy-sm-17 {
		margin-bottom: -1.0625rem !important
	}

	.mmt-sm-17,
	.mmy-sm-17 {
		margin-top: -1.0625rem !important
	}

	.mmr-sm-17 {
		margin-right: -1.0625rem !important
	}

	.mmb-sm-17 {
		margin-bottom: -1.0625rem !important
	}

	.mml-sm-17 {
		margin-left: -1.0625rem !important
	}

	.mm-sm-18 {
		margin: -1.125rem !important
	}

	.mmx-sm-18 {
		margin-left: -1.125rem !important;
		margin-right: -1.125rem !important
	}

	.mmy-sm-18 {
		margin-bottom: -1.125rem !important
	}

	.mmt-sm-18,
	.mmy-sm-18 {
		margin-top: -1.125rem !important
	}

	.mmr-sm-18 {
		margin-right: -1.125rem !important
	}

	.mmb-sm-18 {
		margin-bottom: -1.125rem !important
	}

	.mml-sm-18 {
		margin-left: -1.125rem !important
	}

	.mm-sm-19 {
		margin: -1.1875rem !important
	}

	.mmx-sm-19 {
		margin-left: -1.1875rem !important;
		margin-right: -1.1875rem !important
	}

	.mmy-sm-19 {
		margin-bottom: -1.1875rem !important
	}

	.mmt-sm-19,
	.mmy-sm-19 {
		margin-top: -1.1875rem !important
	}

	.mmr-sm-19 {
		margin-right: -1.1875rem !important
	}

	.mmb-sm-19 {
		margin-bottom: -1.1875rem !important
	}

	.mml-sm-19 {
		margin-left: -1.1875rem !important
	}

	.mm-sm-20 {
		margin: -1.25rem !important
	}

	.mmx-sm-20 {
		margin-left: -1.25rem !important;
		margin-right: -1.25rem !important
	}

	.mmy-sm-20 {
		margin-bottom: -1.25rem !important
	}

	.mmt-sm-20,
	.mmy-sm-20 {
		margin-top: -1.25rem !important
	}

	.mmr-sm-20 {
		margin-right: -1.25rem !important
	}

	.mmb-sm-20 {
		margin-bottom: -1.25rem !important
	}

	.mml-sm-20 {
		margin-left: -1.25rem !important
	}

	.mm-sm-21 {
		margin: -1.3125rem !important
	}

	.mmx-sm-21 {
		margin-left: -1.3125rem !important;
		margin-right: -1.3125rem !important
	}

	.mmy-sm-21 {
		margin-bottom: -1.3125rem !important
	}

	.mmt-sm-21,
	.mmy-sm-21 {
		margin-top: -1.3125rem !important
	}

	.mmr-sm-21 {
		margin-right: -1.3125rem !important
	}

	.mmb-sm-21 {
		margin-bottom: -1.3125rem !important
	}

	.mml-sm-21 {
		margin-left: -1.3125rem !important
	}

	.mm-sm-22 {
		margin: -1.375rem !important
	}

	.mmx-sm-22 {
		margin-left: -1.375rem !important;
		margin-right: -1.375rem !important
	}

	.mmy-sm-22 {
		margin-bottom: -1.375rem !important
	}

	.mmt-sm-22,
	.mmy-sm-22 {
		margin-top: -1.375rem !important
	}

	.mmr-sm-22 {
		margin-right: -1.375rem !important
	}

	.mmb-sm-22 {
		margin-bottom: -1.375rem !important
	}

	.mml-sm-22 {
		margin-left: -1.375rem !important
	}

	.mm-sm-23 {
		margin: -1.4375rem !important
	}

	.mmx-sm-23 {
		margin-left: -1.4375rem !important;
		margin-right: -1.4375rem !important
	}

	.mmy-sm-23 {
		margin-bottom: -1.4375rem !important
	}

	.mmt-sm-23,
	.mmy-sm-23 {
		margin-top: -1.4375rem !important
	}

	.mmr-sm-23 {
		margin-right: -1.4375rem !important
	}

	.mmb-sm-23 {
		margin-bottom: -1.4375rem !important
	}

	.mml-sm-23 {
		margin-left: -1.4375rem !important
	}

	.mm-sm-24 {
		margin: -1.5rem !important
	}

	.mmx-sm-24 {
		margin-left: -1.5rem !important;
		margin-right: -1.5rem !important
	}

	.mmy-sm-24 {
		margin-bottom: -1.5rem !important
	}

	.mmt-sm-24,
	.mmy-sm-24 {
		margin-top: -1.5rem !important
	}

	.mmr-sm-24 {
		margin-right: -1.5rem !important
	}

	.mmb-sm-24 {
		margin-bottom: -1.5rem !important
	}

	.mml-sm-24 {
		margin-left: -1.5rem !important
	}

	.mm-sm-25 {
		margin: -1.5625rem !important
	}

	.mmx-sm-25 {
		margin-left: -1.5625rem !important;
		margin-right: -1.5625rem !important
	}

	.mmy-sm-25 {
		margin-bottom: -1.5625rem !important
	}

	.mmt-sm-25,
	.mmy-sm-25 {
		margin-top: -1.5625rem !important
	}

	.mmr-sm-25 {
		margin-right: -1.5625rem !important
	}

	.mmb-sm-25 {
		margin-bottom: -1.5625rem !important
	}

	.mml-sm-25 {
		margin-left: -1.5625rem !important
	}

	.mm-sm-26 {
		margin: -1.625rem !important
	}

	.mmx-sm-26 {
		margin-left: -1.625rem !important;
		margin-right: -1.625rem !important
	}

	.mmy-sm-26 {
		margin-bottom: -1.625rem !important
	}

	.mmt-sm-26,
	.mmy-sm-26 {
		margin-top: -1.625rem !important
	}

	.mmr-sm-26 {
		margin-right: -1.625rem !important
	}

	.mmb-sm-26 {
		margin-bottom: -1.625rem !important
	}

	.mml-sm-26 {
		margin-left: -1.625rem !important
	}

	.mm-sm-27 {
		margin: -1.6875rem !important
	}

	.mmx-sm-27 {
		margin-left: -1.6875rem !important;
		margin-right: -1.6875rem !important
	}

	.mmy-sm-27 {
		margin-bottom: -1.6875rem !important
	}

	.mmt-sm-27,
	.mmy-sm-27 {
		margin-top: -1.6875rem !important
	}

	.mmr-sm-27 {
		margin-right: -1.6875rem !important
	}

	.mmb-sm-27 {
		margin-bottom: -1.6875rem !important
	}

	.mml-sm-27 {
		margin-left: -1.6875rem !important
	}

	.mm-sm-28 {
		margin: -1.75rem !important
	}

	.mmx-sm-28 {
		margin-left: -1.75rem !important;
		margin-right: -1.75rem !important
	}

	.mmy-sm-28 {
		margin-bottom: -1.75rem !important
	}

	.mmt-sm-28,
	.mmy-sm-28 {
		margin-top: -1.75rem !important
	}

	.mmr-sm-28 {
		margin-right: -1.75rem !important
	}

	.mmb-sm-28 {
		margin-bottom: -1.75rem !important
	}

	.mml-sm-28 {
		margin-left: -1.75rem !important
	}

	.mm-sm-29 {
		margin: -1.8125rem !important
	}

	.mmx-sm-29 {
		margin-left: -1.8125rem !important;
		margin-right: -1.8125rem !important
	}

	.mmy-sm-29 {
		margin-bottom: -1.8125rem !important
	}

	.mmt-sm-29,
	.mmy-sm-29 {
		margin-top: -1.8125rem !important
	}

	.mmr-sm-29 {
		margin-right: -1.8125rem !important
	}

	.mmb-sm-29 {
		margin-bottom: -1.8125rem !important
	}

	.mml-sm-29 {
		margin-left: -1.8125rem !important
	}

	.mm-sm-30 {
		margin: -1.875rem !important
	}

	.mmx-sm-30 {
		margin-left: -1.875rem !important;
		margin-right: -1.875rem !important
	}

	.mmy-sm-30 {
		margin-bottom: -1.875rem !important
	}

	.mmt-sm-30,
	.mmy-sm-30 {
		margin-top: -1.875rem !important
	}

	.mmr-sm-30 {
		margin-right: -1.875rem !important
	}

	.mmb-sm-30 {
		margin-bottom: -1.875rem !important
	}

	.mml-sm-30 {
		margin-left: -1.875rem !important
	}

	.mm-sm-31 {
		margin: -1.9375rem !important
	}

	.mmx-sm-31 {
		margin-left: -1.9375rem !important;
		margin-right: -1.9375rem !important
	}

	.mmy-sm-31 {
		margin-bottom: -1.9375rem !important
	}

	.mmt-sm-31,
	.mmy-sm-31 {
		margin-top: -1.9375rem !important
	}

	.mmr-sm-31 {
		margin-right: -1.9375rem !important
	}

	.mmb-sm-31 {
		margin-bottom: -1.9375rem !important
	}

	.mml-sm-31 {
		margin-left: -1.9375rem !important
	}

	.mm-sm-32 {
		margin: -2rem !important
	}

	.mmx-sm-32 {
		margin-left: -2rem !important;
		margin-right: -2rem !important
	}

	.mmy-sm-32 {
		margin-bottom: -2rem !important
	}

	.mmt-sm-32,
	.mmy-sm-32 {
		margin-top: -2rem !important
	}

	.mmr-sm-32 {
		margin-right: -2rem !important
	}

	.mmb-sm-32 {
		margin-bottom: -2rem !important
	}

	.mml-sm-32 {
		margin-left: -2rem !important
	}

	.mm-sm-33 {
		margin: -2.0625rem !important
	}

	.mmx-sm-33 {
		margin-left: -2.0625rem !important;
		margin-right: -2.0625rem !important
	}

	.mmy-sm-33 {
		margin-bottom: -2.0625rem !important
	}

	.mmt-sm-33,
	.mmy-sm-33 {
		margin-top: -2.0625rem !important
	}

	.mmr-sm-33 {
		margin-right: -2.0625rem !important
	}

	.mmb-sm-33 {
		margin-bottom: -2.0625rem !important
	}

	.mml-sm-33 {
		margin-left: -2.0625rem !important
	}

	.mm-sm-34 {
		margin: -2.125rem !important
	}

	.mmx-sm-34 {
		margin-left: -2.125rem !important;
		margin-right: -2.125rem !important
	}

	.mmy-sm-34 {
		margin-bottom: -2.125rem !important
	}

	.mmt-sm-34,
	.mmy-sm-34 {
		margin-top: -2.125rem !important
	}

	.mmr-sm-34 {
		margin-right: -2.125rem !important
	}

	.mmb-sm-34 {
		margin-bottom: -2.125rem !important
	}

	.mml-sm-34 {
		margin-left: -2.125rem !important
	}

	.mm-sm-35 {
		margin: -2.1875rem !important
	}

	.mmx-sm-35 {
		margin-left: -2.1875rem !important;
		margin-right: -2.1875rem !important
	}

	.mmy-sm-35 {
		margin-bottom: -2.1875rem !important
	}

	.mmt-sm-35,
	.mmy-sm-35 {
		margin-top: -2.1875rem !important
	}

	.mmr-sm-35 {
		margin-right: -2.1875rem !important
	}

	.mmb-sm-35 {
		margin-bottom: -2.1875rem !important
	}

	.mml-sm-35 {
		margin-left: -2.1875rem !important
	}

	.mm-sm-36 {
		margin: -2.25rem !important
	}

	.mmx-sm-36 {
		margin-left: -2.25rem !important;
		margin-right: -2.25rem !important
	}

	.mmy-sm-36 {
		margin-bottom: -2.25rem !important
	}

	.mmt-sm-36,
	.mmy-sm-36 {
		margin-top: -2.25rem !important
	}

	.mmr-sm-36 {
		margin-right: -2.25rem !important
	}

	.mmb-sm-36 {
		margin-bottom: -2.25rem !important
	}

	.mml-sm-36 {
		margin-left: -2.25rem !important
	}

	.mm-sm-37 {
		margin: -2.3125rem !important
	}

	.mmx-sm-37 {
		margin-left: -2.3125rem !important;
		margin-right: -2.3125rem !important
	}

	.mmy-sm-37 {
		margin-bottom: -2.3125rem !important
	}

	.mmt-sm-37,
	.mmy-sm-37 {
		margin-top: -2.3125rem !important
	}

	.mmr-sm-37 {
		margin-right: -2.3125rem !important
	}

	.mmb-sm-37 {
		margin-bottom: -2.3125rem !important
	}

	.mml-sm-37 {
		margin-left: -2.3125rem !important
	}

	.mm-sm-38 {
		margin: -2.375rem !important
	}

	.mmx-sm-38 {
		margin-left: -2.375rem !important;
		margin-right: -2.375rem !important
	}

	.mmy-sm-38 {
		margin-bottom: -2.375rem !important
	}

	.mmt-sm-38,
	.mmy-sm-38 {
		margin-top: -2.375rem !important
	}

	.mmr-sm-38 {
		margin-right: -2.375rem !important
	}

	.mmb-sm-38 {
		margin-bottom: -2.375rem !important
	}

	.mml-sm-38 {
		margin-left: -2.375rem !important
	}

	.mm-sm-39 {
		margin: -2.4375rem !important
	}

	.mmx-sm-39 {
		margin-left: -2.4375rem !important;
		margin-right: -2.4375rem !important
	}

	.mmy-sm-39 {
		margin-bottom: -2.4375rem !important
	}

	.mmt-sm-39,
	.mmy-sm-39 {
		margin-top: -2.4375rem !important
	}

	.mmr-sm-39 {
		margin-right: -2.4375rem !important
	}

	.mmb-sm-39 {
		margin-bottom: -2.4375rem !important
	}

	.mml-sm-39 {
		margin-left: -2.4375rem !important
	}

	.mm-sm-40 {
		margin: -2.5rem !important
	}

	.mmx-sm-40 {
		margin-left: -2.5rem !important;
		margin-right: -2.5rem !important
	}

	.mmy-sm-40 {
		margin-bottom: -2.5rem !important
	}

	.mmt-sm-40,
	.mmy-sm-40 {
		margin-top: -2.5rem !important
	}

	.mmr-sm-40 {
		margin-right: -2.5rem !important
	}

	.mmb-sm-40 {
		margin-bottom: -2.5rem !important
	}

	.mml-sm-40 {
		margin-left: -2.5rem !important
	}

	.mm-sm-41 {
		margin: -2.5625rem !important
	}

	.mmx-sm-41 {
		margin-left: -2.5625rem !important;
		margin-right: -2.5625rem !important
	}

	.mmy-sm-41 {
		margin-bottom: -2.5625rem !important
	}

	.mmt-sm-41,
	.mmy-sm-41 {
		margin-top: -2.5625rem !important
	}

	.mmr-sm-41 {
		margin-right: -2.5625rem !important
	}

	.mmb-sm-41 {
		margin-bottom: -2.5625rem !important
	}

	.mml-sm-41 {
		margin-left: -2.5625rem !important
	}

	.mm-sm-42 {
		margin: -2.625rem !important
	}

	.mmx-sm-42 {
		margin-left: -2.625rem !important;
		margin-right: -2.625rem !important
	}

	.mmy-sm-42 {
		margin-bottom: -2.625rem !important
	}

	.mmt-sm-42,
	.mmy-sm-42 {
		margin-top: -2.625rem !important
	}

	.mmr-sm-42 {
		margin-right: -2.625rem !important
	}

	.mmb-sm-42 {
		margin-bottom: -2.625rem !important
	}

	.mml-sm-42 {
		margin-left: -2.625rem !important
	}

	.mm-sm-43 {
		margin: -2.6875rem !important
	}

	.mmx-sm-43 {
		margin-left: -2.6875rem !important;
		margin-right: -2.6875rem !important
	}

	.mmy-sm-43 {
		margin-bottom: -2.6875rem !important
	}

	.mmt-sm-43,
	.mmy-sm-43 {
		margin-top: -2.6875rem !important
	}

	.mmr-sm-43 {
		margin-right: -2.6875rem !important
	}

	.mmb-sm-43 {
		margin-bottom: -2.6875rem !important
	}

	.mml-sm-43 {
		margin-left: -2.6875rem !important
	}

	.mm-sm-44 {
		margin: -2.75rem !important
	}

	.mmx-sm-44 {
		margin-left: -2.75rem !important;
		margin-right: -2.75rem !important
	}

	.mmy-sm-44 {
		margin-bottom: -2.75rem !important
	}

	.mmt-sm-44,
	.mmy-sm-44 {
		margin-top: -2.75rem !important
	}

	.mmr-sm-44 {
		margin-right: -2.75rem !important
	}

	.mmb-sm-44 {
		margin-bottom: -2.75rem !important
	}

	.mml-sm-44 {
		margin-left: -2.75rem !important
	}

	.mm-sm-45 {
		margin: -2.8125rem !important
	}

	.mmx-sm-45 {
		margin-left: -2.8125rem !important;
		margin-right: -2.8125rem !important
	}

	.mmy-sm-45 {
		margin-bottom: -2.8125rem !important
	}

	.mmt-sm-45,
	.mmy-sm-45 {
		margin-top: -2.8125rem !important
	}

	.mmr-sm-45 {
		margin-right: -2.8125rem !important
	}

	.mmb-sm-45 {
		margin-bottom: -2.8125rem !important
	}

	.mml-sm-45 {
		margin-left: -2.8125rem !important
	}

	.mm-sm-46 {
		margin: -2.875rem !important
	}

	.mmx-sm-46 {
		margin-left: -2.875rem !important;
		margin-right: -2.875rem !important
	}

	.mmy-sm-46 {
		margin-bottom: -2.875rem !important
	}

	.mmt-sm-46,
	.mmy-sm-46 {
		margin-top: -2.875rem !important
	}

	.mmr-sm-46 {
		margin-right: -2.875rem !important
	}

	.mmb-sm-46 {
		margin-bottom: -2.875rem !important
	}

	.mml-sm-46 {
		margin-left: -2.875rem !important
	}

	.mm-sm-47 {
		margin: -2.9375rem !important
	}

	.mmx-sm-47 {
		margin-left: -2.9375rem !important;
		margin-right: -2.9375rem !important
	}

	.mmy-sm-47 {
		margin-bottom: -2.9375rem !important
	}

	.mmt-sm-47,
	.mmy-sm-47 {
		margin-top: -2.9375rem !important
	}

	.mmr-sm-47 {
		margin-right: -2.9375rem !important
	}

	.mmb-sm-47 {
		margin-bottom: -2.9375rem !important
	}

	.mml-sm-47 {
		margin-left: -2.9375rem !important
	}

	.mm-sm-48 {
		margin: -3rem !important
	}

	.mmx-sm-48 {
		margin-left: -3rem !important;
		margin-right: -3rem !important
	}

	.mmy-sm-48 {
		margin-bottom: -3rem !important
	}

	.mmt-sm-48,
	.mmy-sm-48 {
		margin-top: -3rem !important
	}

	.mmr-sm-48 {
		margin-right: -3rem !important
	}

	.mmb-sm-48 {
		margin-bottom: -3rem !important
	}

	.mml-sm-48 {
		margin-left: -3rem !important
	}

	.mm-sm-49 {
		margin: -3.0625rem !important
	}

	.mmx-sm-49 {
		margin-left: -3.0625rem !important;
		margin-right: -3.0625rem !important
	}

	.mmy-sm-49 {
		margin-bottom: -3.0625rem !important
	}

	.mmt-sm-49,
	.mmy-sm-49 {
		margin-top: -3.0625rem !important
	}

	.mmr-sm-49 {
		margin-right: -3.0625rem !important
	}

	.mmb-sm-49 {
		margin-bottom: -3.0625rem !important
	}

	.mml-sm-49 {
		margin-left: -3.0625rem !important
	}

	.mm-sm-50 {
		margin: -3.125rem !important
	}

	.mmx-sm-50 {
		margin-left: -3.125rem !important;
		margin-right: -3.125rem !important
	}

	.mmy-sm-50 {
		margin-bottom: -3.125rem !important
	}

	.mmt-sm-50,
	.mmy-sm-50 {
		margin-top: -3.125rem !important
	}

	.mmr-sm-50 {
		margin-right: -3.125rem !important
	}

	.mmb-sm-50 {
		margin-bottom: -3.125rem !important
	}

	.mml-sm-50 {
		margin-left: -3.125rem !important
	}

	.mm-sm-51 {
		margin: -3.1875rem !important
	}

	.mmx-sm-51 {
		margin-left: -3.1875rem !important;
		margin-right: -3.1875rem !important
	}

	.mmy-sm-51 {
		margin-bottom: -3.1875rem !important
	}

	.mmt-sm-51,
	.mmy-sm-51 {
		margin-top: -3.1875rem !important
	}

	.mmr-sm-51 {
		margin-right: -3.1875rem !important
	}

	.mmb-sm-51 {
		margin-bottom: -3.1875rem !important
	}

	.mml-sm-51 {
		margin-left: -3.1875rem !important
	}

	.mm-sm-52 {
		margin: -3.25rem !important
	}

	.mmx-sm-52 {
		margin-left: -3.25rem !important;
		margin-right: -3.25rem !important
	}

	.mmy-sm-52 {
		margin-bottom: -3.25rem !important
	}

	.mmt-sm-52,
	.mmy-sm-52 {
		margin-top: -3.25rem !important
	}

	.mmr-sm-52 {
		margin-right: -3.25rem !important
	}

	.mmb-sm-52 {
		margin-bottom: -3.25rem !important
	}

	.mml-sm-52 {
		margin-left: -3.25rem !important
	}

	.mm-sm-53 {
		margin: -3.3125rem !important
	}

	.mmx-sm-53 {
		margin-left: -3.3125rem !important;
		margin-right: -3.3125rem !important
	}

	.mmy-sm-53 {
		margin-bottom: -3.3125rem !important
	}

	.mmt-sm-53,
	.mmy-sm-53 {
		margin-top: -3.3125rem !important
	}

	.mmr-sm-53 {
		margin-right: -3.3125rem !important
	}

	.mmb-sm-53 {
		margin-bottom: -3.3125rem !important
	}

	.mml-sm-53 {
		margin-left: -3.3125rem !important
	}

	.mm-sm-54 {
		margin: -3.375rem !important
	}

	.mmx-sm-54 {
		margin-left: -3.375rem !important;
		margin-right: -3.375rem !important
	}

	.mmy-sm-54 {
		margin-bottom: -3.375rem !important
	}

	.mmt-sm-54,
	.mmy-sm-54 {
		margin-top: -3.375rem !important
	}

	.mmr-sm-54 {
		margin-right: -3.375rem !important
	}

	.mmb-sm-54 {
		margin-bottom: -3.375rem !important
	}

	.mml-sm-54 {
		margin-left: -3.375rem !important
	}

	.mm-sm-55 {
		margin: -3.4375rem !important
	}

	.mmx-sm-55 {
		margin-left: -3.4375rem !important;
		margin-right: -3.4375rem !important
	}

	.mmy-sm-55 {
		margin-bottom: -3.4375rem !important
	}

	.mmt-sm-55,
	.mmy-sm-55 {
		margin-top: -3.4375rem !important
	}

	.mmr-sm-55 {
		margin-right: -3.4375rem !important
	}

	.mmb-sm-55 {
		margin-bottom: -3.4375rem !important
	}

	.mml-sm-55 {
		margin-left: -3.4375rem !important
	}

	.mm-sm-56 {
		margin: -3.5rem !important
	}

	.mmx-sm-56 {
		margin-left: -3.5rem !important;
		margin-right: -3.5rem !important
	}

	.mmy-sm-56 {
		margin-bottom: -3.5rem !important
	}

	.mmt-sm-56,
	.mmy-sm-56 {
		margin-top: -3.5rem !important
	}

	.mmr-sm-56 {
		margin-right: -3.5rem !important
	}

	.mmb-sm-56 {
		margin-bottom: -3.5rem !important
	}

	.mml-sm-56 {
		margin-left: -3.5rem !important
	}

	.mm-sm-57 {
		margin: -3.5625rem !important
	}

	.mmx-sm-57 {
		margin-left: -3.5625rem !important;
		margin-right: -3.5625rem !important
	}

	.mmy-sm-57 {
		margin-bottom: -3.5625rem !important
	}

	.mmt-sm-57,
	.mmy-sm-57 {
		margin-top: -3.5625rem !important
	}

	.mmr-sm-57 {
		margin-right: -3.5625rem !important
	}

	.mmb-sm-57 {
		margin-bottom: -3.5625rem !important
	}

	.mml-sm-57 {
		margin-left: -3.5625rem !important
	}

	.mm-sm-58 {
		margin: -3.625rem !important
	}

	.mmx-sm-58 {
		margin-left: -3.625rem !important;
		margin-right: -3.625rem !important
	}

	.mmy-sm-58 {
		margin-bottom: -3.625rem !important
	}

	.mmt-sm-58,
	.mmy-sm-58 {
		margin-top: -3.625rem !important
	}

	.mmr-sm-58 {
		margin-right: -3.625rem !important
	}

	.mmb-sm-58 {
		margin-bottom: -3.625rem !important
	}

	.mml-sm-58 {
		margin-left: -3.625rem !important
	}

	.mm-sm-59 {
		margin: -3.6875rem !important
	}

	.mmx-sm-59 {
		margin-left: -3.6875rem !important;
		margin-right: -3.6875rem !important
	}

	.mmy-sm-59 {
		margin-bottom: -3.6875rem !important
	}

	.mmt-sm-59,
	.mmy-sm-59 {
		margin-top: -3.6875rem !important
	}

	.mmr-sm-59 {
		margin-right: -3.6875rem !important
	}

	.mmb-sm-59 {
		margin-bottom: -3.6875rem !important
	}

	.mml-sm-59 {
		margin-left: -3.6875rem !important
	}

	.mm-sm-60 {
		margin: -3.75rem !important
	}

	.mmx-sm-60 {
		margin-left: -3.75rem !important;
		margin-right: -3.75rem !important
	}

	.mmy-sm-60 {
		margin-bottom: -3.75rem !important
	}

	.mmt-sm-60,
	.mmy-sm-60 {
		margin-top: -3.75rem !important
	}

	.mmr-sm-60 {
		margin-right: -3.75rem !important
	}

	.mmb-sm-60 {
		margin-bottom: -3.75rem !important
	}

	.mml-sm-60 {
		margin-left: -3.75rem !important
	}

	.mm-sm-61 {
		margin: -3.8125rem !important
	}

	.mmx-sm-61 {
		margin-left: -3.8125rem !important;
		margin-right: -3.8125rem !important
	}

	.mmy-sm-61 {
		margin-bottom: -3.8125rem !important
	}

	.mmt-sm-61,
	.mmy-sm-61 {
		margin-top: -3.8125rem !important
	}

	.mmr-sm-61 {
		margin-right: -3.8125rem !important
	}

	.mmb-sm-61 {
		margin-bottom: -3.8125rem !important
	}

	.mml-sm-61 {
		margin-left: -3.8125rem !important
	}

	.mm-sm-62 {
		margin: -3.875rem !important
	}

	.mmx-sm-62 {
		margin-left: -3.875rem !important;
		margin-right: -3.875rem !important
	}

	.mmy-sm-62 {
		margin-bottom: -3.875rem !important
	}

	.mmt-sm-62,
	.mmy-sm-62 {
		margin-top: -3.875rem !important
	}

	.mmr-sm-62 {
		margin-right: -3.875rem !important
	}

	.mmb-sm-62 {
		margin-bottom: -3.875rem !important
	}

	.mml-sm-62 {
		margin-left: -3.875rem !important
	}

	.mm-sm-63 {
		margin: -3.9375rem !important
	}

	.mmx-sm-63 {
		margin-left: -3.9375rem !important;
		margin-right: -3.9375rem !important
	}

	.mmy-sm-63 {
		margin-bottom: -3.9375rem !important
	}

	.mmt-sm-63,
	.mmy-sm-63 {
		margin-top: -3.9375rem !important
	}

	.mmr-sm-63 {
		margin-right: -3.9375rem !important
	}

	.mmb-sm-63 {
		margin-bottom: -3.9375rem !important
	}

	.mml-sm-63 {
		margin-left: -3.9375rem !important
	}

	.mm-sm-64 {
		margin: -4rem !important
	}

	.mmx-sm-64 {
		margin-left: -4rem !important;
		margin-right: -4rem !important
	}

	.mmy-sm-64 {
		margin-bottom: -4rem !important
	}

	.mmt-sm-64,
	.mmy-sm-64 {
		margin-top: -4rem !important
	}

	.mmr-sm-64 {
		margin-right: -4rem !important
	}

	.mmb-sm-64 {
		margin-bottom: -4rem !important
	}

	.mml-sm-64 {
		margin-left: -4rem !important
	}

	.mm-sm-65 {
		margin: -4.0625rem !important
	}

	.mmx-sm-65 {
		margin-left: -4.0625rem !important;
		margin-right: -4.0625rem !important
	}

	.mmy-sm-65 {
		margin-bottom: -4.0625rem !important
	}

	.mmt-sm-65,
	.mmy-sm-65 {
		margin-top: -4.0625rem !important
	}

	.mmr-sm-65 {
		margin-right: -4.0625rem !important
	}

	.mmb-sm-65 {
		margin-bottom: -4.0625rem !important
	}

	.mml-sm-65 {
		margin-left: -4.0625rem !important
	}

	.mm-sm-66 {
		margin: -4.125rem !important
	}

	.mmx-sm-66 {
		margin-left: -4.125rem !important;
		margin-right: -4.125rem !important
	}

	.mmy-sm-66 {
		margin-bottom: -4.125rem !important
	}

	.mmt-sm-66,
	.mmy-sm-66 {
		margin-top: -4.125rem !important
	}

	.mmr-sm-66 {
		margin-right: -4.125rem !important
	}

	.mmb-sm-66 {
		margin-bottom: -4.125rem !important
	}

	.mml-sm-66 {
		margin-left: -4.125rem !important
	}

	.mm-sm-67 {
		margin: -4.1875rem !important
	}

	.mmx-sm-67 {
		margin-left: -4.1875rem !important;
		margin-right: -4.1875rem !important
	}

	.mmy-sm-67 {
		margin-bottom: -4.1875rem !important
	}

	.mmt-sm-67,
	.mmy-sm-67 {
		margin-top: -4.1875rem !important
	}

	.mmr-sm-67 {
		margin-right: -4.1875rem !important
	}

	.mmb-sm-67 {
		margin-bottom: -4.1875rem !important
	}

	.mml-sm-67 {
		margin-left: -4.1875rem !important
	}

	.mm-sm-68 {
		margin: -4.25rem !important
	}

	.mmx-sm-68 {
		margin-left: -4.25rem !important;
		margin-right: -4.25rem !important
	}

	.mmy-sm-68 {
		margin-bottom: -4.25rem !important
	}

	.mmt-sm-68,
	.mmy-sm-68 {
		margin-top: -4.25rem !important
	}

	.mmr-sm-68 {
		margin-right: -4.25rem !important
	}

	.mmb-sm-68 {
		margin-bottom: -4.25rem !important
	}

	.mml-sm-68 {
		margin-left: -4.25rem !important
	}

	.mm-sm-69 {
		margin: -4.3125rem !important
	}

	.mmx-sm-69 {
		margin-left: -4.3125rem !important;
		margin-right: -4.3125rem !important
	}

	.mmy-sm-69 {
		margin-bottom: -4.3125rem !important
	}

	.mmt-sm-69,
	.mmy-sm-69 {
		margin-top: -4.3125rem !important
	}

	.mmr-sm-69 {
		margin-right: -4.3125rem !important
	}

	.mmb-sm-69 {
		margin-bottom: -4.3125rem !important
	}

	.mml-sm-69 {
		margin-left: -4.3125rem !important
	}

	.mm-sm-70 {
		margin: -4.375rem !important
	}

	.mmx-sm-70 {
		margin-left: -4.375rem !important;
		margin-right: -4.375rem !important
	}

	.mmy-sm-70 {
		margin-bottom: -4.375rem !important
	}

	.mmt-sm-70,
	.mmy-sm-70 {
		margin-top: -4.375rem !important
	}

	.mmr-sm-70 {
		margin-right: -4.375rem !important
	}

	.mmb-sm-70 {
		margin-bottom: -4.375rem !important
	}

	.mml-sm-70 {
		margin-left: -4.375rem !important
	}

	.mm-sm-71 {
		margin: -4.4375rem !important
	}

	.mmx-sm-71 {
		margin-left: -4.4375rem !important;
		margin-right: -4.4375rem !important
	}

	.mmy-sm-71 {
		margin-bottom: -4.4375rem !important
	}

	.mmt-sm-71,
	.mmy-sm-71 {
		margin-top: -4.4375rem !important
	}

	.mmr-sm-71 {
		margin-right: -4.4375rem !important
	}

	.mmb-sm-71 {
		margin-bottom: -4.4375rem !important
	}

	.mml-sm-71 {
		margin-left: -4.4375rem !important
	}

	.mm-sm-72 {
		margin: -4.5rem !important
	}

	.mmx-sm-72 {
		margin-left: -4.5rem !important;
		margin-right: -4.5rem !important
	}

	.mmy-sm-72 {
		margin-bottom: -4.5rem !important
	}

	.mmt-sm-72,
	.mmy-sm-72 {
		margin-top: -4.5rem !important
	}

	.mmr-sm-72 {
		margin-right: -4.5rem !important
	}

	.mmb-sm-72 {
		margin-bottom: -4.5rem !important
	}

	.mml-sm-72 {
		margin-left: -4.5rem !important
	}

	.mm-sm-73 {
		margin: -4.5625rem !important
	}

	.mmx-sm-73 {
		margin-left: -4.5625rem !important;
		margin-right: -4.5625rem !important
	}

	.mmy-sm-73 {
		margin-bottom: -4.5625rem !important
	}

	.mmt-sm-73,
	.mmy-sm-73 {
		margin-top: -4.5625rem !important
	}

	.mmr-sm-73 {
		margin-right: -4.5625rem !important
	}

	.mmb-sm-73 {
		margin-bottom: -4.5625rem !important
	}

	.mml-sm-73 {
		margin-left: -4.5625rem !important
	}

	.mm-sm-74 {
		margin: -4.625rem !important
	}

	.mmx-sm-74 {
		margin-left: -4.625rem !important;
		margin-right: -4.625rem !important
	}

	.mmy-sm-74 {
		margin-bottom: -4.625rem !important
	}

	.mmt-sm-74,
	.mmy-sm-74 {
		margin-top: -4.625rem !important
	}

	.mmr-sm-74 {
		margin-right: -4.625rem !important
	}

	.mmb-sm-74 {
		margin-bottom: -4.625rem !important
	}

	.mml-sm-74 {
		margin-left: -4.625rem !important
	}

	.mm-sm-75 {
		margin: -4.6875rem !important
	}

	.mmx-sm-75 {
		margin-left: -4.6875rem !important;
		margin-right: -4.6875rem !important
	}

	.mmy-sm-75 {
		margin-bottom: -4.6875rem !important
	}

	.mmt-sm-75,
	.mmy-sm-75 {
		margin-top: -4.6875rem !important
	}

	.mmr-sm-75 {
		margin-right: -4.6875rem !important
	}

	.mmb-sm-75 {
		margin-bottom: -4.6875rem !important
	}

	.mml-sm-75 {
		margin-left: -4.6875rem !important
	}

	.mm-sm-76 {
		margin: -4.75rem !important
	}

	.mmx-sm-76 {
		margin-left: -4.75rem !important;
		margin-right: -4.75rem !important
	}

	.mmy-sm-76 {
		margin-bottom: -4.75rem !important
	}

	.mmt-sm-76,
	.mmy-sm-76 {
		margin-top: -4.75rem !important
	}

	.mmr-sm-76 {
		margin-right: -4.75rem !important
	}

	.mmb-sm-76 {
		margin-bottom: -4.75rem !important
	}

	.mml-sm-76 {
		margin-left: -4.75rem !important
	}

	.mm-sm-77 {
		margin: -4.8125rem !important
	}

	.mmx-sm-77 {
		margin-left: -4.8125rem !important;
		margin-right: -4.8125rem !important
	}

	.mmy-sm-77 {
		margin-bottom: -4.8125rem !important
	}

	.mmt-sm-77,
	.mmy-sm-77 {
		margin-top: -4.8125rem !important
	}

	.mmr-sm-77 {
		margin-right: -4.8125rem !important
	}

	.mmb-sm-77 {
		margin-bottom: -4.8125rem !important
	}

	.mml-sm-77 {
		margin-left: -4.8125rem !important
	}

	.mm-sm-78 {
		margin: -4.875rem !important
	}

	.mmx-sm-78 {
		margin-left: -4.875rem !important;
		margin-right: -4.875rem !important
	}

	.mmy-sm-78 {
		margin-bottom: -4.875rem !important
	}

	.mmt-sm-78,
	.mmy-sm-78 {
		margin-top: -4.875rem !important
	}

	.mmr-sm-78 {
		margin-right: -4.875rem !important
	}

	.mmb-sm-78 {
		margin-bottom: -4.875rem !important
	}

	.mml-sm-78 {
		margin-left: -4.875rem !important
	}

	.mm-sm-79 {
		margin: -4.9375rem !important
	}

	.mmx-sm-79 {
		margin-left: -4.9375rem !important;
		margin-right: -4.9375rem !important
	}

	.mmy-sm-79 {
		margin-bottom: -4.9375rem !important
	}

	.mmt-sm-79,
	.mmy-sm-79 {
		margin-top: -4.9375rem !important
	}

	.mmr-sm-79 {
		margin-right: -4.9375rem !important
	}

	.mmb-sm-79 {
		margin-bottom: -4.9375rem !important
	}

	.mml-sm-79 {
		margin-left: -4.9375rem !important
	}

	.mm-sm-80 {
		margin: -5rem !important
	}

	.mmx-sm-80 {
		margin-left: -5rem !important;
		margin-right: -5rem !important
	}

	.mmy-sm-80 {
		margin-bottom: -5rem !important
	}

	.mmt-sm-80,
	.mmy-sm-80 {
		margin-top: -5rem !important
	}

	.mmr-sm-80 {
		margin-right: -5rem !important
	}

	.mmb-sm-80 {
		margin-bottom: -5rem !important
	}

	.mml-sm-80 {
		margin-left: -5rem !important
	}

	.mm-sm-81 {
		margin: -5.0625rem !important
	}

	.mmx-sm-81 {
		margin-left: -5.0625rem !important;
		margin-right: -5.0625rem !important
	}

	.mmy-sm-81 {
		margin-bottom: -5.0625rem !important
	}

	.mmt-sm-81,
	.mmy-sm-81 {
		margin-top: -5.0625rem !important
	}

	.mmr-sm-81 {
		margin-right: -5.0625rem !important
	}

	.mmb-sm-81 {
		margin-bottom: -5.0625rem !important
	}

	.mml-sm-81 {
		margin-left: -5.0625rem !important
	}

	.mm-sm-82 {
		margin: -5.125rem !important
	}

	.mmx-sm-82 {
		margin-left: -5.125rem !important;
		margin-right: -5.125rem !important
	}

	.mmy-sm-82 {
		margin-bottom: -5.125rem !important
	}

	.mmt-sm-82,
	.mmy-sm-82 {
		margin-top: -5.125rem !important
	}

	.mmr-sm-82 {
		margin-right: -5.125rem !important
	}

	.mmb-sm-82 {
		margin-bottom: -5.125rem !important
	}

	.mml-sm-82 {
		margin-left: -5.125rem !important
	}

	.mm-sm-83 {
		margin: -5.1875rem !important
	}

	.mmx-sm-83 {
		margin-left: -5.1875rem !important;
		margin-right: -5.1875rem !important
	}

	.mmy-sm-83 {
		margin-bottom: -5.1875rem !important
	}

	.mmt-sm-83,
	.mmy-sm-83 {
		margin-top: -5.1875rem !important
	}

	.mmr-sm-83 {
		margin-right: -5.1875rem !important
	}

	.mmb-sm-83 {
		margin-bottom: -5.1875rem !important
	}

	.mml-sm-83 {
		margin-left: -5.1875rem !important
	}

	.mm-sm-84 {
		margin: -5.25rem !important
	}

	.mmx-sm-84 {
		margin-left: -5.25rem !important;
		margin-right: -5.25rem !important
	}

	.mmy-sm-84 {
		margin-bottom: -5.25rem !important
	}

	.mmt-sm-84,
	.mmy-sm-84 {
		margin-top: -5.25rem !important
	}

	.mmr-sm-84 {
		margin-right: -5.25rem !important
	}

	.mmb-sm-84 {
		margin-bottom: -5.25rem !important
	}

	.mml-sm-84 {
		margin-left: -5.25rem !important
	}

	.mm-sm-85 {
		margin: -5.3125rem !important
	}

	.mmx-sm-85 {
		margin-left: -5.3125rem !important;
		margin-right: -5.3125rem !important
	}

	.mmy-sm-85 {
		margin-bottom: -5.3125rem !important
	}

	.mmt-sm-85,
	.mmy-sm-85 {
		margin-top: -5.3125rem !important
	}

	.mmr-sm-85 {
		margin-right: -5.3125rem !important
	}

	.mmb-sm-85 {
		margin-bottom: -5.3125rem !important
	}

	.mml-sm-85 {
		margin-left: -5.3125rem !important
	}

	.mm-sm-86 {
		margin: -5.375rem !important
	}

	.mmx-sm-86 {
		margin-left: -5.375rem !important;
		margin-right: -5.375rem !important
	}

	.mmy-sm-86 {
		margin-bottom: -5.375rem !important
	}

	.mmt-sm-86,
	.mmy-sm-86 {
		margin-top: -5.375rem !important
	}

	.mmr-sm-86 {
		margin-right: -5.375rem !important
	}

	.mmb-sm-86 {
		margin-bottom: -5.375rem !important
	}

	.mml-sm-86 {
		margin-left: -5.375rem !important
	}

	.mm-sm-87 {
		margin: -5.4375rem !important
	}

	.mmx-sm-87 {
		margin-left: -5.4375rem !important;
		margin-right: -5.4375rem !important
	}

	.mmy-sm-87 {
		margin-bottom: -5.4375rem !important
	}

	.mmt-sm-87,
	.mmy-sm-87 {
		margin-top: -5.4375rem !important
	}

	.mmr-sm-87 {
		margin-right: -5.4375rem !important
	}

	.mmb-sm-87 {
		margin-bottom: -5.4375rem !important
	}

	.mml-sm-87 {
		margin-left: -5.4375rem !important
	}

	.mm-sm-88 {
		margin: -5.5rem !important
	}

	.mmx-sm-88 {
		margin-left: -5.5rem !important;
		margin-right: -5.5rem !important
	}

	.mmy-sm-88 {
		margin-bottom: -5.5rem !important
	}

	.mmt-sm-88,
	.mmy-sm-88 {
		margin-top: -5.5rem !important
	}

	.mmr-sm-88 {
		margin-right: -5.5rem !important
	}

	.mmb-sm-88 {
		margin-bottom: -5.5rem !important
	}

	.mml-sm-88 {
		margin-left: -5.5rem !important
	}

	.mm-sm-89 {
		margin: -5.5625rem !important
	}

	.mmx-sm-89 {
		margin-left: -5.5625rem !important;
		margin-right: -5.5625rem !important
	}

	.mmy-sm-89 {
		margin-bottom: -5.5625rem !important
	}

	.mmt-sm-89,
	.mmy-sm-89 {
		margin-top: -5.5625rem !important
	}

	.mmr-sm-89 {
		margin-right: -5.5625rem !important
	}

	.mmb-sm-89 {
		margin-bottom: -5.5625rem !important
	}

	.mml-sm-89 {
		margin-left: -5.5625rem !important
	}

	.mm-sm-90 {
		margin: -5.625rem !important
	}

	.mmx-sm-90 {
		margin-left: -5.625rem !important;
		margin-right: -5.625rem !important
	}

	.mmy-sm-90 {
		margin-bottom: -5.625rem !important
	}

	.mmt-sm-90,
	.mmy-sm-90 {
		margin-top: -5.625rem !important
	}

	.mmr-sm-90 {
		margin-right: -5.625rem !important
	}

	.mmb-sm-90 {
		margin-bottom: -5.625rem !important
	}

	.mml-sm-90 {
		margin-left: -5.625rem !important
	}

	.mm-sm-91 {
		margin: -5.6875rem !important
	}

	.mmx-sm-91 {
		margin-left: -5.6875rem !important;
		margin-right: -5.6875rem !important
	}

	.mmy-sm-91 {
		margin-bottom: -5.6875rem !important
	}

	.mmt-sm-91,
	.mmy-sm-91 {
		margin-top: -5.6875rem !important
	}

	.mmr-sm-91 {
		margin-right: -5.6875rem !important
	}

	.mmb-sm-91 {
		margin-bottom: -5.6875rem !important
	}

	.mml-sm-91 {
		margin-left: -5.6875rem !important
	}

	.mm-sm-92 {
		margin: -5.75rem !important
	}

	.mmx-sm-92 {
		margin-left: -5.75rem !important;
		margin-right: -5.75rem !important
	}

	.mmy-sm-92 {
		margin-bottom: -5.75rem !important
	}

	.mmt-sm-92,
	.mmy-sm-92 {
		margin-top: -5.75rem !important
	}

	.mmr-sm-92 {
		margin-right: -5.75rem !important
	}

	.mmb-sm-92 {
		margin-bottom: -5.75rem !important
	}

	.mml-sm-92 {
		margin-left: -5.75rem !important
	}

	.mm-sm-93 {
		margin: -5.8125rem !important
	}

	.mmx-sm-93 {
		margin-left: -5.8125rem !important;
		margin-right: -5.8125rem !important
	}

	.mmy-sm-93 {
		margin-bottom: -5.8125rem !important
	}

	.mmt-sm-93,
	.mmy-sm-93 {
		margin-top: -5.8125rem !important
	}

	.mmr-sm-93 {
		margin-right: -5.8125rem !important
	}

	.mmb-sm-93 {
		margin-bottom: -5.8125rem !important
	}

	.mml-sm-93 {
		margin-left: -5.8125rem !important
	}

	.mm-sm-94 {
		margin: -5.875rem !important
	}

	.mmx-sm-94 {
		margin-left: -5.875rem !important;
		margin-right: -5.875rem !important
	}

	.mmy-sm-94 {
		margin-bottom: -5.875rem !important
	}

	.mmt-sm-94,
	.mmy-sm-94 {
		margin-top: -5.875rem !important
	}

	.mmr-sm-94 {
		margin-right: -5.875rem !important
	}

	.mmb-sm-94 {
		margin-bottom: -5.875rem !important
	}

	.mml-sm-94 {
		margin-left: -5.875rem !important
	}

	.mm-sm-95 {
		margin: -5.9375rem !important
	}

	.mmx-sm-95 {
		margin-left: -5.9375rem !important;
		margin-right: -5.9375rem !important
	}

	.mmy-sm-95 {
		margin-bottom: -5.9375rem !important
	}

	.mmt-sm-95,
	.mmy-sm-95 {
		margin-top: -5.9375rem !important
	}

	.mmr-sm-95 {
		margin-right: -5.9375rem !important
	}

	.mmb-sm-95 {
		margin-bottom: -5.9375rem !important
	}

	.mml-sm-95 {
		margin-left: -5.9375rem !important
	}

	.mm-sm-96 {
		margin: -6rem !important
	}

	.mmx-sm-96 {
		margin-left: -6rem !important;
		margin-right: -6rem !important
	}

	.mmy-sm-96 {
		margin-bottom: -6rem !important
	}

	.mmt-sm-96,
	.mmy-sm-96 {
		margin-top: -6rem !important
	}

	.mmr-sm-96 {
		margin-right: -6rem !important
	}

	.mmb-sm-96 {
		margin-bottom: -6rem !important
	}

	.mml-sm-96 {
		margin-left: -6rem !important
	}

	.mm-sm-97 {
		margin: -6.0625rem !important
	}

	.mmx-sm-97 {
		margin-left: -6.0625rem !important;
		margin-right: -6.0625rem !important
	}

	.mmy-sm-97 {
		margin-bottom: -6.0625rem !important
	}

	.mmt-sm-97,
	.mmy-sm-97 {
		margin-top: -6.0625rem !important
	}

	.mmr-sm-97 {
		margin-right: -6.0625rem !important
	}

	.mmb-sm-97 {
		margin-bottom: -6.0625rem !important
	}

	.mml-sm-97 {
		margin-left: -6.0625rem !important
	}

	.mm-sm-98 {
		margin: -6.125rem !important
	}

	.mmx-sm-98 {
		margin-left: -6.125rem !important;
		margin-right: -6.125rem !important
	}

	.mmy-sm-98 {
		margin-bottom: -6.125rem !important
	}

	.mmt-sm-98,
	.mmy-sm-98 {
		margin-top: -6.125rem !important
	}

	.mmr-sm-98 {
		margin-right: -6.125rem !important
	}

	.mmb-sm-98 {
		margin-bottom: -6.125rem !important
	}

	.mml-sm-98 {
		margin-left: -6.125rem !important
	}

	.mm-sm-99 {
		margin: -6.1875rem !important
	}

	.mmx-sm-99 {
		margin-left: -6.1875rem !important;
		margin-right: -6.1875rem !important
	}

	.mmy-sm-99 {
		margin-bottom: -6.1875rem !important
	}

	.mmt-sm-99,
	.mmy-sm-99 {
		margin-top: -6.1875rem !important
	}

	.mmr-sm-99 {
		margin-right: -6.1875rem !important
	}

	.mmb-sm-99 {
		margin-bottom: -6.1875rem !important
	}

	.mml-sm-99 {
		margin-left: -6.1875rem !important
	}

	.mm-sm-100 {
		margin: -6.25rem !important
	}

	.mmx-sm-100 {
		margin-left: -6.25rem !important;
		margin-right: -6.25rem !important
	}

	.mmy-sm-100 {
		margin-bottom: -6.25rem !important
	}

	.mmt-sm-100,
	.mmy-sm-100 {
		margin-top: -6.25rem !important
	}

	.mmr-sm-100 {
		margin-right: -6.25rem !important
	}

	.mmb-sm-100 {
		margin-bottom: -6.25rem !important
	}

	.mml-sm-100 {
		margin-left: -6.25rem !important
	}

	.mm-sm-101 {
		margin: -6.3125rem !important
	}

	.mmx-sm-101 {
		margin-left: -6.3125rem !important;
		margin-right: -6.3125rem !important
	}

	.mmy-sm-101 {
		margin-bottom: -6.3125rem !important
	}

	.mmt-sm-101,
	.mmy-sm-101 {
		margin-top: -6.3125rem !important
	}

	.mmr-sm-101 {
		margin-right: -6.3125rem !important
	}

	.mmb-sm-101 {
		margin-bottom: -6.3125rem !important
	}

	.mml-sm-101 {
		margin-left: -6.3125rem !important
	}

	.mm-sm-102 {
		margin: -6.375rem !important
	}

	.mmx-sm-102 {
		margin-left: -6.375rem !important;
		margin-right: -6.375rem !important
	}

	.mmy-sm-102 {
		margin-bottom: -6.375rem !important
	}

	.mmt-sm-102,
	.mmy-sm-102 {
		margin-top: -6.375rem !important
	}

	.mmr-sm-102 {
		margin-right: -6.375rem !important
	}

	.mmb-sm-102 {
		margin-bottom: -6.375rem !important
	}

	.mml-sm-102 {
		margin-left: -6.375rem !important
	}

	.mm-sm-103 {
		margin: -6.4375rem !important
	}

	.mmx-sm-103 {
		margin-left: -6.4375rem !important;
		margin-right: -6.4375rem !important
	}

	.mmy-sm-103 {
		margin-bottom: -6.4375rem !important
	}

	.mmt-sm-103,
	.mmy-sm-103 {
		margin-top: -6.4375rem !important
	}

	.mmr-sm-103 {
		margin-right: -6.4375rem !important
	}

	.mmb-sm-103 {
		margin-bottom: -6.4375rem !important
	}

	.mml-sm-103 {
		margin-left: -6.4375rem !important
	}

	.mm-sm-104 {
		margin: -6.5rem !important
	}

	.mmx-sm-104 {
		margin-left: -6.5rem !important;
		margin-right: -6.5rem !important
	}

	.mmy-sm-104 {
		margin-bottom: -6.5rem !important
	}

	.mmt-sm-104,
	.mmy-sm-104 {
		margin-top: -6.5rem !important
	}

	.mmr-sm-104 {
		margin-right: -6.5rem !important
	}

	.mmb-sm-104 {
		margin-bottom: -6.5rem !important
	}

	.mml-sm-104 {
		margin-left: -6.5rem !important
	}

	.mm-sm-105 {
		margin: -6.5625rem !important
	}

	.mmx-sm-105 {
		margin-left: -6.5625rem !important;
		margin-right: -6.5625rem !important
	}

	.mmy-sm-105 {
		margin-bottom: -6.5625rem !important
	}

	.mmt-sm-105,
	.mmy-sm-105 {
		margin-top: -6.5625rem !important
	}

	.mmr-sm-105 {
		margin-right: -6.5625rem !important
	}

	.mmb-sm-105 {
		margin-bottom: -6.5625rem !important
	}

	.mml-sm-105 {
		margin-left: -6.5625rem !important
	}

	.mm-sm-106 {
		margin: -6.625rem !important
	}

	.mmx-sm-106 {
		margin-left: -6.625rem !important;
		margin-right: -6.625rem !important
	}

	.mmy-sm-106 {
		margin-bottom: -6.625rem !important
	}

	.mmt-sm-106,
	.mmy-sm-106 {
		margin-top: -6.625rem !important
	}

	.mmr-sm-106 {
		margin-right: -6.625rem !important
	}

	.mmb-sm-106 {
		margin-bottom: -6.625rem !important
	}

	.mml-sm-106 {
		margin-left: -6.625rem !important
	}

	.mm-sm-107 {
		margin: -6.6875rem !important
	}

	.mmx-sm-107 {
		margin-left: -6.6875rem !important;
		margin-right: -6.6875rem !important
	}

	.mmy-sm-107 {
		margin-bottom: -6.6875rem !important
	}

	.mmt-sm-107,
	.mmy-sm-107 {
		margin-top: -6.6875rem !important
	}

	.mmr-sm-107 {
		margin-right: -6.6875rem !important
	}

	.mmb-sm-107 {
		margin-bottom: -6.6875rem !important
	}

	.mml-sm-107 {
		margin-left: -6.6875rem !important
	}

	.mm-sm-108 {
		margin: -6.75rem !important
	}

	.mmx-sm-108 {
		margin-left: -6.75rem !important;
		margin-right: -6.75rem !important
	}

	.mmy-sm-108 {
		margin-bottom: -6.75rem !important
	}

	.mmt-sm-108,
	.mmy-sm-108 {
		margin-top: -6.75rem !important
	}

	.mmr-sm-108 {
		margin-right: -6.75rem !important
	}

	.mmb-sm-108 {
		margin-bottom: -6.75rem !important
	}

	.mml-sm-108 {
		margin-left: -6.75rem !important
	}

	.mm-sm-109 {
		margin: -6.8125rem !important
	}

	.mmx-sm-109 {
		margin-left: -6.8125rem !important;
		margin-right: -6.8125rem !important
	}

	.mmy-sm-109 {
		margin-bottom: -6.8125rem !important
	}

	.mmt-sm-109,
	.mmy-sm-109 {
		margin-top: -6.8125rem !important
	}

	.mmr-sm-109 {
		margin-right: -6.8125rem !important
	}

	.mmb-sm-109 {
		margin-bottom: -6.8125rem !important
	}

	.mml-sm-109 {
		margin-left: -6.8125rem !important
	}

	.mm-sm-110 {
		margin: -6.875rem !important
	}

	.mmx-sm-110 {
		margin-left: -6.875rem !important;
		margin-right: -6.875rem !important
	}

	.mmy-sm-110 {
		margin-bottom: -6.875rem !important
	}

	.mmt-sm-110,
	.mmy-sm-110 {
		margin-top: -6.875rem !important
	}

	.mmr-sm-110 {
		margin-right: -6.875rem !important
	}

	.mmb-sm-110 {
		margin-bottom: -6.875rem !important
	}

	.mml-sm-110 {
		margin-left: -6.875rem !important
	}

	.mm-sm-111 {
		margin: -6.9375rem !important
	}

	.mmx-sm-111 {
		margin-left: -6.9375rem !important;
		margin-right: -6.9375rem !important
	}

	.mmy-sm-111 {
		margin-bottom: -6.9375rem !important
	}

	.mmt-sm-111,
	.mmy-sm-111 {
		margin-top: -6.9375rem !important
	}

	.mmr-sm-111 {
		margin-right: -6.9375rem !important
	}

	.mmb-sm-111 {
		margin-bottom: -6.9375rem !important
	}

	.mml-sm-111 {
		margin-left: -6.9375rem !important
	}

	.mm-sm-112 {
		margin: -7rem !important
	}

	.mmx-sm-112 {
		margin-left: -7rem !important;
		margin-right: -7rem !important
	}

	.mmy-sm-112 {
		margin-bottom: -7rem !important
	}

	.mmt-sm-112,
	.mmy-sm-112 {
		margin-top: -7rem !important
	}

	.mmr-sm-112 {
		margin-right: -7rem !important
	}

	.mmb-sm-112 {
		margin-bottom: -7rem !important
	}

	.mml-sm-112 {
		margin-left: -7rem !important
	}

	.mm-sm-113 {
		margin: -7.0625rem !important
	}

	.mmx-sm-113 {
		margin-left: -7.0625rem !important;
		margin-right: -7.0625rem !important
	}

	.mmy-sm-113 {
		margin-bottom: -7.0625rem !important
	}

	.mmt-sm-113,
	.mmy-sm-113 {
		margin-top: -7.0625rem !important
	}

	.mmr-sm-113 {
		margin-right: -7.0625rem !important
	}

	.mmb-sm-113 {
		margin-bottom: -7.0625rem !important
	}

	.mml-sm-113 {
		margin-left: -7.0625rem !important
	}

	.mm-sm-114 {
		margin: -7.125rem !important
	}

	.mmx-sm-114 {
		margin-left: -7.125rem !important;
		margin-right: -7.125rem !important
	}

	.mmy-sm-114 {
		margin-bottom: -7.125rem !important
	}

	.mmt-sm-114,
	.mmy-sm-114 {
		margin-top: -7.125rem !important
	}

	.mmr-sm-114 {
		margin-right: -7.125rem !important
	}

	.mmb-sm-114 {
		margin-bottom: -7.125rem !important
	}

	.mml-sm-114 {
		margin-left: -7.125rem !important
	}

	.mm-sm-115 {
		margin: -7.1875rem !important
	}

	.mmx-sm-115 {
		margin-left: -7.1875rem !important;
		margin-right: -7.1875rem !important
	}

	.mmy-sm-115 {
		margin-bottom: -7.1875rem !important
	}

	.mmt-sm-115,
	.mmy-sm-115 {
		margin-top: -7.1875rem !important
	}

	.mmr-sm-115 {
		margin-right: -7.1875rem !important
	}

	.mmb-sm-115 {
		margin-bottom: -7.1875rem !important
	}

	.mml-sm-115 {
		margin-left: -7.1875rem !important
	}

	.mm-sm-116 {
		margin: -7.25rem !important
	}

	.mmx-sm-116 {
		margin-left: -7.25rem !important;
		margin-right: -7.25rem !important
	}

	.mmy-sm-116 {
		margin-bottom: -7.25rem !important
	}

	.mmt-sm-116,
	.mmy-sm-116 {
		margin-top: -7.25rem !important
	}

	.mmr-sm-116 {
		margin-right: -7.25rem !important
	}

	.mmb-sm-116 {
		margin-bottom: -7.25rem !important
	}

	.mml-sm-116 {
		margin-left: -7.25rem !important
	}

	.mm-sm-117 {
		margin: -7.3125rem !important
	}

	.mmx-sm-117 {
		margin-left: -7.3125rem !important;
		margin-right: -7.3125rem !important
	}

	.mmy-sm-117 {
		margin-bottom: -7.3125rem !important
	}

	.mmt-sm-117,
	.mmy-sm-117 {
		margin-top: -7.3125rem !important
	}

	.mmr-sm-117 {
		margin-right: -7.3125rem !important
	}

	.mmb-sm-117 {
		margin-bottom: -7.3125rem !important
	}

	.mml-sm-117 {
		margin-left: -7.3125rem !important
	}

	.mm-sm-118 {
		margin: -7.375rem !important
	}

	.mmx-sm-118 {
		margin-left: -7.375rem !important;
		margin-right: -7.375rem !important
	}

	.mmy-sm-118 {
		margin-bottom: -7.375rem !important
	}

	.mmt-sm-118,
	.mmy-sm-118 {
		margin-top: -7.375rem !important
	}

	.mmr-sm-118 {
		margin-right: -7.375rem !important
	}

	.mmb-sm-118 {
		margin-bottom: -7.375rem !important
	}

	.mml-sm-118 {
		margin-left: -7.375rem !important
	}

	.mm-sm-119 {
		margin: -7.4375rem !important
	}

	.mmx-sm-119 {
		margin-left: -7.4375rem !important;
		margin-right: -7.4375rem !important
	}

	.mmy-sm-119 {
		margin-bottom: -7.4375rem !important
	}

	.mmt-sm-119,
	.mmy-sm-119 {
		margin-top: -7.4375rem !important
	}

	.mmr-sm-119 {
		margin-right: -7.4375rem !important
	}

	.mmb-sm-119 {
		margin-bottom: -7.4375rem !important
	}

	.mml-sm-119 {
		margin-left: -7.4375rem !important
	}

	.mm-sm-120 {
		margin: -7.5rem !important
	}

	.mmx-sm-120 {
		margin-left: -7.5rem !important;
		margin-right: -7.5rem !important
	}

	.mmy-sm-120 {
		margin-bottom: -7.5rem !important
	}

	.mmt-sm-120,
	.mmy-sm-120 {
		margin-top: -7.5rem !important
	}

	.mmr-sm-120 {
		margin-right: -7.5rem !important
	}

	.mmb-sm-120 {
		margin-bottom: -7.5rem !important
	}

	.mml-sm-120 {
		margin-left: -7.5rem !important
	}

	.mm-sm-121 {
		margin: -7.5625rem !important
	}

	.mmx-sm-121 {
		margin-left: -7.5625rem !important;
		margin-right: -7.5625rem !important
	}

	.mmy-sm-121 {
		margin-bottom: -7.5625rem !important
	}

	.mmt-sm-121,
	.mmy-sm-121 {
		margin-top: -7.5625rem !important
	}

	.mmr-sm-121 {
		margin-right: -7.5625rem !important
	}

	.mmb-sm-121 {
		margin-bottom: -7.5625rem !important
	}

	.mml-sm-121 {
		margin-left: -7.5625rem !important
	}

	.mm-sm-122 {
		margin: -7.625rem !important
	}

	.mmx-sm-122 {
		margin-left: -7.625rem !important;
		margin-right: -7.625rem !important
	}

	.mmy-sm-122 {
		margin-bottom: -7.625rem !important
	}

	.mmt-sm-122,
	.mmy-sm-122 {
		margin-top: -7.625rem !important
	}

	.mmr-sm-122 {
		margin-right: -7.625rem !important
	}

	.mmb-sm-122 {
		margin-bottom: -7.625rem !important
	}

	.mml-sm-122 {
		margin-left: -7.625rem !important
	}

	.mm-sm-123 {
		margin: -7.6875rem !important
	}

	.mmx-sm-123 {
		margin-left: -7.6875rem !important;
		margin-right: -7.6875rem !important
	}

	.mmy-sm-123 {
		margin-bottom: -7.6875rem !important
	}

	.mmt-sm-123,
	.mmy-sm-123 {
		margin-top: -7.6875rem !important
	}

	.mmr-sm-123 {
		margin-right: -7.6875rem !important
	}

	.mmb-sm-123 {
		margin-bottom: -7.6875rem !important
	}

	.mml-sm-123 {
		margin-left: -7.6875rem !important
	}

	.mm-sm-124 {
		margin: -7.75rem !important
	}

	.mmx-sm-124 {
		margin-left: -7.75rem !important;
		margin-right: -7.75rem !important
	}

	.mmy-sm-124 {
		margin-bottom: -7.75rem !important
	}

	.mmt-sm-124,
	.mmy-sm-124 {
		margin-top: -7.75rem !important
	}

	.mmr-sm-124 {
		margin-right: -7.75rem !important
	}

	.mmb-sm-124 {
		margin-bottom: -7.75rem !important
	}

	.mml-sm-124 {
		margin-left: -7.75rem !important
	}

	.mm-sm-125 {
		margin: -7.8125rem !important
	}

	.mmx-sm-125 {
		margin-left: -7.8125rem !important;
		margin-right: -7.8125rem !important
	}

	.mmy-sm-125 {
		margin-bottom: -7.8125rem !important
	}

	.mmt-sm-125,
	.mmy-sm-125 {
		margin-top: -7.8125rem !important
	}

	.mmr-sm-125 {
		margin-right: -7.8125rem !important
	}

	.mmb-sm-125 {
		margin-bottom: -7.8125rem !important
	}

	.mml-sm-125 {
		margin-left: -7.8125rem !important
	}

	.mm-sm-126 {
		margin: -7.875rem !important
	}

	.mmx-sm-126 {
		margin-left: -7.875rem !important;
		margin-right: -7.875rem !important
	}

	.mmy-sm-126 {
		margin-bottom: -7.875rem !important
	}

	.mmt-sm-126,
	.mmy-sm-126 {
		margin-top: -7.875rem !important
	}

	.mmr-sm-126 {
		margin-right: -7.875rem !important
	}

	.mmb-sm-126 {
		margin-bottom: -7.875rem !important
	}

	.mml-sm-126 {
		margin-left: -7.875rem !important
	}

	.mm-sm-127 {
		margin: -7.9375rem !important
	}

	.mmx-sm-127 {
		margin-left: -7.9375rem !important;
		margin-right: -7.9375rem !important
	}

	.mmy-sm-127 {
		margin-bottom: -7.9375rem !important
	}

	.mmt-sm-127,
	.mmy-sm-127 {
		margin-top: -7.9375rem !important
	}

	.mmr-sm-127 {
		margin-right: -7.9375rem !important
	}

	.mmb-sm-127 {
		margin-bottom: -7.9375rem !important
	}

	.mml-sm-127 {
		margin-left: -7.9375rem !important
	}

	.mm-sm-128 {
		margin: -8rem !important
	}

	.mmx-sm-128 {
		margin-left: -8rem !important;
		margin-right: -8rem !important
	}

	.mmy-sm-128 {
		margin-bottom: -8rem !important
	}

	.mmt-sm-128,
	.mmy-sm-128 {
		margin-top: -8rem !important
	}

	.mmr-sm-128 {
		margin-right: -8rem !important
	}

	.mmb-sm-128 {
		margin-bottom: -8rem !important
	}

	.mml-sm-128 {
		margin-left: -8rem !important
	}

	.mm-sm-129 {
		margin: -8.0625rem !important
	}

	.mmx-sm-129 {
		margin-left: -8.0625rem !important;
		margin-right: -8.0625rem !important
	}

	.mmy-sm-129 {
		margin-bottom: -8.0625rem !important
	}

	.mmt-sm-129,
	.mmy-sm-129 {
		margin-top: -8.0625rem !important
	}

	.mmr-sm-129 {
		margin-right: -8.0625rem !important
	}

	.mmb-sm-129 {
		margin-bottom: -8.0625rem !important
	}

	.mml-sm-129 {
		margin-left: -8.0625rem !important
	}

	.mm-sm-130 {
		margin: -8.125rem !important
	}

	.mmx-sm-130 {
		margin-left: -8.125rem !important;
		margin-right: -8.125rem !important
	}

	.mmy-sm-130 {
		margin-bottom: -8.125rem !important
	}

	.mmt-sm-130,
	.mmy-sm-130 {
		margin-top: -8.125rem !important
	}

	.mmr-sm-130 {
		margin-right: -8.125rem !important
	}

	.mmb-sm-130 {
		margin-bottom: -8.125rem !important
	}

	.mml-sm-130 {
		margin-left: -8.125rem !important
	}

	.mm-sm-131 {
		margin: -8.1875rem !important
	}

	.mmx-sm-131 {
		margin-left: -8.1875rem !important;
		margin-right: -8.1875rem !important
	}

	.mmy-sm-131 {
		margin-bottom: -8.1875rem !important
	}

	.mmt-sm-131,
	.mmy-sm-131 {
		margin-top: -8.1875rem !important
	}

	.mmr-sm-131 {
		margin-right: -8.1875rem !important
	}

	.mmb-sm-131 {
		margin-bottom: -8.1875rem !important
	}

	.mml-sm-131 {
		margin-left: -8.1875rem !important
	}

	.mm-sm-132 {
		margin: -8.25rem !important
	}

	.mmx-sm-132 {
		margin-left: -8.25rem !important;
		margin-right: -8.25rem !important
	}

	.mmy-sm-132 {
		margin-bottom: -8.25rem !important
	}

	.mmt-sm-132,
	.mmy-sm-132 {
		margin-top: -8.25rem !important
	}

	.mmr-sm-132 {
		margin-right: -8.25rem !important
	}

	.mmb-sm-132 {
		margin-bottom: -8.25rem !important
	}

	.mml-sm-132 {
		margin-left: -8.25rem !important
	}

	.mm-sm-133 {
		margin: -8.3125rem !important
	}

	.mmx-sm-133 {
		margin-left: -8.3125rem !important;
		margin-right: -8.3125rem !important
	}

	.mmy-sm-133 {
		margin-bottom: -8.3125rem !important
	}

	.mmt-sm-133,
	.mmy-sm-133 {
		margin-top: -8.3125rem !important
	}

	.mmr-sm-133 {
		margin-right: -8.3125rem !important
	}

	.mmb-sm-133 {
		margin-bottom: -8.3125rem !important
	}

	.mml-sm-133 {
		margin-left: -8.3125rem !important
	}

	.mm-sm-134 {
		margin: -8.375rem !important
	}

	.mmx-sm-134 {
		margin-left: -8.375rem !important;
		margin-right: -8.375rem !important
	}

	.mmy-sm-134 {
		margin-bottom: -8.375rem !important
	}

	.mmt-sm-134,
	.mmy-sm-134 {
		margin-top: -8.375rem !important
	}

	.mmr-sm-134 {
		margin-right: -8.375rem !important
	}

	.mmb-sm-134 {
		margin-bottom: -8.375rem !important
	}

	.mml-sm-134 {
		margin-left: -8.375rem !important
	}

	.mm-sm-135 {
		margin: -8.4375rem !important
	}

	.mmx-sm-135 {
		margin-left: -8.4375rem !important;
		margin-right: -8.4375rem !important
	}

	.mmy-sm-135 {
		margin-bottom: -8.4375rem !important
	}

	.mmt-sm-135,
	.mmy-sm-135 {
		margin-top: -8.4375rem !important
	}

	.mmr-sm-135 {
		margin-right: -8.4375rem !important
	}

	.mmb-sm-135 {
		margin-bottom: -8.4375rem !important
	}

	.mml-sm-135 {
		margin-left: -8.4375rem !important
	}

	.mm-sm-136 {
		margin: -8.5rem !important
	}

	.mmx-sm-136 {
		margin-left: -8.5rem !important;
		margin-right: -8.5rem !important
	}

	.mmy-sm-136 {
		margin-bottom: -8.5rem !important
	}

	.mmt-sm-136,
	.mmy-sm-136 {
		margin-top: -8.5rem !important
	}

	.mmr-sm-136 {
		margin-right: -8.5rem !important
	}

	.mmb-sm-136 {
		margin-bottom: -8.5rem !important
	}

	.mml-sm-136 {
		margin-left: -8.5rem !important
	}

	.mm-sm-137 {
		margin: -8.5625rem !important
	}

	.mmx-sm-137 {
		margin-left: -8.5625rem !important;
		margin-right: -8.5625rem !important
	}

	.mmy-sm-137 {
		margin-bottom: -8.5625rem !important
	}

	.mmt-sm-137,
	.mmy-sm-137 {
		margin-top: -8.5625rem !important
	}

	.mmr-sm-137 {
		margin-right: -8.5625rem !important
	}

	.mmb-sm-137 {
		margin-bottom: -8.5625rem !important
	}

	.mml-sm-137 {
		margin-left: -8.5625rem !important
	}

	.mm-sm-138 {
		margin: -8.625rem !important
	}

	.mmx-sm-138 {
		margin-left: -8.625rem !important;
		margin-right: -8.625rem !important
	}

	.mmy-sm-138 {
		margin-bottom: -8.625rem !important
	}

	.mmt-sm-138,
	.mmy-sm-138 {
		margin-top: -8.625rem !important
	}

	.mmr-sm-138 {
		margin-right: -8.625rem !important
	}

	.mmb-sm-138 {
		margin-bottom: -8.625rem !important
	}

	.mml-sm-138 {
		margin-left: -8.625rem !important
	}

	.mm-sm-139 {
		margin: -8.6875rem !important
	}

	.mmx-sm-139 {
		margin-left: -8.6875rem !important;
		margin-right: -8.6875rem !important
	}

	.mmy-sm-139 {
		margin-bottom: -8.6875rem !important
	}

	.mmt-sm-139,
	.mmy-sm-139 {
		margin-top: -8.6875rem !important
	}

	.mmr-sm-139 {
		margin-right: -8.6875rem !important
	}

	.mmb-sm-139 {
		margin-bottom: -8.6875rem !important
	}

	.mml-sm-139 {
		margin-left: -8.6875rem !important
	}

	.mm-sm-140 {
		margin: -8.75rem !important
	}

	.mmx-sm-140 {
		margin-left: -8.75rem !important;
		margin-right: -8.75rem !important
	}

	.mmy-sm-140 {
		margin-bottom: -8.75rem !important
	}

	.mmt-sm-140,
	.mmy-sm-140 {
		margin-top: -8.75rem !important
	}

	.mmr-sm-140 {
		margin-right: -8.75rem !important
	}

	.mmb-sm-140 {
		margin-bottom: -8.75rem !important
	}

	.mml-sm-140 {
		margin-left: -8.75rem !important
	}

	.mm-sm-141 {
		margin: -8.8125rem !important
	}

	.mmx-sm-141 {
		margin-left: -8.8125rem !important;
		margin-right: -8.8125rem !important
	}

	.mmy-sm-141 {
		margin-bottom: -8.8125rem !important
	}

	.mmt-sm-141,
	.mmy-sm-141 {
		margin-top: -8.8125rem !important
	}

	.mmr-sm-141 {
		margin-right: -8.8125rem !important
	}

	.mmb-sm-141 {
		margin-bottom: -8.8125rem !important
	}

	.mml-sm-141 {
		margin-left: -8.8125rem !important
	}

	.mm-sm-142 {
		margin: -8.875rem !important
	}

	.mmx-sm-142 {
		margin-left: -8.875rem !important;
		margin-right: -8.875rem !important
	}

	.mmy-sm-142 {
		margin-bottom: -8.875rem !important
	}

	.mmt-sm-142,
	.mmy-sm-142 {
		margin-top: -8.875rem !important
	}

	.mmr-sm-142 {
		margin-right: -8.875rem !important
	}

	.mmb-sm-142 {
		margin-bottom: -8.875rem !important
	}

	.mml-sm-142 {
		margin-left: -8.875rem !important
	}

	.mm-sm-143 {
		margin: -8.9375rem !important
	}

	.mmx-sm-143 {
		margin-left: -8.9375rem !important;
		margin-right: -8.9375rem !important
	}

	.mmy-sm-143 {
		margin-bottom: -8.9375rem !important
	}

	.mmt-sm-143,
	.mmy-sm-143 {
		margin-top: -8.9375rem !important
	}

	.mmr-sm-143 {
		margin-right: -8.9375rem !important
	}

	.mmb-sm-143 {
		margin-bottom: -8.9375rem !important
	}

	.mml-sm-143 {
		margin-left: -8.9375rem !important
	}

	.mm-sm-144 {
		margin: -9rem !important
	}

	.mmx-sm-144 {
		margin-left: -9rem !important;
		margin-right: -9rem !important
	}

	.mmy-sm-144 {
		margin-bottom: -9rem !important
	}

	.mmt-sm-144,
	.mmy-sm-144 {
		margin-top: -9rem !important
	}

	.mmr-sm-144 {
		margin-right: -9rem !important
	}

	.mmb-sm-144 {
		margin-bottom: -9rem !important
	}

	.mml-sm-144 {
		margin-left: -9rem !important
	}

	.mm-sm-145 {
		margin: -9.0625rem !important
	}

	.mmx-sm-145 {
		margin-left: -9.0625rem !important;
		margin-right: -9.0625rem !important
	}

	.mmy-sm-145 {
		margin-bottom: -9.0625rem !important
	}

	.mmt-sm-145,
	.mmy-sm-145 {
		margin-top: -9.0625rem !important
	}

	.mmr-sm-145 {
		margin-right: -9.0625rem !important
	}

	.mmb-sm-145 {
		margin-bottom: -9.0625rem !important
	}

	.mml-sm-145 {
		margin-left: -9.0625rem !important
	}

	.mm-sm-146 {
		margin: -9.125rem !important
	}

	.mmx-sm-146 {
		margin-left: -9.125rem !important;
		margin-right: -9.125rem !important
	}

	.mmy-sm-146 {
		margin-bottom: -9.125rem !important
	}

	.mmt-sm-146,
	.mmy-sm-146 {
		margin-top: -9.125rem !important
	}

	.mmr-sm-146 {
		margin-right: -9.125rem !important
	}

	.mmb-sm-146 {
		margin-bottom: -9.125rem !important
	}

	.mml-sm-146 {
		margin-left: -9.125rem !important
	}

	.mm-sm-147 {
		margin: -9.1875rem !important
	}

	.mmx-sm-147 {
		margin-left: -9.1875rem !important;
		margin-right: -9.1875rem !important
	}

	.mmy-sm-147 {
		margin-bottom: -9.1875rem !important
	}

	.mmt-sm-147,
	.mmy-sm-147 {
		margin-top: -9.1875rem !important
	}

	.mmr-sm-147 {
		margin-right: -9.1875rem !important
	}

	.mmb-sm-147 {
		margin-bottom: -9.1875rem !important
	}

	.mml-sm-147 {
		margin-left: -9.1875rem !important
	}

	.mm-sm-148 {
		margin: -9.25rem !important
	}

	.mmx-sm-148 {
		margin-left: -9.25rem !important;
		margin-right: -9.25rem !important
	}

	.mmy-sm-148 {
		margin-bottom: -9.25rem !important
	}

	.mmt-sm-148,
	.mmy-sm-148 {
		margin-top: -9.25rem !important
	}

	.mmr-sm-148 {
		margin-right: -9.25rem !important
	}

	.mmb-sm-148 {
		margin-bottom: -9.25rem !important
	}

	.mml-sm-148 {
		margin-left: -9.25rem !important
	}

	.mm-sm-149 {
		margin: -9.3125rem !important
	}

	.mmx-sm-149 {
		margin-left: -9.3125rem !important;
		margin-right: -9.3125rem !important
	}

	.mmy-sm-149 {
		margin-bottom: -9.3125rem !important
	}

	.mmt-sm-149,
	.mmy-sm-149 {
		margin-top: -9.3125rem !important
	}

	.mmr-sm-149 {
		margin-right: -9.3125rem !important
	}

	.mmb-sm-149 {
		margin-bottom: -9.3125rem !important
	}

	.mml-sm-149 {
		margin-left: -9.3125rem !important
	}

	.mm-sm-150 {
		margin: -9.375rem !important
	}

	.mmx-sm-150 {
		margin-left: -9.375rem !important;
		margin-right: -9.375rem !important
	}

	.mmy-sm-150 {
		margin-bottom: -9.375rem !important
	}

	.mmt-sm-150,
	.mmy-sm-150 {
		margin-top: -9.375rem !important
	}

	.mmr-sm-150 {
		margin-right: -9.375rem !important
	}

	.mmb-sm-150 {
		margin-bottom: -9.375rem !important
	}

	.mml-sm-150 {
		margin-left: -9.375rem !important
	}

	.mm-sm-151 {
		margin: -9.4375rem !important
	}

	.mmx-sm-151 {
		margin-left: -9.4375rem !important;
		margin-right: -9.4375rem !important
	}

	.mmy-sm-151 {
		margin-bottom: -9.4375rem !important
	}

	.mmt-sm-151,
	.mmy-sm-151 {
		margin-top: -9.4375rem !important
	}

	.mmr-sm-151 {
		margin-right: -9.4375rem !important
	}

	.mmb-sm-151 {
		margin-bottom: -9.4375rem !important
	}

	.mml-sm-151 {
		margin-left: -9.4375rem !important
	}

	.mm-sm-152 {
		margin: -9.5rem !important
	}

	.mmx-sm-152 {
		margin-left: -9.5rem !important;
		margin-right: -9.5rem !important
	}

	.mmy-sm-152 {
		margin-bottom: -9.5rem !important
	}

	.mmt-sm-152,
	.mmy-sm-152 {
		margin-top: -9.5rem !important
	}

	.mmr-sm-152 {
		margin-right: -9.5rem !important
	}

	.mmb-sm-152 {
		margin-bottom: -9.5rem !important
	}

	.mml-sm-152 {
		margin-left: -9.5rem !important
	}

	.mm-sm-153 {
		margin: -9.5625rem !important
	}

	.mmx-sm-153 {
		margin-left: -9.5625rem !important;
		margin-right: -9.5625rem !important
	}

	.mmy-sm-153 {
		margin-bottom: -9.5625rem !important
	}

	.mmt-sm-153,
	.mmy-sm-153 {
		margin-top: -9.5625rem !important
	}

	.mmr-sm-153 {
		margin-right: -9.5625rem !important
	}

	.mmb-sm-153 {
		margin-bottom: -9.5625rem !important
	}

	.mml-sm-153 {
		margin-left: -9.5625rem !important
	}

	.mm-sm-154 {
		margin: -9.625rem !important
	}

	.mmx-sm-154 {
		margin-left: -9.625rem !important;
		margin-right: -9.625rem !important
	}

	.mmy-sm-154 {
		margin-bottom: -9.625rem !important
	}

	.mmt-sm-154,
	.mmy-sm-154 {
		margin-top: -9.625rem !important
	}

	.mmr-sm-154 {
		margin-right: -9.625rem !important
	}

	.mmb-sm-154 {
		margin-bottom: -9.625rem !important
	}

	.mml-sm-154 {
		margin-left: -9.625rem !important
	}

	.mm-sm-155 {
		margin: -9.6875rem !important
	}

	.mmx-sm-155 {
		margin-left: -9.6875rem !important;
		margin-right: -9.6875rem !important
	}

	.mmy-sm-155 {
		margin-bottom: -9.6875rem !important
	}

	.mmt-sm-155,
	.mmy-sm-155 {
		margin-top: -9.6875rem !important
	}

	.mmr-sm-155 {
		margin-right: -9.6875rem !important
	}

	.mmb-sm-155 {
		margin-bottom: -9.6875rem !important
	}

	.mml-sm-155 {
		margin-left: -9.6875rem !important
	}

	.mm-sm-156 {
		margin: -9.75rem !important
	}

	.mmx-sm-156 {
		margin-left: -9.75rem !important;
		margin-right: -9.75rem !important
	}

	.mmy-sm-156 {
		margin-bottom: -9.75rem !important
	}

	.mmt-sm-156,
	.mmy-sm-156 {
		margin-top: -9.75rem !important
	}

	.mmr-sm-156 {
		margin-right: -9.75rem !important
	}

	.mmb-sm-156 {
		margin-bottom: -9.75rem !important
	}

	.mml-sm-156 {
		margin-left: -9.75rem !important
	}

	.mm-sm-157 {
		margin: -9.8125rem !important
	}

	.mmx-sm-157 {
		margin-left: -9.8125rem !important;
		margin-right: -9.8125rem !important
	}

	.mmy-sm-157 {
		margin-bottom: -9.8125rem !important
	}

	.mmt-sm-157,
	.mmy-sm-157 {
		margin-top: -9.8125rem !important
	}

	.mmr-sm-157 {
		margin-right: -9.8125rem !important
	}

	.mmb-sm-157 {
		margin-bottom: -9.8125rem !important
	}

	.mml-sm-157 {
		margin-left: -9.8125rem !important
	}

	.mm-sm-158 {
		margin: -9.875rem !important
	}

	.mmx-sm-158 {
		margin-left: -9.875rem !important;
		margin-right: -9.875rem !important
	}

	.mmy-sm-158 {
		margin-bottom: -9.875rem !important
	}

	.mmt-sm-158,
	.mmy-sm-158 {
		margin-top: -9.875rem !important
	}

	.mmr-sm-158 {
		margin-right: -9.875rem !important
	}

	.mmb-sm-158 {
		margin-bottom: -9.875rem !important
	}

	.mml-sm-158 {
		margin-left: -9.875rem !important
	}

	.mm-sm-159 {
		margin: -9.9375rem !important
	}

	.mmx-sm-159 {
		margin-left: -9.9375rem !important;
		margin-right: -9.9375rem !important
	}

	.mmy-sm-159 {
		margin-bottom: -9.9375rem !important
	}

	.mmt-sm-159,
	.mmy-sm-159 {
		margin-top: -9.9375rem !important
	}

	.mmr-sm-159 {
		margin-right: -9.9375rem !important
	}

	.mmb-sm-159 {
		margin-bottom: -9.9375rem !important
	}

	.mml-sm-159 {
		margin-left: -9.9375rem !important
	}

	.mm-sm-160 {
		margin: -10rem !important
	}

	.mmx-sm-160 {
		margin-left: -10rem !important;
		margin-right: -10rem !important
	}

	.mmy-sm-160 {
		margin-bottom: -10rem !important
	}

	.mmt-sm-160,
	.mmy-sm-160 {
		margin-top: -10rem !important
	}

	.mmr-sm-160 {
		margin-right: -10rem !important
	}

	.mmb-sm-160 {
		margin-bottom: -10rem !important
	}

	.mml-sm-160 {
		margin-left: -10rem !important
	}

	.mm-sm-161 {
		margin: -10.0625rem !important
	}

	.mmx-sm-161 {
		margin-left: -10.0625rem !important;
		margin-right: -10.0625rem !important
	}

	.mmy-sm-161 {
		margin-bottom: -10.0625rem !important
	}

	.mmt-sm-161,
	.mmy-sm-161 {
		margin-top: -10.0625rem !important
	}

	.mmr-sm-161 {
		margin-right: -10.0625rem !important
	}

	.mmb-sm-161 {
		margin-bottom: -10.0625rem !important
	}

	.mml-sm-161 {
		margin-left: -10.0625rem !important
	}

	.mm-sm-162 {
		margin: -10.125rem !important
	}

	.mmx-sm-162 {
		margin-left: -10.125rem !important;
		margin-right: -10.125rem !important
	}

	.mmy-sm-162 {
		margin-bottom: -10.125rem !important
	}

	.mmt-sm-162,
	.mmy-sm-162 {
		margin-top: -10.125rem !important
	}

	.mmr-sm-162 {
		margin-right: -10.125rem !important
	}

	.mmb-sm-162 {
		margin-bottom: -10.125rem !important
	}

	.mml-sm-162 {
		margin-left: -10.125rem !important
	}

	.mm-sm-163 {
		margin: -10.1875rem !important
	}

	.mmx-sm-163 {
		margin-left: -10.1875rem !important;
		margin-right: -10.1875rem !important
	}

	.mmy-sm-163 {
		margin-bottom: -10.1875rem !important
	}

	.mmt-sm-163,
	.mmy-sm-163 {
		margin-top: -10.1875rem !important
	}

	.mmr-sm-163 {
		margin-right: -10.1875rem !important
	}

	.mmb-sm-163 {
		margin-bottom: -10.1875rem !important
	}

	.mml-sm-163 {
		margin-left: -10.1875rem !important
	}

	.mm-sm-164 {
		margin: -10.25rem !important
	}

	.mmx-sm-164 {
		margin-left: -10.25rem !important;
		margin-right: -10.25rem !important
	}

	.mmy-sm-164 {
		margin-bottom: -10.25rem !important
	}

	.mmt-sm-164,
	.mmy-sm-164 {
		margin-top: -10.25rem !important
	}

	.mmr-sm-164 {
		margin-right: -10.25rem !important
	}

	.mmb-sm-164 {
		margin-bottom: -10.25rem !important
	}

	.mml-sm-164 {
		margin-left: -10.25rem !important
	}

	.mm-sm-165 {
		margin: -10.3125rem !important
	}

	.mmx-sm-165 {
		margin-left: -10.3125rem !important;
		margin-right: -10.3125rem !important
	}

	.mmy-sm-165 {
		margin-bottom: -10.3125rem !important
	}

	.mmt-sm-165,
	.mmy-sm-165 {
		margin-top: -10.3125rem !important
	}

	.mmr-sm-165 {
		margin-right: -10.3125rem !important
	}

	.mmb-sm-165 {
		margin-bottom: -10.3125rem !important
	}

	.mml-sm-165 {
		margin-left: -10.3125rem !important
	}

	.mm-sm-166 {
		margin: -10.375rem !important
	}

	.mmx-sm-166 {
		margin-left: -10.375rem !important;
		margin-right: -10.375rem !important
	}

	.mmy-sm-166 {
		margin-bottom: -10.375rem !important
	}

	.mmt-sm-166,
	.mmy-sm-166 {
		margin-top: -10.375rem !important
	}

	.mmr-sm-166 {
		margin-right: -10.375rem !important
	}

	.mmb-sm-166 {
		margin-bottom: -10.375rem !important
	}

	.mml-sm-166 {
		margin-left: -10.375rem !important
	}

	.mm-sm-167 {
		margin: -10.4375rem !important
	}

	.mmx-sm-167 {
		margin-left: -10.4375rem !important;
		margin-right: -10.4375rem !important
	}

	.mmy-sm-167 {
		margin-bottom: -10.4375rem !important
	}

	.mmt-sm-167,
	.mmy-sm-167 {
		margin-top: -10.4375rem !important
	}

	.mmr-sm-167 {
		margin-right: -10.4375rem !important
	}

	.mmb-sm-167 {
		margin-bottom: -10.4375rem !important
	}

	.mml-sm-167 {
		margin-left: -10.4375rem !important
	}

	.mm-sm-168 {
		margin: -10.5rem !important
	}

	.mmx-sm-168 {
		margin-left: -10.5rem !important;
		margin-right: -10.5rem !important
	}

	.mmy-sm-168 {
		margin-bottom: -10.5rem !important
	}

	.mmt-sm-168,
	.mmy-sm-168 {
		margin-top: -10.5rem !important
	}

	.mmr-sm-168 {
		margin-right: -10.5rem !important
	}

	.mmb-sm-168 {
		margin-bottom: -10.5rem !important
	}

	.mml-sm-168 {
		margin-left: -10.5rem !important
	}

	.mm-sm-169 {
		margin: -10.5625rem !important
	}

	.mmx-sm-169 {
		margin-left: -10.5625rem !important;
		margin-right: -10.5625rem !important
	}

	.mmy-sm-169 {
		margin-bottom: -10.5625rem !important
	}

	.mmt-sm-169,
	.mmy-sm-169 {
		margin-top: -10.5625rem !important
	}

	.mmr-sm-169 {
		margin-right: -10.5625rem !important
	}

	.mmb-sm-169 {
		margin-bottom: -10.5625rem !important
	}

	.mml-sm-169 {
		margin-left: -10.5625rem !important
	}

	.mm-sm-170 {
		margin: -10.625rem !important
	}

	.mmx-sm-170 {
		margin-left: -10.625rem !important;
		margin-right: -10.625rem !important
	}

	.mmy-sm-170 {
		margin-bottom: -10.625rem !important
	}

	.mmt-sm-170,
	.mmy-sm-170 {
		margin-top: -10.625rem !important
	}

	.mmr-sm-170 {
		margin-right: -10.625rem !important
	}

	.mmb-sm-170 {
		margin-bottom: -10.625rem !important
	}

	.mml-sm-170 {
		margin-left: -10.625rem !important
	}

	.mm-sm-171 {
		margin: -10.6875rem !important
	}

	.mmx-sm-171 {
		margin-left: -10.6875rem !important;
		margin-right: -10.6875rem !important
	}

	.mmy-sm-171 {
		margin-bottom: -10.6875rem !important
	}

	.mmt-sm-171,
	.mmy-sm-171 {
		margin-top: -10.6875rem !important
	}

	.mmr-sm-171 {
		margin-right: -10.6875rem !important
	}

	.mmb-sm-171 {
		margin-bottom: -10.6875rem !important
	}

	.mml-sm-171 {
		margin-left: -10.6875rem !important
	}

	.mm-sm-172 {
		margin: -10.75rem !important
	}

	.mmx-sm-172 {
		margin-left: -10.75rem !important;
		margin-right: -10.75rem !important
	}

	.mmy-sm-172 {
		margin-bottom: -10.75rem !important
	}

	.mmt-sm-172,
	.mmy-sm-172 {
		margin-top: -10.75rem !important
	}

	.mmr-sm-172 {
		margin-right: -10.75rem !important
	}

	.mmb-sm-172 {
		margin-bottom: -10.75rem !important
	}

	.mml-sm-172 {
		margin-left: -10.75rem !important
	}

	.mm-sm-173 {
		margin: -10.8125rem !important
	}

	.mmx-sm-173 {
		margin-left: -10.8125rem !important;
		margin-right: -10.8125rem !important
	}

	.mmy-sm-173 {
		margin-bottom: -10.8125rem !important
	}

	.mmt-sm-173,
	.mmy-sm-173 {
		margin-top: -10.8125rem !important
	}

	.mmr-sm-173 {
		margin-right: -10.8125rem !important
	}

	.mmb-sm-173 {
		margin-bottom: -10.8125rem !important
	}

	.mml-sm-173 {
		margin-left: -10.8125rem !important
	}

	.mm-sm-174 {
		margin: -10.875rem !important
	}

	.mmx-sm-174 {
		margin-left: -10.875rem !important;
		margin-right: -10.875rem !important
	}

	.mmy-sm-174 {
		margin-bottom: -10.875rem !important
	}

	.mmt-sm-174,
	.mmy-sm-174 {
		margin-top: -10.875rem !important
	}

	.mmr-sm-174 {
		margin-right: -10.875rem !important
	}

	.mmb-sm-174 {
		margin-bottom: -10.875rem !important
	}

	.mml-sm-174 {
		margin-left: -10.875rem !important
	}

	.mm-sm-175 {
		margin: -10.9375rem !important
	}

	.mmx-sm-175 {
		margin-left: -10.9375rem !important;
		margin-right: -10.9375rem !important
	}

	.mmy-sm-175 {
		margin-bottom: -10.9375rem !important
	}

	.mmt-sm-175,
	.mmy-sm-175 {
		margin-top: -10.9375rem !important
	}

	.mmr-sm-175 {
		margin-right: -10.9375rem !important
	}

	.mmb-sm-175 {
		margin-bottom: -10.9375rem !important
	}

	.mml-sm-175 {
		margin-left: -10.9375rem !important
	}

	.mm-sm-176 {
		margin: -11rem !important
	}

	.mmx-sm-176 {
		margin-left: -11rem !important;
		margin-right: -11rem !important
	}

	.mmy-sm-176 {
		margin-bottom: -11rem !important
	}

	.mmt-sm-176,
	.mmy-sm-176 {
		margin-top: -11rem !important
	}

	.mmr-sm-176 {
		margin-right: -11rem !important
	}

	.mmb-sm-176 {
		margin-bottom: -11rem !important
	}

	.mml-sm-176 {
		margin-left: -11rem !important
	}

	.mm-sm-177 {
		margin: -11.0625rem !important
	}

	.mmx-sm-177 {
		margin-left: -11.0625rem !important;
		margin-right: -11.0625rem !important
	}

	.mmy-sm-177 {
		margin-bottom: -11.0625rem !important
	}

	.mmt-sm-177,
	.mmy-sm-177 {
		margin-top: -11.0625rem !important
	}

	.mmr-sm-177 {
		margin-right: -11.0625rem !important
	}

	.mmb-sm-177 {
		margin-bottom: -11.0625rem !important
	}

	.mml-sm-177 {
		margin-left: -11.0625rem !important
	}

	.mm-sm-178 {
		margin: -11.125rem !important
	}

	.mmx-sm-178 {
		margin-left: -11.125rem !important;
		margin-right: -11.125rem !important
	}

	.mmy-sm-178 {
		margin-bottom: -11.125rem !important
	}

	.mmt-sm-178,
	.mmy-sm-178 {
		margin-top: -11.125rem !important
	}

	.mmr-sm-178 {
		margin-right: -11.125rem !important
	}

	.mmb-sm-178 {
		margin-bottom: -11.125rem !important
	}

	.mml-sm-178 {
		margin-left: -11.125rem !important
	}

	.mm-sm-179 {
		margin: -11.1875rem !important
	}

	.mmx-sm-179 {
		margin-left: -11.1875rem !important;
		margin-right: -11.1875rem !important
	}

	.mmy-sm-179 {
		margin-bottom: -11.1875rem !important
	}

	.mmt-sm-179,
	.mmy-sm-179 {
		margin-top: -11.1875rem !important
	}

	.mmr-sm-179 {
		margin-right: -11.1875rem !important
	}

	.mmb-sm-179 {
		margin-bottom: -11.1875rem !important
	}

	.mml-sm-179 {
		margin-left: -11.1875rem !important
	}

	.mm-sm-180 {
		margin: -11.25rem !important
	}

	.mmx-sm-180 {
		margin-left: -11.25rem !important;
		margin-right: -11.25rem !important
	}

	.mmy-sm-180 {
		margin-bottom: -11.25rem !important
	}

	.mmt-sm-180,
	.mmy-sm-180 {
		margin-top: -11.25rem !important
	}

	.mmr-sm-180 {
		margin-right: -11.25rem !important
	}

	.mmb-sm-180 {
		margin-bottom: -11.25rem !important
	}

	.mml-sm-180 {
		margin-left: -11.25rem !important
	}

	.mm-sm-181 {
		margin: -11.3125rem !important
	}

	.mmx-sm-181 {
		margin-left: -11.3125rem !important;
		margin-right: -11.3125rem !important
	}

	.mmy-sm-181 {
		margin-bottom: -11.3125rem !important
	}

	.mmt-sm-181,
	.mmy-sm-181 {
		margin-top: -11.3125rem !important
	}

	.mmr-sm-181 {
		margin-right: -11.3125rem !important
	}

	.mmb-sm-181 {
		margin-bottom: -11.3125rem !important
	}

	.mml-sm-181 {
		margin-left: -11.3125rem !important
	}

	.mm-sm-182 {
		margin: -11.375rem !important
	}

	.mmx-sm-182 {
		margin-left: -11.375rem !important;
		margin-right: -11.375rem !important
	}

	.mmy-sm-182 {
		margin-bottom: -11.375rem !important
	}

	.mmt-sm-182,
	.mmy-sm-182 {
		margin-top: -11.375rem !important
	}

	.mmr-sm-182 {
		margin-right: -11.375rem !important
	}

	.mmb-sm-182 {
		margin-bottom: -11.375rem !important
	}

	.mml-sm-182 {
		margin-left: -11.375rem !important
	}

	.mm-sm-183 {
		margin: -11.4375rem !important
	}

	.mmx-sm-183 {
		margin-left: -11.4375rem !important;
		margin-right: -11.4375rem !important
	}

	.mmy-sm-183 {
		margin-bottom: -11.4375rem !important
	}

	.mmt-sm-183,
	.mmy-sm-183 {
		margin-top: -11.4375rem !important
	}

	.mmr-sm-183 {
		margin-right: -11.4375rem !important
	}

	.mmb-sm-183 {
		margin-bottom: -11.4375rem !important
	}

	.mml-sm-183 {
		margin-left: -11.4375rem !important
	}

	.mm-sm-184 {
		margin: -11.5rem !important
	}

	.mmx-sm-184 {
		margin-left: -11.5rem !important;
		margin-right: -11.5rem !important
	}

	.mmy-sm-184 {
		margin-bottom: -11.5rem !important
	}

	.mmt-sm-184,
	.mmy-sm-184 {
		margin-top: -11.5rem !important
	}

	.mmr-sm-184 {
		margin-right: -11.5rem !important
	}

	.mmb-sm-184 {
		margin-bottom: -11.5rem !important
	}

	.mml-sm-184 {
		margin-left: -11.5rem !important
	}

	.mm-sm-185 {
		margin: -11.5625rem !important
	}

	.mmx-sm-185 {
		margin-left: -11.5625rem !important;
		margin-right: -11.5625rem !important
	}

	.mmy-sm-185 {
		margin-bottom: -11.5625rem !important
	}

	.mmt-sm-185,
	.mmy-sm-185 {
		margin-top: -11.5625rem !important
	}

	.mmr-sm-185 {
		margin-right: -11.5625rem !important
	}

	.mmb-sm-185 {
		margin-bottom: -11.5625rem !important
	}

	.mml-sm-185 {
		margin-left: -11.5625rem !important
	}

	.mm-sm-186 {
		margin: -11.625rem !important
	}

	.mmx-sm-186 {
		margin-left: -11.625rem !important;
		margin-right: -11.625rem !important
	}

	.mmy-sm-186 {
		margin-bottom: -11.625rem !important
	}

	.mmt-sm-186,
	.mmy-sm-186 {
		margin-top: -11.625rem !important
	}

	.mmr-sm-186 {
		margin-right: -11.625rem !important
	}

	.mmb-sm-186 {
		margin-bottom: -11.625rem !important
	}

	.mml-sm-186 {
		margin-left: -11.625rem !important
	}

	.mm-sm-187 {
		margin: -11.6875rem !important
	}

	.mmx-sm-187 {
		margin-left: -11.6875rem !important;
		margin-right: -11.6875rem !important
	}

	.mmy-sm-187 {
		margin-bottom: -11.6875rem !important
	}

	.mmt-sm-187,
	.mmy-sm-187 {
		margin-top: -11.6875rem !important
	}

	.mmr-sm-187 {
		margin-right: -11.6875rem !important
	}

	.mmb-sm-187 {
		margin-bottom: -11.6875rem !important
	}

	.mml-sm-187 {
		margin-left: -11.6875rem !important
	}

	.mm-sm-188 {
		margin: -11.75rem !important
	}

	.mmx-sm-188 {
		margin-left: -11.75rem !important;
		margin-right: -11.75rem !important
	}

	.mmy-sm-188 {
		margin-bottom: -11.75rem !important
	}

	.mmt-sm-188,
	.mmy-sm-188 {
		margin-top: -11.75rem !important
	}

	.mmr-sm-188 {
		margin-right: -11.75rem !important
	}

	.mmb-sm-188 {
		margin-bottom: -11.75rem !important
	}

	.mml-sm-188 {
		margin-left: -11.75rem !important
	}

	.mm-sm-189 {
		margin: -11.8125rem !important
	}

	.mmx-sm-189 {
		margin-left: -11.8125rem !important;
		margin-right: -11.8125rem !important
	}

	.mmy-sm-189 {
		margin-bottom: -11.8125rem !important
	}

	.mmt-sm-189,
	.mmy-sm-189 {
		margin-top: -11.8125rem !important
	}

	.mmr-sm-189 {
		margin-right: -11.8125rem !important
	}

	.mmb-sm-189 {
		margin-bottom: -11.8125rem !important
	}

	.mml-sm-189 {
		margin-left: -11.8125rem !important
	}

	.mm-sm-190 {
		margin: -11.875rem !important
	}

	.mmx-sm-190 {
		margin-left: -11.875rem !important;
		margin-right: -11.875rem !important
	}

	.mmy-sm-190 {
		margin-bottom: -11.875rem !important
	}

	.mmt-sm-190,
	.mmy-sm-190 {
		margin-top: -11.875rem !important
	}

	.mmr-sm-190 {
		margin-right: -11.875rem !important
	}

	.mmb-sm-190 {
		margin-bottom: -11.875rem !important
	}

	.mml-sm-190 {
		margin-left: -11.875rem !important
	}

	.mm-sm-191 {
		margin: -11.9375rem !important
	}

	.mmx-sm-191 {
		margin-left: -11.9375rem !important;
		margin-right: -11.9375rem !important
	}

	.mmy-sm-191 {
		margin-bottom: -11.9375rem !important
	}

	.mmt-sm-191,
	.mmy-sm-191 {
		margin-top: -11.9375rem !important
	}

	.mmr-sm-191 {
		margin-right: -11.9375rem !important
	}

	.mmb-sm-191 {
		margin-bottom: -11.9375rem !important
	}

	.mml-sm-191 {
		margin-left: -11.9375rem !important
	}

	.mm-sm-192 {
		margin: -12rem !important
	}

	.mmx-sm-192 {
		margin-left: -12rem !important;
		margin-right: -12rem !important
	}

	.mmy-sm-192 {
		margin-bottom: -12rem !important
	}

	.mmt-sm-192,
	.mmy-sm-192 {
		margin-top: -12rem !important
	}

	.mmr-sm-192 {
		margin-right: -12rem !important
	}

	.mmb-sm-192 {
		margin-bottom: -12rem !important
	}

	.mml-sm-192 {
		margin-left: -12rem !important
	}

	.mm-sm-193 {
		margin: -12.0625rem !important
	}

	.mmx-sm-193 {
		margin-left: -12.0625rem !important;
		margin-right: -12.0625rem !important
	}

	.mmy-sm-193 {
		margin-bottom: -12.0625rem !important
	}

	.mmt-sm-193,
	.mmy-sm-193 {
		margin-top: -12.0625rem !important
	}

	.mmr-sm-193 {
		margin-right: -12.0625rem !important
	}

	.mmb-sm-193 {
		margin-bottom: -12.0625rem !important
	}

	.mml-sm-193 {
		margin-left: -12.0625rem !important
	}

	.mm-sm-194 {
		margin: -12.125rem !important
	}

	.mmx-sm-194 {
		margin-left: -12.125rem !important;
		margin-right: -12.125rem !important
	}

	.mmy-sm-194 {
		margin-bottom: -12.125rem !important
	}

	.mmt-sm-194,
	.mmy-sm-194 {
		margin-top: -12.125rem !important
	}

	.mmr-sm-194 {
		margin-right: -12.125rem !important
	}

	.mmb-sm-194 {
		margin-bottom: -12.125rem !important
	}

	.mml-sm-194 {
		margin-left: -12.125rem !important
	}

	.mm-sm-195 {
		margin: -12.1875rem !important
	}

	.mmx-sm-195 {
		margin-left: -12.1875rem !important;
		margin-right: -12.1875rem !important
	}

	.mmy-sm-195 {
		margin-bottom: -12.1875rem !important
	}

	.mmt-sm-195,
	.mmy-sm-195 {
		margin-top: -12.1875rem !important
	}

	.mmr-sm-195 {
		margin-right: -12.1875rem !important
	}

	.mmb-sm-195 {
		margin-bottom: -12.1875rem !important
	}

	.mml-sm-195 {
		margin-left: -12.1875rem !important
	}

	.mm-sm-196 {
		margin: -12.25rem !important
	}

	.mmx-sm-196 {
		margin-left: -12.25rem !important;
		margin-right: -12.25rem !important
	}

	.mmy-sm-196 {
		margin-bottom: -12.25rem !important
	}

	.mmt-sm-196,
	.mmy-sm-196 {
		margin-top: -12.25rem !important
	}

	.mmr-sm-196 {
		margin-right: -12.25rem !important
	}

	.mmb-sm-196 {
		margin-bottom: -12.25rem !important
	}

	.mml-sm-196 {
		margin-left: -12.25rem !important
	}

	.mm-sm-197 {
		margin: -12.3125rem !important
	}

	.mmx-sm-197 {
		margin-left: -12.3125rem !important;
		margin-right: -12.3125rem !important
	}

	.mmy-sm-197 {
		margin-bottom: -12.3125rem !important
	}

	.mmt-sm-197,
	.mmy-sm-197 {
		margin-top: -12.3125rem !important
	}

	.mmr-sm-197 {
		margin-right: -12.3125rem !important
	}

	.mmb-sm-197 {
		margin-bottom: -12.3125rem !important
	}

	.mml-sm-197 {
		margin-left: -12.3125rem !important
	}

	.mm-sm-198 {
		margin: -12.375rem !important
	}

	.mmx-sm-198 {
		margin-left: -12.375rem !important;
		margin-right: -12.375rem !important
	}

	.mmy-sm-198 {
		margin-bottom: -12.375rem !important
	}

	.mmt-sm-198,
	.mmy-sm-198 {
		margin-top: -12.375rem !important
	}

	.mmr-sm-198 {
		margin-right: -12.375rem !important
	}

	.mmb-sm-198 {
		margin-bottom: -12.375rem !important
	}

	.mml-sm-198 {
		margin-left: -12.375rem !important
	}

	.mm-sm-199 {
		margin: -12.4375rem !important
	}

	.mmx-sm-199 {
		margin-left: -12.4375rem !important;
		margin-right: -12.4375rem !important
	}

	.mmy-sm-199 {
		margin-bottom: -12.4375rem !important
	}

	.mmt-sm-199,
	.mmy-sm-199 {
		margin-top: -12.4375rem !important
	}

	.mmr-sm-199 {
		margin-right: -12.4375rem !important
	}

	.mmb-sm-199 {
		margin-bottom: -12.4375rem !important
	}

	.mml-sm-199 {
		margin-left: -12.4375rem !important
	}

	.mm-sm-200 {
		margin: -12.5rem !important
	}

	.mmx-sm-200 {
		margin-left: -12.5rem !important;
		margin-right: -12.5rem !important
	}

	.mmy-sm-200 {
		margin-bottom: -12.5rem !important
	}

	.mmt-sm-200,
	.mmy-sm-200 {
		margin-top: -12.5rem !important
	}

	.mmr-sm-200 {
		margin-right: -12.5rem !important
	}

	.mmb-sm-200 {
		margin-bottom: -12.5rem !important
	}

	.mml-sm-200 {
		margin-left: -12.5rem !important
	}

	.mm-sm-auto {
		margin: -auto !important
	}

	.mmx-sm-auto {
		margin-left: -auto !important;
		margin-right: -auto !important
	}

	.mmy-sm-auto {
		margin-bottom: -auto !important
	}

	.mmt-sm-auto,
	.mmy-sm-auto {
		margin-top: -auto !important
	}

	.mmr-sm-auto {
		margin-right: -auto !important
	}

	.mmb-sm-auto {
		margin-bottom: -auto !important
	}

	.mml-sm-auto {
		margin-left: -auto !important
	}
}

@media (min-width:768px) {
	.mm-md-0 {
		margin: 0 !important
	}

	.mmx-md-0 {
		margin-left: 0 !important;
		margin-right: 0 !important
	}

	.mmy-md-0 {
		margin-bottom: 0 !important
	}

	.mmt-md-0,
	.mmy-md-0 {
		margin-top: 0 !important
	}

	.mmr-md-0 {
		margin-right: 0 !important
	}

	.mmb-md-0 {
		margin-bottom: 0 !important
	}

	.mml-md-0 {
		margin-left: 0 !important
	}

	.mm-md-1 {
		margin: -.0625rem !important
	}

	.mmx-md-1 {
		margin-left: -.0625rem !important;
		margin-right: -.0625rem !important
	}

	.mmy-md-1 {
		margin-bottom: -.0625rem !important
	}

	.mmt-md-1,
	.mmy-md-1 {
		margin-top: -.0625rem !important
	}

	.mmr-md-1 {
		margin-right: -.0625rem !important
	}

	.mmb-md-1 {
		margin-bottom: -.0625rem !important
	}

	.mml-md-1 {
		margin-left: -.0625rem !important
	}

	.mm-md-2 {
		margin: -.125rem !important
	}

	.mmx-md-2 {
		margin-left: -.125rem !important;
		margin-right: -.125rem !important
	}

	.mmy-md-2 {
		margin-bottom: -.125rem !important
	}

	.mmt-md-2,
	.mmy-md-2 {
		margin-top: -.125rem !important
	}

	.mmr-md-2 {
		margin-right: -.125rem !important
	}

	.mmb-md-2 {
		margin-bottom: -.125rem !important
	}

	.mml-md-2 {
		margin-left: -.125rem !important
	}

	.mm-md-3 {
		margin: -.1875rem !important
	}

	.mmx-md-3 {
		margin-left: -.1875rem !important;
		margin-right: -.1875rem !important
	}

	.mmy-md-3 {
		margin-bottom: -.1875rem !important
	}

	.mmt-md-3,
	.mmy-md-3 {
		margin-top: -.1875rem !important
	}

	.mmr-md-3 {
		margin-right: -.1875rem !important
	}

	.mmb-md-3 {
		margin-bottom: -.1875rem !important
	}

	.mml-md-3 {
		margin-left: -.1875rem !important
	}

	.mm-md-4 {
		margin: -.25rem !important
	}

	.mmx-md-4 {
		margin-left: -.25rem !important;
		margin-right: -.25rem !important
	}

	.mmy-md-4 {
		margin-bottom: -.25rem !important
	}

	.mmt-md-4,
	.mmy-md-4 {
		margin-top: -.25rem !important
	}

	.mmr-md-4 {
		margin-right: -.25rem !important
	}

	.mmb-md-4 {
		margin-bottom: -.25rem !important
	}

	.mml-md-4 {
		margin-left: -.25rem !important
	}

	.mm-md-5 {
		margin: -.3125rem !important
	}

	.mmx-md-5 {
		margin-left: -.3125rem !important;
		margin-right: -.3125rem !important
	}

	.mmy-md-5 {
		margin-bottom: -.3125rem !important
	}

	.mmt-md-5,
	.mmy-md-5 {
		margin-top: -.3125rem !important
	}

	.mmr-md-5 {
		margin-right: -.3125rem !important
	}

	.mmb-md-5 {
		margin-bottom: -.3125rem !important
	}

	.mml-md-5 {
		margin-left: -.3125rem !important
	}

	.mm-md-6 {
		margin: -.375rem !important
	}

	.mmx-md-6 {
		margin-left: -.375rem !important;
		margin-right: -.375rem !important
	}

	.mmy-md-6 {
		margin-bottom: -.375rem !important
	}

	.mmt-md-6,
	.mmy-md-6 {
		margin-top: -.375rem !important
	}

	.mmr-md-6 {
		margin-right: -.375rem !important
	}

	.mmb-md-6 {
		margin-bottom: -.375rem !important
	}

	.mml-md-6 {
		margin-left: -.375rem !important
	}

	.mm-md-7 {
		margin: -.4375rem !important
	}

	.mmx-md-7 {
		margin-left: -.4375rem !important;
		margin-right: -.4375rem !important
	}

	.mmy-md-7 {
		margin-bottom: -.4375rem !important
	}

	.mmt-md-7,
	.mmy-md-7 {
		margin-top: -.4375rem !important
	}

	.mmr-md-7 {
		margin-right: -.4375rem !important
	}

	.mmb-md-7 {
		margin-bottom: -.4375rem !important
	}

	.mml-md-7 {
		margin-left: -.4375rem !important
	}

	.mm-md-8 {
		margin: -.5rem !important
	}

	.mmx-md-8 {
		margin-left: -.5rem !important;
		margin-right: -.5rem !important
	}

	.mmy-md-8 {
		margin-bottom: -.5rem !important
	}

	.mmt-md-8,
	.mmy-md-8 {
		margin-top: -.5rem !important
	}

	.mmr-md-8 {
		margin-right: -.5rem !important
	}

	.mmb-md-8 {
		margin-bottom: -.5rem !important
	}

	.mml-md-8 {
		margin-left: -.5rem !important
	}

	.mm-md-9 {
		margin: -.5625rem !important
	}

	.mmx-md-9 {
		margin-left: -.5625rem !important;
		margin-right: -.5625rem !important
	}

	.mmy-md-9 {
		margin-bottom: -.5625rem !important
	}

	.mmt-md-9,
	.mmy-md-9 {
		margin-top: -.5625rem !important
	}

	.mmr-md-9 {
		margin-right: -.5625rem !important
	}

	.mmb-md-9 {
		margin-bottom: -.5625rem !important
	}

	.mml-md-9 {
		margin-left: -.5625rem !important
	}

	.mm-md-10 {
		margin: -.625rem !important
	}

	.mmx-md-10 {
		margin-left: -.625rem !important;
		margin-right: -.625rem !important
	}

	.mmy-md-10 {
		margin-bottom: -.625rem !important
	}

	.mmt-md-10,
	.mmy-md-10 {
		margin-top: -.625rem !important
	}

	.mmr-md-10 {
		margin-right: -.625rem !important
	}

	.mmb-md-10 {
		margin-bottom: -.625rem !important
	}

	.mml-md-10 {
		margin-left: -.625rem !important
	}

	.mm-md-11 {
		margin: -.6875rem !important
	}

	.mmx-md-11 {
		margin-left: -.6875rem !important;
		margin-right: -.6875rem !important
	}

	.mmy-md-11 {
		margin-bottom: -.6875rem !important
	}

	.mmt-md-11,
	.mmy-md-11 {
		margin-top: -.6875rem !important
	}

	.mmr-md-11 {
		margin-right: -.6875rem !important
	}

	.mmb-md-11 {
		margin-bottom: -.6875rem !important
	}

	.mml-md-11 {
		margin-left: -.6875rem !important
	}

	.mm-md-12 {
		margin: -.75rem !important
	}

	.mmx-md-12 {
		margin-left: -.75rem !important;
		margin-right: -.75rem !important
	}

	.mmy-md-12 {
		margin-bottom: -.75rem !important
	}

	.mmt-md-12,
	.mmy-md-12 {
		margin-top: -.75rem !important
	}

	.mmr-md-12 {
		margin-right: -.75rem !important
	}

	.mmb-md-12 {
		margin-bottom: -.75rem !important
	}

	.mml-md-12 {
		margin-left: -.75rem !important
	}

	.mm-md-13 {
		margin: -.8125rem !important
	}

	.mmx-md-13 {
		margin-left: -.8125rem !important;
		margin-right: -.8125rem !important
	}

	.mmy-md-13 {
		margin-bottom: -.8125rem !important
	}

	.mmt-md-13,
	.mmy-md-13 {
		margin-top: -.8125rem !important
	}

	.mmr-md-13 {
		margin-right: -.8125rem !important
	}

	.mmb-md-13 {
		margin-bottom: -.8125rem !important
	}

	.mml-md-13 {
		margin-left: -.8125rem !important
	}

	.mm-md-14 {
		margin: -.875rem !important
	}

	.mmx-md-14 {
		margin-left: -.875rem !important;
		margin-right: -.875rem !important
	}

	.mmy-md-14 {
		margin-bottom: -.875rem !important
	}

	.mmt-md-14,
	.mmy-md-14 {
		margin-top: -.875rem !important
	}

	.mmr-md-14 {
		margin-right: -.875rem !important
	}

	.mmb-md-14 {
		margin-bottom: -.875rem !important
	}

	.mml-md-14 {
		margin-left: -.875rem !important
	}

	.mm-md-15 {
		margin: -.9375rem !important
	}

	.mmx-md-15 {
		margin-left: -.9375rem !important;
		margin-right: -.9375rem !important
	}

	.mmy-md-15 {
		margin-bottom: -.9375rem !important
	}

	.mmt-md-15,
	.mmy-md-15 {
		margin-top: -.9375rem !important
	}

	.mmr-md-15 {
		margin-right: -.9375rem !important
	}

	.mmb-md-15 {
		margin-bottom: -.9375rem !important
	}

	.mml-md-15 {
		margin-left: -.9375rem !important
	}

	.mm-md-16 {
		margin: -1rem !important
	}

	.mmx-md-16 {
		margin-left: -1rem !important;
		margin-right: -1rem !important
	}

	.mmy-md-16 {
		margin-bottom: -1rem !important
	}

	.mmt-md-16,
	.mmy-md-16 {
		margin-top: -1rem !important
	}

	.mmr-md-16 {
		margin-right: -1rem !important
	}

	.mmb-md-16 {
		margin-bottom: -1rem !important
	}

	.mml-md-16 {
		margin-left: -1rem !important
	}

	.mm-md-17 {
		margin: -1.0625rem !important
	}

	.mmx-md-17 {
		margin-left: -1.0625rem !important;
		margin-right: -1.0625rem !important
	}

	.mmy-md-17 {
		margin-bottom: -1.0625rem !important
	}

	.mmt-md-17,
	.mmy-md-17 {
		margin-top: -1.0625rem !important
	}

	.mmr-md-17 {
		margin-right: -1.0625rem !important
	}

	.mmb-md-17 {
		margin-bottom: -1.0625rem !important
	}

	.mml-md-17 {
		margin-left: -1.0625rem !important
	}

	.mm-md-18 {
		margin: -1.125rem !important
	}

	.mmx-md-18 {
		margin-left: -1.125rem !important;
		margin-right: -1.125rem !important
	}

	.mmy-md-18 {
		margin-bottom: -1.125rem !important
	}

	.mmt-md-18,
	.mmy-md-18 {
		margin-top: -1.125rem !important
	}

	.mmr-md-18 {
		margin-right: -1.125rem !important
	}

	.mmb-md-18 {
		margin-bottom: -1.125rem !important
	}

	.mml-md-18 {
		margin-left: -1.125rem !important
	}

	.mm-md-19 {
		margin: -1.1875rem !important
	}

	.mmx-md-19 {
		margin-left: -1.1875rem !important;
		margin-right: -1.1875rem !important
	}

	.mmy-md-19 {
		margin-bottom: -1.1875rem !important
	}

	.mmt-md-19,
	.mmy-md-19 {
		margin-top: -1.1875rem !important
	}

	.mmr-md-19 {
		margin-right: -1.1875rem !important
	}

	.mmb-md-19 {
		margin-bottom: -1.1875rem !important
	}

	.mml-md-19 {
		margin-left: -1.1875rem !important
	}

	.mm-md-20 {
		margin: -1.25rem !important
	}

	.mmx-md-20 {
		margin-left: -1.25rem !important;
		margin-right: -1.25rem !important
	}

	.mmy-md-20 {
		margin-bottom: -1.25rem !important
	}

	.mmt-md-20,
	.mmy-md-20 {
		margin-top: -1.25rem !important
	}

	.mmr-md-20 {
		margin-right: -1.25rem !important
	}

	.mmb-md-20 {
		margin-bottom: -1.25rem !important
	}

	.mml-md-20 {
		margin-left: -1.25rem !important
	}

	.mm-md-21 {
		margin: -1.3125rem !important
	}

	.mmx-md-21 {
		margin-left: -1.3125rem !important;
		margin-right: -1.3125rem !important
	}

	.mmy-md-21 {
		margin-bottom: -1.3125rem !important
	}

	.mmt-md-21,
	.mmy-md-21 {
		margin-top: -1.3125rem !important
	}

	.mmr-md-21 {
		margin-right: -1.3125rem !important
	}

	.mmb-md-21 {
		margin-bottom: -1.3125rem !important
	}

	.mml-md-21 {
		margin-left: -1.3125rem !important
	}

	.mm-md-22 {
		margin: -1.375rem !important
	}

	.mmx-md-22 {
		margin-left: -1.375rem !important;
		margin-right: -1.375rem !important
	}

	.mmy-md-22 {
		margin-bottom: -1.375rem !important
	}

	.mmt-md-22,
	.mmy-md-22 {
		margin-top: -1.375rem !important
	}

	.mmr-md-22 {
		margin-right: -1.375rem !important
	}

	.mmb-md-22 {
		margin-bottom: -1.375rem !important
	}

	.mml-md-22 {
		margin-left: -1.375rem !important
	}

	.mm-md-23 {
		margin: -1.4375rem !important
	}

	.mmx-md-23 {
		margin-left: -1.4375rem !important;
		margin-right: -1.4375rem !important
	}

	.mmy-md-23 {
		margin-bottom: -1.4375rem !important
	}

	.mmt-md-23,
	.mmy-md-23 {
		margin-top: -1.4375rem !important
	}

	.mmr-md-23 {
		margin-right: -1.4375rem !important
	}

	.mmb-md-23 {
		margin-bottom: -1.4375rem !important
	}

	.mml-md-23 {
		margin-left: -1.4375rem !important
	}

	.mm-md-24 {
		margin: -1.5rem !important
	}

	.mmx-md-24 {
		margin-left: -1.5rem !important;
		margin-right: -1.5rem !important
	}

	.mmy-md-24 {
		margin-bottom: -1.5rem !important
	}

	.mmt-md-24,
	.mmy-md-24 {
		margin-top: -1.5rem !important
	}

	.mmr-md-24 {
		margin-right: -1.5rem !important
	}

	.mmb-md-24 {
		margin-bottom: -1.5rem !important
	}

	.mml-md-24 {
		margin-left: -1.5rem !important
	}

	.mm-md-25 {
		margin: -1.5625rem !important
	}

	.mmx-md-25 {
		margin-left: -1.5625rem !important;
		margin-right: -1.5625rem !important
	}

	.mmy-md-25 {
		margin-bottom: -1.5625rem !important
	}

	.mmt-md-25,
	.mmy-md-25 {
		margin-top: -1.5625rem !important
	}

	.mmr-md-25 {
		margin-right: -1.5625rem !important
	}

	.mmb-md-25 {
		margin-bottom: -1.5625rem !important
	}

	.mml-md-25 {
		margin-left: -1.5625rem !important
	}

	.mm-md-26 {
		margin: -1.625rem !important
	}

	.mmx-md-26 {
		margin-left: -1.625rem !important;
		margin-right: -1.625rem !important
	}

	.mmy-md-26 {
		margin-bottom: -1.625rem !important
	}

	.mmt-md-26,
	.mmy-md-26 {
		margin-top: -1.625rem !important
	}

	.mmr-md-26 {
		margin-right: -1.625rem !important
	}

	.mmb-md-26 {
		margin-bottom: -1.625rem !important
	}

	.mml-md-26 {
		margin-left: -1.625rem !important
	}

	.mm-md-27 {
		margin: -1.6875rem !important
	}

	.mmx-md-27 {
		margin-left: -1.6875rem !important;
		margin-right: -1.6875rem !important
	}

	.mmy-md-27 {
		margin-bottom: -1.6875rem !important
	}

	.mmt-md-27,
	.mmy-md-27 {
		margin-top: -1.6875rem !important
	}

	.mmr-md-27 {
		margin-right: -1.6875rem !important
	}

	.mmb-md-27 {
		margin-bottom: -1.6875rem !important
	}

	.mml-md-27 {
		margin-left: -1.6875rem !important
	}

	.mm-md-28 {
		margin: -1.75rem !important
	}

	.mmx-md-28 {
		margin-left: -1.75rem !important;
		margin-right: -1.75rem !important
	}

	.mmy-md-28 {
		margin-bottom: -1.75rem !important
	}

	.mmt-md-28,
	.mmy-md-28 {
		margin-top: -1.75rem !important
	}

	.mmr-md-28 {
		margin-right: -1.75rem !important
	}

	.mmb-md-28 {
		margin-bottom: -1.75rem !important
	}

	.mml-md-28 {
		margin-left: -1.75rem !important
	}

	.mm-md-29 {
		margin: -1.8125rem !important
	}

	.mmx-md-29 {
		margin-left: -1.8125rem !important;
		margin-right: -1.8125rem !important
	}

	.mmy-md-29 {
		margin-bottom: -1.8125rem !important
	}

	.mmt-md-29,
	.mmy-md-29 {
		margin-top: -1.8125rem !important
	}

	.mmr-md-29 {
		margin-right: -1.8125rem !important
	}

	.mmb-md-29 {
		margin-bottom: -1.8125rem !important
	}

	.mml-md-29 {
		margin-left: -1.8125rem !important
	}

	.mm-md-30 {
		margin: -1.875rem !important
	}

	.mmx-md-30 {
		margin-left: -1.875rem !important;
		margin-right: -1.875rem !important
	}

	.mmy-md-30 {
		margin-bottom: -1.875rem !important
	}

	.mmt-md-30,
	.mmy-md-30 {
		margin-top: -1.875rem !important
	}

	.mmr-md-30 {
		margin-right: -1.875rem !important
	}

	.mmb-md-30 {
		margin-bottom: -1.875rem !important
	}

	.mml-md-30 {
		margin-left: -1.875rem !important
	}

	.mm-md-31 {
		margin: -1.9375rem !important
	}

	.mmx-md-31 {
		margin-left: -1.9375rem !important;
		margin-right: -1.9375rem !important
	}

	.mmy-md-31 {
		margin-bottom: -1.9375rem !important
	}

	.mmt-md-31,
	.mmy-md-31 {
		margin-top: -1.9375rem !important
	}

	.mmr-md-31 {
		margin-right: -1.9375rem !important
	}

	.mmb-md-31 {
		margin-bottom: -1.9375rem !important
	}

	.mml-md-31 {
		margin-left: -1.9375rem !important
	}

	.mm-md-32 {
		margin: -2rem !important
	}

	.mmx-md-32 {
		margin-left: -2rem !important;
		margin-right: -2rem !important
	}

	.mmy-md-32 {
		margin-bottom: -2rem !important
	}

	.mmt-md-32,
	.mmy-md-32 {
		margin-top: -2rem !important
	}

	.mmr-md-32 {
		margin-right: -2rem !important
	}

	.mmb-md-32 {
		margin-bottom: -2rem !important
	}

	.mml-md-32 {
		margin-left: -2rem !important
	}

	.mm-md-33 {
		margin: -2.0625rem !important
	}

	.mmx-md-33 {
		margin-left: -2.0625rem !important;
		margin-right: -2.0625rem !important
	}

	.mmy-md-33 {
		margin-bottom: -2.0625rem !important
	}

	.mmt-md-33,
	.mmy-md-33 {
		margin-top: -2.0625rem !important
	}

	.mmr-md-33 {
		margin-right: -2.0625rem !important
	}

	.mmb-md-33 {
		margin-bottom: -2.0625rem !important
	}

	.mml-md-33 {
		margin-left: -2.0625rem !important
	}

	.mm-md-34 {
		margin: -2.125rem !important
	}

	.mmx-md-34 {
		margin-left: -2.125rem !important;
		margin-right: -2.125rem !important
	}

	.mmy-md-34 {
		margin-bottom: -2.125rem !important
	}

	.mmt-md-34,
	.mmy-md-34 {
		margin-top: -2.125rem !important
	}

	.mmr-md-34 {
		margin-right: -2.125rem !important
	}

	.mmb-md-34 {
		margin-bottom: -2.125rem !important
	}

	.mml-md-34 {
		margin-left: -2.125rem !important
	}

	.mm-md-35 {
		margin: -2.1875rem !important
	}

	.mmx-md-35 {
		margin-left: -2.1875rem !important;
		margin-right: -2.1875rem !important
	}

	.mmy-md-35 {
		margin-bottom: -2.1875rem !important
	}

	.mmt-md-35,
	.mmy-md-35 {
		margin-top: -2.1875rem !important
	}

	.mmr-md-35 {
		margin-right: -2.1875rem !important
	}

	.mmb-md-35 {
		margin-bottom: -2.1875rem !important
	}

	.mml-md-35 {
		margin-left: -2.1875rem !important
	}

	.mm-md-36 {
		margin: -2.25rem !important
	}

	.mmx-md-36 {
		margin-left: -2.25rem !important;
		margin-right: -2.25rem !important
	}

	.mmy-md-36 {
		margin-bottom: -2.25rem !important
	}

	.mmt-md-36,
	.mmy-md-36 {
		margin-top: -2.25rem !important
	}

	.mmr-md-36 {
		margin-right: -2.25rem !important
	}

	.mmb-md-36 {
		margin-bottom: -2.25rem !important
	}

	.mml-md-36 {
		margin-left: -2.25rem !important
	}

	.mm-md-37 {
		margin: -2.3125rem !important
	}

	.mmx-md-37 {
		margin-left: -2.3125rem !important;
		margin-right: -2.3125rem !important
	}

	.mmy-md-37 {
		margin-bottom: -2.3125rem !important
	}

	.mmt-md-37,
	.mmy-md-37 {
		margin-top: -2.3125rem !important
	}

	.mmr-md-37 {
		margin-right: -2.3125rem !important
	}

	.mmb-md-37 {
		margin-bottom: -2.3125rem !important
	}

	.mml-md-37 {
		margin-left: -2.3125rem !important
	}

	.mm-md-38 {
		margin: -2.375rem !important
	}

	.mmx-md-38 {
		margin-left: -2.375rem !important;
		margin-right: -2.375rem !important
	}

	.mmy-md-38 {
		margin-bottom: -2.375rem !important
	}

	.mmt-md-38,
	.mmy-md-38 {
		margin-top: -2.375rem !important
	}

	.mmr-md-38 {
		margin-right: -2.375rem !important
	}

	.mmb-md-38 {
		margin-bottom: -2.375rem !important
	}

	.mml-md-38 {
		margin-left: -2.375rem !important
	}

	.mm-md-39 {
		margin: -2.4375rem !important
	}

	.mmx-md-39 {
		margin-left: -2.4375rem !important;
		margin-right: -2.4375rem !important
	}

	.mmy-md-39 {
		margin-bottom: -2.4375rem !important
	}

	.mmt-md-39,
	.mmy-md-39 {
		margin-top: -2.4375rem !important
	}

	.mmr-md-39 {
		margin-right: -2.4375rem !important
	}

	.mmb-md-39 {
		margin-bottom: -2.4375rem !important
	}

	.mml-md-39 {
		margin-left: -2.4375rem !important
	}

	.mm-md-40 {
		margin: -2.5rem !important
	}

	.mmx-md-40 {
		margin-left: -2.5rem !important;
		margin-right: -2.5rem !important
	}

	.mmy-md-40 {
		margin-bottom: -2.5rem !important
	}

	.mmt-md-40,
	.mmy-md-40 {
		margin-top: -2.5rem !important
	}

	.mmr-md-40 {
		margin-right: -2.5rem !important
	}

	.mmb-md-40 {
		margin-bottom: -2.5rem !important
	}

	.mml-md-40 {
		margin-left: -2.5rem !important
	}

	.mm-md-41 {
		margin: -2.5625rem !important
	}

	.mmx-md-41 {
		margin-left: -2.5625rem !important;
		margin-right: -2.5625rem !important
	}

	.mmy-md-41 {
		margin-bottom: -2.5625rem !important
	}

	.mmt-md-41,
	.mmy-md-41 {
		margin-top: -2.5625rem !important
	}

	.mmr-md-41 {
		margin-right: -2.5625rem !important
	}

	.mmb-md-41 {
		margin-bottom: -2.5625rem !important
	}

	.mml-md-41 {
		margin-left: -2.5625rem !important
	}

	.mm-md-42 {
		margin: -2.625rem !important
	}

	.mmx-md-42 {
		margin-left: -2.625rem !important;
		margin-right: -2.625rem !important
	}

	.mmy-md-42 {
		margin-bottom: -2.625rem !important
	}

	.mmt-md-42,
	.mmy-md-42 {
		margin-top: -2.625rem !important
	}

	.mmr-md-42 {
		margin-right: -2.625rem !important
	}

	.mmb-md-42 {
		margin-bottom: -2.625rem !important
	}

	.mml-md-42 {
		margin-left: -2.625rem !important
	}

	.mm-md-43 {
		margin: -2.6875rem !important
	}

	.mmx-md-43 {
		margin-left: -2.6875rem !important;
		margin-right: -2.6875rem !important
	}

	.mmy-md-43 {
		margin-bottom: -2.6875rem !important
	}

	.mmt-md-43,
	.mmy-md-43 {
		margin-top: -2.6875rem !important
	}

	.mmr-md-43 {
		margin-right: -2.6875rem !important
	}

	.mmb-md-43 {
		margin-bottom: -2.6875rem !important
	}

	.mml-md-43 {
		margin-left: -2.6875rem !important
	}

	.mm-md-44 {
		margin: -2.75rem !important
	}

	.mmx-md-44 {
		margin-left: -2.75rem !important;
		margin-right: -2.75rem !important
	}

	.mmy-md-44 {
		margin-bottom: -2.75rem !important
	}

	.mmt-md-44,
	.mmy-md-44 {
		margin-top: -2.75rem !important
	}

	.mmr-md-44 {
		margin-right: -2.75rem !important
	}

	.mmb-md-44 {
		margin-bottom: -2.75rem !important
	}

	.mml-md-44 {
		margin-left: -2.75rem !important
	}

	.mm-md-45 {
		margin: -2.8125rem !important
	}

	.mmx-md-45 {
		margin-left: -2.8125rem !important;
		margin-right: -2.8125rem !important
	}

	.mmy-md-45 {
		margin-bottom: -2.8125rem !important
	}

	.mmt-md-45,
	.mmy-md-45 {
		margin-top: -2.8125rem !important
	}

	.mmr-md-45 {
		margin-right: -2.8125rem !important
	}

	.mmb-md-45 {
		margin-bottom: -2.8125rem !important
	}

	.mml-md-45 {
		margin-left: -2.8125rem !important
	}

	.mm-md-46 {
		margin: -2.875rem !important
	}

	.mmx-md-46 {
		margin-left: -2.875rem !important;
		margin-right: -2.875rem !important
	}

	.mmy-md-46 {
		margin-bottom: -2.875rem !important
	}

	.mmt-md-46,
	.mmy-md-46 {
		margin-top: -2.875rem !important
	}

	.mmr-md-46 {
		margin-right: -2.875rem !important
	}

	.mmb-md-46 {
		margin-bottom: -2.875rem !important
	}

	.mml-md-46 {
		margin-left: -2.875rem !important
	}

	.mm-md-47 {
		margin: -2.9375rem !important
	}

	.mmx-md-47 {
		margin-left: -2.9375rem !important;
		margin-right: -2.9375rem !important
	}

	.mmy-md-47 {
		margin-bottom: -2.9375rem !important
	}

	.mmt-md-47,
	.mmy-md-47 {
		margin-top: -2.9375rem !important
	}

	.mmr-md-47 {
		margin-right: -2.9375rem !important
	}

	.mmb-md-47 {
		margin-bottom: -2.9375rem !important
	}

	.mml-md-47 {
		margin-left: -2.9375rem !important
	}

	.mm-md-48 {
		margin: -3rem !important
	}

	.mmx-md-48 {
		margin-left: -3rem !important;
		margin-right: -3rem !important
	}

	.mmy-md-48 {
		margin-bottom: -3rem !important
	}

	.mmt-md-48,
	.mmy-md-48 {
		margin-top: -3rem !important
	}

	.mmr-md-48 {
		margin-right: -3rem !important
	}

	.mmb-md-48 {
		margin-bottom: -3rem !important
	}

	.mml-md-48 {
		margin-left: -3rem !important
	}

	.mm-md-49 {
		margin: -3.0625rem !important
	}

	.mmx-md-49 {
		margin-left: -3.0625rem !important;
		margin-right: -3.0625rem !important
	}

	.mmy-md-49 {
		margin-bottom: -3.0625rem !important
	}

	.mmt-md-49,
	.mmy-md-49 {
		margin-top: -3.0625rem !important
	}

	.mmr-md-49 {
		margin-right: -3.0625rem !important
	}

	.mmb-md-49 {
		margin-bottom: -3.0625rem !important
	}

	.mml-md-49 {
		margin-left: -3.0625rem !important
	}

	.mm-md-50 {
		margin: -3.125rem !important
	}

	.mmx-md-50 {
		margin-left: -3.125rem !important;
		margin-right: -3.125rem !important
	}

	.mmy-md-50 {
		margin-bottom: -3.125rem !important
	}

	.mmt-md-50,
	.mmy-md-50 {
		margin-top: -3.125rem !important
	}

	.mmr-md-50 {
		margin-right: -3.125rem !important
	}

	.mmb-md-50 {
		margin-bottom: -3.125rem !important
	}

	.mml-md-50 {
		margin-left: -3.125rem !important
	}

	.mm-md-51 {
		margin: -3.1875rem !important
	}

	.mmx-md-51 {
		margin-left: -3.1875rem !important;
		margin-right: -3.1875rem !important
	}

	.mmy-md-51 {
		margin-bottom: -3.1875rem !important
	}

	.mmt-md-51,
	.mmy-md-51 {
		margin-top: -3.1875rem !important
	}

	.mmr-md-51 {
		margin-right: -3.1875rem !important
	}

	.mmb-md-51 {
		margin-bottom: -3.1875rem !important
	}

	.mml-md-51 {
		margin-left: -3.1875rem !important
	}

	.mm-md-52 {
		margin: -3.25rem !important
	}

	.mmx-md-52 {
		margin-left: -3.25rem !important;
		margin-right: -3.25rem !important
	}

	.mmy-md-52 {
		margin-bottom: -3.25rem !important
	}

	.mmt-md-52,
	.mmy-md-52 {
		margin-top: -3.25rem !important
	}

	.mmr-md-52 {
		margin-right: -3.25rem !important
	}

	.mmb-md-52 {
		margin-bottom: -3.25rem !important
	}

	.mml-md-52 {
		margin-left: -3.25rem !important
	}

	.mm-md-53 {
		margin: -3.3125rem !important
	}

	.mmx-md-53 {
		margin-left: -3.3125rem !important;
		margin-right: -3.3125rem !important
	}

	.mmy-md-53 {
		margin-bottom: -3.3125rem !important
	}

	.mmt-md-53,
	.mmy-md-53 {
		margin-top: -3.3125rem !important
	}

	.mmr-md-53 {
		margin-right: -3.3125rem !important
	}

	.mmb-md-53 {
		margin-bottom: -3.3125rem !important
	}

	.mml-md-53 {
		margin-left: -3.3125rem !important
	}

	.mm-md-54 {
		margin: -3.375rem !important
	}

	.mmx-md-54 {
		margin-left: -3.375rem !important;
		margin-right: -3.375rem !important
	}

	.mmy-md-54 {
		margin-bottom: -3.375rem !important
	}

	.mmt-md-54,
	.mmy-md-54 {
		margin-top: -3.375rem !important
	}

	.mmr-md-54 {
		margin-right: -3.375rem !important
	}

	.mmb-md-54 {
		margin-bottom: -3.375rem !important
	}

	.mml-md-54 {
		margin-left: -3.375rem !important
	}

	.mm-md-55 {
		margin: -3.4375rem !important
	}

	.mmx-md-55 {
		margin-left: -3.4375rem !important;
		margin-right: -3.4375rem !important
	}

	.mmy-md-55 {
		margin-bottom: -3.4375rem !important
	}

	.mmt-md-55,
	.mmy-md-55 {
		margin-top: -3.4375rem !important
	}

	.mmr-md-55 {
		margin-right: -3.4375rem !important
	}

	.mmb-md-55 {
		margin-bottom: -3.4375rem !important
	}

	.mml-md-55 {
		margin-left: -3.4375rem !important
	}

	.mm-md-56 {
		margin: -3.5rem !important
	}

	.mmx-md-56 {
		margin-left: -3.5rem !important;
		margin-right: -3.5rem !important
	}

	.mmy-md-56 {
		margin-bottom: -3.5rem !important
	}

	.mmt-md-56,
	.mmy-md-56 {
		margin-top: -3.5rem !important
	}

	.mmr-md-56 {
		margin-right: -3.5rem !important
	}

	.mmb-md-56 {
		margin-bottom: -3.5rem !important
	}

	.mml-md-56 {
		margin-left: -3.5rem !important
	}

	.mm-md-57 {
		margin: -3.5625rem !important
	}

	.mmx-md-57 {
		margin-left: -3.5625rem !important;
		margin-right: -3.5625rem !important
	}

	.mmy-md-57 {
		margin-bottom: -3.5625rem !important
	}

	.mmt-md-57,
	.mmy-md-57 {
		margin-top: -3.5625rem !important
	}

	.mmr-md-57 {
		margin-right: -3.5625rem !important
	}

	.mmb-md-57 {
		margin-bottom: -3.5625rem !important
	}

	.mml-md-57 {
		margin-left: -3.5625rem !important
	}

	.mm-md-58 {
		margin: -3.625rem !important
	}

	.mmx-md-58 {
		margin-left: -3.625rem !important;
		margin-right: -3.625rem !important
	}

	.mmy-md-58 {
		margin-bottom: -3.625rem !important
	}

	.mmt-md-58,
	.mmy-md-58 {
		margin-top: -3.625rem !important
	}

	.mmr-md-58 {
		margin-right: -3.625rem !important
	}

	.mmb-md-58 {
		margin-bottom: -3.625rem !important
	}

	.mml-md-58 {
		margin-left: -3.625rem !important
	}

	.mm-md-59 {
		margin: -3.6875rem !important
	}

	.mmx-md-59 {
		margin-left: -3.6875rem !important;
		margin-right: -3.6875rem !important
	}

	.mmy-md-59 {
		margin-bottom: -3.6875rem !important
	}

	.mmt-md-59,
	.mmy-md-59 {
		margin-top: -3.6875rem !important
	}

	.mmr-md-59 {
		margin-right: -3.6875rem !important
	}

	.mmb-md-59 {
		margin-bottom: -3.6875rem !important
	}

	.mml-md-59 {
		margin-left: -3.6875rem !important
	}

	.mm-md-60 {
		margin: -3.75rem !important
	}

	.mmx-md-60 {
		margin-left: -3.75rem !important;
		margin-right: -3.75rem !important
	}

	.mmy-md-60 {
		margin-bottom: -3.75rem !important
	}

	.mmt-md-60,
	.mmy-md-60 {
		margin-top: -3.75rem !important
	}

	.mmr-md-60 {
		margin-right: -3.75rem !important
	}

	.mmb-md-60 {
		margin-bottom: -3.75rem !important
	}

	.mml-md-60 {
		margin-left: -3.75rem !important
	}

	.mm-md-61 {
		margin: -3.8125rem !important
	}

	.mmx-md-61 {
		margin-left: -3.8125rem !important;
		margin-right: -3.8125rem !important
	}

	.mmy-md-61 {
		margin-bottom: -3.8125rem !important
	}

	.mmt-md-61,
	.mmy-md-61 {
		margin-top: -3.8125rem !important
	}

	.mmr-md-61 {
		margin-right: -3.8125rem !important
	}

	.mmb-md-61 {
		margin-bottom: -3.8125rem !important
	}

	.mml-md-61 {
		margin-left: -3.8125rem !important
	}

	.mm-md-62 {
		margin: -3.875rem !important
	}

	.mmx-md-62 {
		margin-left: -3.875rem !important;
		margin-right: -3.875rem !important
	}

	.mmy-md-62 {
		margin-bottom: -3.875rem !important
	}

	.mmt-md-62,
	.mmy-md-62 {
		margin-top: -3.875rem !important
	}

	.mmr-md-62 {
		margin-right: -3.875rem !important
	}

	.mmb-md-62 {
		margin-bottom: -3.875rem !important
	}

	.mml-md-62 {
		margin-left: -3.875rem !important
	}

	.mm-md-63 {
		margin: -3.9375rem !important
	}

	.mmx-md-63 {
		margin-left: -3.9375rem !important;
		margin-right: -3.9375rem !important
	}

	.mmy-md-63 {
		margin-bottom: -3.9375rem !important
	}

	.mmt-md-63,
	.mmy-md-63 {
		margin-top: -3.9375rem !important
	}

	.mmr-md-63 {
		margin-right: -3.9375rem !important
	}

	.mmb-md-63 {
		margin-bottom: -3.9375rem !important
	}

	.mml-md-63 {
		margin-left: -3.9375rem !important
	}

	.mm-md-64 {
		margin: -4rem !important
	}

	.mmx-md-64 {
		margin-left: -4rem !important;
		margin-right: -4rem !important
	}

	.mmy-md-64 {
		margin-bottom: -4rem !important
	}

	.mmt-md-64,
	.mmy-md-64 {
		margin-top: -4rem !important
	}

	.mmr-md-64 {
		margin-right: -4rem !important
	}

	.mmb-md-64 {
		margin-bottom: -4rem !important
	}

	.mml-md-64 {
		margin-left: -4rem !important
	}

	.mm-md-65 {
		margin: -4.0625rem !important
	}

	.mmx-md-65 {
		margin-left: -4.0625rem !important;
		margin-right: -4.0625rem !important
	}

	.mmy-md-65 {
		margin-bottom: -4.0625rem !important
	}

	.mmt-md-65,
	.mmy-md-65 {
		margin-top: -4.0625rem !important
	}

	.mmr-md-65 {
		margin-right: -4.0625rem !important
	}

	.mmb-md-65 {
		margin-bottom: -4.0625rem !important
	}

	.mml-md-65 {
		margin-left: -4.0625rem !important
	}

	.mm-md-66 {
		margin: -4.125rem !important
	}

	.mmx-md-66 {
		margin-left: -4.125rem !important;
		margin-right: -4.125rem !important
	}

	.mmy-md-66 {
		margin-bottom: -4.125rem !important
	}

	.mmt-md-66,
	.mmy-md-66 {
		margin-top: -4.125rem !important
	}

	.mmr-md-66 {
		margin-right: -4.125rem !important
	}

	.mmb-md-66 {
		margin-bottom: -4.125rem !important
	}

	.mml-md-66 {
		margin-left: -4.125rem !important
	}

	.mm-md-67 {
		margin: -4.1875rem !important
	}

	.mmx-md-67 {
		margin-left: -4.1875rem !important;
		margin-right: -4.1875rem !important
	}

	.mmy-md-67 {
		margin-bottom: -4.1875rem !important
	}

	.mmt-md-67,
	.mmy-md-67 {
		margin-top: -4.1875rem !important
	}

	.mmr-md-67 {
		margin-right: -4.1875rem !important
	}

	.mmb-md-67 {
		margin-bottom: -4.1875rem !important
	}

	.mml-md-67 {
		margin-left: -4.1875rem !important
	}

	.mm-md-68 {
		margin: -4.25rem !important
	}

	.mmx-md-68 {
		margin-left: -4.25rem !important;
		margin-right: -4.25rem !important
	}

	.mmy-md-68 {
		margin-bottom: -4.25rem !important
	}

	.mmt-md-68,
	.mmy-md-68 {
		margin-top: -4.25rem !important
	}

	.mmr-md-68 {
		margin-right: -4.25rem !important
	}

	.mmb-md-68 {
		margin-bottom: -4.25rem !important
	}

	.mml-md-68 {
		margin-left: -4.25rem !important
	}

	.mm-md-69 {
		margin: -4.3125rem !important
	}

	.mmx-md-69 {
		margin-left: -4.3125rem !important;
		margin-right: -4.3125rem !important
	}

	.mmy-md-69 {
		margin-bottom: -4.3125rem !important
	}

	.mmt-md-69,
	.mmy-md-69 {
		margin-top: -4.3125rem !important
	}

	.mmr-md-69 {
		margin-right: -4.3125rem !important
	}

	.mmb-md-69 {
		margin-bottom: -4.3125rem !important
	}

	.mml-md-69 {
		margin-left: -4.3125rem !important
	}

	.mm-md-70 {
		margin: -4.375rem !important
	}

	.mmx-md-70 {
		margin-left: -4.375rem !important;
		margin-right: -4.375rem !important
	}

	.mmy-md-70 {
		margin-bottom: -4.375rem !important
	}

	.mmt-md-70,
	.mmy-md-70 {
		margin-top: -4.375rem !important
	}

	.mmr-md-70 {
		margin-right: -4.375rem !important
	}

	.mmb-md-70 {
		margin-bottom: -4.375rem !important
	}

	.mml-md-70 {
		margin-left: -4.375rem !important
	}

	.mm-md-71 {
		margin: -4.4375rem !important
	}

	.mmx-md-71 {
		margin-left: -4.4375rem !important;
		margin-right: -4.4375rem !important
	}

	.mmy-md-71 {
		margin-bottom: -4.4375rem !important
	}

	.mmt-md-71,
	.mmy-md-71 {
		margin-top: -4.4375rem !important
	}

	.mmr-md-71 {
		margin-right: -4.4375rem !important
	}

	.mmb-md-71 {
		margin-bottom: -4.4375rem !important
	}

	.mml-md-71 {
		margin-left: -4.4375rem !important
	}

	.mm-md-72 {
		margin: -4.5rem !important
	}

	.mmx-md-72 {
		margin-left: -4.5rem !important;
		margin-right: -4.5rem !important
	}

	.mmy-md-72 {
		margin-bottom: -4.5rem !important
	}

	.mmt-md-72,
	.mmy-md-72 {
		margin-top: -4.5rem !important
	}

	.mmr-md-72 {
		margin-right: -4.5rem !important
	}

	.mmb-md-72 {
		margin-bottom: -4.5rem !important
	}

	.mml-md-72 {
		margin-left: -4.5rem !important
	}

	.mm-md-73 {
		margin: -4.5625rem !important
	}

	.mmx-md-73 {
		margin-left: -4.5625rem !important;
		margin-right: -4.5625rem !important
	}

	.mmy-md-73 {
		margin-bottom: -4.5625rem !important
	}

	.mmt-md-73,
	.mmy-md-73 {
		margin-top: -4.5625rem !important
	}

	.mmr-md-73 {
		margin-right: -4.5625rem !important
	}

	.mmb-md-73 {
		margin-bottom: -4.5625rem !important
	}

	.mml-md-73 {
		margin-left: -4.5625rem !important
	}

	.mm-md-74 {
		margin: -4.625rem !important
	}

	.mmx-md-74 {
		margin-left: -4.625rem !important;
		margin-right: -4.625rem !important
	}

	.mmy-md-74 {
		margin-bottom: -4.625rem !important
	}

	.mmt-md-74,
	.mmy-md-74 {
		margin-top: -4.625rem !important
	}

	.mmr-md-74 {
		margin-right: -4.625rem !important
	}

	.mmb-md-74 {
		margin-bottom: -4.625rem !important
	}

	.mml-md-74 {
		margin-left: -4.625rem !important
	}

	.mm-md-75 {
		margin: -4.6875rem !important
	}

	.mmx-md-75 {
		margin-left: -4.6875rem !important;
		margin-right: -4.6875rem !important
	}

	.mmy-md-75 {
		margin-bottom: -4.6875rem !important
	}

	.mmt-md-75,
	.mmy-md-75 {
		margin-top: -4.6875rem !important
	}

	.mmr-md-75 {
		margin-right: -4.6875rem !important
	}

	.mmb-md-75 {
		margin-bottom: -4.6875rem !important
	}

	.mml-md-75 {
		margin-left: -4.6875rem !important
	}

	.mm-md-76 {
		margin: -4.75rem !important
	}

	.mmx-md-76 {
		margin-left: -4.75rem !important;
		margin-right: -4.75rem !important
	}

	.mmy-md-76 {
		margin-bottom: -4.75rem !important
	}

	.mmt-md-76,
	.mmy-md-76 {
		margin-top: -4.75rem !important
	}

	.mmr-md-76 {
		margin-right: -4.75rem !important
	}

	.mmb-md-76 {
		margin-bottom: -4.75rem !important
	}

	.mml-md-76 {
		margin-left: -4.75rem !important
	}

	.mm-md-77 {
		margin: -4.8125rem !important
	}

	.mmx-md-77 {
		margin-left: -4.8125rem !important;
		margin-right: -4.8125rem !important
	}

	.mmy-md-77 {
		margin-bottom: -4.8125rem !important
	}

	.mmt-md-77,
	.mmy-md-77 {
		margin-top: -4.8125rem !important
	}

	.mmr-md-77 {
		margin-right: -4.8125rem !important
	}

	.mmb-md-77 {
		margin-bottom: -4.8125rem !important
	}

	.mml-md-77 {
		margin-left: -4.8125rem !important
	}

	.mm-md-78 {
		margin: -4.875rem !important
	}

	.mmx-md-78 {
		margin-left: -4.875rem !important;
		margin-right: -4.875rem !important
	}

	.mmy-md-78 {
		margin-bottom: -4.875rem !important
	}

	.mmt-md-78,
	.mmy-md-78 {
		margin-top: -4.875rem !important
	}

	.mmr-md-78 {
		margin-right: -4.875rem !important
	}

	.mmb-md-78 {
		margin-bottom: -4.875rem !important
	}

	.mml-md-78 {
		margin-left: -4.875rem !important
	}

	.mm-md-79 {
		margin: -4.9375rem !important
	}

	.mmx-md-79 {
		margin-left: -4.9375rem !important;
		margin-right: -4.9375rem !important
	}

	.mmy-md-79 {
		margin-bottom: -4.9375rem !important
	}

	.mmt-md-79,
	.mmy-md-79 {
		margin-top: -4.9375rem !important
	}

	.mmr-md-79 {
		margin-right: -4.9375rem !important
	}

	.mmb-md-79 {
		margin-bottom: -4.9375rem !important
	}

	.mml-md-79 {
		margin-left: -4.9375rem !important
	}

	.mm-md-80 {
		margin: -5rem !important
	}

	.mmx-md-80 {
		margin-left: -5rem !important;
		margin-right: -5rem !important
	}

	.mmy-md-80 {
		margin-bottom: -5rem !important
	}

	.mmt-md-80,
	.mmy-md-80 {
		margin-top: -5rem !important
	}

	.mmr-md-80 {
		margin-right: -5rem !important
	}

	.mmb-md-80 {
		margin-bottom: -5rem !important
	}

	.mml-md-80 {
		margin-left: -5rem !important
	}

	.mm-md-81 {
		margin: -5.0625rem !important
	}

	.mmx-md-81 {
		margin-left: -5.0625rem !important;
		margin-right: -5.0625rem !important
	}

	.mmy-md-81 {
		margin-bottom: -5.0625rem !important
	}

	.mmt-md-81,
	.mmy-md-81 {
		margin-top: -5.0625rem !important
	}

	.mmr-md-81 {
		margin-right: -5.0625rem !important
	}

	.mmb-md-81 {
		margin-bottom: -5.0625rem !important
	}

	.mml-md-81 {
		margin-left: -5.0625rem !important
	}

	.mm-md-82 {
		margin: -5.125rem !important
	}

	.mmx-md-82 {
		margin-left: -5.125rem !important;
		margin-right: -5.125rem !important
	}

	.mmy-md-82 {
		margin-bottom: -5.125rem !important
	}

	.mmt-md-82,
	.mmy-md-82 {
		margin-top: -5.125rem !important
	}

	.mmr-md-82 {
		margin-right: -5.125rem !important
	}

	.mmb-md-82 {
		margin-bottom: -5.125rem !important
	}

	.mml-md-82 {
		margin-left: -5.125rem !important
	}

	.mm-md-83 {
		margin: -5.1875rem !important
	}

	.mmx-md-83 {
		margin-left: -5.1875rem !important;
		margin-right: -5.1875rem !important
	}

	.mmy-md-83 {
		margin-bottom: -5.1875rem !important
	}

	.mmt-md-83,
	.mmy-md-83 {
		margin-top: -5.1875rem !important
	}

	.mmr-md-83 {
		margin-right: -5.1875rem !important
	}

	.mmb-md-83 {
		margin-bottom: -5.1875rem !important
	}

	.mml-md-83 {
		margin-left: -5.1875rem !important
	}

	.mm-md-84 {
		margin: -5.25rem !important
	}

	.mmx-md-84 {
		margin-left: -5.25rem !important;
		margin-right: -5.25rem !important
	}

	.mmy-md-84 {
		margin-bottom: -5.25rem !important
	}

	.mmt-md-84,
	.mmy-md-84 {
		margin-top: -5.25rem !important
	}

	.mmr-md-84 {
		margin-right: -5.25rem !important
	}

	.mmb-md-84 {
		margin-bottom: -5.25rem !important
	}

	.mml-md-84 {
		margin-left: -5.25rem !important
	}

	.mm-md-85 {
		margin: -5.3125rem !important
	}

	.mmx-md-85 {
		margin-left: -5.3125rem !important;
		margin-right: -5.3125rem !important
	}

	.mmy-md-85 {
		margin-bottom: -5.3125rem !important
	}

	.mmt-md-85,
	.mmy-md-85 {
		margin-top: -5.3125rem !important
	}

	.mmr-md-85 {
		margin-right: -5.3125rem !important
	}

	.mmb-md-85 {
		margin-bottom: -5.3125rem !important
	}

	.mml-md-85 {
		margin-left: -5.3125rem !important
	}

	.mm-md-86 {
		margin: -5.375rem !important
	}

	.mmx-md-86 {
		margin-left: -5.375rem !important;
		margin-right: -5.375rem !important
	}

	.mmy-md-86 {
		margin-bottom: -5.375rem !important
	}

	.mmt-md-86,
	.mmy-md-86 {
		margin-top: -5.375rem !important
	}

	.mmr-md-86 {
		margin-right: -5.375rem !important
	}

	.mmb-md-86 {
		margin-bottom: -5.375rem !important
	}

	.mml-md-86 {
		margin-left: -5.375rem !important
	}

	.mm-md-87 {
		margin: -5.4375rem !important
	}

	.mmx-md-87 {
		margin-left: -5.4375rem !important;
		margin-right: -5.4375rem !important
	}

	.mmy-md-87 {
		margin-bottom: -5.4375rem !important
	}

	.mmt-md-87,
	.mmy-md-87 {
		margin-top: -5.4375rem !important
	}

	.mmr-md-87 {
		margin-right: -5.4375rem !important
	}

	.mmb-md-87 {
		margin-bottom: -5.4375rem !important
	}

	.mml-md-87 {
		margin-left: -5.4375rem !important
	}

	.mm-md-88 {
		margin: -5.5rem !important
	}

	.mmx-md-88 {
		margin-left: -5.5rem !important;
		margin-right: -5.5rem !important
	}

	.mmy-md-88 {
		margin-bottom: -5.5rem !important
	}

	.mmt-md-88,
	.mmy-md-88 {
		margin-top: -5.5rem !important
	}

	.mmr-md-88 {
		margin-right: -5.5rem !important
	}

	.mmb-md-88 {
		margin-bottom: -5.5rem !important
	}

	.mml-md-88 {
		margin-left: -5.5rem !important
	}

	.mm-md-89 {
		margin: -5.5625rem !important
	}

	.mmx-md-89 {
		margin-left: -5.5625rem !important;
		margin-right: -5.5625rem !important
	}

	.mmy-md-89 {
		margin-bottom: -5.5625rem !important
	}

	.mmt-md-89,
	.mmy-md-89 {
		margin-top: -5.5625rem !important
	}

	.mmr-md-89 {
		margin-right: -5.5625rem !important
	}

	.mmb-md-89 {
		margin-bottom: -5.5625rem !important
	}

	.mml-md-89 {
		margin-left: -5.5625rem !important
	}

	.mm-md-90 {
		margin: -5.625rem !important
	}

	.mmx-md-90 {
		margin-left: -5.625rem !important;
		margin-right: -5.625rem !important
	}

	.mmy-md-90 {
		margin-bottom: -5.625rem !important
	}

	.mmt-md-90,
	.mmy-md-90 {
		margin-top: -5.625rem !important
	}

	.mmr-md-90 {
		margin-right: -5.625rem !important
	}

	.mmb-md-90 {
		margin-bottom: -5.625rem !important
	}

	.mml-md-90 {
		margin-left: -5.625rem !important
	}

	.mm-md-91 {
		margin: -5.6875rem !important
	}

	.mmx-md-91 {
		margin-left: -5.6875rem !important;
		margin-right: -5.6875rem !important
	}

	.mmy-md-91 {
		margin-bottom: -5.6875rem !important
	}

	.mmt-md-91,
	.mmy-md-91 {
		margin-top: -5.6875rem !important
	}

	.mmr-md-91 {
		margin-right: -5.6875rem !important
	}

	.mmb-md-91 {
		margin-bottom: -5.6875rem !important
	}

	.mml-md-91 {
		margin-left: -5.6875rem !important
	}

	.mm-md-92 {
		margin: -5.75rem !important
	}

	.mmx-md-92 {
		margin-left: -5.75rem !important;
		margin-right: -5.75rem !important
	}

	.mmy-md-92 {
		margin-bottom: -5.75rem !important
	}

	.mmt-md-92,
	.mmy-md-92 {
		margin-top: -5.75rem !important
	}

	.mmr-md-92 {
		margin-right: -5.75rem !important
	}

	.mmb-md-92 {
		margin-bottom: -5.75rem !important
	}

	.mml-md-92 {
		margin-left: -5.75rem !important
	}

	.mm-md-93 {
		margin: -5.8125rem !important
	}

	.mmx-md-93 {
		margin-left: -5.8125rem !important;
		margin-right: -5.8125rem !important
	}

	.mmy-md-93 {
		margin-bottom: -5.8125rem !important
	}

	.mmt-md-93,
	.mmy-md-93 {
		margin-top: -5.8125rem !important
	}

	.mmr-md-93 {
		margin-right: -5.8125rem !important
	}

	.mmb-md-93 {
		margin-bottom: -5.8125rem !important
	}

	.mml-md-93 {
		margin-left: -5.8125rem !important
	}

	.mm-md-94 {
		margin: -5.875rem !important
	}

	.mmx-md-94 {
		margin-left: -5.875rem !important;
		margin-right: -5.875rem !important
	}

	.mmy-md-94 {
		margin-bottom: -5.875rem !important
	}

	.mmt-md-94,
	.mmy-md-94 {
		margin-top: -5.875rem !important
	}

	.mmr-md-94 {
		margin-right: -5.875rem !important
	}

	.mmb-md-94 {
		margin-bottom: -5.875rem !important
	}

	.mml-md-94 {
		margin-left: -5.875rem !important
	}

	.mm-md-95 {
		margin: -5.9375rem !important
	}

	.mmx-md-95 {
		margin-left: -5.9375rem !important;
		margin-right: -5.9375rem !important
	}

	.mmy-md-95 {
		margin-bottom: -5.9375rem !important
	}

	.mmt-md-95,
	.mmy-md-95 {
		margin-top: -5.9375rem !important
	}

	.mmr-md-95 {
		margin-right: -5.9375rem !important
	}

	.mmb-md-95 {
		margin-bottom: -5.9375rem !important
	}

	.mml-md-95 {
		margin-left: -5.9375rem !important
	}

	.mm-md-96 {
		margin: -6rem !important
	}

	.mmx-md-96 {
		margin-left: -6rem !important;
		margin-right: -6rem !important
	}

	.mmy-md-96 {
		margin-bottom: -6rem !important
	}

	.mmt-md-96,
	.mmy-md-96 {
		margin-top: -6rem !important
	}

	.mmr-md-96 {
		margin-right: -6rem !important
	}

	.mmb-md-96 {
		margin-bottom: -6rem !important
	}

	.mml-md-96 {
		margin-left: -6rem !important
	}

	.mm-md-97 {
		margin: -6.0625rem !important
	}

	.mmx-md-97 {
		margin-left: -6.0625rem !important;
		margin-right: -6.0625rem !important
	}

	.mmy-md-97 {
		margin-bottom: -6.0625rem !important
	}

	.mmt-md-97,
	.mmy-md-97 {
		margin-top: -6.0625rem !important
	}

	.mmr-md-97 {
		margin-right: -6.0625rem !important
	}

	.mmb-md-97 {
		margin-bottom: -6.0625rem !important
	}

	.mml-md-97 {
		margin-left: -6.0625rem !important
	}

	.mm-md-98 {
		margin: -6.125rem !important
	}

	.mmx-md-98 {
		margin-left: -6.125rem !important;
		margin-right: -6.125rem !important
	}

	.mmy-md-98 {
		margin-bottom: -6.125rem !important
	}

	.mmt-md-98,
	.mmy-md-98 {
		margin-top: -6.125rem !important
	}

	.mmr-md-98 {
		margin-right: -6.125rem !important
	}

	.mmb-md-98 {
		margin-bottom: -6.125rem !important
	}

	.mml-md-98 {
		margin-left: -6.125rem !important
	}

	.mm-md-99 {
		margin: -6.1875rem !important
	}

	.mmx-md-99 {
		margin-left: -6.1875rem !important;
		margin-right: -6.1875rem !important
	}

	.mmy-md-99 {
		margin-bottom: -6.1875rem !important
	}

	.mmt-md-99,
	.mmy-md-99 {
		margin-top: -6.1875rem !important
	}

	.mmr-md-99 {
		margin-right: -6.1875rem !important
	}

	.mmb-md-99 {
		margin-bottom: -6.1875rem !important
	}

	.mml-md-99 {
		margin-left: -6.1875rem !important
	}

	.mm-md-100 {
		margin: -6.25rem !important
	}

	.mmx-md-100 {
		margin-left: -6.25rem !important;
		margin-right: -6.25rem !important
	}

	.mmy-md-100 {
		margin-bottom: -6.25rem !important
	}

	.mmt-md-100,
	.mmy-md-100 {
		margin-top: -6.25rem !important
	}

	.mmr-md-100 {
		margin-right: -6.25rem !important
	}

	.mmb-md-100 {
		margin-bottom: -6.25rem !important
	}

	.mml-md-100 {
		margin-left: -6.25rem !important
	}

	.mm-md-101 {
		margin: -6.3125rem !important
	}

	.mmx-md-101 {
		margin-left: -6.3125rem !important;
		margin-right: -6.3125rem !important
	}

	.mmy-md-101 {
		margin-bottom: -6.3125rem !important
	}

	.mmt-md-101,
	.mmy-md-101 {
		margin-top: -6.3125rem !important
	}

	.mmr-md-101 {
		margin-right: -6.3125rem !important
	}

	.mmb-md-101 {
		margin-bottom: -6.3125rem !important
	}

	.mml-md-101 {
		margin-left: -6.3125rem !important
	}

	.mm-md-102 {
		margin: -6.375rem !important
	}

	.mmx-md-102 {
		margin-left: -6.375rem !important;
		margin-right: -6.375rem !important
	}

	.mmy-md-102 {
		margin-bottom: -6.375rem !important
	}

	.mmt-md-102,
	.mmy-md-102 {
		margin-top: -6.375rem !important
	}

	.mmr-md-102 {
		margin-right: -6.375rem !important
	}

	.mmb-md-102 {
		margin-bottom: -6.375rem !important
	}

	.mml-md-102 {
		margin-left: -6.375rem !important
	}

	.mm-md-103 {
		margin: -6.4375rem !important
	}

	.mmx-md-103 {
		margin-left: -6.4375rem !important;
		margin-right: -6.4375rem !important
	}

	.mmy-md-103 {
		margin-bottom: -6.4375rem !important
	}

	.mmt-md-103,
	.mmy-md-103 {
		margin-top: -6.4375rem !important
	}

	.mmr-md-103 {
		margin-right: -6.4375rem !important
	}

	.mmb-md-103 {
		margin-bottom: -6.4375rem !important
	}

	.mml-md-103 {
		margin-left: -6.4375rem !important
	}

	.mm-md-104 {
		margin: -6.5rem !important
	}

	.mmx-md-104 {
		margin-left: -6.5rem !important;
		margin-right: -6.5rem !important
	}

	.mmy-md-104 {
		margin-bottom: -6.5rem !important
	}

	.mmt-md-104,
	.mmy-md-104 {
		margin-top: -6.5rem !important
	}

	.mmr-md-104 {
		margin-right: -6.5rem !important
	}

	.mmb-md-104 {
		margin-bottom: -6.5rem !important
	}

	.mml-md-104 {
		margin-left: -6.5rem !important
	}

	.mm-md-105 {
		margin: -6.5625rem !important
	}

	.mmx-md-105 {
		margin-left: -6.5625rem !important;
		margin-right: -6.5625rem !important
	}

	.mmy-md-105 {
		margin-bottom: -6.5625rem !important
	}

	.mmt-md-105,
	.mmy-md-105 {
		margin-top: -6.5625rem !important
	}

	.mmr-md-105 {
		margin-right: -6.5625rem !important
	}

	.mmb-md-105 {
		margin-bottom: -6.5625rem !important
	}

	.mml-md-105 {
		margin-left: -6.5625rem !important
	}

	.mm-md-106 {
		margin: -6.625rem !important
	}

	.mmx-md-106 {
		margin-left: -6.625rem !important;
		margin-right: -6.625rem !important
	}

	.mmy-md-106 {
		margin-bottom: -6.625rem !important
	}

	.mmt-md-106,
	.mmy-md-106 {
		margin-top: -6.625rem !important
	}

	.mmr-md-106 {
		margin-right: -6.625rem !important
	}

	.mmb-md-106 {
		margin-bottom: -6.625rem !important
	}

	.mml-md-106 {
		margin-left: -6.625rem !important
	}

	.mm-md-107 {
		margin: -6.6875rem !important
	}

	.mmx-md-107 {
		margin-left: -6.6875rem !important;
		margin-right: -6.6875rem !important
	}

	.mmy-md-107 {
		margin-bottom: -6.6875rem !important
	}

	.mmt-md-107,
	.mmy-md-107 {
		margin-top: -6.6875rem !important
	}

	.mmr-md-107 {
		margin-right: -6.6875rem !important
	}

	.mmb-md-107 {
		margin-bottom: -6.6875rem !important
	}

	.mml-md-107 {
		margin-left: -6.6875rem !important
	}

	.mm-md-108 {
		margin: -6.75rem !important
	}

	.mmx-md-108 {
		margin-left: -6.75rem !important;
		margin-right: -6.75rem !important
	}

	.mmy-md-108 {
		margin-bottom: -6.75rem !important
	}

	.mmt-md-108,
	.mmy-md-108 {
		margin-top: -6.75rem !important
	}

	.mmr-md-108 {
		margin-right: -6.75rem !important
	}

	.mmb-md-108 {
		margin-bottom: -6.75rem !important
	}

	.mml-md-108 {
		margin-left: -6.75rem !important
	}

	.mm-md-109 {
		margin: -6.8125rem !important
	}

	.mmx-md-109 {
		margin-left: -6.8125rem !important;
		margin-right: -6.8125rem !important
	}

	.mmy-md-109 {
		margin-bottom: -6.8125rem !important
	}

	.mmt-md-109,
	.mmy-md-109 {
		margin-top: -6.8125rem !important
	}

	.mmr-md-109 {
		margin-right: -6.8125rem !important
	}

	.mmb-md-109 {
		margin-bottom: -6.8125rem !important
	}

	.mml-md-109 {
		margin-left: -6.8125rem !important
	}

	.mm-md-110 {
		margin: -6.875rem !important
	}

	.mmx-md-110 {
		margin-left: -6.875rem !important;
		margin-right: -6.875rem !important
	}

	.mmy-md-110 {
		margin-bottom: -6.875rem !important
	}

	.mmt-md-110,
	.mmy-md-110 {
		margin-top: -6.875rem !important
	}

	.mmr-md-110 {
		margin-right: -6.875rem !important
	}

	.mmb-md-110 {
		margin-bottom: -6.875rem !important
	}

	.mml-md-110 {
		margin-left: -6.875rem !important
	}

	.mm-md-111 {
		margin: -6.9375rem !important
	}

	.mmx-md-111 {
		margin-left: -6.9375rem !important;
		margin-right: -6.9375rem !important
	}

	.mmy-md-111 {
		margin-bottom: -6.9375rem !important
	}

	.mmt-md-111,
	.mmy-md-111 {
		margin-top: -6.9375rem !important
	}

	.mmr-md-111 {
		margin-right: -6.9375rem !important
	}

	.mmb-md-111 {
		margin-bottom: -6.9375rem !important
	}

	.mml-md-111 {
		margin-left: -6.9375rem !important
	}

	.mm-md-112 {
		margin: -7rem !important
	}

	.mmx-md-112 {
		margin-left: -7rem !important;
		margin-right: -7rem !important
	}

	.mmy-md-112 {
		margin-bottom: -7rem !important
	}

	.mmt-md-112,
	.mmy-md-112 {
		margin-top: -7rem !important
	}

	.mmr-md-112 {
		margin-right: -7rem !important
	}

	.mmb-md-112 {
		margin-bottom: -7rem !important
	}

	.mml-md-112 {
		margin-left: -7rem !important
	}

	.mm-md-113 {
		margin: -7.0625rem !important
	}

	.mmx-md-113 {
		margin-left: -7.0625rem !important;
		margin-right: -7.0625rem !important
	}

	.mmy-md-113 {
		margin-bottom: -7.0625rem !important
	}

	.mmt-md-113,
	.mmy-md-113 {
		margin-top: -7.0625rem !important
	}

	.mmr-md-113 {
		margin-right: -7.0625rem !important
	}

	.mmb-md-113 {
		margin-bottom: -7.0625rem !important
	}

	.mml-md-113 {
		margin-left: -7.0625rem !important
	}

	.mm-md-114 {
		margin: -7.125rem !important
	}

	.mmx-md-114 {
		margin-left: -7.125rem !important;
		margin-right: -7.125rem !important
	}

	.mmy-md-114 {
		margin-bottom: -7.125rem !important
	}

	.mmt-md-114,
	.mmy-md-114 {
		margin-top: -7.125rem !important
	}

	.mmr-md-114 {
		margin-right: -7.125rem !important
	}

	.mmb-md-114 {
		margin-bottom: -7.125rem !important
	}

	.mml-md-114 {
		margin-left: -7.125rem !important
	}

	.mm-md-115 {
		margin: -7.1875rem !important
	}

	.mmx-md-115 {
		margin-left: -7.1875rem !important;
		margin-right: -7.1875rem !important
	}

	.mmy-md-115 {
		margin-bottom: -7.1875rem !important
	}

	.mmt-md-115,
	.mmy-md-115 {
		margin-top: -7.1875rem !important
	}

	.mmr-md-115 {
		margin-right: -7.1875rem !important
	}

	.mmb-md-115 {
		margin-bottom: -7.1875rem !important
	}

	.mml-md-115 {
		margin-left: -7.1875rem !important
	}

	.mm-md-116 {
		margin: -7.25rem !important
	}

	.mmx-md-116 {
		margin-left: -7.25rem !important;
		margin-right: -7.25rem !important
	}

	.mmy-md-116 {
		margin-bottom: -7.25rem !important
	}

	.mmt-md-116,
	.mmy-md-116 {
		margin-top: -7.25rem !important
	}

	.mmr-md-116 {
		margin-right: -7.25rem !important
	}

	.mmb-md-116 {
		margin-bottom: -7.25rem !important
	}

	.mml-md-116 {
		margin-left: -7.25rem !important
	}

	.mm-md-117 {
		margin: -7.3125rem !important
	}

	.mmx-md-117 {
		margin-left: -7.3125rem !important;
		margin-right: -7.3125rem !important
	}

	.mmy-md-117 {
		margin-bottom: -7.3125rem !important
	}

	.mmt-md-117,
	.mmy-md-117 {
		margin-top: -7.3125rem !important
	}

	.mmr-md-117 {
		margin-right: -7.3125rem !important
	}

	.mmb-md-117 {
		margin-bottom: -7.3125rem !important
	}

	.mml-md-117 {
		margin-left: -7.3125rem !important
	}

	.mm-md-118 {
		margin: -7.375rem !important
	}

	.mmx-md-118 {
		margin-left: -7.375rem !important;
		margin-right: -7.375rem !important
	}

	.mmy-md-118 {
		margin-bottom: -7.375rem !important
	}

	.mmt-md-118,
	.mmy-md-118 {
		margin-top: -7.375rem !important
	}

	.mmr-md-118 {
		margin-right: -7.375rem !important
	}

	.mmb-md-118 {
		margin-bottom: -7.375rem !important
	}

	.mml-md-118 {
		margin-left: -7.375rem !important
	}

	.mm-md-119 {
		margin: -7.4375rem !important
	}

	.mmx-md-119 {
		margin-left: -7.4375rem !important;
		margin-right: -7.4375rem !important
	}

	.mmy-md-119 {
		margin-bottom: -7.4375rem !important
	}

	.mmt-md-119,
	.mmy-md-119 {
		margin-top: -7.4375rem !important
	}

	.mmr-md-119 {
		margin-right: -7.4375rem !important
	}

	.mmb-md-119 {
		margin-bottom: -7.4375rem !important
	}

	.mml-md-119 {
		margin-left: -7.4375rem !important
	}

	.mm-md-120 {
		margin: -7.5rem !important
	}

	.mmx-md-120 {
		margin-left: -7.5rem !important;
		margin-right: -7.5rem !important
	}

	.mmy-md-120 {
		margin-bottom: -7.5rem !important
	}

	.mmt-md-120,
	.mmy-md-120 {
		margin-top: -7.5rem !important
	}

	.mmr-md-120 {
		margin-right: -7.5rem !important
	}

	.mmb-md-120 {
		margin-bottom: -7.5rem !important
	}

	.mml-md-120 {
		margin-left: -7.5rem !important
	}

	.mm-md-121 {
		margin: -7.5625rem !important
	}

	.mmx-md-121 {
		margin-left: -7.5625rem !important;
		margin-right: -7.5625rem !important
	}

	.mmy-md-121 {
		margin-bottom: -7.5625rem !important
	}

	.mmt-md-121,
	.mmy-md-121 {
		margin-top: -7.5625rem !important
	}

	.mmr-md-121 {
		margin-right: -7.5625rem !important
	}

	.mmb-md-121 {
		margin-bottom: -7.5625rem !important
	}

	.mml-md-121 {
		margin-left: -7.5625rem !important
	}

	.mm-md-122 {
		margin: -7.625rem !important
	}

	.mmx-md-122 {
		margin-left: -7.625rem !important;
		margin-right: -7.625rem !important
	}

	.mmy-md-122 {
		margin-bottom: -7.625rem !important
	}

	.mmt-md-122,
	.mmy-md-122 {
		margin-top: -7.625rem !important
	}

	.mmr-md-122 {
		margin-right: -7.625rem !important
	}

	.mmb-md-122 {
		margin-bottom: -7.625rem !important
	}

	.mml-md-122 {
		margin-left: -7.625rem !important
	}

	.mm-md-123 {
		margin: -7.6875rem !important
	}

	.mmx-md-123 {
		margin-left: -7.6875rem !important;
		margin-right: -7.6875rem !important
	}

	.mmy-md-123 {
		margin-bottom: -7.6875rem !important
	}

	.mmt-md-123,
	.mmy-md-123 {
		margin-top: -7.6875rem !important
	}

	.mmr-md-123 {
		margin-right: -7.6875rem !important
	}

	.mmb-md-123 {
		margin-bottom: -7.6875rem !important
	}

	.mml-md-123 {
		margin-left: -7.6875rem !important
	}

	.mm-md-124 {
		margin: -7.75rem !important
	}

	.mmx-md-124 {
		margin-left: -7.75rem !important;
		margin-right: -7.75rem !important
	}

	.mmy-md-124 {
		margin-bottom: -7.75rem !important
	}

	.mmt-md-124,
	.mmy-md-124 {
		margin-top: -7.75rem !important
	}

	.mmr-md-124 {
		margin-right: -7.75rem !important
	}

	.mmb-md-124 {
		margin-bottom: -7.75rem !important
	}

	.mml-md-124 {
		margin-left: -7.75rem !important
	}

	.mm-md-125 {
		margin: -7.8125rem !important
	}

	.mmx-md-125 {
		margin-left: -7.8125rem !important;
		margin-right: -7.8125rem !important
	}

	.mmy-md-125 {
		margin-bottom: -7.8125rem !important
	}

	.mmt-md-125,
	.mmy-md-125 {
		margin-top: -7.8125rem !important
	}

	.mmr-md-125 {
		margin-right: -7.8125rem !important
	}

	.mmb-md-125 {
		margin-bottom: -7.8125rem !important
	}

	.mml-md-125 {
		margin-left: -7.8125rem !important
	}

	.mm-md-126 {
		margin: -7.875rem !important
	}

	.mmx-md-126 {
		margin-left: -7.875rem !important;
		margin-right: -7.875rem !important
	}

	.mmy-md-126 {
		margin-bottom: -7.875rem !important
	}

	.mmt-md-126,
	.mmy-md-126 {
		margin-top: -7.875rem !important
	}

	.mmr-md-126 {
		margin-right: -7.875rem !important
	}

	.mmb-md-126 {
		margin-bottom: -7.875rem !important
	}

	.mml-md-126 {
		margin-left: -7.875rem !important
	}

	.mm-md-127 {
		margin: -7.9375rem !important
	}

	.mmx-md-127 {
		margin-left: -7.9375rem !important;
		margin-right: -7.9375rem !important
	}

	.mmy-md-127 {
		margin-bottom: -7.9375rem !important
	}

	.mmt-md-127,
	.mmy-md-127 {
		margin-top: -7.9375rem !important
	}

	.mmr-md-127 {
		margin-right: -7.9375rem !important
	}

	.mmb-md-127 {
		margin-bottom: -7.9375rem !important
	}

	.mml-md-127 {
		margin-left: -7.9375rem !important
	}

	.mm-md-128 {
		margin: -8rem !important
	}

	.mmx-md-128 {
		margin-left: -8rem !important;
		margin-right: -8rem !important
	}

	.mmy-md-128 {
		margin-bottom: -8rem !important
	}

	.mmt-md-128,
	.mmy-md-128 {
		margin-top: -8rem !important
	}

	.mmr-md-128 {
		margin-right: -8rem !important
	}

	.mmb-md-128 {
		margin-bottom: -8rem !important
	}

	.mml-md-128 {
		margin-left: -8rem !important
	}

	.mm-md-129 {
		margin: -8.0625rem !important
	}

	.mmx-md-129 {
		margin-left: -8.0625rem !important;
		margin-right: -8.0625rem !important
	}

	.mmy-md-129 {
		margin-bottom: -8.0625rem !important
	}

	.mmt-md-129,
	.mmy-md-129 {
		margin-top: -8.0625rem !important
	}

	.mmr-md-129 {
		margin-right: -8.0625rem !important
	}

	.mmb-md-129 {
		margin-bottom: -8.0625rem !important
	}

	.mml-md-129 {
		margin-left: -8.0625rem !important
	}

	.mm-md-130 {
		margin: -8.125rem !important
	}

	.mmx-md-130 {
		margin-left: -8.125rem !important;
		margin-right: -8.125rem !important
	}

	.mmy-md-130 {
		margin-bottom: -8.125rem !important
	}

	.mmt-md-130,
	.mmy-md-130 {
		margin-top: -8.125rem !important
	}

	.mmr-md-130 {
		margin-right: -8.125rem !important
	}

	.mmb-md-130 {
		margin-bottom: -8.125rem !important
	}

	.mml-md-130 {
		margin-left: -8.125rem !important
	}

	.mm-md-131 {
		margin: -8.1875rem !important
	}

	.mmx-md-131 {
		margin-left: -8.1875rem !important;
		margin-right: -8.1875rem !important
	}

	.mmy-md-131 {
		margin-bottom: -8.1875rem !important
	}

	.mmt-md-131,
	.mmy-md-131 {
		margin-top: -8.1875rem !important
	}

	.mmr-md-131 {
		margin-right: -8.1875rem !important
	}

	.mmb-md-131 {
		margin-bottom: -8.1875rem !important
	}

	.mml-md-131 {
		margin-left: -8.1875rem !important
	}

	.mm-md-132 {
		margin: -8.25rem !important
	}

	.mmx-md-132 {
		margin-left: -8.25rem !important;
		margin-right: -8.25rem !important
	}

	.mmy-md-132 {
		margin-bottom: -8.25rem !important
	}

	.mmt-md-132,
	.mmy-md-132 {
		margin-top: -8.25rem !important
	}

	.mmr-md-132 {
		margin-right: -8.25rem !important
	}

	.mmb-md-132 {
		margin-bottom: -8.25rem !important
	}

	.mml-md-132 {
		margin-left: -8.25rem !important
	}

	.mm-md-133 {
		margin: -8.3125rem !important
	}

	.mmx-md-133 {
		margin-left: -8.3125rem !important;
		margin-right: -8.3125rem !important
	}

	.mmy-md-133 {
		margin-bottom: -8.3125rem !important
	}

	.mmt-md-133,
	.mmy-md-133 {
		margin-top: -8.3125rem !important
	}

	.mmr-md-133 {
		margin-right: -8.3125rem !important
	}

	.mmb-md-133 {
		margin-bottom: -8.3125rem !important
	}

	.mml-md-133 {
		margin-left: -8.3125rem !important
	}

	.mm-md-134 {
		margin: -8.375rem !important
	}

	.mmx-md-134 {
		margin-left: -8.375rem !important;
		margin-right: -8.375rem !important
	}

	.mmy-md-134 {
		margin-bottom: -8.375rem !important
	}

	.mmt-md-134,
	.mmy-md-134 {
		margin-top: -8.375rem !important
	}

	.mmr-md-134 {
		margin-right: -8.375rem !important
	}

	.mmb-md-134 {
		margin-bottom: -8.375rem !important
	}

	.mml-md-134 {
		margin-left: -8.375rem !important
	}

	.mm-md-135 {
		margin: -8.4375rem !important
	}

	.mmx-md-135 {
		margin-left: -8.4375rem !important;
		margin-right: -8.4375rem !important
	}

	.mmy-md-135 {
		margin-bottom: -8.4375rem !important
	}

	.mmt-md-135,
	.mmy-md-135 {
		margin-top: -8.4375rem !important
	}

	.mmr-md-135 {
		margin-right: -8.4375rem !important
	}

	.mmb-md-135 {
		margin-bottom: -8.4375rem !important
	}

	.mml-md-135 {
		margin-left: -8.4375rem !important
	}

	.mm-md-136 {
		margin: -8.5rem !important
	}

	.mmx-md-136 {
		margin-left: -8.5rem !important;
		margin-right: -8.5rem !important
	}

	.mmy-md-136 {
		margin-bottom: -8.5rem !important
	}

	.mmt-md-136,
	.mmy-md-136 {
		margin-top: -8.5rem !important
	}

	.mmr-md-136 {
		margin-right: -8.5rem !important
	}

	.mmb-md-136 {
		margin-bottom: -8.5rem !important
	}

	.mml-md-136 {
		margin-left: -8.5rem !important
	}

	.mm-md-137 {
		margin: -8.5625rem !important
	}

	.mmx-md-137 {
		margin-left: -8.5625rem !important;
		margin-right: -8.5625rem !important
	}

	.mmy-md-137 {
		margin-bottom: -8.5625rem !important
	}

	.mmt-md-137,
	.mmy-md-137 {
		margin-top: -8.5625rem !important
	}

	.mmr-md-137 {
		margin-right: -8.5625rem !important
	}

	.mmb-md-137 {
		margin-bottom: -8.5625rem !important
	}

	.mml-md-137 {
		margin-left: -8.5625rem !important
	}

	.mm-md-138 {
		margin: -8.625rem !important
	}

	.mmx-md-138 {
		margin-left: -8.625rem !important;
		margin-right: -8.625rem !important
	}

	.mmy-md-138 {
		margin-bottom: -8.625rem !important
	}

	.mmt-md-138,
	.mmy-md-138 {
		margin-top: -8.625rem !important
	}

	.mmr-md-138 {
		margin-right: -8.625rem !important
	}

	.mmb-md-138 {
		margin-bottom: -8.625rem !important
	}

	.mml-md-138 {
		margin-left: -8.625rem !important
	}

	.mm-md-139 {
		margin: -8.6875rem !important
	}

	.mmx-md-139 {
		margin-left: -8.6875rem !important;
		margin-right: -8.6875rem !important
	}

	.mmy-md-139 {
		margin-bottom: -8.6875rem !important
	}

	.mmt-md-139,
	.mmy-md-139 {
		margin-top: -8.6875rem !important
	}

	.mmr-md-139 {
		margin-right: -8.6875rem !important
	}

	.mmb-md-139 {
		margin-bottom: -8.6875rem !important
	}

	.mml-md-139 {
		margin-left: -8.6875rem !important
	}

	.mm-md-140 {
		margin: -8.75rem !important
	}

	.mmx-md-140 {
		margin-left: -8.75rem !important;
		margin-right: -8.75rem !important
	}

	.mmy-md-140 {
		margin-bottom: -8.75rem !important
	}

	.mmt-md-140,
	.mmy-md-140 {
		margin-top: -8.75rem !important
	}

	.mmr-md-140 {
		margin-right: -8.75rem !important
	}

	.mmb-md-140 {
		margin-bottom: -8.75rem !important
	}

	.mml-md-140 {
		margin-left: -8.75rem !important
	}

	.mm-md-141 {
		margin: -8.8125rem !important
	}

	.mmx-md-141 {
		margin-left: -8.8125rem !important;
		margin-right: -8.8125rem !important
	}

	.mmy-md-141 {
		margin-bottom: -8.8125rem !important
	}

	.mmt-md-141,
	.mmy-md-141 {
		margin-top: -8.8125rem !important
	}

	.mmr-md-141 {
		margin-right: -8.8125rem !important
	}

	.mmb-md-141 {
		margin-bottom: -8.8125rem !important
	}

	.mml-md-141 {
		margin-left: -8.8125rem !important
	}

	.mm-md-142 {
		margin: -8.875rem !important
	}

	.mmx-md-142 {
		margin-left: -8.875rem !important;
		margin-right: -8.875rem !important
	}

	.mmy-md-142 {
		margin-bottom: -8.875rem !important
	}

	.mmt-md-142,
	.mmy-md-142 {
		margin-top: -8.875rem !important
	}

	.mmr-md-142 {
		margin-right: -8.875rem !important
	}

	.mmb-md-142 {
		margin-bottom: -8.875rem !important
	}

	.mml-md-142 {
		margin-left: -8.875rem !important
	}

	.mm-md-143 {
		margin: -8.9375rem !important
	}

	.mmx-md-143 {
		margin-left: -8.9375rem !important;
		margin-right: -8.9375rem !important
	}

	.mmy-md-143 {
		margin-bottom: -8.9375rem !important
	}

	.mmt-md-143,
	.mmy-md-143 {
		margin-top: -8.9375rem !important
	}

	.mmr-md-143 {
		margin-right: -8.9375rem !important
	}

	.mmb-md-143 {
		margin-bottom: -8.9375rem !important
	}

	.mml-md-143 {
		margin-left: -8.9375rem !important
	}

	.mm-md-144 {
		margin: -9rem !important
	}

	.mmx-md-144 {
		margin-left: -9rem !important;
		margin-right: -9rem !important
	}

	.mmy-md-144 {
		margin-bottom: -9rem !important
	}

	.mmt-md-144,
	.mmy-md-144 {
		margin-top: -9rem !important
	}

	.mmr-md-144 {
		margin-right: -9rem !important
	}

	.mmb-md-144 {
		margin-bottom: -9rem !important
	}

	.mml-md-144 {
		margin-left: -9rem !important
	}

	.mm-md-145 {
		margin: -9.0625rem !important
	}

	.mmx-md-145 {
		margin-left: -9.0625rem !important;
		margin-right: -9.0625rem !important
	}

	.mmy-md-145 {
		margin-bottom: -9.0625rem !important
	}

	.mmt-md-145,
	.mmy-md-145 {
		margin-top: -9.0625rem !important
	}

	.mmr-md-145 {
		margin-right: -9.0625rem !important
	}

	.mmb-md-145 {
		margin-bottom: -9.0625rem !important
	}

	.mml-md-145 {
		margin-left: -9.0625rem !important
	}

	.mm-md-146 {
		margin: -9.125rem !important
	}

	.mmx-md-146 {
		margin-left: -9.125rem !important;
		margin-right: -9.125rem !important
	}

	.mmy-md-146 {
		margin-bottom: -9.125rem !important
	}

	.mmt-md-146,
	.mmy-md-146 {
		margin-top: -9.125rem !important
	}

	.mmr-md-146 {
		margin-right: -9.125rem !important
	}

	.mmb-md-146 {
		margin-bottom: -9.125rem !important
	}

	.mml-md-146 {
		margin-left: -9.125rem !important
	}

	.mm-md-147 {
		margin: -9.1875rem !important
	}

	.mmx-md-147 {
		margin-left: -9.1875rem !important;
		margin-right: -9.1875rem !important
	}

	.mmy-md-147 {
		margin-bottom: -9.1875rem !important
	}

	.mmt-md-147,
	.mmy-md-147 {
		margin-top: -9.1875rem !important
	}

	.mmr-md-147 {
		margin-right: -9.1875rem !important
	}

	.mmb-md-147 {
		margin-bottom: -9.1875rem !important
	}

	.mml-md-147 {
		margin-left: -9.1875rem !important
	}

	.mm-md-148 {
		margin: -9.25rem !important
	}

	.mmx-md-148 {
		margin-left: -9.25rem !important;
		margin-right: -9.25rem !important
	}

	.mmy-md-148 {
		margin-bottom: -9.25rem !important
	}

	.mmt-md-148,
	.mmy-md-148 {
		margin-top: -9.25rem !important
	}

	.mmr-md-148 {
		margin-right: -9.25rem !important
	}

	.mmb-md-148 {
		margin-bottom: -9.25rem !important
	}

	.mml-md-148 {
		margin-left: -9.25rem !important
	}

	.mm-md-149 {
		margin: -9.3125rem !important
	}

	.mmx-md-149 {
		margin-left: -9.3125rem !important;
		margin-right: -9.3125rem !important
	}

	.mmy-md-149 {
		margin-bottom: -9.3125rem !important
	}

	.mmt-md-149,
	.mmy-md-149 {
		margin-top: -9.3125rem !important
	}

	.mmr-md-149 {
		margin-right: -9.3125rem !important
	}

	.mmb-md-149 {
		margin-bottom: -9.3125rem !important
	}

	.mml-md-149 {
		margin-left: -9.3125rem !important
	}

	.mm-md-150 {
		margin: -9.375rem !important
	}

	.mmx-md-150 {
		margin-left: -9.375rem !important;
		margin-right: -9.375rem !important
	}

	.mmy-md-150 {
		margin-bottom: -9.375rem !important
	}

	.mmt-md-150,
	.mmy-md-150 {
		margin-top: -9.375rem !important
	}

	.mmr-md-150 {
		margin-right: -9.375rem !important
	}

	.mmb-md-150 {
		margin-bottom: -9.375rem !important
	}

	.mml-md-150 {
		margin-left: -9.375rem !important
	}

	.mm-md-151 {
		margin: -9.4375rem !important
	}

	.mmx-md-151 {
		margin-left: -9.4375rem !important;
		margin-right: -9.4375rem !important
	}

	.mmy-md-151 {
		margin-bottom: -9.4375rem !important
	}

	.mmt-md-151,
	.mmy-md-151 {
		margin-top: -9.4375rem !important
	}

	.mmr-md-151 {
		margin-right: -9.4375rem !important
	}

	.mmb-md-151 {
		margin-bottom: -9.4375rem !important
	}

	.mml-md-151 {
		margin-left: -9.4375rem !important
	}

	.mm-md-152 {
		margin: -9.5rem !important
	}

	.mmx-md-152 {
		margin-left: -9.5rem !important;
		margin-right: -9.5rem !important
	}

	.mmy-md-152 {
		margin-bottom: -9.5rem !important
	}

	.mmt-md-152,
	.mmy-md-152 {
		margin-top: -9.5rem !important
	}

	.mmr-md-152 {
		margin-right: -9.5rem !important
	}

	.mmb-md-152 {
		margin-bottom: -9.5rem !important
	}

	.mml-md-152 {
		margin-left: -9.5rem !important
	}

	.mm-md-153 {
		margin: -9.5625rem !important
	}

	.mmx-md-153 {
		margin-left: -9.5625rem !important;
		margin-right: -9.5625rem !important
	}

	.mmy-md-153 {
		margin-bottom: -9.5625rem !important
	}

	.mmt-md-153,
	.mmy-md-153 {
		margin-top: -9.5625rem !important
	}

	.mmr-md-153 {
		margin-right: -9.5625rem !important
	}

	.mmb-md-153 {
		margin-bottom: -9.5625rem !important
	}

	.mml-md-153 {
		margin-left: -9.5625rem !important
	}

	.mm-md-154 {
		margin: -9.625rem !important
	}

	.mmx-md-154 {
		margin-left: -9.625rem !important;
		margin-right: -9.625rem !important
	}

	.mmy-md-154 {
		margin-bottom: -9.625rem !important
	}

	.mmt-md-154,
	.mmy-md-154 {
		margin-top: -9.625rem !important
	}

	.mmr-md-154 {
		margin-right: -9.625rem !important
	}

	.mmb-md-154 {
		margin-bottom: -9.625rem !important
	}

	.mml-md-154 {
		margin-left: -9.625rem !important
	}

	.mm-md-155 {
		margin: -9.6875rem !important
	}

	.mmx-md-155 {
		margin-left: -9.6875rem !important;
		margin-right: -9.6875rem !important
	}

	.mmy-md-155 {
		margin-bottom: -9.6875rem !important
	}

	.mmt-md-155,
	.mmy-md-155 {
		margin-top: -9.6875rem !important
	}

	.mmr-md-155 {
		margin-right: -9.6875rem !important
	}

	.mmb-md-155 {
		margin-bottom: -9.6875rem !important
	}

	.mml-md-155 {
		margin-left: -9.6875rem !important
	}

	.mm-md-156 {
		margin: -9.75rem !important
	}

	.mmx-md-156 {
		margin-left: -9.75rem !important;
		margin-right: -9.75rem !important
	}

	.mmy-md-156 {
		margin-bottom: -9.75rem !important
	}

	.mmt-md-156,
	.mmy-md-156 {
		margin-top: -9.75rem !important
	}

	.mmr-md-156 {
		margin-right: -9.75rem !important
	}

	.mmb-md-156 {
		margin-bottom: -9.75rem !important
	}

	.mml-md-156 {
		margin-left: -9.75rem !important
	}

	.mm-md-157 {
		margin: -9.8125rem !important
	}

	.mmx-md-157 {
		margin-left: -9.8125rem !important;
		margin-right: -9.8125rem !important
	}

	.mmy-md-157 {
		margin-bottom: -9.8125rem !important
	}

	.mmt-md-157,
	.mmy-md-157 {
		margin-top: -9.8125rem !important
	}

	.mmr-md-157 {
		margin-right: -9.8125rem !important
	}

	.mmb-md-157 {
		margin-bottom: -9.8125rem !important
	}

	.mml-md-157 {
		margin-left: -9.8125rem !important
	}

	.mm-md-158 {
		margin: -9.875rem !important
	}

	.mmx-md-158 {
		margin-left: -9.875rem !important;
		margin-right: -9.875rem !important
	}

	.mmy-md-158 {
		margin-bottom: -9.875rem !important
	}

	.mmt-md-158,
	.mmy-md-158 {
		margin-top: -9.875rem !important
	}

	.mmr-md-158 {
		margin-right: -9.875rem !important
	}

	.mmb-md-158 {
		margin-bottom: -9.875rem !important
	}

	.mml-md-158 {
		margin-left: -9.875rem !important
	}

	.mm-md-159 {
		margin: -9.9375rem !important
	}

	.mmx-md-159 {
		margin-left: -9.9375rem !important;
		margin-right: -9.9375rem !important
	}

	.mmy-md-159 {
		margin-bottom: -9.9375rem !important
	}

	.mmt-md-159,
	.mmy-md-159 {
		margin-top: -9.9375rem !important
	}

	.mmr-md-159 {
		margin-right: -9.9375rem !important
	}

	.mmb-md-159 {
		margin-bottom: -9.9375rem !important
	}

	.mml-md-159 {
		margin-left: -9.9375rem !important
	}

	.mm-md-160 {
		margin: -10rem !important
	}

	.mmx-md-160 {
		margin-left: -10rem !important;
		margin-right: -10rem !important
	}

	.mmy-md-160 {
		margin-bottom: -10rem !important
	}

	.mmt-md-160,
	.mmy-md-160 {
		margin-top: -10rem !important
	}

	.mmr-md-160 {
		margin-right: -10rem !important
	}

	.mmb-md-160 {
		margin-bottom: -10rem !important
	}

	.mml-md-160 {
		margin-left: -10rem !important
	}

	.mm-md-161 {
		margin: -10.0625rem !important
	}

	.mmx-md-161 {
		margin-left: -10.0625rem !important;
		margin-right: -10.0625rem !important
	}

	.mmy-md-161 {
		margin-bottom: -10.0625rem !important
	}

	.mmt-md-161,
	.mmy-md-161 {
		margin-top: -10.0625rem !important
	}

	.mmr-md-161 {
		margin-right: -10.0625rem !important
	}

	.mmb-md-161 {
		margin-bottom: -10.0625rem !important
	}

	.mml-md-161 {
		margin-left: -10.0625rem !important
	}

	.mm-md-162 {
		margin: -10.125rem !important
	}

	.mmx-md-162 {
		margin-left: -10.125rem !important;
		margin-right: -10.125rem !important
	}

	.mmy-md-162 {
		margin-bottom: -10.125rem !important
	}

	.mmt-md-162,
	.mmy-md-162 {
		margin-top: -10.125rem !important
	}

	.mmr-md-162 {
		margin-right: -10.125rem !important
	}

	.mmb-md-162 {
		margin-bottom: -10.125rem !important
	}

	.mml-md-162 {
		margin-left: -10.125rem !important
	}

	.mm-md-163 {
		margin: -10.1875rem !important
	}

	.mmx-md-163 {
		margin-left: -10.1875rem !important;
		margin-right: -10.1875rem !important
	}

	.mmy-md-163 {
		margin-bottom: -10.1875rem !important
	}

	.mmt-md-163,
	.mmy-md-163 {
		margin-top: -10.1875rem !important
	}

	.mmr-md-163 {
		margin-right: -10.1875rem !important
	}

	.mmb-md-163 {
		margin-bottom: -10.1875rem !important
	}

	.mml-md-163 {
		margin-left: -10.1875rem !important
	}

	.mm-md-164 {
		margin: -10.25rem !important
	}

	.mmx-md-164 {
		margin-left: -10.25rem !important;
		margin-right: -10.25rem !important
	}

	.mmy-md-164 {
		margin-bottom: -10.25rem !important
	}

	.mmt-md-164,
	.mmy-md-164 {
		margin-top: -10.25rem !important
	}

	.mmr-md-164 {
		margin-right: -10.25rem !important
	}

	.mmb-md-164 {
		margin-bottom: -10.25rem !important
	}

	.mml-md-164 {
		margin-left: -10.25rem !important
	}

	.mm-md-165 {
		margin: -10.3125rem !important
	}

	.mmx-md-165 {
		margin-left: -10.3125rem !important;
		margin-right: -10.3125rem !important
	}

	.mmy-md-165 {
		margin-bottom: -10.3125rem !important
	}

	.mmt-md-165,
	.mmy-md-165 {
		margin-top: -10.3125rem !important
	}

	.mmr-md-165 {
		margin-right: -10.3125rem !important
	}

	.mmb-md-165 {
		margin-bottom: -10.3125rem !important
	}

	.mml-md-165 {
		margin-left: -10.3125rem !important
	}

	.mm-md-166 {
		margin: -10.375rem !important
	}

	.mmx-md-166 {
		margin-left: -10.375rem !important;
		margin-right: -10.375rem !important
	}

	.mmy-md-166 {
		margin-bottom: -10.375rem !important
	}

	.mmt-md-166,
	.mmy-md-166 {
		margin-top: -10.375rem !important
	}

	.mmr-md-166 {
		margin-right: -10.375rem !important
	}

	.mmb-md-166 {
		margin-bottom: -10.375rem !important
	}

	.mml-md-166 {
		margin-left: -10.375rem !important
	}

	.mm-md-167 {
		margin: -10.4375rem !important
	}

	.mmx-md-167 {
		margin-left: -10.4375rem !important;
		margin-right: -10.4375rem !important
	}

	.mmy-md-167 {
		margin-bottom: -10.4375rem !important
	}

	.mmt-md-167,
	.mmy-md-167 {
		margin-top: -10.4375rem !important
	}

	.mmr-md-167 {
		margin-right: -10.4375rem !important
	}

	.mmb-md-167 {
		margin-bottom: -10.4375rem !important
	}

	.mml-md-167 {
		margin-left: -10.4375rem !important
	}

	.mm-md-168 {
		margin: -10.5rem !important
	}

	.mmx-md-168 {
		margin-left: -10.5rem !important;
		margin-right: -10.5rem !important
	}

	.mmy-md-168 {
		margin-bottom: -10.5rem !important
	}

	.mmt-md-168,
	.mmy-md-168 {
		margin-top: -10.5rem !important
	}

	.mmr-md-168 {
		margin-right: -10.5rem !important
	}

	.mmb-md-168 {
		margin-bottom: -10.5rem !important
	}

	.mml-md-168 {
		margin-left: -10.5rem !important
	}

	.mm-md-169 {
		margin: -10.5625rem !important
	}

	.mmx-md-169 {
		margin-left: -10.5625rem !important;
		margin-right: -10.5625rem !important
	}

	.mmy-md-169 {
		margin-bottom: -10.5625rem !important
	}

	.mmt-md-169,
	.mmy-md-169 {
		margin-top: -10.5625rem !important
	}

	.mmr-md-169 {
		margin-right: -10.5625rem !important
	}

	.mmb-md-169 {
		margin-bottom: -10.5625rem !important
	}

	.mml-md-169 {
		margin-left: -10.5625rem !important
	}

	.mm-md-170 {
		margin: -10.625rem !important
	}

	.mmx-md-170 {
		margin-left: -10.625rem !important;
		margin-right: -10.625rem !important
	}

	.mmy-md-170 {
		margin-bottom: -10.625rem !important
	}

	.mmt-md-170,
	.mmy-md-170 {
		margin-top: -10.625rem !important
	}

	.mmr-md-170 {
		margin-right: -10.625rem !important
	}

	.mmb-md-170 {
		margin-bottom: -10.625rem !important
	}

	.mml-md-170 {
		margin-left: -10.625rem !important
	}

	.mm-md-171 {
		margin: -10.6875rem !important
	}

	.mmx-md-171 {
		margin-left: -10.6875rem !important;
		margin-right: -10.6875rem !important
	}

	.mmy-md-171 {
		margin-bottom: -10.6875rem !important
	}

	.mmt-md-171,
	.mmy-md-171 {
		margin-top: -10.6875rem !important
	}

	.mmr-md-171 {
		margin-right: -10.6875rem !important
	}

	.mmb-md-171 {
		margin-bottom: -10.6875rem !important
	}

	.mml-md-171 {
		margin-left: -10.6875rem !important
	}

	.mm-md-172 {
		margin: -10.75rem !important
	}

	.mmx-md-172 {
		margin-left: -10.75rem !important;
		margin-right: -10.75rem !important
	}

	.mmy-md-172 {
		margin-bottom: -10.75rem !important
	}

	.mmt-md-172,
	.mmy-md-172 {
		margin-top: -10.75rem !important
	}

	.mmr-md-172 {
		margin-right: -10.75rem !important
	}

	.mmb-md-172 {
		margin-bottom: -10.75rem !important
	}

	.mml-md-172 {
		margin-left: -10.75rem !important
	}

	.mm-md-173 {
		margin: -10.8125rem !important
	}

	.mmx-md-173 {
		margin-left: -10.8125rem !important;
		margin-right: -10.8125rem !important
	}

	.mmy-md-173 {
		margin-bottom: -10.8125rem !important
	}

	.mmt-md-173,
	.mmy-md-173 {
		margin-top: -10.8125rem !important
	}

	.mmr-md-173 {
		margin-right: -10.8125rem !important
	}

	.mmb-md-173 {
		margin-bottom: -10.8125rem !important
	}

	.mml-md-173 {
		margin-left: -10.8125rem !important
	}

	.mm-md-174 {
		margin: -10.875rem !important
	}

	.mmx-md-174 {
		margin-left: -10.875rem !important;
		margin-right: -10.875rem !important
	}

	.mmy-md-174 {
		margin-bottom: -10.875rem !important
	}

	.mmt-md-174,
	.mmy-md-174 {
		margin-top: -10.875rem !important
	}

	.mmr-md-174 {
		margin-right: -10.875rem !important
	}

	.mmb-md-174 {
		margin-bottom: -10.875rem !important
	}

	.mml-md-174 {
		margin-left: -10.875rem !important
	}

	.mm-md-175 {
		margin: -10.9375rem !important
	}

	.mmx-md-175 {
		margin-left: -10.9375rem !important;
		margin-right: -10.9375rem !important
	}

	.mmy-md-175 {
		margin-bottom: -10.9375rem !important
	}

	.mmt-md-175,
	.mmy-md-175 {
		margin-top: -10.9375rem !important
	}

	.mmr-md-175 {
		margin-right: -10.9375rem !important
	}

	.mmb-md-175 {
		margin-bottom: -10.9375rem !important
	}

	.mml-md-175 {
		margin-left: -10.9375rem !important
	}

	.mm-md-176 {
		margin: -11rem !important
	}

	.mmx-md-176 {
		margin-left: -11rem !important;
		margin-right: -11rem !important
	}

	.mmy-md-176 {
		margin-bottom: -11rem !important
	}

	.mmt-md-176,
	.mmy-md-176 {
		margin-top: -11rem !important
	}

	.mmr-md-176 {
		margin-right: -11rem !important
	}

	.mmb-md-176 {
		margin-bottom: -11rem !important
	}

	.mml-md-176 {
		margin-left: -11rem !important
	}

	.mm-md-177 {
		margin: -11.0625rem !important
	}

	.mmx-md-177 {
		margin-left: -11.0625rem !important;
		margin-right: -11.0625rem !important
	}

	.mmy-md-177 {
		margin-bottom: -11.0625rem !important
	}

	.mmt-md-177,
	.mmy-md-177 {
		margin-top: -11.0625rem !important
	}

	.mmr-md-177 {
		margin-right: -11.0625rem !important
	}

	.mmb-md-177 {
		margin-bottom: -11.0625rem !important
	}

	.mml-md-177 {
		margin-left: -11.0625rem !important
	}

	.mm-md-178 {
		margin: -11.125rem !important
	}

	.mmx-md-178 {
		margin-left: -11.125rem !important;
		margin-right: -11.125rem !important
	}

	.mmy-md-178 {
		margin-bottom: -11.125rem !important
	}

	.mmt-md-178,
	.mmy-md-178 {
		margin-top: -11.125rem !important
	}

	.mmr-md-178 {
		margin-right: -11.125rem !important
	}

	.mmb-md-178 {
		margin-bottom: -11.125rem !important
	}

	.mml-md-178 {
		margin-left: -11.125rem !important
	}

	.mm-md-179 {
		margin: -11.1875rem !important
	}

	.mmx-md-179 {
		margin-left: -11.1875rem !important;
		margin-right: -11.1875rem !important
	}

	.mmy-md-179 {
		margin-bottom: -11.1875rem !important
	}

	.mmt-md-179,
	.mmy-md-179 {
		margin-top: -11.1875rem !important
	}

	.mmr-md-179 {
		margin-right: -11.1875rem !important
	}

	.mmb-md-179 {
		margin-bottom: -11.1875rem !important
	}

	.mml-md-179 {
		margin-left: -11.1875rem !important
	}

	.mm-md-180 {
		margin: -11.25rem !important
	}

	.mmx-md-180 {
		margin-left: -11.25rem !important;
		margin-right: -11.25rem !important
	}

	.mmy-md-180 {
		margin-bottom: -11.25rem !important
	}

	.mmt-md-180,
	.mmy-md-180 {
		margin-top: -11.25rem !important
	}

	.mmr-md-180 {
		margin-right: -11.25rem !important
	}

	.mmb-md-180 {
		margin-bottom: -11.25rem !important
	}

	.mml-md-180 {
		margin-left: -11.25rem !important
	}

	.mm-md-181 {
		margin: -11.3125rem !important
	}

	.mmx-md-181 {
		margin-left: -11.3125rem !important;
		margin-right: -11.3125rem !important
	}

	.mmy-md-181 {
		margin-bottom: -11.3125rem !important
	}

	.mmt-md-181,
	.mmy-md-181 {
		margin-top: -11.3125rem !important
	}

	.mmr-md-181 {
		margin-right: -11.3125rem !important
	}

	.mmb-md-181 {
		margin-bottom: -11.3125rem !important
	}

	.mml-md-181 {
		margin-left: -11.3125rem !important
	}

	.mm-md-182 {
		margin: -11.375rem !important
	}

	.mmx-md-182 {
		margin-left: -11.375rem !important;
		margin-right: -11.375rem !important
	}

	.mmy-md-182 {
		margin-bottom: -11.375rem !important
	}

	.mmt-md-182,
	.mmy-md-182 {
		margin-top: -11.375rem !important
	}

	.mmr-md-182 {
		margin-right: -11.375rem !important
	}

	.mmb-md-182 {
		margin-bottom: -11.375rem !important
	}

	.mml-md-182 {
		margin-left: -11.375rem !important
	}

	.mm-md-183 {
		margin: -11.4375rem !important
	}

	.mmx-md-183 {
		margin-left: -11.4375rem !important;
		margin-right: -11.4375rem !important
	}

	.mmy-md-183 {
		margin-bottom: -11.4375rem !important
	}

	.mmt-md-183,
	.mmy-md-183 {
		margin-top: -11.4375rem !important
	}

	.mmr-md-183 {
		margin-right: -11.4375rem !important
	}

	.mmb-md-183 {
		margin-bottom: -11.4375rem !important
	}

	.mml-md-183 {
		margin-left: -11.4375rem !important
	}

	.mm-md-184 {
		margin: -11.5rem !important
	}

	.mmx-md-184 {
		margin-left: -11.5rem !important;
		margin-right: -11.5rem !important
	}

	.mmy-md-184 {
		margin-bottom: -11.5rem !important
	}

	.mmt-md-184,
	.mmy-md-184 {
		margin-top: -11.5rem !important
	}

	.mmr-md-184 {
		margin-right: -11.5rem !important
	}

	.mmb-md-184 {
		margin-bottom: -11.5rem !important
	}

	.mml-md-184 {
		margin-left: -11.5rem !important
	}

	.mm-md-185 {
		margin: -11.5625rem !important
	}

	.mmx-md-185 {
		margin-left: -11.5625rem !important;
		margin-right: -11.5625rem !important
	}

	.mmy-md-185 {
		margin-bottom: -11.5625rem !important
	}

	.mmt-md-185,
	.mmy-md-185 {
		margin-top: -11.5625rem !important
	}

	.mmr-md-185 {
		margin-right: -11.5625rem !important
	}

	.mmb-md-185 {
		margin-bottom: -11.5625rem !important
	}

	.mml-md-185 {
		margin-left: -11.5625rem !important
	}

	.mm-md-186 {
		margin: -11.625rem !important
	}

	.mmx-md-186 {
		margin-left: -11.625rem !important;
		margin-right: -11.625rem !important
	}

	.mmy-md-186 {
		margin-bottom: -11.625rem !important
	}

	.mmt-md-186,
	.mmy-md-186 {
		margin-top: -11.625rem !important
	}

	.mmr-md-186 {
		margin-right: -11.625rem !important
	}

	.mmb-md-186 {
		margin-bottom: -11.625rem !important
	}

	.mml-md-186 {
		margin-left: -11.625rem !important
	}

	.mm-md-187 {
		margin: -11.6875rem !important
	}

	.mmx-md-187 {
		margin-left: -11.6875rem !important;
		margin-right: -11.6875rem !important
	}

	.mmy-md-187 {
		margin-bottom: -11.6875rem !important
	}

	.mmt-md-187,
	.mmy-md-187 {
		margin-top: -11.6875rem !important
	}

	.mmr-md-187 {
		margin-right: -11.6875rem !important
	}

	.mmb-md-187 {
		margin-bottom: -11.6875rem !important
	}

	.mml-md-187 {
		margin-left: -11.6875rem !important
	}

	.mm-md-188 {
		margin: -11.75rem !important
	}

	.mmx-md-188 {
		margin-left: -11.75rem !important;
		margin-right: -11.75rem !important
	}

	.mmy-md-188 {
		margin-bottom: -11.75rem !important
	}

	.mmt-md-188,
	.mmy-md-188 {
		margin-top: -11.75rem !important
	}

	.mmr-md-188 {
		margin-right: -11.75rem !important
	}

	.mmb-md-188 {
		margin-bottom: -11.75rem !important
	}

	.mml-md-188 {
		margin-left: -11.75rem !important
	}

	.mm-md-189 {
		margin: -11.8125rem !important
	}

	.mmx-md-189 {
		margin-left: -11.8125rem !important;
		margin-right: -11.8125rem !important
	}

	.mmy-md-189 {
		margin-bottom: -11.8125rem !important
	}

	.mmt-md-189,
	.mmy-md-189 {
		margin-top: -11.8125rem !important
	}

	.mmr-md-189 {
		margin-right: -11.8125rem !important
	}

	.mmb-md-189 {
		margin-bottom: -11.8125rem !important
	}

	.mml-md-189 {
		margin-left: -11.8125rem !important
	}

	.mm-md-190 {
		margin: -11.875rem !important
	}

	.mmx-md-190 {
		margin-left: -11.875rem !important;
		margin-right: -11.875rem !important
	}

	.mmy-md-190 {
		margin-bottom: -11.875rem !important
	}

	.mmt-md-190,
	.mmy-md-190 {
		margin-top: -11.875rem !important
	}

	.mmr-md-190 {
		margin-right: -11.875rem !important
	}

	.mmb-md-190 {
		margin-bottom: -11.875rem !important
	}

	.mml-md-190 {
		margin-left: -11.875rem !important
	}

	.mm-md-191 {
		margin: -11.9375rem !important
	}

	.mmx-md-191 {
		margin-left: -11.9375rem !important;
		margin-right: -11.9375rem !important
	}

	.mmy-md-191 {
		margin-bottom: -11.9375rem !important
	}

	.mmt-md-191,
	.mmy-md-191 {
		margin-top: -11.9375rem !important
	}

	.mmr-md-191 {
		margin-right: -11.9375rem !important
	}

	.mmb-md-191 {
		margin-bottom: -11.9375rem !important
	}

	.mml-md-191 {
		margin-left: -11.9375rem !important
	}

	.mm-md-192 {
		margin: -12rem !important
	}

	.mmx-md-192 {
		margin-left: -12rem !important;
		margin-right: -12rem !important
	}

	.mmy-md-192 {
		margin-bottom: -12rem !important
	}

	.mmt-md-192,
	.mmy-md-192 {
		margin-top: -12rem !important
	}

	.mmr-md-192 {
		margin-right: -12rem !important
	}

	.mmb-md-192 {
		margin-bottom: -12rem !important
	}

	.mml-md-192 {
		margin-left: -12rem !important
	}

	.mm-md-193 {
		margin: -12.0625rem !important
	}

	.mmx-md-193 {
		margin-left: -12.0625rem !important;
		margin-right: -12.0625rem !important
	}

	.mmy-md-193 {
		margin-bottom: -12.0625rem !important
	}

	.mmt-md-193,
	.mmy-md-193 {
		margin-top: -12.0625rem !important
	}

	.mmr-md-193 {
		margin-right: -12.0625rem !important
	}

	.mmb-md-193 {
		margin-bottom: -12.0625rem !important
	}

	.mml-md-193 {
		margin-left: -12.0625rem !important
	}

	.mm-md-194 {
		margin: -12.125rem !important
	}

	.mmx-md-194 {
		margin-left: -12.125rem !important;
		margin-right: -12.125rem !important
	}

	.mmy-md-194 {
		margin-bottom: -12.125rem !important
	}

	.mmt-md-194,
	.mmy-md-194 {
		margin-top: -12.125rem !important
	}

	.mmr-md-194 {
		margin-right: -12.125rem !important
	}

	.mmb-md-194 {
		margin-bottom: -12.125rem !important
	}

	.mml-md-194 {
		margin-left: -12.125rem !important
	}

	.mm-md-195 {
		margin: -12.1875rem !important
	}

	.mmx-md-195 {
		margin-left: -12.1875rem !important;
		margin-right: -12.1875rem !important
	}

	.mmy-md-195 {
		margin-bottom: -12.1875rem !important
	}

	.mmt-md-195,
	.mmy-md-195 {
		margin-top: -12.1875rem !important
	}

	.mmr-md-195 {
		margin-right: -12.1875rem !important
	}

	.mmb-md-195 {
		margin-bottom: -12.1875rem !important
	}

	.mml-md-195 {
		margin-left: -12.1875rem !important
	}

	.mm-md-196 {
		margin: -12.25rem !important
	}

	.mmx-md-196 {
		margin-left: -12.25rem !important;
		margin-right: -12.25rem !important
	}

	.mmy-md-196 {
		margin-bottom: -12.25rem !important
	}

	.mmt-md-196,
	.mmy-md-196 {
		margin-top: -12.25rem !important
	}

	.mmr-md-196 {
		margin-right: -12.25rem !important
	}

	.mmb-md-196 {
		margin-bottom: -12.25rem !important
	}

	.mml-md-196 {
		margin-left: -12.25rem !important
	}

	.mm-md-197 {
		margin: -12.3125rem !important
	}

	.mmx-md-197 {
		margin-left: -12.3125rem !important;
		margin-right: -12.3125rem !important
	}

	.mmy-md-197 {
		margin-bottom: -12.3125rem !important
	}

	.mmt-md-197,
	.mmy-md-197 {
		margin-top: -12.3125rem !important
	}

	.mmr-md-197 {
		margin-right: -12.3125rem !important
	}

	.mmb-md-197 {
		margin-bottom: -12.3125rem !important
	}

	.mml-md-197 {
		margin-left: -12.3125rem !important
	}

	.mm-md-198 {
		margin: -12.375rem !important
	}

	.mmx-md-198 {
		margin-left: -12.375rem !important;
		margin-right: -12.375rem !important
	}

	.mmy-md-198 {
		margin-bottom: -12.375rem !important
	}

	.mmt-md-198,
	.mmy-md-198 {
		margin-top: -12.375rem !important
	}

	.mmr-md-198 {
		margin-right: -12.375rem !important
	}

	.mmb-md-198 {
		margin-bottom: -12.375rem !important
	}

	.mml-md-198 {
		margin-left: -12.375rem !important
	}

	.mm-md-199 {
		margin: -12.4375rem !important
	}

	.mmx-md-199 {
		margin-left: -12.4375rem !important;
		margin-right: -12.4375rem !important
	}

	.mmy-md-199 {
		margin-bottom: -12.4375rem !important
	}

	.mmt-md-199,
	.mmy-md-199 {
		margin-top: -12.4375rem !important
	}

	.mmr-md-199 {
		margin-right: -12.4375rem !important
	}

	.mmb-md-199 {
		margin-bottom: -12.4375rem !important
	}

	.mml-md-199 {
		margin-left: -12.4375rem !important
	}

	.mm-md-200 {
		margin: -12.5rem !important
	}

	.mmx-md-200 {
		margin-left: -12.5rem !important;
		margin-right: -12.5rem !important
	}

	.mmy-md-200 {
		margin-bottom: -12.5rem !important
	}

	.mmt-md-200,
	.mmy-md-200 {
		margin-top: -12.5rem !important
	}

	.mmr-md-200 {
		margin-right: -12.5rem !important
	}

	.mmb-md-200 {
		margin-bottom: -12.5rem !important
	}

	.mml-md-200 {
		margin-left: -12.5rem !important
	}

	.mm-md-auto {
		margin: -auto !important
	}

	.mmx-md-auto {
		margin-left: -auto !important;
		margin-right: -auto !important
	}

	.mmy-md-auto {
		margin-bottom: -auto !important
	}

	.mmt-md-auto,
	.mmy-md-auto {
		margin-top: -auto !important
	}

	.mmr-md-auto {
		margin-right: -auto !important
	}

	.mmb-md-auto {
		margin-bottom: -auto !important
	}

	.mml-md-auto {
		margin-left: -auto !important
	}
}

@media (min-width:992px) {
	.mm-lg-0 {
		margin: 0 !important
	}

	.mmx-lg-0 {
		margin-left: 0 !important;
		margin-right: 0 !important
	}

	.mmy-lg-0 {
		margin-bottom: 0 !important
	}

	.mmt-lg-0,
	.mmy-lg-0 {
		margin-top: 0 !important
	}

	.mmr-lg-0 {
		margin-right: 0 !important
	}

	.mmb-lg-0 {
		margin-bottom: 0 !important
	}

	.mml-lg-0 {
		margin-left: 0 !important
	}

	.mm-lg-1 {
		margin: -.0625rem !important
	}

	.mmx-lg-1 {
		margin-left: -.0625rem !important;
		margin-right: -.0625rem !important
	}

	.mmy-lg-1 {
		margin-bottom: -.0625rem !important
	}

	.mmt-lg-1,
	.mmy-lg-1 {
		margin-top: -.0625rem !important
	}

	.mmr-lg-1 {
		margin-right: -.0625rem !important
	}

	.mmb-lg-1 {
		margin-bottom: -.0625rem !important
	}

	.mml-lg-1 {
		margin-left: -.0625rem !important
	}

	.mm-lg-2 {
		margin: -.125rem !important
	}

	.mmx-lg-2 {
		margin-left: -.125rem !important;
		margin-right: -.125rem !important
	}

	.mmy-lg-2 {
		margin-bottom: -.125rem !important
	}

	.mmt-lg-2,
	.mmy-lg-2 {
		margin-top: -.125rem !important
	}

	.mmr-lg-2 {
		margin-right: -.125rem !important
	}

	.mmb-lg-2 {
		margin-bottom: -.125rem !important
	}

	.mml-lg-2 {
		margin-left: -.125rem !important
	}

	.mm-lg-3 {
		margin: -.1875rem !important
	}

	.mmx-lg-3 {
		margin-left: -.1875rem !important;
		margin-right: -.1875rem !important
	}

	.mmy-lg-3 {
		margin-bottom: -.1875rem !important
	}

	.mmt-lg-3,
	.mmy-lg-3 {
		margin-top: -.1875rem !important
	}

	.mmr-lg-3 {
		margin-right: -.1875rem !important
	}

	.mmb-lg-3 {
		margin-bottom: -.1875rem !important
	}

	.mml-lg-3 {
		margin-left: -.1875rem !important
	}

	.mm-lg-4 {
		margin: -.25rem !important
	}

	.mmx-lg-4 {
		margin-left: -.25rem !important;
		margin-right: -.25rem !important
	}

	.mmy-lg-4 {
		margin-bottom: -.25rem !important
	}

	.mmt-lg-4,
	.mmy-lg-4 {
		margin-top: -.25rem !important
	}

	.mmr-lg-4 {
		margin-right: -.25rem !important
	}

	.mmb-lg-4 {
		margin-bottom: -.25rem !important
	}

	.mml-lg-4 {
		margin-left: -.25rem !important
	}

	.mm-lg-5 {
		margin: -.3125rem !important
	}

	.mmx-lg-5 {
		margin-left: -.3125rem !important;
		margin-right: -.3125rem !important
	}

	.mmy-lg-5 {
		margin-bottom: -.3125rem !important
	}

	.mmt-lg-5,
	.mmy-lg-5 {
		margin-top: -.3125rem !important
	}

	.mmr-lg-5 {
		margin-right: -.3125rem !important
	}

	.mmb-lg-5 {
		margin-bottom: -.3125rem !important
	}

	.mml-lg-5 {
		margin-left: -.3125rem !important
	}

	.mm-lg-6 {
		margin: -.375rem !important
	}

	.mmx-lg-6 {
		margin-left: -.375rem !important;
		margin-right: -.375rem !important
	}

	.mmy-lg-6 {
		margin-bottom: -.375rem !important
	}

	.mmt-lg-6,
	.mmy-lg-6 {
		margin-top: -.375rem !important
	}

	.mmr-lg-6 {
		margin-right: -.375rem !important
	}

	.mmb-lg-6 {
		margin-bottom: -.375rem !important
	}

	.mml-lg-6 {
		margin-left: -.375rem !important
	}

	.mm-lg-7 {
		margin: -.4375rem !important
	}

	.mmx-lg-7 {
		margin-left: -.4375rem !important;
		margin-right: -.4375rem !important
	}

	.mmy-lg-7 {
		margin-bottom: -.4375rem !important
	}

	.mmt-lg-7,
	.mmy-lg-7 {
		margin-top: -.4375rem !important
	}

	.mmr-lg-7 {
		margin-right: -.4375rem !important
	}

	.mmb-lg-7 {
		margin-bottom: -.4375rem !important
	}

	.mml-lg-7 {
		margin-left: -.4375rem !important
	}

	.mm-lg-8 {
		margin: -.5rem !important
	}

	.mmx-lg-8 {
		margin-left: -.5rem !important;
		margin-right: -.5rem !important
	}

	.mmy-lg-8 {
		margin-bottom: -.5rem !important
	}

	.mmt-lg-8,
	.mmy-lg-8 {
		margin-top: -.5rem !important
	}

	.mmr-lg-8 {
		margin-right: -.5rem !important
	}

	.mmb-lg-8 {
		margin-bottom: -.5rem !important
	}

	.mml-lg-8 {
		margin-left: -.5rem !important
	}

	.mm-lg-9 {
		margin: -.5625rem !important
	}

	.mmx-lg-9 {
		margin-left: -.5625rem !important;
		margin-right: -.5625rem !important
	}

	.mmy-lg-9 {
		margin-bottom: -.5625rem !important
	}

	.mmt-lg-9,
	.mmy-lg-9 {
		margin-top: -.5625rem !important
	}

	.mmr-lg-9 {
		margin-right: -.5625rem !important
	}

	.mmb-lg-9 {
		margin-bottom: -.5625rem !important
	}

	.mml-lg-9 {
		margin-left: -.5625rem !important
	}

	.mm-lg-10 {
		margin: -.625rem !important
	}

	.mmx-lg-10 {
		margin-left: -.625rem !important;
		margin-right: -.625rem !important
	}

	.mmy-lg-10 {
		margin-bottom: -.625rem !important
	}

	.mmt-lg-10,
	.mmy-lg-10 {
		margin-top: -.625rem !important
	}

	.mmr-lg-10 {
		margin-right: -.625rem !important
	}

	.mmb-lg-10 {
		margin-bottom: -.625rem !important
	}

	.mml-lg-10 {
		margin-left: -.625rem !important
	}

	.mm-lg-11 {
		margin: -.6875rem !important
	}

	.mmx-lg-11 {
		margin-left: -.6875rem !important;
		margin-right: -.6875rem !important
	}

	.mmy-lg-11 {
		margin-bottom: -.6875rem !important
	}

	.mmt-lg-11,
	.mmy-lg-11 {
		margin-top: -.6875rem !important
	}

	.mmr-lg-11 {
		margin-right: -.6875rem !important
	}

	.mmb-lg-11 {
		margin-bottom: -.6875rem !important
	}

	.mml-lg-11 {
		margin-left: -.6875rem !important
	}

	.mm-lg-12 {
		margin: -.75rem !important
	}

	.mmx-lg-12 {
		margin-left: -.75rem !important;
		margin-right: -.75rem !important
	}

	.mmy-lg-12 {
		margin-bottom: -.75rem !important
	}

	.mmt-lg-12,
	.mmy-lg-12 {
		margin-top: -.75rem !important
	}

	.mmr-lg-12 {
		margin-right: -.75rem !important
	}

	.mmb-lg-12 {
		margin-bottom: -.75rem !important
	}

	.mml-lg-12 {
		margin-left: -.75rem !important
	}

	.mm-lg-13 {
		margin: -.8125rem !important
	}

	.mmx-lg-13 {
		margin-left: -.8125rem !important;
		margin-right: -.8125rem !important
	}

	.mmy-lg-13 {
		margin-bottom: -.8125rem !important
	}

	.mmt-lg-13,
	.mmy-lg-13 {
		margin-top: -.8125rem !important
	}

	.mmr-lg-13 {
		margin-right: -.8125rem !important
	}

	.mmb-lg-13 {
		margin-bottom: -.8125rem !important
	}

	.mml-lg-13 {
		margin-left: -.8125rem !important
	}

	.mm-lg-14 {
		margin: -.875rem !important
	}

	.mmx-lg-14 {
		margin-left: -.875rem !important;
		margin-right: -.875rem !important
	}

	.mmy-lg-14 {
		margin-bottom: -.875rem !important
	}

	.mmt-lg-14,
	.mmy-lg-14 {
		margin-top: -.875rem !important
	}

	.mmr-lg-14 {
		margin-right: -.875rem !important
	}

	.mmb-lg-14 {
		margin-bottom: -.875rem !important
	}

	.mml-lg-14 {
		margin-left: -.875rem !important
	}

	.mm-lg-15 {
		margin: -.9375rem !important
	}

	.mmx-lg-15 {
		margin-left: -.9375rem !important;
		margin-right: -.9375rem !important
	}

	.mmy-lg-15 {
		margin-bottom: -.9375rem !important
	}

	.mmt-lg-15,
	.mmy-lg-15 {
		margin-top: -.9375rem !important
	}

	.mmr-lg-15 {
		margin-right: -.9375rem !important
	}

	.mmb-lg-15 {
		margin-bottom: -.9375rem !important
	}

	.mml-lg-15 {
		margin-left: -.9375rem !important
	}

	.mm-lg-16 {
		margin: -1rem !important
	}

	.mmx-lg-16 {
		margin-left: -1rem !important;
		margin-right: -1rem !important
	}

	.mmy-lg-16 {
		margin-bottom: -1rem !important
	}

	.mmt-lg-16,
	.mmy-lg-16 {
		margin-top: -1rem !important
	}

	.mmr-lg-16 {
		margin-right: -1rem !important
	}

	.mmb-lg-16 {
		margin-bottom: -1rem !important
	}

	.mml-lg-16 {
		margin-left: -1rem !important
	}

	.mm-lg-17 {
		margin: -1.0625rem !important
	}

	.mmx-lg-17 {
		margin-left: -1.0625rem !important;
		margin-right: -1.0625rem !important
	}

	.mmy-lg-17 {
		margin-bottom: -1.0625rem !important
	}

	.mmt-lg-17,
	.mmy-lg-17 {
		margin-top: -1.0625rem !important
	}

	.mmr-lg-17 {
		margin-right: -1.0625rem !important
	}

	.mmb-lg-17 {
		margin-bottom: -1.0625rem !important
	}

	.mml-lg-17 {
		margin-left: -1.0625rem !important
	}

	.mm-lg-18 {
		margin: -1.125rem !important
	}

	.mmx-lg-18 {
		margin-left: -1.125rem !important;
		margin-right: -1.125rem !important
	}

	.mmy-lg-18 {
		margin-bottom: -1.125rem !important
	}

	.mmt-lg-18,
	.mmy-lg-18 {
		margin-top: -1.125rem !important
	}

	.mmr-lg-18 {
		margin-right: -1.125rem !important
	}

	.mmb-lg-18 {
		margin-bottom: -1.125rem !important
	}

	.mml-lg-18 {
		margin-left: -1.125rem !important
	}

	.mm-lg-19 {
		margin: -1.1875rem !important
	}

	.mmx-lg-19 {
		margin-left: -1.1875rem !important;
		margin-right: -1.1875rem !important
	}

	.mmy-lg-19 {
		margin-bottom: -1.1875rem !important
	}

	.mmt-lg-19,
	.mmy-lg-19 {
		margin-top: -1.1875rem !important
	}

	.mmr-lg-19 {
		margin-right: -1.1875rem !important
	}

	.mmb-lg-19 {
		margin-bottom: -1.1875rem !important
	}

	.mml-lg-19 {
		margin-left: -1.1875rem !important
	}

	.mm-lg-20 {
		margin: -1.25rem !important
	}

	.mmx-lg-20 {
		margin-left: -1.25rem !important;
		margin-right: -1.25rem !important
	}

	.mmy-lg-20 {
		margin-bottom: -1.25rem !important
	}

	.mmt-lg-20,
	.mmy-lg-20 {
		margin-top: -1.25rem !important
	}

	.mmr-lg-20 {
		margin-right: -1.25rem !important
	}

	.mmb-lg-20 {
		margin-bottom: -1.25rem !important
	}

	.mml-lg-20 {
		margin-left: -1.25rem !important
	}

	.mm-lg-21 {
		margin: -1.3125rem !important
	}

	.mmx-lg-21 {
		margin-left: -1.3125rem !important;
		margin-right: -1.3125rem !important
	}

	.mmy-lg-21 {
		margin-bottom: -1.3125rem !important
	}

	.mmt-lg-21,
	.mmy-lg-21 {
		margin-top: -1.3125rem !important
	}

	.mmr-lg-21 {
		margin-right: -1.3125rem !important
	}

	.mmb-lg-21 {
		margin-bottom: -1.3125rem !important
	}

	.mml-lg-21 {
		margin-left: -1.3125rem !important
	}

	.mm-lg-22 {
		margin: -1.375rem !important
	}

	.mmx-lg-22 {
		margin-left: -1.375rem !important;
		margin-right: -1.375rem !important
	}

	.mmy-lg-22 {
		margin-bottom: -1.375rem !important
	}

	.mmt-lg-22,
	.mmy-lg-22 {
		margin-top: -1.375rem !important
	}

	.mmr-lg-22 {
		margin-right: -1.375rem !important
	}

	.mmb-lg-22 {
		margin-bottom: -1.375rem !important
	}

	.mml-lg-22 {
		margin-left: -1.375rem !important
	}

	.mm-lg-23 {
		margin: -1.4375rem !important
	}

	.mmx-lg-23 {
		margin-left: -1.4375rem !important;
		margin-right: -1.4375rem !important
	}

	.mmy-lg-23 {
		margin-bottom: -1.4375rem !important
	}

	.mmt-lg-23,
	.mmy-lg-23 {
		margin-top: -1.4375rem !important
	}

	.mmr-lg-23 {
		margin-right: -1.4375rem !important
	}

	.mmb-lg-23 {
		margin-bottom: -1.4375rem !important
	}

	.mml-lg-23 {
		margin-left: -1.4375rem !important
	}

	.mm-lg-24 {
		margin: -1.5rem !important
	}

	.mmx-lg-24 {
		margin-left: -1.5rem !important;
		margin-right: -1.5rem !important
	}

	.mmy-lg-24 {
		margin-bottom: -1.5rem !important
	}

	.mmt-lg-24,
	.mmy-lg-24 {
		margin-top: -1.5rem !important
	}

	.mmr-lg-24 {
		margin-right: -1.5rem !important
	}

	.mmb-lg-24 {
		margin-bottom: -1.5rem !important
	}

	.mml-lg-24 {
		margin-left: -1.5rem !important
	}

	.mm-lg-25 {
		margin: -1.5625rem !important
	}

	.mmx-lg-25 {
		margin-left: -1.5625rem !important;
		margin-right: -1.5625rem !important
	}

	.mmy-lg-25 {
		margin-bottom: -1.5625rem !important
	}

	.mmt-lg-25,
	.mmy-lg-25 {
		margin-top: -1.5625rem !important
	}

	.mmr-lg-25 {
		margin-right: -1.5625rem !important
	}

	.mmb-lg-25 {
		margin-bottom: -1.5625rem !important
	}

	.mml-lg-25 {
		margin-left: -1.5625rem !important
	}

	.mm-lg-26 {
		margin: -1.625rem !important
	}

	.mmx-lg-26 {
		margin-left: -1.625rem !important;
		margin-right: -1.625rem !important
	}

	.mmy-lg-26 {
		margin-bottom: -1.625rem !important
	}

	.mmt-lg-26,
	.mmy-lg-26 {
		margin-top: -1.625rem !important
	}

	.mmr-lg-26 {
		margin-right: -1.625rem !important
	}

	.mmb-lg-26 {
		margin-bottom: -1.625rem !important
	}

	.mml-lg-26 {
		margin-left: -1.625rem !important
	}

	.mm-lg-27 {
		margin: -1.6875rem !important
	}

	.mmx-lg-27 {
		margin-left: -1.6875rem !important;
		margin-right: -1.6875rem !important
	}

	.mmy-lg-27 {
		margin-bottom: -1.6875rem !important
	}

	.mmt-lg-27,
	.mmy-lg-27 {
		margin-top: -1.6875rem !important
	}

	.mmr-lg-27 {
		margin-right: -1.6875rem !important
	}

	.mmb-lg-27 {
		margin-bottom: -1.6875rem !important
	}

	.mml-lg-27 {
		margin-left: -1.6875rem !important
	}

	.mm-lg-28 {
		margin: -1.75rem !important
	}

	.mmx-lg-28 {
		margin-left: -1.75rem !important;
		margin-right: -1.75rem !important
	}

	.mmy-lg-28 {
		margin-bottom: -1.75rem !important
	}

	.mmt-lg-28,
	.mmy-lg-28 {
		margin-top: -1.75rem !important
	}

	.mmr-lg-28 {
		margin-right: -1.75rem !important
	}

	.mmb-lg-28 {
		margin-bottom: -1.75rem !important
	}

	.mml-lg-28 {
		margin-left: -1.75rem !important
	}

	.mm-lg-29 {
		margin: -1.8125rem !important
	}

	.mmx-lg-29 {
		margin-left: -1.8125rem !important;
		margin-right: -1.8125rem !important
	}

	.mmy-lg-29 {
		margin-bottom: -1.8125rem !important
	}

	.mmt-lg-29,
	.mmy-lg-29 {
		margin-top: -1.8125rem !important
	}

	.mmr-lg-29 {
		margin-right: -1.8125rem !important
	}

	.mmb-lg-29 {
		margin-bottom: -1.8125rem !important
	}

	.mml-lg-29 {
		margin-left: -1.8125rem !important
	}

	.mm-lg-30 {
		margin: -1.875rem !important
	}

	.mmx-lg-30 {
		margin-left: -1.875rem !important;
		margin-right: -1.875rem !important
	}

	.mmy-lg-30 {
		margin-bottom: -1.875rem !important
	}

	.mmt-lg-30,
	.mmy-lg-30 {
		margin-top: -1.875rem !important
	}

	.mmr-lg-30 {
		margin-right: -1.875rem !important
	}

	.mmb-lg-30 {
		margin-bottom: -1.875rem !important
	}

	.mml-lg-30 {
		margin-left: -1.875rem !important
	}

	.mm-lg-31 {
		margin: -1.9375rem !important
	}

	.mmx-lg-31 {
		margin-left: -1.9375rem !important;
		margin-right: -1.9375rem !important
	}

	.mmy-lg-31 {
		margin-bottom: -1.9375rem !important
	}

	.mmt-lg-31,
	.mmy-lg-31 {
		margin-top: -1.9375rem !important
	}

	.mmr-lg-31 {
		margin-right: -1.9375rem !important
	}

	.mmb-lg-31 {
		margin-bottom: -1.9375rem !important
	}

	.mml-lg-31 {
		margin-left: -1.9375rem !important
	}

	.mm-lg-32 {
		margin: -2rem !important
	}

	.mmx-lg-32 {
		margin-left: -2rem !important;
		margin-right: -2rem !important
	}

	.mmy-lg-32 {
		margin-bottom: -2rem !important
	}

	.mmt-lg-32,
	.mmy-lg-32 {
		margin-top: -2rem !important
	}

	.mmr-lg-32 {
		margin-right: -2rem !important
	}

	.mmb-lg-32 {
		margin-bottom: -2rem !important
	}

	.mml-lg-32 {
		margin-left: -2rem !important
	}

	.mm-lg-33 {
		margin: -2.0625rem !important
	}

	.mmx-lg-33 {
		margin-left: -2.0625rem !important;
		margin-right: -2.0625rem !important
	}

	.mmy-lg-33 {
		margin-bottom: -2.0625rem !important
	}

	.mmt-lg-33,
	.mmy-lg-33 {
		margin-top: -2.0625rem !important
	}

	.mmr-lg-33 {
		margin-right: -2.0625rem !important
	}

	.mmb-lg-33 {
		margin-bottom: -2.0625rem !important
	}

	.mml-lg-33 {
		margin-left: -2.0625rem !important
	}

	.mm-lg-34 {
		margin: -2.125rem !important
	}

	.mmx-lg-34 {
		margin-left: -2.125rem !important;
		margin-right: -2.125rem !important
	}

	.mmy-lg-34 {
		margin-bottom: -2.125rem !important
	}

	.mmt-lg-34,
	.mmy-lg-34 {
		margin-top: -2.125rem !important
	}

	.mmr-lg-34 {
		margin-right: -2.125rem !important
	}

	.mmb-lg-34 {
		margin-bottom: -2.125rem !important
	}

	.mml-lg-34 {
		margin-left: -2.125rem !important
	}

	.mm-lg-35 {
		margin: -2.1875rem !important
	}

	.mmx-lg-35 {
		margin-left: -2.1875rem !important;
		margin-right: -2.1875rem !important
	}

	.mmy-lg-35 {
		margin-bottom: -2.1875rem !important
	}

	.mmt-lg-35,
	.mmy-lg-35 {
		margin-top: -2.1875rem !important
	}

	.mmr-lg-35 {
		margin-right: -2.1875rem !important
	}

	.mmb-lg-35 {
		margin-bottom: -2.1875rem !important
	}

	.mml-lg-35 {
		margin-left: -2.1875rem !important
	}

	.mm-lg-36 {
		margin: -2.25rem !important
	}

	.mmx-lg-36 {
		margin-left: -2.25rem !important;
		margin-right: -2.25rem !important
	}

	.mmy-lg-36 {
		margin-bottom: -2.25rem !important
	}

	.mmt-lg-36,
	.mmy-lg-36 {
		margin-top: -2.25rem !important
	}

	.mmr-lg-36 {
		margin-right: -2.25rem !important
	}

	.mmb-lg-36 {
		margin-bottom: -2.25rem !important
	}

	.mml-lg-36 {
		margin-left: -2.25rem !important
	}

	.mm-lg-37 {
		margin: -2.3125rem !important
	}

	.mmx-lg-37 {
		margin-left: -2.3125rem !important;
		margin-right: -2.3125rem !important
	}

	.mmy-lg-37 {
		margin-bottom: -2.3125rem !important
	}

	.mmt-lg-37,
	.mmy-lg-37 {
		margin-top: -2.3125rem !important
	}

	.mmr-lg-37 {
		margin-right: -2.3125rem !important
	}

	.mmb-lg-37 {
		margin-bottom: -2.3125rem !important
	}

	.mml-lg-37 {
		margin-left: -2.3125rem !important
	}

	.mm-lg-38 {
		margin: -2.375rem !important
	}

	.mmx-lg-38 {
		margin-left: -2.375rem !important;
		margin-right: -2.375rem !important
	}

	.mmy-lg-38 {
		margin-bottom: -2.375rem !important
	}

	.mmt-lg-38,
	.mmy-lg-38 {
		margin-top: -2.375rem !important
	}

	.mmr-lg-38 {
		margin-right: -2.375rem !important
	}

	.mmb-lg-38 {
		margin-bottom: -2.375rem !important
	}

	.mml-lg-38 {
		margin-left: -2.375rem !important
	}

	.mm-lg-39 {
		margin: -2.4375rem !important
	}

	.mmx-lg-39 {
		margin-left: -2.4375rem !important;
		margin-right: -2.4375rem !important
	}

	.mmy-lg-39 {
		margin-bottom: -2.4375rem !important
	}

	.mmt-lg-39,
	.mmy-lg-39 {
		margin-top: -2.4375rem !important
	}

	.mmr-lg-39 {
		margin-right: -2.4375rem !important
	}

	.mmb-lg-39 {
		margin-bottom: -2.4375rem !important
	}

	.mml-lg-39 {
		margin-left: -2.4375rem !important
	}

	.mm-lg-40 {
		margin: -2.5rem !important
	}

	.mmx-lg-40 {
		margin-left: -2.5rem !important;
		margin-right: -2.5rem !important
	}

	.mmy-lg-40 {
		margin-bottom: -2.5rem !important
	}

	.mmt-lg-40,
	.mmy-lg-40 {
		margin-top: -2.5rem !important
	}

	.mmr-lg-40 {
		margin-right: -2.5rem !important
	}

	.mmb-lg-40 {
		margin-bottom: -2.5rem !important
	}

	.mml-lg-40 {
		margin-left: -2.5rem !important
	}

	.mm-lg-41 {
		margin: -2.5625rem !important
	}

	.mmx-lg-41 {
		margin-left: -2.5625rem !important;
		margin-right: -2.5625rem !important
	}

	.mmy-lg-41 {
		margin-bottom: -2.5625rem !important
	}

	.mmt-lg-41,
	.mmy-lg-41 {
		margin-top: -2.5625rem !important
	}

	.mmr-lg-41 {
		margin-right: -2.5625rem !important
	}

	.mmb-lg-41 {
		margin-bottom: -2.5625rem !important
	}

	.mml-lg-41 {
		margin-left: -2.5625rem !important
	}

	.mm-lg-42 {
		margin: -2.625rem !important
	}

	.mmx-lg-42 {
		margin-left: -2.625rem !important;
		margin-right: -2.625rem !important
	}

	.mmy-lg-42 {
		margin-bottom: -2.625rem !important
	}

	.mmt-lg-42,
	.mmy-lg-42 {
		margin-top: -2.625rem !important
	}

	.mmr-lg-42 {
		margin-right: -2.625rem !important
	}

	.mmb-lg-42 {
		margin-bottom: -2.625rem !important
	}

	.mml-lg-42 {
		margin-left: -2.625rem !important
	}

	.mm-lg-43 {
		margin: -2.6875rem !important
	}

	.mmx-lg-43 {
		margin-left: -2.6875rem !important;
		margin-right: -2.6875rem !important
	}

	.mmy-lg-43 {
		margin-bottom: -2.6875rem !important
	}

	.mmt-lg-43,
	.mmy-lg-43 {
		margin-top: -2.6875rem !important
	}

	.mmr-lg-43 {
		margin-right: -2.6875rem !important
	}

	.mmb-lg-43 {
		margin-bottom: -2.6875rem !important
	}

	.mml-lg-43 {
		margin-left: -2.6875rem !important
	}

	.mm-lg-44 {
		margin: -2.75rem !important
	}

	.mmx-lg-44 {
		margin-left: -2.75rem !important;
		margin-right: -2.75rem !important
	}

	.mmy-lg-44 {
		margin-bottom: -2.75rem !important
	}

	.mmt-lg-44,
	.mmy-lg-44 {
		margin-top: -2.75rem !important
	}

	.mmr-lg-44 {
		margin-right: -2.75rem !important
	}

	.mmb-lg-44 {
		margin-bottom: -2.75rem !important
	}

	.mml-lg-44 {
		margin-left: -2.75rem !important
	}

	.mm-lg-45 {
		margin: -2.8125rem !important
	}

	.mmx-lg-45 {
		margin-left: -2.8125rem !important;
		margin-right: -2.8125rem !important
	}

	.mmy-lg-45 {
		margin-bottom: -2.8125rem !important
	}

	.mmt-lg-45,
	.mmy-lg-45 {
		margin-top: -2.8125rem !important
	}

	.mmr-lg-45 {
		margin-right: -2.8125rem !important
	}

	.mmb-lg-45 {
		margin-bottom: -2.8125rem !important
	}

	.mml-lg-45 {
		margin-left: -2.8125rem !important
	}

	.mm-lg-46 {
		margin: -2.875rem !important
	}

	.mmx-lg-46 {
		margin-left: -2.875rem !important;
		margin-right: -2.875rem !important
	}

	.mmy-lg-46 {
		margin-bottom: -2.875rem !important
	}

	.mmt-lg-46,
	.mmy-lg-46 {
		margin-top: -2.875rem !important
	}

	.mmr-lg-46 {
		margin-right: -2.875rem !important
	}

	.mmb-lg-46 {
		margin-bottom: -2.875rem !important
	}

	.mml-lg-46 {
		margin-left: -2.875rem !important
	}

	.mm-lg-47 {
		margin: -2.9375rem !important
	}

	.mmx-lg-47 {
		margin-left: -2.9375rem !important;
		margin-right: -2.9375rem !important
	}

	.mmy-lg-47 {
		margin-bottom: -2.9375rem !important
	}

	.mmt-lg-47,
	.mmy-lg-47 {
		margin-top: -2.9375rem !important
	}

	.mmr-lg-47 {
		margin-right: -2.9375rem !important
	}

	.mmb-lg-47 {
		margin-bottom: -2.9375rem !important
	}

	.mml-lg-47 {
		margin-left: -2.9375rem !important
	}

	.mm-lg-48 {
		margin: -3rem !important
	}

	.mmx-lg-48 {
		margin-left: -3rem !important;
		margin-right: -3rem !important
	}

	.mmy-lg-48 {
		margin-bottom: -3rem !important
	}

	.mmt-lg-48,
	.mmy-lg-48 {
		margin-top: -3rem !important
	}

	.mmr-lg-48 {
		margin-right: -3rem !important
	}

	.mmb-lg-48 {
		margin-bottom: -3rem !important
	}

	.mml-lg-48 {
		margin-left: -3rem !important
	}

	.mm-lg-49 {
		margin: -3.0625rem !important
	}

	.mmx-lg-49 {
		margin-left: -3.0625rem !important;
		margin-right: -3.0625rem !important
	}

	.mmy-lg-49 {
		margin-bottom: -3.0625rem !important
	}

	.mmt-lg-49,
	.mmy-lg-49 {
		margin-top: -3.0625rem !important
	}

	.mmr-lg-49 {
		margin-right: -3.0625rem !important
	}

	.mmb-lg-49 {
		margin-bottom: -3.0625rem !important
	}

	.mml-lg-49 {
		margin-left: -3.0625rem !important
	}

	.mm-lg-50 {
		margin: -3.125rem !important
	}

	.mmx-lg-50 {
		margin-left: -3.125rem !important;
		margin-right: -3.125rem !important
	}

	.mmy-lg-50 {
		margin-bottom: -3.125rem !important
	}

	.mmt-lg-50,
	.mmy-lg-50 {
		margin-top: -3.125rem !important
	}

	.mmr-lg-50 {
		margin-right: -3.125rem !important
	}

	.mmb-lg-50 {
		margin-bottom: -3.125rem !important
	}

	.mml-lg-50 {
		margin-left: -3.125rem !important
	}

	.mm-lg-51 {
		margin: -3.1875rem !important
	}

	.mmx-lg-51 {
		margin-left: -3.1875rem !important;
		margin-right: -3.1875rem !important
	}

	.mmy-lg-51 {
		margin-bottom: -3.1875rem !important
	}

	.mmt-lg-51,
	.mmy-lg-51 {
		margin-top: -3.1875rem !important
	}

	.mmr-lg-51 {
		margin-right: -3.1875rem !important
	}

	.mmb-lg-51 {
		margin-bottom: -3.1875rem !important
	}

	.mml-lg-51 {
		margin-left: -3.1875rem !important
	}

	.mm-lg-52 {
		margin: -3.25rem !important
	}

	.mmx-lg-52 {
		margin-left: -3.25rem !important;
		margin-right: -3.25rem !important
	}

	.mmy-lg-52 {
		margin-bottom: -3.25rem !important
	}

	.mmt-lg-52,
	.mmy-lg-52 {
		margin-top: -3.25rem !important
	}

	.mmr-lg-52 {
		margin-right: -3.25rem !important
	}

	.mmb-lg-52 {
		margin-bottom: -3.25rem !important
	}

	.mml-lg-52 {
		margin-left: -3.25rem !important
	}

	.mm-lg-53 {
		margin: -3.3125rem !important
	}

	.mmx-lg-53 {
		margin-left: -3.3125rem !important;
		margin-right: -3.3125rem !important
	}

	.mmy-lg-53 {
		margin-bottom: -3.3125rem !important
	}

	.mmt-lg-53,
	.mmy-lg-53 {
		margin-top: -3.3125rem !important
	}

	.mmr-lg-53 {
		margin-right: -3.3125rem !important
	}

	.mmb-lg-53 {
		margin-bottom: -3.3125rem !important
	}

	.mml-lg-53 {
		margin-left: -3.3125rem !important
	}

	.mm-lg-54 {
		margin: -3.375rem !important
	}

	.mmx-lg-54 {
		margin-left: -3.375rem !important;
		margin-right: -3.375rem !important
	}

	.mmy-lg-54 {
		margin-bottom: -3.375rem !important
	}

	.mmt-lg-54,
	.mmy-lg-54 {
		margin-top: -3.375rem !important
	}

	.mmr-lg-54 {
		margin-right: -3.375rem !important
	}

	.mmb-lg-54 {
		margin-bottom: -3.375rem !important
	}

	.mml-lg-54 {
		margin-left: -3.375rem !important
	}

	.mm-lg-55 {
		margin: -3.4375rem !important
	}

	.mmx-lg-55 {
		margin-left: -3.4375rem !important;
		margin-right: -3.4375rem !important
	}

	.mmy-lg-55 {
		margin-bottom: -3.4375rem !important
	}

	.mmt-lg-55,
	.mmy-lg-55 {
		margin-top: -3.4375rem !important
	}

	.mmr-lg-55 {
		margin-right: -3.4375rem !important
	}

	.mmb-lg-55 {
		margin-bottom: -3.4375rem !important
	}

	.mml-lg-55 {
		margin-left: -3.4375rem !important
	}

	.mm-lg-56 {
		margin: -3.5rem !important
	}

	.mmx-lg-56 {
		margin-left: -3.5rem !important;
		margin-right: -3.5rem !important
	}

	.mmy-lg-56 {
		margin-bottom: -3.5rem !important
	}

	.mmt-lg-56,
	.mmy-lg-56 {
		margin-top: -3.5rem !important
	}

	.mmr-lg-56 {
		margin-right: -3.5rem !important
	}

	.mmb-lg-56 {
		margin-bottom: -3.5rem !important
	}

	.mml-lg-56 {
		margin-left: -3.5rem !important
	}

	.mm-lg-57 {
		margin: -3.5625rem !important
	}

	.mmx-lg-57 {
		margin-left: -3.5625rem !important;
		margin-right: -3.5625rem !important
	}

	.mmy-lg-57 {
		margin-bottom: -3.5625rem !important
	}

	.mmt-lg-57,
	.mmy-lg-57 {
		margin-top: -3.5625rem !important
	}

	.mmr-lg-57 {
		margin-right: -3.5625rem !important
	}

	.mmb-lg-57 {
		margin-bottom: -3.5625rem !important
	}

	.mml-lg-57 {
		margin-left: -3.5625rem !important
	}

	.mm-lg-58 {
		margin: -3.625rem !important
	}

	.mmx-lg-58 {
		margin-left: -3.625rem !important;
		margin-right: -3.625rem !important
	}

	.mmy-lg-58 {
		margin-bottom: -3.625rem !important
	}

	.mmt-lg-58,
	.mmy-lg-58 {
		margin-top: -3.625rem !important
	}

	.mmr-lg-58 {
		margin-right: -3.625rem !important
	}

	.mmb-lg-58 {
		margin-bottom: -3.625rem !important
	}

	.mml-lg-58 {
		margin-left: -3.625rem !important
	}

	.mm-lg-59 {
		margin: -3.6875rem !important
	}

	.mmx-lg-59 {
		margin-left: -3.6875rem !important;
		margin-right: -3.6875rem !important
	}

	.mmy-lg-59 {
		margin-bottom: -3.6875rem !important
	}

	.mmt-lg-59,
	.mmy-lg-59 {
		margin-top: -3.6875rem !important
	}

	.mmr-lg-59 {
		margin-right: -3.6875rem !important
	}

	.mmb-lg-59 {
		margin-bottom: -3.6875rem !important
	}

	.mml-lg-59 {
		margin-left: -3.6875rem !important
	}

	.mm-lg-60 {
		margin: -3.75rem !important
	}

	.mmx-lg-60 {
		margin-left: -3.75rem !important;
		margin-right: -3.75rem !important
	}

	.mmy-lg-60 {
		margin-bottom: -3.75rem !important
	}

	.mmt-lg-60,
	.mmy-lg-60 {
		margin-top: -3.75rem !important
	}

	.mmr-lg-60 {
		margin-right: -3.75rem !important
	}

	.mmb-lg-60 {
		margin-bottom: -3.75rem !important
	}

	.mml-lg-60 {
		margin-left: -3.75rem !important
	}

	.mm-lg-61 {
		margin: -3.8125rem !important
	}

	.mmx-lg-61 {
		margin-left: -3.8125rem !important;
		margin-right: -3.8125rem !important
	}

	.mmy-lg-61 {
		margin-bottom: -3.8125rem !important
	}

	.mmt-lg-61,
	.mmy-lg-61 {
		margin-top: -3.8125rem !important
	}

	.mmr-lg-61 {
		margin-right: -3.8125rem !important
	}

	.mmb-lg-61 {
		margin-bottom: -3.8125rem !important
	}

	.mml-lg-61 {
		margin-left: -3.8125rem !important
	}

	.mm-lg-62 {
		margin: -3.875rem !important
	}

	.mmx-lg-62 {
		margin-left: -3.875rem !important;
		margin-right: -3.875rem !important
	}

	.mmy-lg-62 {
		margin-bottom: -3.875rem !important
	}

	.mmt-lg-62,
	.mmy-lg-62 {
		margin-top: -3.875rem !important
	}

	.mmr-lg-62 {
		margin-right: -3.875rem !important
	}

	.mmb-lg-62 {
		margin-bottom: -3.875rem !important
	}

	.mml-lg-62 {
		margin-left: -3.875rem !important
	}

	.mm-lg-63 {
		margin: -3.9375rem !important
	}

	.mmx-lg-63 {
		margin-left: -3.9375rem !important;
		margin-right: -3.9375rem !important
	}

	.mmy-lg-63 {
		margin-bottom: -3.9375rem !important
	}

	.mmt-lg-63,
	.mmy-lg-63 {
		margin-top: -3.9375rem !important
	}

	.mmr-lg-63 {
		margin-right: -3.9375rem !important
	}

	.mmb-lg-63 {
		margin-bottom: -3.9375rem !important
	}

	.mml-lg-63 {
		margin-left: -3.9375rem !important
	}

	.mm-lg-64 {
		margin: -4rem !important
	}

	.mmx-lg-64 {
		margin-left: -4rem !important;
		margin-right: -4rem !important
	}

	.mmy-lg-64 {
		margin-bottom: -4rem !important
	}

	.mmt-lg-64,
	.mmy-lg-64 {
		margin-top: -4rem !important
	}

	.mmr-lg-64 {
		margin-right: -4rem !important
	}

	.mmb-lg-64 {
		margin-bottom: -4rem !important
	}

	.mml-lg-64 {
		margin-left: -4rem !important
	}

	.mm-lg-65 {
		margin: -4.0625rem !important
	}

	.mmx-lg-65 {
		margin-left: -4.0625rem !important;
		margin-right: -4.0625rem !important
	}

	.mmy-lg-65 {
		margin-bottom: -4.0625rem !important
	}

	.mmt-lg-65,
	.mmy-lg-65 {
		margin-top: -4.0625rem !important
	}

	.mmr-lg-65 {
		margin-right: -4.0625rem !important
	}

	.mmb-lg-65 {
		margin-bottom: -4.0625rem !important
	}

	.mml-lg-65 {
		margin-left: -4.0625rem !important
	}

	.mm-lg-66 {
		margin: -4.125rem !important
	}

	.mmx-lg-66 {
		margin-left: -4.125rem !important;
		margin-right: -4.125rem !important
	}

	.mmy-lg-66 {
		margin-bottom: -4.125rem !important
	}

	.mmt-lg-66,
	.mmy-lg-66 {
		margin-top: -4.125rem !important
	}

	.mmr-lg-66 {
		margin-right: -4.125rem !important
	}

	.mmb-lg-66 {
		margin-bottom: -4.125rem !important
	}

	.mml-lg-66 {
		margin-left: -4.125rem !important
	}

	.mm-lg-67 {
		margin: -4.1875rem !important
	}

	.mmx-lg-67 {
		margin-left: -4.1875rem !important;
		margin-right: -4.1875rem !important
	}

	.mmy-lg-67 {
		margin-bottom: -4.1875rem !important
	}

	.mmt-lg-67,
	.mmy-lg-67 {
		margin-top: -4.1875rem !important
	}

	.mmr-lg-67 {
		margin-right: -4.1875rem !important
	}

	.mmb-lg-67 {
		margin-bottom: -4.1875rem !important
	}

	.mml-lg-67 {
		margin-left: -4.1875rem !important
	}

	.mm-lg-68 {
		margin: -4.25rem !important
	}

	.mmx-lg-68 {
		margin-left: -4.25rem !important;
		margin-right: -4.25rem !important
	}

	.mmy-lg-68 {
		margin-bottom: -4.25rem !important
	}

	.mmt-lg-68,
	.mmy-lg-68 {
		margin-top: -4.25rem !important
	}

	.mmr-lg-68 {
		margin-right: -4.25rem !important
	}

	.mmb-lg-68 {
		margin-bottom: -4.25rem !important
	}

	.mml-lg-68 {
		margin-left: -4.25rem !important
	}

	.mm-lg-69 {
		margin: -4.3125rem !important
	}

	.mmx-lg-69 {
		margin-left: -4.3125rem !important;
		margin-right: -4.3125rem !important
	}

	.mmy-lg-69 {
		margin-bottom: -4.3125rem !important
	}

	.mmt-lg-69,
	.mmy-lg-69 {
		margin-top: -4.3125rem !important
	}

	.mmr-lg-69 {
		margin-right: -4.3125rem !important
	}

	.mmb-lg-69 {
		margin-bottom: -4.3125rem !important
	}

	.mml-lg-69 {
		margin-left: -4.3125rem !important
	}

	.mm-lg-70 {
		margin: -4.375rem !important
	}

	.mmx-lg-70 {
		margin-left: -4.375rem !important;
		margin-right: -4.375rem !important
	}

	.mmy-lg-70 {
		margin-bottom: -4.375rem !important
	}

	.mmt-lg-70,
	.mmy-lg-70 {
		margin-top: -4.375rem !important
	}

	.mmr-lg-70 {
		margin-right: -4.375rem !important
	}

	.mmb-lg-70 {
		margin-bottom: -4.375rem !important
	}

	.mml-lg-70 {
		margin-left: -4.375rem !important
	}

	.mm-lg-71 {
		margin: -4.4375rem !important
	}

	.mmx-lg-71 {
		margin-left: -4.4375rem !important;
		margin-right: -4.4375rem !important
	}

	.mmy-lg-71 {
		margin-bottom: -4.4375rem !important
	}

	.mmt-lg-71,
	.mmy-lg-71 {
		margin-top: -4.4375rem !important
	}

	.mmr-lg-71 {
		margin-right: -4.4375rem !important
	}

	.mmb-lg-71 {
		margin-bottom: -4.4375rem !important
	}

	.mml-lg-71 {
		margin-left: -4.4375rem !important
	}

	.mm-lg-72 {
		margin: -4.5rem !important
	}

	.mmx-lg-72 {
		margin-left: -4.5rem !important;
		margin-right: -4.5rem !important
	}

	.mmy-lg-72 {
		margin-bottom: -4.5rem !important
	}

	.mmt-lg-72,
	.mmy-lg-72 {
		margin-top: -4.5rem !important
	}

	.mmr-lg-72 {
		margin-right: -4.5rem !important
	}

	.mmb-lg-72 {
		margin-bottom: -4.5rem !important
	}

	.mml-lg-72 {
		margin-left: -4.5rem !important
	}

	.mm-lg-73 {
		margin: -4.5625rem !important
	}

	.mmx-lg-73 {
		margin-left: -4.5625rem !important;
		margin-right: -4.5625rem !important
	}

	.mmy-lg-73 {
		margin-bottom: -4.5625rem !important
	}

	.mmt-lg-73,
	.mmy-lg-73 {
		margin-top: -4.5625rem !important
	}

	.mmr-lg-73 {
		margin-right: -4.5625rem !important
	}

	.mmb-lg-73 {
		margin-bottom: -4.5625rem !important
	}

	.mml-lg-73 {
		margin-left: -4.5625rem !important
	}

	.mm-lg-74 {
		margin: -4.625rem !important
	}

	.mmx-lg-74 {
		margin-left: -4.625rem !important;
		margin-right: -4.625rem !important
	}

	.mmy-lg-74 {
		margin-bottom: -4.625rem !important
	}

	.mmt-lg-74,
	.mmy-lg-74 {
		margin-top: -4.625rem !important
	}

	.mmr-lg-74 {
		margin-right: -4.625rem !important
	}

	.mmb-lg-74 {
		margin-bottom: -4.625rem !important
	}

	.mml-lg-74 {
		margin-left: -4.625rem !important
	}

	.mm-lg-75 {
		margin: -4.6875rem !important
	}

	.mmx-lg-75 {
		margin-left: -4.6875rem !important;
		margin-right: -4.6875rem !important
	}

	.mmy-lg-75 {
		margin-bottom: -4.6875rem !important
	}

	.mmt-lg-75,
	.mmy-lg-75 {
		margin-top: -4.6875rem !important
	}

	.mmr-lg-75 {
		margin-right: -4.6875rem !important
	}

	.mmb-lg-75 {
		margin-bottom: -4.6875rem !important
	}

	.mml-lg-75 {
		margin-left: -4.6875rem !important
	}

	.mm-lg-76 {
		margin: -4.75rem !important
	}

	.mmx-lg-76 {
		margin-left: -4.75rem !important;
		margin-right: -4.75rem !important
	}

	.mmy-lg-76 {
		margin-bottom: -4.75rem !important
	}

	.mmt-lg-76,
	.mmy-lg-76 {
		margin-top: -4.75rem !important
	}

	.mmr-lg-76 {
		margin-right: -4.75rem !important
	}

	.mmb-lg-76 {
		margin-bottom: -4.75rem !important
	}

	.mml-lg-76 {
		margin-left: -4.75rem !important
	}

	.mm-lg-77 {
		margin: -4.8125rem !important
	}

	.mmx-lg-77 {
		margin-left: -4.8125rem !important;
		margin-right: -4.8125rem !important
	}

	.mmy-lg-77 {
		margin-bottom: -4.8125rem !important
	}

	.mmt-lg-77,
	.mmy-lg-77 {
		margin-top: -4.8125rem !important
	}

	.mmr-lg-77 {
		margin-right: -4.8125rem !important
	}

	.mmb-lg-77 {
		margin-bottom: -4.8125rem !important
	}

	.mml-lg-77 {
		margin-left: -4.8125rem !important
	}

	.mm-lg-78 {
		margin: -4.875rem !important
	}

	.mmx-lg-78 {
		margin-left: -4.875rem !important;
		margin-right: -4.875rem !important
	}

	.mmy-lg-78 {
		margin-bottom: -4.875rem !important
	}

	.mmt-lg-78,
	.mmy-lg-78 {
		margin-top: -4.875rem !important
	}

	.mmr-lg-78 {
		margin-right: -4.875rem !important
	}

	.mmb-lg-78 {
		margin-bottom: -4.875rem !important
	}

	.mml-lg-78 {
		margin-left: -4.875rem !important
	}

	.mm-lg-79 {
		margin: -4.9375rem !important
	}

	.mmx-lg-79 {
		margin-left: -4.9375rem !important;
		margin-right: -4.9375rem !important
	}

	.mmy-lg-79 {
		margin-bottom: -4.9375rem !important
	}

	.mmt-lg-79,
	.mmy-lg-79 {
		margin-top: -4.9375rem !important
	}

	.mmr-lg-79 {
		margin-right: -4.9375rem !important
	}

	.mmb-lg-79 {
		margin-bottom: -4.9375rem !important
	}

	.mml-lg-79 {
		margin-left: -4.9375rem !important
	}

	.mm-lg-80 {
		margin: -5rem !important
	}

	.mmx-lg-80 {
		margin-left: -5rem !important;
		margin-right: -5rem !important
	}

	.mmy-lg-80 {
		margin-bottom: -5rem !important
	}

	.mmt-lg-80,
	.mmy-lg-80 {
		margin-top: -5rem !important
	}

	.mmr-lg-80 {
		margin-right: -5rem !important
	}

	.mmb-lg-80 {
		margin-bottom: -5rem !important
	}

	.mml-lg-80 {
		margin-left: -5rem !important
	}

	.mm-lg-81 {
		margin: -5.0625rem !important
	}

	.mmx-lg-81 {
		margin-left: -5.0625rem !important;
		margin-right: -5.0625rem !important
	}

	.mmy-lg-81 {
		margin-bottom: -5.0625rem !important
	}

	.mmt-lg-81,
	.mmy-lg-81 {
		margin-top: -5.0625rem !important
	}

	.mmr-lg-81 {
		margin-right: -5.0625rem !important
	}

	.mmb-lg-81 {
		margin-bottom: -5.0625rem !important
	}

	.mml-lg-81 {
		margin-left: -5.0625rem !important
	}

	.mm-lg-82 {
		margin: -5.125rem !important
	}

	.mmx-lg-82 {
		margin-left: -5.125rem !important;
		margin-right: -5.125rem !important
	}

	.mmy-lg-82 {
		margin-bottom: -5.125rem !important
	}

	.mmt-lg-82,
	.mmy-lg-82 {
		margin-top: -5.125rem !important
	}

	.mmr-lg-82 {
		margin-right: -5.125rem !important
	}

	.mmb-lg-82 {
		margin-bottom: -5.125rem !important
	}

	.mml-lg-82 {
		margin-left: -5.125rem !important
	}

	.mm-lg-83 {
		margin: -5.1875rem !important
	}

	.mmx-lg-83 {
		margin-left: -5.1875rem !important;
		margin-right: -5.1875rem !important
	}

	.mmy-lg-83 {
		margin-bottom: -5.1875rem !important
	}

	.mmt-lg-83,
	.mmy-lg-83 {
		margin-top: -5.1875rem !important
	}

	.mmr-lg-83 {
		margin-right: -5.1875rem !important
	}

	.mmb-lg-83 {
		margin-bottom: -5.1875rem !important
	}

	.mml-lg-83 {
		margin-left: -5.1875rem !important
	}

	.mm-lg-84 {
		margin: -5.25rem !important
	}

	.mmx-lg-84 {
		margin-left: -5.25rem !important;
		margin-right: -5.25rem !important
	}

	.mmy-lg-84 {
		margin-bottom: -5.25rem !important
	}

	.mmt-lg-84,
	.mmy-lg-84 {
		margin-top: -5.25rem !important
	}

	.mmr-lg-84 {
		margin-right: -5.25rem !important
	}

	.mmb-lg-84 {
		margin-bottom: -5.25rem !important
	}

	.mml-lg-84 {
		margin-left: -5.25rem !important
	}

	.mm-lg-85 {
		margin: -5.3125rem !important
	}

	.mmx-lg-85 {
		margin-left: -5.3125rem !important;
		margin-right: -5.3125rem !important
	}

	.mmy-lg-85 {
		margin-bottom: -5.3125rem !important
	}

	.mmt-lg-85,
	.mmy-lg-85 {
		margin-top: -5.3125rem !important
	}

	.mmr-lg-85 {
		margin-right: -5.3125rem !important
	}

	.mmb-lg-85 {
		margin-bottom: -5.3125rem !important
	}

	.mml-lg-85 {
		margin-left: -5.3125rem !important
	}

	.mm-lg-86 {
		margin: -5.375rem !important
	}

	.mmx-lg-86 {
		margin-left: -5.375rem !important;
		margin-right: -5.375rem !important
	}

	.mmy-lg-86 {
		margin-bottom: -5.375rem !important
	}

	.mmt-lg-86,
	.mmy-lg-86 {
		margin-top: -5.375rem !important
	}

	.mmr-lg-86 {
		margin-right: -5.375rem !important
	}

	.mmb-lg-86 {
		margin-bottom: -5.375rem !important
	}

	.mml-lg-86 {
		margin-left: -5.375rem !important
	}

	.mm-lg-87 {
		margin: -5.4375rem !important
	}

	.mmx-lg-87 {
		margin-left: -5.4375rem !important;
		margin-right: -5.4375rem !important
	}

	.mmy-lg-87 {
		margin-bottom: -5.4375rem !important
	}

	.mmt-lg-87,
	.mmy-lg-87 {
		margin-top: -5.4375rem !important
	}

	.mmr-lg-87 {
		margin-right: -5.4375rem !important
	}

	.mmb-lg-87 {
		margin-bottom: -5.4375rem !important
	}

	.mml-lg-87 {
		margin-left: -5.4375rem !important
	}

	.mm-lg-88 {
		margin: -5.5rem !important
	}

	.mmx-lg-88 {
		margin-left: -5.5rem !important;
		margin-right: -5.5rem !important
	}

	.mmy-lg-88 {
		margin-bottom: -5.5rem !important
	}

	.mmt-lg-88,
	.mmy-lg-88 {
		margin-top: -5.5rem !important
	}

	.mmr-lg-88 {
		margin-right: -5.5rem !important
	}

	.mmb-lg-88 {
		margin-bottom: -5.5rem !important
	}

	.mml-lg-88 {
		margin-left: -5.5rem !important
	}

	.mm-lg-89 {
		margin: -5.5625rem !important
	}

	.mmx-lg-89 {
		margin-left: -5.5625rem !important;
		margin-right: -5.5625rem !important
	}

	.mmy-lg-89 {
		margin-bottom: -5.5625rem !important
	}

	.mmt-lg-89,
	.mmy-lg-89 {
		margin-top: -5.5625rem !important
	}

	.mmr-lg-89 {
		margin-right: -5.5625rem !important
	}

	.mmb-lg-89 {
		margin-bottom: -5.5625rem !important
	}

	.mml-lg-89 {
		margin-left: -5.5625rem !important
	}

	.mm-lg-90 {
		margin: -5.625rem !important
	}

	.mmx-lg-90 {
		margin-left: -5.625rem !important;
		margin-right: -5.625rem !important
	}

	.mmy-lg-90 {
		margin-bottom: -5.625rem !important
	}

	.mmt-lg-90,
	.mmy-lg-90 {
		margin-top: -5.625rem !important
	}

	.mmr-lg-90 {
		margin-right: -5.625rem !important
	}

	.mmb-lg-90 {
		margin-bottom: -5.625rem !important
	}

	.mml-lg-90 {
		margin-left: -5.625rem !important
	}

	.mm-lg-91 {
		margin: -5.6875rem !important
	}

	.mmx-lg-91 {
		margin-left: -5.6875rem !important;
		margin-right: -5.6875rem !important
	}

	.mmy-lg-91 {
		margin-bottom: -5.6875rem !important
	}

	.mmt-lg-91,
	.mmy-lg-91 {
		margin-top: -5.6875rem !important
	}

	.mmr-lg-91 {
		margin-right: -5.6875rem !important
	}

	.mmb-lg-91 {
		margin-bottom: -5.6875rem !important
	}

	.mml-lg-91 {
		margin-left: -5.6875rem !important
	}

	.mm-lg-92 {
		margin: -5.75rem !important
	}

	.mmx-lg-92 {
		margin-left: -5.75rem !important;
		margin-right: -5.75rem !important
	}

	.mmy-lg-92 {
		margin-bottom: -5.75rem !important
	}

	.mmt-lg-92,
	.mmy-lg-92 {
		margin-top: -5.75rem !important
	}

	.mmr-lg-92 {
		margin-right: -5.75rem !important
	}

	.mmb-lg-92 {
		margin-bottom: -5.75rem !important
	}

	.mml-lg-92 {
		margin-left: -5.75rem !important
	}

	.mm-lg-93 {
		margin: -5.8125rem !important
	}

	.mmx-lg-93 {
		margin-left: -5.8125rem !important;
		margin-right: -5.8125rem !important
	}

	.mmy-lg-93 {
		margin-bottom: -5.8125rem !important
	}

	.mmt-lg-93,
	.mmy-lg-93 {
		margin-top: -5.8125rem !important
	}

	.mmr-lg-93 {
		margin-right: -5.8125rem !important
	}

	.mmb-lg-93 {
		margin-bottom: -5.8125rem !important
	}

	.mml-lg-93 {
		margin-left: -5.8125rem !important
	}

	.mm-lg-94 {
		margin: -5.875rem !important
	}

	.mmx-lg-94 {
		margin-left: -5.875rem !important;
		margin-right: -5.875rem !important
	}

	.mmy-lg-94 {
		margin-bottom: -5.875rem !important
	}

	.mmt-lg-94,
	.mmy-lg-94 {
		margin-top: -5.875rem !important
	}

	.mmr-lg-94 {
		margin-right: -5.875rem !important
	}

	.mmb-lg-94 {
		margin-bottom: -5.875rem !important
	}

	.mml-lg-94 {
		margin-left: -5.875rem !important
	}

	.mm-lg-95 {
		margin: -5.9375rem !important
	}

	.mmx-lg-95 {
		margin-left: -5.9375rem !important;
		margin-right: -5.9375rem !important
	}

	.mmy-lg-95 {
		margin-bottom: -5.9375rem !important
	}

	.mmt-lg-95,
	.mmy-lg-95 {
		margin-top: -5.9375rem !important
	}

	.mmr-lg-95 {
		margin-right: -5.9375rem !important
	}

	.mmb-lg-95 {
		margin-bottom: -5.9375rem !important
	}

	.mml-lg-95 {
		margin-left: -5.9375rem !important
	}

	.mm-lg-96 {
		margin: -6rem !important
	}

	.mmx-lg-96 {
		margin-left: -6rem !important;
		margin-right: -6rem !important
	}

	.mmy-lg-96 {
		margin-bottom: -6rem !important
	}

	.mmt-lg-96,
	.mmy-lg-96 {
		margin-top: -6rem !important
	}

	.mmr-lg-96 {
		margin-right: -6rem !important
	}

	.mmb-lg-96 {
		margin-bottom: -6rem !important
	}

	.mml-lg-96 {
		margin-left: -6rem !important
	}

	.mm-lg-97 {
		margin: -6.0625rem !important
	}

	.mmx-lg-97 {
		margin-left: -6.0625rem !important;
		margin-right: -6.0625rem !important
	}

	.mmy-lg-97 {
		margin-bottom: -6.0625rem !important
	}

	.mmt-lg-97,
	.mmy-lg-97 {
		margin-top: -6.0625rem !important
	}

	.mmr-lg-97 {
		margin-right: -6.0625rem !important
	}

	.mmb-lg-97 {
		margin-bottom: -6.0625rem !important
	}

	.mml-lg-97 {
		margin-left: -6.0625rem !important
	}

	.mm-lg-98 {
		margin: -6.125rem !important
	}

	.mmx-lg-98 {
		margin-left: -6.125rem !important;
		margin-right: -6.125rem !important
	}

	.mmy-lg-98 {
		margin-bottom: -6.125rem !important
	}

	.mmt-lg-98,
	.mmy-lg-98 {
		margin-top: -6.125rem !important
	}

	.mmr-lg-98 {
		margin-right: -6.125rem !important
	}

	.mmb-lg-98 {
		margin-bottom: -6.125rem !important
	}

	.mml-lg-98 {
		margin-left: -6.125rem !important
	}

	.mm-lg-99 {
		margin: -6.1875rem !important
	}

	.mmx-lg-99 {
		margin-left: -6.1875rem !important;
		margin-right: -6.1875rem !important
	}

	.mmy-lg-99 {
		margin-bottom: -6.1875rem !important
	}

	.mmt-lg-99,
	.mmy-lg-99 {
		margin-top: -6.1875rem !important
	}

	.mmr-lg-99 {
		margin-right: -6.1875rem !important
	}

	.mmb-lg-99 {
		margin-bottom: -6.1875rem !important
	}

	.mml-lg-99 {
		margin-left: -6.1875rem !important
	}

	.mm-lg-100 {
		margin: -6.25rem !important
	}

	.mmx-lg-100 {
		margin-left: -6.25rem !important;
		margin-right: -6.25rem !important
	}

	.mmy-lg-100 {
		margin-bottom: -6.25rem !important
	}

	.mmt-lg-100,
	.mmy-lg-100 {
		margin-top: -6.25rem !important
	}

	.mmr-lg-100 {
		margin-right: -6.25rem !important
	}

	.mmb-lg-100 {
		margin-bottom: -6.25rem !important
	}

	.mml-lg-100 {
		margin-left: -6.25rem !important
	}

	.mm-lg-101 {
		margin: -6.3125rem !important
	}

	.mmx-lg-101 {
		margin-left: -6.3125rem !important;
		margin-right: -6.3125rem !important
	}

	.mmy-lg-101 {
		margin-bottom: -6.3125rem !important
	}

	.mmt-lg-101,
	.mmy-lg-101 {
		margin-top: -6.3125rem !important
	}

	.mmr-lg-101 {
		margin-right: -6.3125rem !important
	}

	.mmb-lg-101 {
		margin-bottom: -6.3125rem !important
	}

	.mml-lg-101 {
		margin-left: -6.3125rem !important
	}

	.mm-lg-102 {
		margin: -6.375rem !important
	}

	.mmx-lg-102 {
		margin-left: -6.375rem !important;
		margin-right: -6.375rem !important
	}

	.mmy-lg-102 {
		margin-bottom: -6.375rem !important
	}

	.mmt-lg-102,
	.mmy-lg-102 {
		margin-top: -6.375rem !important
	}

	.mmr-lg-102 {
		margin-right: -6.375rem !important
	}

	.mmb-lg-102 {
		margin-bottom: -6.375rem !important
	}

	.mml-lg-102 {
		margin-left: -6.375rem !important
	}

	.mm-lg-103 {
		margin: -6.4375rem !important
	}

	.mmx-lg-103 {
		margin-left: -6.4375rem !important;
		margin-right: -6.4375rem !important
	}

	.mmy-lg-103 {
		margin-bottom: -6.4375rem !important
	}

	.mmt-lg-103,
	.mmy-lg-103 {
		margin-top: -6.4375rem !important
	}

	.mmr-lg-103 {
		margin-right: -6.4375rem !important
	}

	.mmb-lg-103 {
		margin-bottom: -6.4375rem !important
	}

	.mml-lg-103 {
		margin-left: -6.4375rem !important
	}

	.mm-lg-104 {
		margin: -6.5rem !important
	}

	.mmx-lg-104 {
		margin-left: -6.5rem !important;
		margin-right: -6.5rem !important
	}

	.mmy-lg-104 {
		margin-bottom: -6.5rem !important
	}

	.mmt-lg-104,
	.mmy-lg-104 {
		margin-top: -6.5rem !important
	}

	.mmr-lg-104 {
		margin-right: -6.5rem !important
	}

	.mmb-lg-104 {
		margin-bottom: -6.5rem !important
	}

	.mml-lg-104 {
		margin-left: -6.5rem !important
	}

	.mm-lg-105 {
		margin: -6.5625rem !important
	}

	.mmx-lg-105 {
		margin-left: -6.5625rem !important;
		margin-right: -6.5625rem !important
	}

	.mmy-lg-105 {
		margin-bottom: -6.5625rem !important
	}

	.mmt-lg-105,
	.mmy-lg-105 {
		margin-top: -6.5625rem !important
	}

	.mmr-lg-105 {
		margin-right: -6.5625rem !important
	}

	.mmb-lg-105 {
		margin-bottom: -6.5625rem !important
	}

	.mml-lg-105 {
		margin-left: -6.5625rem !important
	}

	.mm-lg-106 {
		margin: -6.625rem !important
	}

	.mmx-lg-106 {
		margin-left: -6.625rem !important;
		margin-right: -6.625rem !important
	}

	.mmy-lg-106 {
		margin-bottom: -6.625rem !important
	}

	.mmt-lg-106,
	.mmy-lg-106 {
		margin-top: -6.625rem !important
	}

	.mmr-lg-106 {
		margin-right: -6.625rem !important
	}

	.mmb-lg-106 {
		margin-bottom: -6.625rem !important
	}

	.mml-lg-106 {
		margin-left: -6.625rem !important
	}

	.mm-lg-107 {
		margin: -6.6875rem !important
	}

	.mmx-lg-107 {
		margin-left: -6.6875rem !important;
		margin-right: -6.6875rem !important
	}

	.mmy-lg-107 {
		margin-bottom: -6.6875rem !important
	}

	.mmt-lg-107,
	.mmy-lg-107 {
		margin-top: -6.6875rem !important
	}

	.mmr-lg-107 {
		margin-right: -6.6875rem !important
	}

	.mmb-lg-107 {
		margin-bottom: -6.6875rem !important
	}

	.mml-lg-107 {
		margin-left: -6.6875rem !important
	}

	.mm-lg-108 {
		margin: -6.75rem !important
	}

	.mmx-lg-108 {
		margin-left: -6.75rem !important;
		margin-right: -6.75rem !important
	}

	.mmy-lg-108 {
		margin-bottom: -6.75rem !important
	}

	.mmt-lg-108,
	.mmy-lg-108 {
		margin-top: -6.75rem !important
	}

	.mmr-lg-108 {
		margin-right: -6.75rem !important
	}

	.mmb-lg-108 {
		margin-bottom: -6.75rem !important
	}

	.mml-lg-108 {
		margin-left: -6.75rem !important
	}

	.mm-lg-109 {
		margin: -6.8125rem !important
	}

	.mmx-lg-109 {
		margin-left: -6.8125rem !important;
		margin-right: -6.8125rem !important
	}

	.mmy-lg-109 {
		margin-bottom: -6.8125rem !important
	}

	.mmt-lg-109,
	.mmy-lg-109 {
		margin-top: -6.8125rem !important
	}

	.mmr-lg-109 {
		margin-right: -6.8125rem !important
	}

	.mmb-lg-109 {
		margin-bottom: -6.8125rem !important
	}

	.mml-lg-109 {
		margin-left: -6.8125rem !important
	}

	.mm-lg-110 {
		margin: -6.875rem !important
	}

	.mmx-lg-110 {
		margin-left: -6.875rem !important;
		margin-right: -6.875rem !important
	}

	.mmy-lg-110 {
		margin-bottom: -6.875rem !important
	}

	.mmt-lg-110,
	.mmy-lg-110 {
		margin-top: -6.875rem !important
	}

	.mmr-lg-110 {
		margin-right: -6.875rem !important
	}

	.mmb-lg-110 {
		margin-bottom: -6.875rem !important
	}

	.mml-lg-110 {
		margin-left: -6.875rem !important
	}

	.mm-lg-111 {
		margin: -6.9375rem !important
	}

	.mmx-lg-111 {
		margin-left: -6.9375rem !important;
		margin-right: -6.9375rem !important
	}

	.mmy-lg-111 {
		margin-bottom: -6.9375rem !important
	}

	.mmt-lg-111,
	.mmy-lg-111 {
		margin-top: -6.9375rem !important
	}

	.mmr-lg-111 {
		margin-right: -6.9375rem !important
	}

	.mmb-lg-111 {
		margin-bottom: -6.9375rem !important
	}

	.mml-lg-111 {
		margin-left: -6.9375rem !important
	}

	.mm-lg-112 {
		margin: -7rem !important
	}

	.mmx-lg-112 {
		margin-left: -7rem !important;
		margin-right: -7rem !important
	}

	.mmy-lg-112 {
		margin-bottom: -7rem !important
	}

	.mmt-lg-112,
	.mmy-lg-112 {
		margin-top: -7rem !important
	}

	.mmr-lg-112 {
		margin-right: -7rem !important
	}

	.mmb-lg-112 {
		margin-bottom: -7rem !important
	}

	.mml-lg-112 {
		margin-left: -7rem !important
	}

	.mm-lg-113 {
		margin: -7.0625rem !important
	}

	.mmx-lg-113 {
		margin-left: -7.0625rem !important;
		margin-right: -7.0625rem !important
	}

	.mmy-lg-113 {
		margin-bottom: -7.0625rem !important
	}

	.mmt-lg-113,
	.mmy-lg-113 {
		margin-top: -7.0625rem !important
	}

	.mmr-lg-113 {
		margin-right: -7.0625rem !important
	}

	.mmb-lg-113 {
		margin-bottom: -7.0625rem !important
	}

	.mml-lg-113 {
		margin-left: -7.0625rem !important
	}

	.mm-lg-114 {
		margin: -7.125rem !important
	}

	.mmx-lg-114 {
		margin-left: -7.125rem !important;
		margin-right: -7.125rem !important
	}

	.mmy-lg-114 {
		margin-bottom: -7.125rem !important
	}

	.mmt-lg-114,
	.mmy-lg-114 {
		margin-top: -7.125rem !important
	}

	.mmr-lg-114 {
		margin-right: -7.125rem !important
	}

	.mmb-lg-114 {
		margin-bottom: -7.125rem !important
	}

	.mml-lg-114 {
		margin-left: -7.125rem !important
	}

	.mm-lg-115 {
		margin: -7.1875rem !important
	}

	.mmx-lg-115 {
		margin-left: -7.1875rem !important;
		margin-right: -7.1875rem !important
	}

	.mmy-lg-115 {
		margin-bottom: -7.1875rem !important
	}

	.mmt-lg-115,
	.mmy-lg-115 {
		margin-top: -7.1875rem !important
	}

	.mmr-lg-115 {
		margin-right: -7.1875rem !important
	}

	.mmb-lg-115 {
		margin-bottom: -7.1875rem !important
	}

	.mml-lg-115 {
		margin-left: -7.1875rem !important
	}

	.mm-lg-116 {
		margin: -7.25rem !important
	}

	.mmx-lg-116 {
		margin-left: -7.25rem !important;
		margin-right: -7.25rem !important
	}

	.mmy-lg-116 {
		margin-bottom: -7.25rem !important
	}

	.mmt-lg-116,
	.mmy-lg-116 {
		margin-top: -7.25rem !important
	}

	.mmr-lg-116 {
		margin-right: -7.25rem !important
	}

	.mmb-lg-116 {
		margin-bottom: -7.25rem !important
	}

	.mml-lg-116 {
		margin-left: -7.25rem !important
	}

	.mm-lg-117 {
		margin: -7.3125rem !important
	}

	.mmx-lg-117 {
		margin-left: -7.3125rem !important;
		margin-right: -7.3125rem !important
	}

	.mmy-lg-117 {
		margin-bottom: -7.3125rem !important
	}

	.mmt-lg-117,
	.mmy-lg-117 {
		margin-top: -7.3125rem !important
	}

	.mmr-lg-117 {
		margin-right: -7.3125rem !important
	}

	.mmb-lg-117 {
		margin-bottom: -7.3125rem !important
	}

	.mml-lg-117 {
		margin-left: -7.3125rem !important
	}

	.mm-lg-118 {
		margin: -7.375rem !important
	}

	.mmx-lg-118 {
		margin-left: -7.375rem !important;
		margin-right: -7.375rem !important
	}

	.mmy-lg-118 {
		margin-bottom: -7.375rem !important
	}

	.mmt-lg-118,
	.mmy-lg-118 {
		margin-top: -7.375rem !important
	}

	.mmr-lg-118 {
		margin-right: -7.375rem !important
	}

	.mmb-lg-118 {
		margin-bottom: -7.375rem !important
	}

	.mml-lg-118 {
		margin-left: -7.375rem !important
	}

	.mm-lg-119 {
		margin: -7.4375rem !important
	}

	.mmx-lg-119 {
		margin-left: -7.4375rem !important;
		margin-right: -7.4375rem !important
	}

	.mmy-lg-119 {
		margin-bottom: -7.4375rem !important
	}

	.mmt-lg-119,
	.mmy-lg-119 {
		margin-top: -7.4375rem !important
	}

	.mmr-lg-119 {
		margin-right: -7.4375rem !important
	}

	.mmb-lg-119 {
		margin-bottom: -7.4375rem !important
	}

	.mml-lg-119 {
		margin-left: -7.4375rem !important
	}

	.mm-lg-120 {
		margin: -7.5rem !important
	}

	.mmx-lg-120 {
		margin-left: -7.5rem !important;
		margin-right: -7.5rem !important
	}

	.mmy-lg-120 {
		margin-bottom: -7.5rem !important
	}

	.mmt-lg-120,
	.mmy-lg-120 {
		margin-top: -7.5rem !important
	}

	.mmr-lg-120 {
		margin-right: -7.5rem !important
	}

	.mmb-lg-120 {
		margin-bottom: -7.5rem !important
	}

	.mml-lg-120 {
		margin-left: -7.5rem !important
	}

	.mm-lg-121 {
		margin: -7.5625rem !important
	}

	.mmx-lg-121 {
		margin-left: -7.5625rem !important;
		margin-right: -7.5625rem !important
	}

	.mmy-lg-121 {
		margin-bottom: -7.5625rem !important
	}

	.mmt-lg-121,
	.mmy-lg-121 {
		margin-top: -7.5625rem !important
	}

	.mmr-lg-121 {
		margin-right: -7.5625rem !important
	}

	.mmb-lg-121 {
		margin-bottom: -7.5625rem !important
	}

	.mml-lg-121 {
		margin-left: -7.5625rem !important
	}

	.mm-lg-122 {
		margin: -7.625rem !important
	}

	.mmx-lg-122 {
		margin-left: -7.625rem !important;
		margin-right: -7.625rem !important
	}

	.mmy-lg-122 {
		margin-bottom: -7.625rem !important
	}

	.mmt-lg-122,
	.mmy-lg-122 {
		margin-top: -7.625rem !important
	}

	.mmr-lg-122 {
		margin-right: -7.625rem !important
	}

	.mmb-lg-122 {
		margin-bottom: -7.625rem !important
	}

	.mml-lg-122 {
		margin-left: -7.625rem !important
	}

	.mm-lg-123 {
		margin: -7.6875rem !important
	}

	.mmx-lg-123 {
		margin-left: -7.6875rem !important;
		margin-right: -7.6875rem !important
	}

	.mmy-lg-123 {
		margin-bottom: -7.6875rem !important
	}

	.mmt-lg-123,
	.mmy-lg-123 {
		margin-top: -7.6875rem !important
	}

	.mmr-lg-123 {
		margin-right: -7.6875rem !important
	}

	.mmb-lg-123 {
		margin-bottom: -7.6875rem !important
	}

	.mml-lg-123 {
		margin-left: -7.6875rem !important
	}

	.mm-lg-124 {
		margin: -7.75rem !important
	}

	.mmx-lg-124 {
		margin-left: -7.75rem !important;
		margin-right: -7.75rem !important
	}

	.mmy-lg-124 {
		margin-bottom: -7.75rem !important
	}

	.mmt-lg-124,
	.mmy-lg-124 {
		margin-top: -7.75rem !important
	}

	.mmr-lg-124 {
		margin-right: -7.75rem !important
	}

	.mmb-lg-124 {
		margin-bottom: -7.75rem !important
	}

	.mml-lg-124 {
		margin-left: -7.75rem !important
	}

	.mm-lg-125 {
		margin: -7.8125rem !important
	}

	.mmx-lg-125 {
		margin-left: -7.8125rem !important;
		margin-right: -7.8125rem !important
	}

	.mmy-lg-125 {
		margin-bottom: -7.8125rem !important
	}

	.mmt-lg-125,
	.mmy-lg-125 {
		margin-top: -7.8125rem !important
	}

	.mmr-lg-125 {
		margin-right: -7.8125rem !important
	}

	.mmb-lg-125 {
		margin-bottom: -7.8125rem !important
	}

	.mml-lg-125 {
		margin-left: -7.8125rem !important
	}

	.mm-lg-126 {
		margin: -7.875rem !important
	}

	.mmx-lg-126 {
		margin-left: -7.875rem !important;
		margin-right: -7.875rem !important
	}

	.mmy-lg-126 {
		margin-bottom: -7.875rem !important
	}

	.mmt-lg-126,
	.mmy-lg-126 {
		margin-top: -7.875rem !important
	}

	.mmr-lg-126 {
		margin-right: -7.875rem !important
	}

	.mmb-lg-126 {
		margin-bottom: -7.875rem !important
	}

	.mml-lg-126 {
		margin-left: -7.875rem !important
	}

	.mm-lg-127 {
		margin: -7.9375rem !important
	}

	.mmx-lg-127 {
		margin-left: -7.9375rem !important;
		margin-right: -7.9375rem !important
	}

	.mmy-lg-127 {
		margin-bottom: -7.9375rem !important
	}

	.mmt-lg-127,
	.mmy-lg-127 {
		margin-top: -7.9375rem !important
	}

	.mmr-lg-127 {
		margin-right: -7.9375rem !important
	}

	.mmb-lg-127 {
		margin-bottom: -7.9375rem !important
	}

	.mml-lg-127 {
		margin-left: -7.9375rem !important
	}

	.mm-lg-128 {
		margin: -8rem !important
	}

	.mmx-lg-128 {
		margin-left: -8rem !important;
		margin-right: -8rem !important
	}

	.mmy-lg-128 {
		margin-bottom: -8rem !important
	}

	.mmt-lg-128,
	.mmy-lg-128 {
		margin-top: -8rem !important
	}

	.mmr-lg-128 {
		margin-right: -8rem !important
	}

	.mmb-lg-128 {
		margin-bottom: -8rem !important
	}

	.mml-lg-128 {
		margin-left: -8rem !important
	}

	.mm-lg-129 {
		margin: -8.0625rem !important
	}

	.mmx-lg-129 {
		margin-left: -8.0625rem !important;
		margin-right: -8.0625rem !important
	}

	.mmy-lg-129 {
		margin-bottom: -8.0625rem !important
	}

	.mmt-lg-129,
	.mmy-lg-129 {
		margin-top: -8.0625rem !important
	}

	.mmr-lg-129 {
		margin-right: -8.0625rem !important
	}

	.mmb-lg-129 {
		margin-bottom: -8.0625rem !important
	}

	.mml-lg-129 {
		margin-left: -8.0625rem !important
	}

	.mm-lg-130 {
		margin: -8.125rem !important
	}

	.mmx-lg-130 {
		margin-left: -8.125rem !important;
		margin-right: -8.125rem !important
	}

	.mmy-lg-130 {
		margin-bottom: -8.125rem !important
	}

	.mmt-lg-130,
	.mmy-lg-130 {
		margin-top: -8.125rem !important
	}

	.mmr-lg-130 {
		margin-right: -8.125rem !important
	}

	.mmb-lg-130 {
		margin-bottom: -8.125rem !important
	}

	.mml-lg-130 {
		margin-left: -8.125rem !important
	}

	.mm-lg-131 {
		margin: -8.1875rem !important
	}

	.mmx-lg-131 {
		margin-left: -8.1875rem !important;
		margin-right: -8.1875rem !important
	}

	.mmy-lg-131 {
		margin-bottom: -8.1875rem !important
	}

	.mmt-lg-131,
	.mmy-lg-131 {
		margin-top: -8.1875rem !important
	}

	.mmr-lg-131 {
		margin-right: -8.1875rem !important
	}

	.mmb-lg-131 {
		margin-bottom: -8.1875rem !important
	}

	.mml-lg-131 {
		margin-left: -8.1875rem !important
	}

	.mm-lg-132 {
		margin: -8.25rem !important
	}

	.mmx-lg-132 {
		margin-left: -8.25rem !important;
		margin-right: -8.25rem !important
	}

	.mmy-lg-132 {
		margin-bottom: -8.25rem !important
	}

	.mmt-lg-132,
	.mmy-lg-132 {
		margin-top: -8.25rem !important
	}

	.mmr-lg-132 {
		margin-right: -8.25rem !important
	}

	.mmb-lg-132 {
		margin-bottom: -8.25rem !important
	}

	.mml-lg-132 {
		margin-left: -8.25rem !important
	}

	.mm-lg-133 {
		margin: -8.3125rem !important
	}

	.mmx-lg-133 {
		margin-left: -8.3125rem !important;
		margin-right: -8.3125rem !important
	}

	.mmy-lg-133 {
		margin-bottom: -8.3125rem !important
	}

	.mmt-lg-133,
	.mmy-lg-133 {
		margin-top: -8.3125rem !important
	}

	.mmr-lg-133 {
		margin-right: -8.3125rem !important
	}

	.mmb-lg-133 {
		margin-bottom: -8.3125rem !important
	}

	.mml-lg-133 {
		margin-left: -8.3125rem !important
	}

	.mm-lg-134 {
		margin: -8.375rem !important
	}

	.mmx-lg-134 {
		margin-left: -8.375rem !important;
		margin-right: -8.375rem !important
	}

	.mmy-lg-134 {
		margin-bottom: -8.375rem !important
	}

	.mmt-lg-134,
	.mmy-lg-134 {
		margin-top: -8.375rem !important
	}

	.mmr-lg-134 {
		margin-right: -8.375rem !important
	}

	.mmb-lg-134 {
		margin-bottom: -8.375rem !important
	}

	.mml-lg-134 {
		margin-left: -8.375rem !important
	}

	.mm-lg-135 {
		margin: -8.4375rem !important
	}

	.mmx-lg-135 {
		margin-left: -8.4375rem !important;
		margin-right: -8.4375rem !important
	}

	.mmy-lg-135 {
		margin-bottom: -8.4375rem !important
	}

	.mmt-lg-135,
	.mmy-lg-135 {
		margin-top: -8.4375rem !important
	}

	.mmr-lg-135 {
		margin-right: -8.4375rem !important
	}

	.mmb-lg-135 {
		margin-bottom: -8.4375rem !important
	}

	.mml-lg-135 {
		margin-left: -8.4375rem !important
	}

	.mm-lg-136 {
		margin: -8.5rem !important
	}

	.mmx-lg-136 {
		margin-left: -8.5rem !important;
		margin-right: -8.5rem !important
	}

	.mmy-lg-136 {
		margin-bottom: -8.5rem !important
	}

	.mmt-lg-136,
	.mmy-lg-136 {
		margin-top: -8.5rem !important
	}

	.mmr-lg-136 {
		margin-right: -8.5rem !important
	}

	.mmb-lg-136 {
		margin-bottom: -8.5rem !important
	}

	.mml-lg-136 {
		margin-left: -8.5rem !important
	}

	.mm-lg-137 {
		margin: -8.5625rem !important
	}

	.mmx-lg-137 {
		margin-left: -8.5625rem !important;
		margin-right: -8.5625rem !important
	}

	.mmy-lg-137 {
		margin-bottom: -8.5625rem !important
	}

	.mmt-lg-137,
	.mmy-lg-137 {
		margin-top: -8.5625rem !important
	}

	.mmr-lg-137 {
		margin-right: -8.5625rem !important
	}

	.mmb-lg-137 {
		margin-bottom: -8.5625rem !important
	}

	.mml-lg-137 {
		margin-left: -8.5625rem !important
	}

	.mm-lg-138 {
		margin: -8.625rem !important
	}

	.mmx-lg-138 {
		margin-left: -8.625rem !important;
		margin-right: -8.625rem !important
	}

	.mmy-lg-138 {
		margin-bottom: -8.625rem !important
	}

	.mmt-lg-138,
	.mmy-lg-138 {
		margin-top: -8.625rem !important
	}

	.mmr-lg-138 {
		margin-right: -8.625rem !important
	}

	.mmb-lg-138 {
		margin-bottom: -8.625rem !important
	}

	.mml-lg-138 {
		margin-left: -8.625rem !important
	}

	.mm-lg-139 {
		margin: -8.6875rem !important
	}

	.mmx-lg-139 {
		margin-left: -8.6875rem !important;
		margin-right: -8.6875rem !important
	}

	.mmy-lg-139 {
		margin-bottom: -8.6875rem !important
	}

	.mmt-lg-139,
	.mmy-lg-139 {
		margin-top: -8.6875rem !important
	}

	.mmr-lg-139 {
		margin-right: -8.6875rem !important
	}

	.mmb-lg-139 {
		margin-bottom: -8.6875rem !important
	}

	.mml-lg-139 {
		margin-left: -8.6875rem !important
	}

	.mm-lg-140 {
		margin: -8.75rem !important
	}

	.mmx-lg-140 {
		margin-left: -8.75rem !important;
		margin-right: -8.75rem !important
	}

	.mmy-lg-140 {
		margin-bottom: -8.75rem !important
	}

	.mmt-lg-140,
	.mmy-lg-140 {
		margin-top: -8.75rem !important
	}

	.mmr-lg-140 {
		margin-right: -8.75rem !important
	}

	.mmb-lg-140 {
		margin-bottom: -8.75rem !important
	}

	.mml-lg-140 {
		margin-left: -8.75rem !important
	}

	.mm-lg-141 {
		margin: -8.8125rem !important
	}

	.mmx-lg-141 {
		margin-left: -8.8125rem !important;
		margin-right: -8.8125rem !important
	}

	.mmy-lg-141 {
		margin-bottom: -8.8125rem !important
	}

	.mmt-lg-141,
	.mmy-lg-141 {
		margin-top: -8.8125rem !important
	}

	.mmr-lg-141 {
		margin-right: -8.8125rem !important
	}

	.mmb-lg-141 {
		margin-bottom: -8.8125rem !important
	}

	.mml-lg-141 {
		margin-left: -8.8125rem !important
	}

	.mm-lg-142 {
		margin: -8.875rem !important
	}

	.mmx-lg-142 {
		margin-left: -8.875rem !important;
		margin-right: -8.875rem !important
	}

	.mmy-lg-142 {
		margin-bottom: -8.875rem !important
	}

	.mmt-lg-142,
	.mmy-lg-142 {
		margin-top: -8.875rem !important
	}

	.mmr-lg-142 {
		margin-right: -8.875rem !important
	}

	.mmb-lg-142 {
		margin-bottom: -8.875rem !important
	}

	.mml-lg-142 {
		margin-left: -8.875rem !important
	}

	.mm-lg-143 {
		margin: -8.9375rem !important
	}

	.mmx-lg-143 {
		margin-left: -8.9375rem !important;
		margin-right: -8.9375rem !important
	}

	.mmy-lg-143 {
		margin-bottom: -8.9375rem !important
	}

	.mmt-lg-143,
	.mmy-lg-143 {
		margin-top: -8.9375rem !important
	}

	.mmr-lg-143 {
		margin-right: -8.9375rem !important
	}

	.mmb-lg-143 {
		margin-bottom: -8.9375rem !important
	}

	.mml-lg-143 {
		margin-left: -8.9375rem !important
	}

	.mm-lg-144 {
		margin: -9rem !important
	}

	.mmx-lg-144 {
		margin-left: -9rem !important;
		margin-right: -9rem !important
	}

	.mmy-lg-144 {
		margin-bottom: -9rem !important
	}

	.mmt-lg-144,
	.mmy-lg-144 {
		margin-top: -9rem !important
	}

	.mmr-lg-144 {
		margin-right: -9rem !important
	}

	.mmb-lg-144 {
		margin-bottom: -9rem !important
	}

	.mml-lg-144 {
		margin-left: -9rem !important
	}

	.mm-lg-145 {
		margin: -9.0625rem !important
	}

	.mmx-lg-145 {
		margin-left: -9.0625rem !important;
		margin-right: -9.0625rem !important
	}

	.mmy-lg-145 {
		margin-bottom: -9.0625rem !important
	}

	.mmt-lg-145,
	.mmy-lg-145 {
		margin-top: -9.0625rem !important
	}

	.mmr-lg-145 {
		margin-right: -9.0625rem !important
	}

	.mmb-lg-145 {
		margin-bottom: -9.0625rem !important
	}

	.mml-lg-145 {
		margin-left: -9.0625rem !important
	}

	.mm-lg-146 {
		margin: -9.125rem !important
	}

	.mmx-lg-146 {
		margin-left: -9.125rem !important;
		margin-right: -9.125rem !important
	}

	.mmy-lg-146 {
		margin-bottom: -9.125rem !important
	}

	.mmt-lg-146,
	.mmy-lg-146 {
		margin-top: -9.125rem !important
	}

	.mmr-lg-146 {
		margin-right: -9.125rem !important
	}

	.mmb-lg-146 {
		margin-bottom: -9.125rem !important
	}

	.mml-lg-146 {
		margin-left: -9.125rem !important
	}

	.mm-lg-147 {
		margin: -9.1875rem !important
	}

	.mmx-lg-147 {
		margin-left: -9.1875rem !important;
		margin-right: -9.1875rem !important
	}

	.mmy-lg-147 {
		margin-bottom: -9.1875rem !important
	}

	.mmt-lg-147,
	.mmy-lg-147 {
		margin-top: -9.1875rem !important
	}

	.mmr-lg-147 {
		margin-right: -9.1875rem !important
	}

	.mmb-lg-147 {
		margin-bottom: -9.1875rem !important
	}

	.mml-lg-147 {
		margin-left: -9.1875rem !important
	}

	.mm-lg-148 {
		margin: -9.25rem !important
	}

	.mmx-lg-148 {
		margin-left: -9.25rem !important;
		margin-right: -9.25rem !important
	}

	.mmy-lg-148 {
		margin-bottom: -9.25rem !important
	}

	.mmt-lg-148,
	.mmy-lg-148 {
		margin-top: -9.25rem !important
	}

	.mmr-lg-148 {
		margin-right: -9.25rem !important
	}

	.mmb-lg-148 {
		margin-bottom: -9.25rem !important
	}

	.mml-lg-148 {
		margin-left: -9.25rem !important
	}

	.mm-lg-149 {
		margin: -9.3125rem !important
	}

	.mmx-lg-149 {
		margin-left: -9.3125rem !important;
		margin-right: -9.3125rem !important
	}

	.mmy-lg-149 {
		margin-bottom: -9.3125rem !important
	}

	.mmt-lg-149,
	.mmy-lg-149 {
		margin-top: -9.3125rem !important
	}

	.mmr-lg-149 {
		margin-right: -9.3125rem !important
	}

	.mmb-lg-149 {
		margin-bottom: -9.3125rem !important
	}

	.mml-lg-149 {
		margin-left: -9.3125rem !important
	}

	.mm-lg-150 {
		margin: -9.375rem !important
	}

	.mmx-lg-150 {
		margin-left: -9.375rem !important;
		margin-right: -9.375rem !important
	}

	.mmy-lg-150 {
		margin-bottom: -9.375rem !important
	}

	.mmt-lg-150,
	.mmy-lg-150 {
		margin-top: -9.375rem !important
	}

	.mmr-lg-150 {
		margin-right: -9.375rem !important
	}

	.mmb-lg-150 {
		margin-bottom: -9.375rem !important
	}

	.mml-lg-150 {
		margin-left: -9.375rem !important
	}

	.mm-lg-151 {
		margin: -9.4375rem !important
	}

	.mmx-lg-151 {
		margin-left: -9.4375rem !important;
		margin-right: -9.4375rem !important
	}

	.mmy-lg-151 {
		margin-bottom: -9.4375rem !important
	}

	.mmt-lg-151,
	.mmy-lg-151 {
		margin-top: -9.4375rem !important
	}

	.mmr-lg-151 {
		margin-right: -9.4375rem !important
	}

	.mmb-lg-151 {
		margin-bottom: -9.4375rem !important
	}

	.mml-lg-151 {
		margin-left: -9.4375rem !important
	}

	.mm-lg-152 {
		margin: -9.5rem !important
	}

	.mmx-lg-152 {
		margin-left: -9.5rem !important;
		margin-right: -9.5rem !important
	}

	.mmy-lg-152 {
		margin-bottom: -9.5rem !important
	}

	.mmt-lg-152,
	.mmy-lg-152 {
		margin-top: -9.5rem !important
	}

	.mmr-lg-152 {
		margin-right: -9.5rem !important
	}

	.mmb-lg-152 {
		margin-bottom: -9.5rem !important
	}

	.mml-lg-152 {
		margin-left: -9.5rem !important
	}

	.mm-lg-153 {
		margin: -9.5625rem !important
	}

	.mmx-lg-153 {
		margin-left: -9.5625rem !important;
		margin-right: -9.5625rem !important
	}

	.mmy-lg-153 {
		margin-bottom: -9.5625rem !important
	}

	.mmt-lg-153,
	.mmy-lg-153 {
		margin-top: -9.5625rem !important
	}

	.mmr-lg-153 {
		margin-right: -9.5625rem !important
	}

	.mmb-lg-153 {
		margin-bottom: -9.5625rem !important
	}

	.mml-lg-153 {
		margin-left: -9.5625rem !important
	}

	.mm-lg-154 {
		margin: -9.625rem !important
	}

	.mmx-lg-154 {
		margin-left: -9.625rem !important;
		margin-right: -9.625rem !important
	}

	.mmy-lg-154 {
		margin-bottom: -9.625rem !important
	}

	.mmt-lg-154,
	.mmy-lg-154 {
		margin-top: -9.625rem !important
	}

	.mmr-lg-154 {
		margin-right: -9.625rem !important
	}

	.mmb-lg-154 {
		margin-bottom: -9.625rem !important
	}

	.mml-lg-154 {
		margin-left: -9.625rem !important
	}

	.mm-lg-155 {
		margin: -9.6875rem !important
	}

	.mmx-lg-155 {
		margin-left: -9.6875rem !important;
		margin-right: -9.6875rem !important
	}

	.mmy-lg-155 {
		margin-bottom: -9.6875rem !important
	}

	.mmt-lg-155,
	.mmy-lg-155 {
		margin-top: -9.6875rem !important
	}

	.mmr-lg-155 {
		margin-right: -9.6875rem !important
	}

	.mmb-lg-155 {
		margin-bottom: -9.6875rem !important
	}

	.mml-lg-155 {
		margin-left: -9.6875rem !important
	}

	.mm-lg-156 {
		margin: -9.75rem !important
	}

	.mmx-lg-156 {
		margin-left: -9.75rem !important;
		margin-right: -9.75rem !important
	}

	.mmy-lg-156 {
		margin-bottom: -9.75rem !important
	}

	.mmt-lg-156,
	.mmy-lg-156 {
		margin-top: -9.75rem !important
	}

	.mmr-lg-156 {
		margin-right: -9.75rem !important
	}

	.mmb-lg-156 {
		margin-bottom: -9.75rem !important
	}

	.mml-lg-156 {
		margin-left: -9.75rem !important
	}

	.mm-lg-157 {
		margin: -9.8125rem !important
	}

	.mmx-lg-157 {
		margin-left: -9.8125rem !important;
		margin-right: -9.8125rem !important
	}

	.mmy-lg-157 {
		margin-bottom: -9.8125rem !important
	}

	.mmt-lg-157,
	.mmy-lg-157 {
		margin-top: -9.8125rem !important
	}

	.mmr-lg-157 {
		margin-right: -9.8125rem !important
	}

	.mmb-lg-157 {
		margin-bottom: -9.8125rem !important
	}

	.mml-lg-157 {
		margin-left: -9.8125rem !important
	}

	.mm-lg-158 {
		margin: -9.875rem !important
	}

	.mmx-lg-158 {
		margin-left: -9.875rem !important;
		margin-right: -9.875rem !important
	}

	.mmy-lg-158 {
		margin-bottom: -9.875rem !important
	}

	.mmt-lg-158,
	.mmy-lg-158 {
		margin-top: -9.875rem !important
	}

	.mmr-lg-158 {
		margin-right: -9.875rem !important
	}

	.mmb-lg-158 {
		margin-bottom: -9.875rem !important
	}

	.mml-lg-158 {
		margin-left: -9.875rem !important
	}

	.mm-lg-159 {
		margin: -9.9375rem !important
	}

	.mmx-lg-159 {
		margin-left: -9.9375rem !important;
		margin-right: -9.9375rem !important
	}

	.mmy-lg-159 {
		margin-bottom: -9.9375rem !important
	}

	.mmt-lg-159,
	.mmy-lg-159 {
		margin-top: -9.9375rem !important
	}

	.mmr-lg-159 {
		margin-right: -9.9375rem !important
	}

	.mmb-lg-159 {
		margin-bottom: -9.9375rem !important
	}

	.mml-lg-159 {
		margin-left: -9.9375rem !important
	}

	.mm-lg-160 {
		margin: -10rem !important
	}

	.mmx-lg-160 {
		margin-left: -10rem !important;
		margin-right: -10rem !important
	}

	.mmy-lg-160 {
		margin-bottom: -10rem !important
	}

	.mmt-lg-160,
	.mmy-lg-160 {
		margin-top: -10rem !important
	}

	.mmr-lg-160 {
		margin-right: -10rem !important
	}

	.mmb-lg-160 {
		margin-bottom: -10rem !important
	}

	.mml-lg-160 {
		margin-left: -10rem !important
	}

	.mm-lg-161 {
		margin: -10.0625rem !important
	}

	.mmx-lg-161 {
		margin-left: -10.0625rem !important;
		margin-right: -10.0625rem !important
	}

	.mmy-lg-161 {
		margin-bottom: -10.0625rem !important
	}

	.mmt-lg-161,
	.mmy-lg-161 {
		margin-top: -10.0625rem !important
	}

	.mmr-lg-161 {
		margin-right: -10.0625rem !important
	}

	.mmb-lg-161 {
		margin-bottom: -10.0625rem !important
	}

	.mml-lg-161 {
		margin-left: -10.0625rem !important
	}

	.mm-lg-162 {
		margin: -10.125rem !important
	}

	.mmx-lg-162 {
		margin-left: -10.125rem !important;
		margin-right: -10.125rem !important
	}

	.mmy-lg-162 {
		margin-bottom: -10.125rem !important
	}

	.mmt-lg-162,
	.mmy-lg-162 {
		margin-top: -10.125rem !important
	}

	.mmr-lg-162 {
		margin-right: -10.125rem !important
	}

	.mmb-lg-162 {
		margin-bottom: -10.125rem !important
	}

	.mml-lg-162 {
		margin-left: -10.125rem !important
	}

	.mm-lg-163 {
		margin: -10.1875rem !important
	}

	.mmx-lg-163 {
		margin-left: -10.1875rem !important;
		margin-right: -10.1875rem !important
	}

	.mmy-lg-163 {
		margin-bottom: -10.1875rem !important
	}

	.mmt-lg-163,
	.mmy-lg-163 {
		margin-top: -10.1875rem !important
	}

	.mmr-lg-163 {
		margin-right: -10.1875rem !important
	}

	.mmb-lg-163 {
		margin-bottom: -10.1875rem !important
	}

	.mml-lg-163 {
		margin-left: -10.1875rem !important
	}

	.mm-lg-164 {
		margin: -10.25rem !important
	}

	.mmx-lg-164 {
		margin-left: -10.25rem !important;
		margin-right: -10.25rem !important
	}

	.mmy-lg-164 {
		margin-bottom: -10.25rem !important
	}

	.mmt-lg-164,
	.mmy-lg-164 {
		margin-top: -10.25rem !important
	}

	.mmr-lg-164 {
		margin-right: -10.25rem !important
	}

	.mmb-lg-164 {
		margin-bottom: -10.25rem !important
	}

	.mml-lg-164 {
		margin-left: -10.25rem !important
	}

	.mm-lg-165 {
		margin: -10.3125rem !important
	}

	.mmx-lg-165 {
		margin-left: -10.3125rem !important;
		margin-right: -10.3125rem !important
	}

	.mmy-lg-165 {
		margin-bottom: -10.3125rem !important
	}

	.mmt-lg-165,
	.mmy-lg-165 {
		margin-top: -10.3125rem !important
	}

	.mmr-lg-165 {
		margin-right: -10.3125rem !important
	}

	.mmb-lg-165 {
		margin-bottom: -10.3125rem !important
	}

	.mml-lg-165 {
		margin-left: -10.3125rem !important
	}

	.mm-lg-166 {
		margin: -10.375rem !important
	}

	.mmx-lg-166 {
		margin-left: -10.375rem !important;
		margin-right: -10.375rem !important
	}

	.mmy-lg-166 {
		margin-bottom: -10.375rem !important
	}

	.mmt-lg-166,
	.mmy-lg-166 {
		margin-top: -10.375rem !important
	}

	.mmr-lg-166 {
		margin-right: -10.375rem !important
	}

	.mmb-lg-166 {
		margin-bottom: -10.375rem !important
	}

	.mml-lg-166 {
		margin-left: -10.375rem !important
	}

	.mm-lg-167 {
		margin: -10.4375rem !important
	}

	.mmx-lg-167 {
		margin-left: -10.4375rem !important;
		margin-right: -10.4375rem !important
	}

	.mmy-lg-167 {
		margin-bottom: -10.4375rem !important
	}

	.mmt-lg-167,
	.mmy-lg-167 {
		margin-top: -10.4375rem !important
	}

	.mmr-lg-167 {
		margin-right: -10.4375rem !important
	}

	.mmb-lg-167 {
		margin-bottom: -10.4375rem !important
	}

	.mml-lg-167 {
		margin-left: -10.4375rem !important
	}

	.mm-lg-168 {
		margin: -10.5rem !important
	}

	.mmx-lg-168 {
		margin-left: -10.5rem !important;
		margin-right: -10.5rem !important
	}

	.mmy-lg-168 {
		margin-bottom: -10.5rem !important
	}

	.mmt-lg-168,
	.mmy-lg-168 {
		margin-top: -10.5rem !important
	}

	.mmr-lg-168 {
		margin-right: -10.5rem !important
	}

	.mmb-lg-168 {
		margin-bottom: -10.5rem !important
	}

	.mml-lg-168 {
		margin-left: -10.5rem !important
	}

	.mm-lg-169 {
		margin: -10.5625rem !important
	}

	.mmx-lg-169 {
		margin-left: -10.5625rem !important;
		margin-right: -10.5625rem !important
	}

	.mmy-lg-169 {
		margin-bottom: -10.5625rem !important
	}

	.mmt-lg-169,
	.mmy-lg-169 {
		margin-top: -10.5625rem !important
	}

	.mmr-lg-169 {
		margin-right: -10.5625rem !important
	}

	.mmb-lg-169 {
		margin-bottom: -10.5625rem !important
	}

	.mml-lg-169 {
		margin-left: -10.5625rem !important
	}

	.mm-lg-170 {
		margin: -10.625rem !important
	}

	.mmx-lg-170 {
		margin-left: -10.625rem !important;
		margin-right: -10.625rem !important
	}

	.mmy-lg-170 {
		margin-bottom: -10.625rem !important
	}

	.mmt-lg-170,
	.mmy-lg-170 {
		margin-top: -10.625rem !important
	}

	.mmr-lg-170 {
		margin-right: -10.625rem !important
	}

	.mmb-lg-170 {
		margin-bottom: -10.625rem !important
	}

	.mml-lg-170 {
		margin-left: -10.625rem !important
	}

	.mm-lg-171 {
		margin: -10.6875rem !important
	}

	.mmx-lg-171 {
		margin-left: -10.6875rem !important;
		margin-right: -10.6875rem !important
	}

	.mmy-lg-171 {
		margin-bottom: -10.6875rem !important
	}

	.mmt-lg-171,
	.mmy-lg-171 {
		margin-top: -10.6875rem !important
	}

	.mmr-lg-171 {
		margin-right: -10.6875rem !important
	}

	.mmb-lg-171 {
		margin-bottom: -10.6875rem !important
	}

	.mml-lg-171 {
		margin-left: -10.6875rem !important
	}

	.mm-lg-172 {
		margin: -10.75rem !important
	}

	.mmx-lg-172 {
		margin-left: -10.75rem !important;
		margin-right: -10.75rem !important
	}

	.mmy-lg-172 {
		margin-bottom: -10.75rem !important
	}

	.mmt-lg-172,
	.mmy-lg-172 {
		margin-top: -10.75rem !important
	}

	.mmr-lg-172 {
		margin-right: -10.75rem !important
	}

	.mmb-lg-172 {
		margin-bottom: -10.75rem !important
	}

	.mml-lg-172 {
		margin-left: -10.75rem !important
	}

	.mm-lg-173 {
		margin: -10.8125rem !important
	}

	.mmx-lg-173 {
		margin-left: -10.8125rem !important;
		margin-right: -10.8125rem !important
	}

	.mmy-lg-173 {
		margin-bottom: -10.8125rem !important
	}

	.mmt-lg-173,
	.mmy-lg-173 {
		margin-top: -10.8125rem !important
	}

	.mmr-lg-173 {
		margin-right: -10.8125rem !important
	}

	.mmb-lg-173 {
		margin-bottom: -10.8125rem !important
	}

	.mml-lg-173 {
		margin-left: -10.8125rem !important
	}

	.mm-lg-174 {
		margin: -10.875rem !important
	}

	.mmx-lg-174 {
		margin-left: -10.875rem !important;
		margin-right: -10.875rem !important
	}

	.mmy-lg-174 {
		margin-bottom: -10.875rem !important
	}

	.mmt-lg-174,
	.mmy-lg-174 {
		margin-top: -10.875rem !important
	}

	.mmr-lg-174 {
		margin-right: -10.875rem !important
	}

	.mmb-lg-174 {
		margin-bottom: -10.875rem !important
	}

	.mml-lg-174 {
		margin-left: -10.875rem !important
	}

	.mm-lg-175 {
		margin: -10.9375rem !important
	}

	.mmx-lg-175 {
		margin-left: -10.9375rem !important;
		margin-right: -10.9375rem !important
	}

	.mmy-lg-175 {
		margin-bottom: -10.9375rem !important
	}

	.mmt-lg-175,
	.mmy-lg-175 {
		margin-top: -10.9375rem !important
	}

	.mmr-lg-175 {
		margin-right: -10.9375rem !important
	}

	.mmb-lg-175 {
		margin-bottom: -10.9375rem !important
	}

	.mml-lg-175 {
		margin-left: -10.9375rem !important
	}

	.mm-lg-176 {
		margin: -11rem !important
	}

	.mmx-lg-176 {
		margin-left: -11rem !important;
		margin-right: -11rem !important
	}

	.mmy-lg-176 {
		margin-bottom: -11rem !important
	}

	.mmt-lg-176,
	.mmy-lg-176 {
		margin-top: -11rem !important
	}

	.mmr-lg-176 {
		margin-right: -11rem !important
	}

	.mmb-lg-176 {
		margin-bottom: -11rem !important
	}

	.mml-lg-176 {
		margin-left: -11rem !important
	}

	.mm-lg-177 {
		margin: -11.0625rem !important
	}

	.mmx-lg-177 {
		margin-left: -11.0625rem !important;
		margin-right: -11.0625rem !important
	}

	.mmy-lg-177 {
		margin-bottom: -11.0625rem !important
	}

	.mmt-lg-177,
	.mmy-lg-177 {
		margin-top: -11.0625rem !important
	}

	.mmr-lg-177 {
		margin-right: -11.0625rem !important
	}

	.mmb-lg-177 {
		margin-bottom: -11.0625rem !important
	}

	.mml-lg-177 {
		margin-left: -11.0625rem !important
	}

	.mm-lg-178 {
		margin: -11.125rem !important
	}

	.mmx-lg-178 {
		margin-left: -11.125rem !important;
		margin-right: -11.125rem !important
	}

	.mmy-lg-178 {
		margin-bottom: -11.125rem !important
	}

	.mmt-lg-178,
	.mmy-lg-178 {
		margin-top: -11.125rem !important
	}

	.mmr-lg-178 {
		margin-right: -11.125rem !important
	}

	.mmb-lg-178 {
		margin-bottom: -11.125rem !important
	}

	.mml-lg-178 {
		margin-left: -11.125rem !important
	}

	.mm-lg-179 {
		margin: -11.1875rem !important
	}

	.mmx-lg-179 {
		margin-left: -11.1875rem !important;
		margin-right: -11.1875rem !important
	}

	.mmy-lg-179 {
		margin-bottom: -11.1875rem !important
	}

	.mmt-lg-179,
	.mmy-lg-179 {
		margin-top: -11.1875rem !important
	}

	.mmr-lg-179 {
		margin-right: -11.1875rem !important
	}

	.mmb-lg-179 {
		margin-bottom: -11.1875rem !important
	}

	.mml-lg-179 {
		margin-left: -11.1875rem !important
	}

	.mm-lg-180 {
		margin: -11.25rem !important
	}

	.mmx-lg-180 {
		margin-left: -11.25rem !important;
		margin-right: -11.25rem !important
	}

	.mmy-lg-180 {
		margin-bottom: -11.25rem !important
	}

	.mmt-lg-180,
	.mmy-lg-180 {
		margin-top: -11.25rem !important
	}

	.mmr-lg-180 {
		margin-right: -11.25rem !important
	}

	.mmb-lg-180 {
		margin-bottom: -11.25rem !important
	}

	.mml-lg-180 {
		margin-left: -11.25rem !important
	}

	.mm-lg-181 {
		margin: -11.3125rem !important
	}

	.mmx-lg-181 {
		margin-left: -11.3125rem !important;
		margin-right: -11.3125rem !important
	}

	.mmy-lg-181 {
		margin-bottom: -11.3125rem !important
	}

	.mmt-lg-181,
	.mmy-lg-181 {
		margin-top: -11.3125rem !important
	}

	.mmr-lg-181 {
		margin-right: -11.3125rem !important
	}

	.mmb-lg-181 {
		margin-bottom: -11.3125rem !important
	}

	.mml-lg-181 {
		margin-left: -11.3125rem !important
	}

	.mm-lg-182 {
		margin: -11.375rem !important
	}

	.mmx-lg-182 {
		margin-left: -11.375rem !important;
		margin-right: -11.375rem !important
	}

	.mmy-lg-182 {
		margin-bottom: -11.375rem !important
	}

	.mmt-lg-182,
	.mmy-lg-182 {
		margin-top: -11.375rem !important
	}

	.mmr-lg-182 {
		margin-right: -11.375rem !important
	}

	.mmb-lg-182 {
		margin-bottom: -11.375rem !important
	}

	.mml-lg-182 {
		margin-left: -11.375rem !important
	}

	.mm-lg-183 {
		margin: -11.4375rem !important
	}

	.mmx-lg-183 {
		margin-left: -11.4375rem !important;
		margin-right: -11.4375rem !important
	}

	.mmy-lg-183 {
		margin-bottom: -11.4375rem !important
	}

	.mmt-lg-183,
	.mmy-lg-183 {
		margin-top: -11.4375rem !important
	}

	.mmr-lg-183 {
		margin-right: -11.4375rem !important
	}

	.mmb-lg-183 {
		margin-bottom: -11.4375rem !important
	}

	.mml-lg-183 {
		margin-left: -11.4375rem !important
	}

	.mm-lg-184 {
		margin: -11.5rem !important
	}

	.mmx-lg-184 {
		margin-left: -11.5rem !important;
		margin-right: -11.5rem !important
	}

	.mmy-lg-184 {
		margin-bottom: -11.5rem !important
	}

	.mmt-lg-184,
	.mmy-lg-184 {
		margin-top: -11.5rem !important
	}

	.mmr-lg-184 {
		margin-right: -11.5rem !important
	}

	.mmb-lg-184 {
		margin-bottom: -11.5rem !important
	}

	.mml-lg-184 {
		margin-left: -11.5rem !important
	}

	.mm-lg-185 {
		margin: -11.5625rem !important
	}

	.mmx-lg-185 {
		margin-left: -11.5625rem !important;
		margin-right: -11.5625rem !important
	}

	.mmy-lg-185 {
		margin-bottom: -11.5625rem !important
	}

	.mmt-lg-185,
	.mmy-lg-185 {
		margin-top: -11.5625rem !important
	}

	.mmr-lg-185 {
		margin-right: -11.5625rem !important
	}

	.mmb-lg-185 {
		margin-bottom: -11.5625rem !important
	}

	.mml-lg-185 {
		margin-left: -11.5625rem !important
	}

	.mm-lg-186 {
		margin: -11.625rem !important
	}

	.mmx-lg-186 {
		margin-left: -11.625rem !important;
		margin-right: -11.625rem !important
	}

	.mmy-lg-186 {
		margin-bottom: -11.625rem !important
	}

	.mmt-lg-186,
	.mmy-lg-186 {
		margin-top: -11.625rem !important
	}

	.mmr-lg-186 {
		margin-right: -11.625rem !important
	}

	.mmb-lg-186 {
		margin-bottom: -11.625rem !important
	}

	.mml-lg-186 {
		margin-left: -11.625rem !important
	}

	.mm-lg-187 {
		margin: -11.6875rem !important
	}

	.mmx-lg-187 {
		margin-left: -11.6875rem !important;
		margin-right: -11.6875rem !important
	}

	.mmy-lg-187 {
		margin-bottom: -11.6875rem !important
	}

	.mmt-lg-187,
	.mmy-lg-187 {
		margin-top: -11.6875rem !important
	}

	.mmr-lg-187 {
		margin-right: -11.6875rem !important
	}

	.mmb-lg-187 {
		margin-bottom: -11.6875rem !important
	}

	.mml-lg-187 {
		margin-left: -11.6875rem !important
	}

	.mm-lg-188 {
		margin: -11.75rem !important
	}

	.mmx-lg-188 {
		margin-left: -11.75rem !important;
		margin-right: -11.75rem !important
	}

	.mmy-lg-188 {
		margin-bottom: -11.75rem !important
	}

	.mmt-lg-188,
	.mmy-lg-188 {
		margin-top: -11.75rem !important
	}

	.mmr-lg-188 {
		margin-right: -11.75rem !important
	}

	.mmb-lg-188 {
		margin-bottom: -11.75rem !important
	}

	.mml-lg-188 {
		margin-left: -11.75rem !important
	}

	.mm-lg-189 {
		margin: -11.8125rem !important
	}

	.mmx-lg-189 {
		margin-left: -11.8125rem !important;
		margin-right: -11.8125rem !important
	}

	.mmy-lg-189 {
		margin-bottom: -11.8125rem !important
	}

	.mmt-lg-189,
	.mmy-lg-189 {
		margin-top: -11.8125rem !important
	}

	.mmr-lg-189 {
		margin-right: -11.8125rem !important
	}

	.mmb-lg-189 {
		margin-bottom: -11.8125rem !important
	}

	.mml-lg-189 {
		margin-left: -11.8125rem !important
	}

	.mm-lg-190 {
		margin: -11.875rem !important
	}

	.mmx-lg-190 {
		margin-left: -11.875rem !important;
		margin-right: -11.875rem !important
	}

	.mmy-lg-190 {
		margin-bottom: -11.875rem !important
	}

	.mmt-lg-190,
	.mmy-lg-190 {
		margin-top: -11.875rem !important
	}

	.mmr-lg-190 {
		margin-right: -11.875rem !important
	}

	.mmb-lg-190 {
		margin-bottom: -11.875rem !important
	}

	.mml-lg-190 {
		margin-left: -11.875rem !important
	}

	.mm-lg-191 {
		margin: -11.9375rem !important
	}

	.mmx-lg-191 {
		margin-left: -11.9375rem !important;
		margin-right: -11.9375rem !important
	}

	.mmy-lg-191 {
		margin-bottom: -11.9375rem !important
	}

	.mmt-lg-191,
	.mmy-lg-191 {
		margin-top: -11.9375rem !important
	}

	.mmr-lg-191 {
		margin-right: -11.9375rem !important
	}

	.mmb-lg-191 {
		margin-bottom: -11.9375rem !important
	}

	.mml-lg-191 {
		margin-left: -11.9375rem !important
	}

	.mm-lg-192 {
		margin: -12rem !important
	}

	.mmx-lg-192 {
		margin-left: -12rem !important;
		margin-right: -12rem !important
	}

	.mmy-lg-192 {
		margin-bottom: -12rem !important
	}

	.mmt-lg-192,
	.mmy-lg-192 {
		margin-top: -12rem !important
	}

	.mmr-lg-192 {
		margin-right: -12rem !important
	}

	.mmb-lg-192 {
		margin-bottom: -12rem !important
	}

	.mml-lg-192 {
		margin-left: -12rem !important
	}

	.mm-lg-193 {
		margin: -12.0625rem !important
	}

	.mmx-lg-193 {
		margin-left: -12.0625rem !important;
		margin-right: -12.0625rem !important
	}

	.mmy-lg-193 {
		margin-bottom: -12.0625rem !important
	}

	.mmt-lg-193,
	.mmy-lg-193 {
		margin-top: -12.0625rem !important
	}

	.mmr-lg-193 {
		margin-right: -12.0625rem !important
	}

	.mmb-lg-193 {
		margin-bottom: -12.0625rem !important
	}

	.mml-lg-193 {
		margin-left: -12.0625rem !important
	}

	.mm-lg-194 {
		margin: -12.125rem !important
	}

	.mmx-lg-194 {
		margin-left: -12.125rem !important;
		margin-right: -12.125rem !important
	}

	.mmy-lg-194 {
		margin-bottom: -12.125rem !important
	}

	.mmt-lg-194,
	.mmy-lg-194 {
		margin-top: -12.125rem !important
	}

	.mmr-lg-194 {
		margin-right: -12.125rem !important
	}

	.mmb-lg-194 {
		margin-bottom: -12.125rem !important
	}

	.mml-lg-194 {
		margin-left: -12.125rem !important
	}

	.mm-lg-195 {
		margin: -12.1875rem !important
	}

	.mmx-lg-195 {
		margin-left: -12.1875rem !important;
		margin-right: -12.1875rem !important
	}

	.mmy-lg-195 {
		margin-bottom: -12.1875rem !important
	}

	.mmt-lg-195,
	.mmy-lg-195 {
		margin-top: -12.1875rem !important
	}

	.mmr-lg-195 {
		margin-right: -12.1875rem !important
	}

	.mmb-lg-195 {
		margin-bottom: -12.1875rem !important
	}

	.mml-lg-195 {
		margin-left: -12.1875rem !important
	}

	.mm-lg-196 {
		margin: -12.25rem !important
	}

	.mmx-lg-196 {
		margin-left: -12.25rem !important;
		margin-right: -12.25rem !important
	}

	.mmy-lg-196 {
		margin-bottom: -12.25rem !important
	}

	.mmt-lg-196,
	.mmy-lg-196 {
		margin-top: -12.25rem !important
	}

	.mmr-lg-196 {
		margin-right: -12.25rem !important
	}

	.mmb-lg-196 {
		margin-bottom: -12.25rem !important
	}

	.mml-lg-196 {
		margin-left: -12.25rem !important
	}

	.mm-lg-197 {
		margin: -12.3125rem !important
	}

	.mmx-lg-197 {
		margin-left: -12.3125rem !important;
		margin-right: -12.3125rem !important
	}

	.mmy-lg-197 {
		margin-bottom: -12.3125rem !important
	}

	.mmt-lg-197,
	.mmy-lg-197 {
		margin-top: -12.3125rem !important
	}

	.mmr-lg-197 {
		margin-right: -12.3125rem !important
	}

	.mmb-lg-197 {
		margin-bottom: -12.3125rem !important
	}

	.mml-lg-197 {
		margin-left: -12.3125rem !important
	}

	.mm-lg-198 {
		margin: -12.375rem !important
	}

	.mmx-lg-198 {
		margin-left: -12.375rem !important;
		margin-right: -12.375rem !important
	}

	.mmy-lg-198 {
		margin-bottom: -12.375rem !important
	}

	.mmt-lg-198,
	.mmy-lg-198 {
		margin-top: -12.375rem !important
	}

	.mmr-lg-198 {
		margin-right: -12.375rem !important
	}

	.mmb-lg-198 {
		margin-bottom: -12.375rem !important
	}

	.mml-lg-198 {
		margin-left: -12.375rem !important
	}

	.mm-lg-199 {
		margin: -12.4375rem !important
	}

	.mmx-lg-199 {
		margin-left: -12.4375rem !important;
		margin-right: -12.4375rem !important
	}

	.mmy-lg-199 {
		margin-bottom: -12.4375rem !important
	}

	.mmt-lg-199,
	.mmy-lg-199 {
		margin-top: -12.4375rem !important
	}

	.mmr-lg-199 {
		margin-right: -12.4375rem !important
	}

	.mmb-lg-199 {
		margin-bottom: -12.4375rem !important
	}

	.mml-lg-199 {
		margin-left: -12.4375rem !important
	}

	.mm-lg-200 {
		margin: -12.5rem !important
	}

	.mmx-lg-200 {
		margin-left: -12.5rem !important;
		margin-right: -12.5rem !important
	}

	.mmy-lg-200 {
		margin-bottom: -12.5rem !important
	}

	.mmt-lg-200,
	.mmy-lg-200 {
		margin-top: -12.5rem !important
	}

	.mmr-lg-200 {
		margin-right: -12.5rem !important
	}

	.mmb-lg-200 {
		margin-bottom: -12.5rem !important
	}

	.mml-lg-200 {
		margin-left: -12.5rem !important
	}

	.mm-lg-auto {
		margin: -auto !important
	}

	.mmx-lg-auto {
		margin-left: -auto !important;
		margin-right: -auto !important
	}

	.mmy-lg-auto {
		margin-bottom: -auto !important
	}

	.mmt-lg-auto,
	.mmy-lg-auto {
		margin-top: -auto !important
	}

	.mmr-lg-auto {
		margin-right: -auto !important
	}

	.mmb-lg-auto {
		margin-bottom: -auto !important
	}

	.mml-lg-auto {
		margin-left: -auto !important
	}
}

@media (min-width:1200px) {
	.mm-xl-0 {
		margin: 0 !important
	}

	.mmx-xl-0 {
		margin-left: 0 !important;
		margin-right: 0 !important
	}

	.mmy-xl-0 {
		margin-bottom: 0 !important
	}

	.mmt-xl-0,
	.mmy-xl-0 {
		margin-top: 0 !important
	}

	.mmr-xl-0 {
		margin-right: 0 !important
	}

	.mmb-xl-0 {
		margin-bottom: 0 !important
	}

	.mml-xl-0 {
		margin-left: 0 !important
	}

	.mm-xl-1 {
		margin: -.0625rem !important
	}

	.mmx-xl-1 {
		margin-left: -.0625rem !important;
		margin-right: -.0625rem !important
	}

	.mmy-xl-1 {
		margin-bottom: -.0625rem !important
	}

	.mmt-xl-1,
	.mmy-xl-1 {
		margin-top: -.0625rem !important
	}

	.mmr-xl-1 {
		margin-right: -.0625rem !important
	}

	.mmb-xl-1 {
		margin-bottom: -.0625rem !important
	}

	.mml-xl-1 {
		margin-left: -.0625rem !important
	}

	.mm-xl-2 {
		margin: -.125rem !important
	}

	.mmx-xl-2 {
		margin-left: -.125rem !important;
		margin-right: -.125rem !important
	}

	.mmy-xl-2 {
		margin-bottom: -.125rem !important
	}

	.mmt-xl-2,
	.mmy-xl-2 {
		margin-top: -.125rem !important
	}

	.mmr-xl-2 {
		margin-right: -.125rem !important
	}

	.mmb-xl-2 {
		margin-bottom: -.125rem !important
	}

	.mml-xl-2 {
		margin-left: -.125rem !important
	}

	.mm-xl-3 {
		margin: -.1875rem !important
	}

	.mmx-xl-3 {
		margin-left: -.1875rem !important;
		margin-right: -.1875rem !important
	}

	.mmy-xl-3 {
		margin-bottom: -.1875rem !important
	}

	.mmt-xl-3,
	.mmy-xl-3 {
		margin-top: -.1875rem !important
	}

	.mmr-xl-3 {
		margin-right: -.1875rem !important
	}

	.mmb-xl-3 {
		margin-bottom: -.1875rem !important
	}

	.mml-xl-3 {
		margin-left: -.1875rem !important
	}

	.mm-xl-4 {
		margin: -.25rem !important
	}

	.mmx-xl-4 {
		margin-left: -.25rem !important;
		margin-right: -.25rem !important
	}

	.mmy-xl-4 {
		margin-bottom: -.25rem !important
	}

	.mmt-xl-4,
	.mmy-xl-4 {
		margin-top: -.25rem !important
	}

	.mmr-xl-4 {
		margin-right: -.25rem !important
	}

	.mmb-xl-4 {
		margin-bottom: -.25rem !important
	}

	.mml-xl-4 {
		margin-left: -.25rem !important
	}

	.mm-xl-5 {
		margin: -.3125rem !important
	}

	.mmx-xl-5 {
		margin-left: -.3125rem !important;
		margin-right: -.3125rem !important
	}

	.mmy-xl-5 {
		margin-bottom: -.3125rem !important
	}

	.mmt-xl-5,
	.mmy-xl-5 {
		margin-top: -.3125rem !important
	}

	.mmr-xl-5 {
		margin-right: -.3125rem !important
	}

	.mmb-xl-5 {
		margin-bottom: -.3125rem !important
	}

	.mml-xl-5 {
		margin-left: -.3125rem !important
	}

	.mm-xl-6 {
		margin: -.375rem !important
	}

	.mmx-xl-6 {
		margin-left: -.375rem !important;
		margin-right: -.375rem !important
	}

	.mmy-xl-6 {
		margin-bottom: -.375rem !important
	}

	.mmt-xl-6,
	.mmy-xl-6 {
		margin-top: -.375rem !important
	}

	.mmr-xl-6 {
		margin-right: -.375rem !important
	}

	.mmb-xl-6 {
		margin-bottom: -.375rem !important
	}

	.mml-xl-6 {
		margin-left: -.375rem !important
	}

	.mm-xl-7 {
		margin: -.4375rem !important
	}

	.mmx-xl-7 {
		margin-left: -.4375rem !important;
		margin-right: -.4375rem !important
	}

	.mmy-xl-7 {
		margin-bottom: -.4375rem !important
	}

	.mmt-xl-7,
	.mmy-xl-7 {
		margin-top: -.4375rem !important
	}

	.mmr-xl-7 {
		margin-right: -.4375rem !important
	}

	.mmb-xl-7 {
		margin-bottom: -.4375rem !important
	}

	.mml-xl-7 {
		margin-left: -.4375rem !important
	}

	.mm-xl-8 {
		margin: -.5rem !important
	}

	.mmx-xl-8 {
		margin-left: -.5rem !important;
		margin-right: -.5rem !important
	}

	.mmy-xl-8 {
		margin-bottom: -.5rem !important
	}

	.mmt-xl-8,
	.mmy-xl-8 {
		margin-top: -.5rem !important
	}

	.mmr-xl-8 {
		margin-right: -.5rem !important
	}

	.mmb-xl-8 {
		margin-bottom: -.5rem !important
	}

	.mml-xl-8 {
		margin-left: -.5rem !important
	}

	.mm-xl-9 {
		margin: -.5625rem !important
	}

	.mmx-xl-9 {
		margin-left: -.5625rem !important;
		margin-right: -.5625rem !important
	}

	.mmy-xl-9 {
		margin-bottom: -.5625rem !important
	}

	.mmt-xl-9,
	.mmy-xl-9 {
		margin-top: -.5625rem !important
	}

	.mmr-xl-9 {
		margin-right: -.5625rem !important
	}

	.mmb-xl-9 {
		margin-bottom: -.5625rem !important
	}

	.mml-xl-9 {
		margin-left: -.5625rem !important
	}

	.mm-xl-10 {
		margin: -.625rem !important
	}

	.mmx-xl-10 {
		margin-left: -.625rem !important;
		margin-right: -.625rem !important
	}

	.mmy-xl-10 {
		margin-bottom: -.625rem !important
	}

	.mmt-xl-10,
	.mmy-xl-10 {
		margin-top: -.625rem !important
	}

	.mmr-xl-10 {
		margin-right: -.625rem !important
	}

	.mmb-xl-10 {
		margin-bottom: -.625rem !important
	}

	.mml-xl-10 {
		margin-left: -.625rem !important
	}

	.mm-xl-11 {
		margin: -.6875rem !important
	}

	.mmx-xl-11 {
		margin-left: -.6875rem !important;
		margin-right: -.6875rem !important
	}

	.mmy-xl-11 {
		margin-bottom: -.6875rem !important
	}

	.mmt-xl-11,
	.mmy-xl-11 {
		margin-top: -.6875rem !important
	}

	.mmr-xl-11 {
		margin-right: -.6875rem !important
	}

	.mmb-xl-11 {
		margin-bottom: -.6875rem !important
	}

	.mml-xl-11 {
		margin-left: -.6875rem !important
	}

	.mm-xl-12 {
		margin: -.75rem !important
	}

	.mmx-xl-12 {
		margin-left: -.75rem !important;
		margin-right: -.75rem !important
	}

	.mmy-xl-12 {
		margin-bottom: -.75rem !important
	}

	.mmt-xl-12,
	.mmy-xl-12 {
		margin-top: -.75rem !important
	}

	.mmr-xl-12 {
		margin-right: -.75rem !important
	}

	.mmb-xl-12 {
		margin-bottom: -.75rem !important
	}

	.mml-xl-12 {
		margin-left: -.75rem !important
	}

	.mm-xl-13 {
		margin: -.8125rem !important
	}

	.mmx-xl-13 {
		margin-left: -.8125rem !important;
		margin-right: -.8125rem !important
	}

	.mmy-xl-13 {
		margin-bottom: -.8125rem !important
	}

	.mmt-xl-13,
	.mmy-xl-13 {
		margin-top: -.8125rem !important
	}

	.mmr-xl-13 {
		margin-right: -.8125rem !important
	}

	.mmb-xl-13 {
		margin-bottom: -.8125rem !important
	}

	.mml-xl-13 {
		margin-left: -.8125rem !important
	}

	.mm-xl-14 {
		margin: -.875rem !important
	}

	.mmx-xl-14 {
		margin-left: -.875rem !important;
		margin-right: -.875rem !important
	}

	.mmy-xl-14 {
		margin-bottom: -.875rem !important
	}

	.mmt-xl-14,
	.mmy-xl-14 {
		margin-top: -.875rem !important
	}

	.mmr-xl-14 {
		margin-right: -.875rem !important
	}

	.mmb-xl-14 {
		margin-bottom: -.875rem !important
	}

	.mml-xl-14 {
		margin-left: -.875rem !important
	}

	.mm-xl-15 {
		margin: -.9375rem !important
	}

	.mmx-xl-15 {
		margin-left: -.9375rem !important;
		margin-right: -.9375rem !important
	}

	.mmy-xl-15 {
		margin-bottom: -.9375rem !important
	}

	.mmt-xl-15,
	.mmy-xl-15 {
		margin-top: -.9375rem !important
	}

	.mmr-xl-15 {
		margin-right: -.9375rem !important
	}

	.mmb-xl-15 {
		margin-bottom: -.9375rem !important
	}

	.mml-xl-15 {
		margin-left: -.9375rem !important
	}

	.mm-xl-16 {
		margin: -1rem !important
	}

	.mmx-xl-16 {
		margin-left: -1rem !important;
		margin-right: -1rem !important
	}

	.mmy-xl-16 {
		margin-bottom: -1rem !important
	}

	.mmt-xl-16,
	.mmy-xl-16 {
		margin-top: -1rem !important
	}

	.mmr-xl-16 {
		margin-right: -1rem !important
	}

	.mmb-xl-16 {
		margin-bottom: -1rem !important
	}

	.mml-xl-16 {
		margin-left: -1rem !important
	}

	.mm-xl-17 {
		margin: -1.0625rem !important
	}

	.mmx-xl-17 {
		margin-left: -1.0625rem !important;
		margin-right: -1.0625rem !important
	}

	.mmy-xl-17 {
		margin-bottom: -1.0625rem !important
	}

	.mmt-xl-17,
	.mmy-xl-17 {
		margin-top: -1.0625rem !important
	}

	.mmr-xl-17 {
		margin-right: -1.0625rem !important
	}

	.mmb-xl-17 {
		margin-bottom: -1.0625rem !important
	}

	.mml-xl-17 {
		margin-left: -1.0625rem !important
	}

	.mm-xl-18 {
		margin: -1.125rem !important
	}

	.mmx-xl-18 {
		margin-left: -1.125rem !important;
		margin-right: -1.125rem !important
	}

	.mmy-xl-18 {
		margin-bottom: -1.125rem !important
	}

	.mmt-xl-18,
	.mmy-xl-18 {
		margin-top: -1.125rem !important
	}

	.mmr-xl-18 {
		margin-right: -1.125rem !important
	}

	.mmb-xl-18 {
		margin-bottom: -1.125rem !important
	}

	.mml-xl-18 {
		margin-left: -1.125rem !important
	}

	.mm-xl-19 {
		margin: -1.1875rem !important
	}

	.mmx-xl-19 {
		margin-left: -1.1875rem !important;
		margin-right: -1.1875rem !important
	}

	.mmy-xl-19 {
		margin-bottom: -1.1875rem !important
	}

	.mmt-xl-19,
	.mmy-xl-19 {
		margin-top: -1.1875rem !important
	}

	.mmr-xl-19 {
		margin-right: -1.1875rem !important
	}

	.mmb-xl-19 {
		margin-bottom: -1.1875rem !important
	}

	.mml-xl-19 {
		margin-left: -1.1875rem !important
	}

	.mm-xl-20 {
		margin: -1.25rem !important
	}

	.mmx-xl-20 {
		margin-left: -1.25rem !important;
		margin-right: -1.25rem !important
	}

	.mmy-xl-20 {
		margin-bottom: -1.25rem !important
	}

	.mmt-xl-20,
	.mmy-xl-20 {
		margin-top: -1.25rem !important
	}

	.mmr-xl-20 {
		margin-right: -1.25rem !important
	}

	.mmb-xl-20 {
		margin-bottom: -1.25rem !important
	}

	.mml-xl-20 {
		margin-left: -1.25rem !important
	}

	.mm-xl-21 {
		margin: -1.3125rem !important
	}

	.mmx-xl-21 {
		margin-left: -1.3125rem !important;
		margin-right: -1.3125rem !important
	}

	.mmy-xl-21 {
		margin-bottom: -1.3125rem !important
	}

	.mmt-xl-21,
	.mmy-xl-21 {
		margin-top: -1.3125rem !important
	}

	.mmr-xl-21 {
		margin-right: -1.3125rem !important
	}

	.mmb-xl-21 {
		margin-bottom: -1.3125rem !important
	}

	.mml-xl-21 {
		margin-left: -1.3125rem !important
	}

	.mm-xl-22 {
		margin: -1.375rem !important
	}

	.mmx-xl-22 {
		margin-left: -1.375rem !important;
		margin-right: -1.375rem !important
	}

	.mmy-xl-22 {
		margin-bottom: -1.375rem !important
	}

	.mmt-xl-22,
	.mmy-xl-22 {
		margin-top: -1.375rem !important
	}

	.mmr-xl-22 {
		margin-right: -1.375rem !important
	}

	.mmb-xl-22 {
		margin-bottom: -1.375rem !important
	}

	.mml-xl-22 {
		margin-left: -1.375rem !important
	}

	.mm-xl-23 {
		margin: -1.4375rem !important
	}

	.mmx-xl-23 {
		margin-left: -1.4375rem !important;
		margin-right: -1.4375rem !important
	}

	.mmy-xl-23 {
		margin-bottom: -1.4375rem !important
	}

	.mmt-xl-23,
	.mmy-xl-23 {
		margin-top: -1.4375rem !important
	}

	.mmr-xl-23 {
		margin-right: -1.4375rem !important
	}

	.mmb-xl-23 {
		margin-bottom: -1.4375rem !important
	}

	.mml-xl-23 {
		margin-left: -1.4375rem !important
	}

	.mm-xl-24 {
		margin: -1.5rem !important
	}

	.mmx-xl-24 {
		margin-left: -1.5rem !important;
		margin-right: -1.5rem !important
	}

	.mmy-xl-24 {
		margin-bottom: -1.5rem !important
	}

	.mmt-xl-24,
	.mmy-xl-24 {
		margin-top: -1.5rem !important
	}

	.mmr-xl-24 {
		margin-right: -1.5rem !important
	}

	.mmb-xl-24 {
		margin-bottom: -1.5rem !important
	}

	.mml-xl-24 {
		margin-left: -1.5rem !important
	}

	.mm-xl-25 {
		margin: -1.5625rem !important
	}

	.mmx-xl-25 {
		margin-left: -1.5625rem !important;
		margin-right: -1.5625rem !important
	}

	.mmy-xl-25 {
		margin-bottom: -1.5625rem !important
	}

	.mmt-xl-25,
	.mmy-xl-25 {
		margin-top: -1.5625rem !important
	}

	.mmr-xl-25 {
		margin-right: -1.5625rem !important
	}

	.mmb-xl-25 {
		margin-bottom: -1.5625rem !important
	}

	.mml-xl-25 {
		margin-left: -1.5625rem !important
	}

	.mm-xl-26 {
		margin: -1.625rem !important
	}

	.mmx-xl-26 {
		margin-left: -1.625rem !important;
		margin-right: -1.625rem !important
	}

	.mmy-xl-26 {
		margin-bottom: -1.625rem !important
	}

	.mmt-xl-26,
	.mmy-xl-26 {
		margin-top: -1.625rem !important
	}

	.mmr-xl-26 {
		margin-right: -1.625rem !important
	}

	.mmb-xl-26 {
		margin-bottom: -1.625rem !important
	}

	.mml-xl-26 {
		margin-left: -1.625rem !important
	}

	.mm-xl-27 {
		margin: -1.6875rem !important
	}

	.mmx-xl-27 {
		margin-left: -1.6875rem !important;
		margin-right: -1.6875rem !important
	}

	.mmy-xl-27 {
		margin-bottom: -1.6875rem !important
	}

	.mmt-xl-27,
	.mmy-xl-27 {
		margin-top: -1.6875rem !important
	}

	.mmr-xl-27 {
		margin-right: -1.6875rem !important
	}

	.mmb-xl-27 {
		margin-bottom: -1.6875rem !important
	}

	.mml-xl-27 {
		margin-left: -1.6875rem !important
	}

	.mm-xl-28 {
		margin: -1.75rem !important
	}

	.mmx-xl-28 {
		margin-left: -1.75rem !important;
		margin-right: -1.75rem !important
	}

	.mmy-xl-28 {
		margin-bottom: -1.75rem !important
	}

	.mmt-xl-28,
	.mmy-xl-28 {
		margin-top: -1.75rem !important
	}

	.mmr-xl-28 {
		margin-right: -1.75rem !important
	}

	.mmb-xl-28 {
		margin-bottom: -1.75rem !important
	}

	.mml-xl-28 {
		margin-left: -1.75rem !important
	}

	.mm-xl-29 {
		margin: -1.8125rem !important
	}

	.mmx-xl-29 {
		margin-left: -1.8125rem !important;
		margin-right: -1.8125rem !important
	}

	.mmy-xl-29 {
		margin-bottom: -1.8125rem !important
	}

	.mmt-xl-29,
	.mmy-xl-29 {
		margin-top: -1.8125rem !important
	}

	.mmr-xl-29 {
		margin-right: -1.8125rem !important
	}

	.mmb-xl-29 {
		margin-bottom: -1.8125rem !important
	}

	.mml-xl-29 {
		margin-left: -1.8125rem !important
	}

	.mm-xl-30 {
		margin: -1.875rem !important
	}

	.mmx-xl-30 {
		margin-left: -1.875rem !important;
		margin-right: -1.875rem !important
	}

	.mmy-xl-30 {
		margin-bottom: -1.875rem !important
	}

	.mmt-xl-30,
	.mmy-xl-30 {
		margin-top: -1.875rem !important
	}

	.mmr-xl-30 {
		margin-right: -1.875rem !important
	}

	.mmb-xl-30 {
		margin-bottom: -1.875rem !important
	}

	.mml-xl-30 {
		margin-left: -1.875rem !important
	}

	.mm-xl-31 {
		margin: -1.9375rem !important
	}

	.mmx-xl-31 {
		margin-left: -1.9375rem !important;
		margin-right: -1.9375rem !important
	}

	.mmy-xl-31 {
		margin-bottom: -1.9375rem !important
	}

	.mmt-xl-31,
	.mmy-xl-31 {
		margin-top: -1.9375rem !important
	}

	.mmr-xl-31 {
		margin-right: -1.9375rem !important
	}

	.mmb-xl-31 {
		margin-bottom: -1.9375rem !important
	}

	.mml-xl-31 {
		margin-left: -1.9375rem !important
	}

	.mm-xl-32 {
		margin: -2rem !important
	}

	.mmx-xl-32 {
		margin-left: -2rem !important;
		margin-right: -2rem !important
	}

	.mmy-xl-32 {
		margin-bottom: -2rem !important
	}

	.mmt-xl-32,
	.mmy-xl-32 {
		margin-top: -2rem !important
	}

	.mmr-xl-32 {
		margin-right: -2rem !important
	}

	.mmb-xl-32 {
		margin-bottom: -2rem !important
	}

	.mml-xl-32 {
		margin-left: -2rem !important
	}

	.mm-xl-33 {
		margin: -2.0625rem !important
	}

	.mmx-xl-33 {
		margin-left: -2.0625rem !important;
		margin-right: -2.0625rem !important
	}

	.mmy-xl-33 {
		margin-bottom: -2.0625rem !important
	}

	.mmt-xl-33,
	.mmy-xl-33 {
		margin-top: -2.0625rem !important
	}

	.mmr-xl-33 {
		margin-right: -2.0625rem !important
	}

	.mmb-xl-33 {
		margin-bottom: -2.0625rem !important
	}

	.mml-xl-33 {
		margin-left: -2.0625rem !important
	}

	.mm-xl-34 {
		margin: -2.125rem !important
	}

	.mmx-xl-34 {
		margin-left: -2.125rem !important;
		margin-right: -2.125rem !important
	}

	.mmy-xl-34 {
		margin-bottom: -2.125rem !important
	}

	.mmt-xl-34,
	.mmy-xl-34 {
		margin-top: -2.125rem !important
	}

	.mmr-xl-34 {
		margin-right: -2.125rem !important
	}

	.mmb-xl-34 {
		margin-bottom: -2.125rem !important
	}

	.mml-xl-34 {
		margin-left: -2.125rem !important
	}

	.mm-xl-35 {
		margin: -2.1875rem !important
	}

	.mmx-xl-35 {
		margin-left: -2.1875rem !important;
		margin-right: -2.1875rem !important
	}

	.mmy-xl-35 {
		margin-bottom: -2.1875rem !important
	}

	.mmt-xl-35,
	.mmy-xl-35 {
		margin-top: -2.1875rem !important
	}

	.mmr-xl-35 {
		margin-right: -2.1875rem !important
	}

	.mmb-xl-35 {
		margin-bottom: -2.1875rem !important
	}

	.mml-xl-35 {
		margin-left: -2.1875rem !important
	}

	.mm-xl-36 {
		margin: -2.25rem !important
	}

	.mmx-xl-36 {
		margin-left: -2.25rem !important;
		margin-right: -2.25rem !important
	}

	.mmy-xl-36 {
		margin-bottom: -2.25rem !important
	}

	.mmt-xl-36,
	.mmy-xl-36 {
		margin-top: -2.25rem !important
	}

	.mmr-xl-36 {
		margin-right: -2.25rem !important
	}

	.mmb-xl-36 {
		margin-bottom: -2.25rem !important
	}

	.mml-xl-36 {
		margin-left: -2.25rem !important
	}

	.mm-xl-37 {
		margin: -2.3125rem !important
	}

	.mmx-xl-37 {
		margin-left: -2.3125rem !important;
		margin-right: -2.3125rem !important
	}

	.mmy-xl-37 {
		margin-bottom: -2.3125rem !important
	}

	.mmt-xl-37,
	.mmy-xl-37 {
		margin-top: -2.3125rem !important
	}

	.mmr-xl-37 {
		margin-right: -2.3125rem !important
	}

	.mmb-xl-37 {
		margin-bottom: -2.3125rem !important
	}

	.mml-xl-37 {
		margin-left: -2.3125rem !important
	}

	.mm-xl-38 {
		margin: -2.375rem !important
	}

	.mmx-xl-38 {
		margin-left: -2.375rem !important;
		margin-right: -2.375rem !important
	}

	.mmy-xl-38 {
		margin-bottom: -2.375rem !important
	}

	.mmt-xl-38,
	.mmy-xl-38 {
		margin-top: -2.375rem !important
	}

	.mmr-xl-38 {
		margin-right: -2.375rem !important
	}

	.mmb-xl-38 {
		margin-bottom: -2.375rem !important
	}

	.mml-xl-38 {
		margin-left: -2.375rem !important
	}

	.mm-xl-39 {
		margin: -2.4375rem !important
	}

	.mmx-xl-39 {
		margin-left: -2.4375rem !important;
		margin-right: -2.4375rem !important
	}

	.mmy-xl-39 {
		margin-bottom: -2.4375rem !important
	}

	.mmt-xl-39,
	.mmy-xl-39 {
		margin-top: -2.4375rem !important
	}

	.mmr-xl-39 {
		margin-right: -2.4375rem !important
	}

	.mmb-xl-39 {
		margin-bottom: -2.4375rem !important
	}

	.mml-xl-39 {
		margin-left: -2.4375rem !important
	}

	.mm-xl-40 {
		margin: -2.5rem !important
	}

	.mmx-xl-40 {
		margin-left: -2.5rem !important;
		margin-right: -2.5rem !important
	}

	.mmy-xl-40 {
		margin-bottom: -2.5rem !important
	}

	.mmt-xl-40,
	.mmy-xl-40 {
		margin-top: -2.5rem !important
	}

	.mmr-xl-40 {
		margin-right: -2.5rem !important
	}

	.mmb-xl-40 {
		margin-bottom: -2.5rem !important
	}

	.mml-xl-40 {
		margin-left: -2.5rem !important
	}

	.mm-xl-41 {
		margin: -2.5625rem !important
	}

	.mmx-xl-41 {
		margin-left: -2.5625rem !important;
		margin-right: -2.5625rem !important
	}

	.mmy-xl-41 {
		margin-bottom: -2.5625rem !important
	}

	.mmt-xl-41,
	.mmy-xl-41 {
		margin-top: -2.5625rem !important
	}

	.mmr-xl-41 {
		margin-right: -2.5625rem !important
	}

	.mmb-xl-41 {
		margin-bottom: -2.5625rem !important
	}

	.mml-xl-41 {
		margin-left: -2.5625rem !important
	}

	.mm-xl-42 {
		margin: -2.625rem !important
	}

	.mmx-xl-42 {
		margin-left: -2.625rem !important;
		margin-right: -2.625rem !important
	}

	.mmy-xl-42 {
		margin-bottom: -2.625rem !important
	}

	.mmt-xl-42,
	.mmy-xl-42 {
		margin-top: -2.625rem !important
	}

	.mmr-xl-42 {
		margin-right: -2.625rem !important
	}

	.mmb-xl-42 {
		margin-bottom: -2.625rem !important
	}

	.mml-xl-42 {
		margin-left: -2.625rem !important
	}

	.mm-xl-43 {
		margin: -2.6875rem !important
	}

	.mmx-xl-43 {
		margin-left: -2.6875rem !important;
		margin-right: -2.6875rem !important
	}

	.mmy-xl-43 {
		margin-bottom: -2.6875rem !important
	}

	.mmt-xl-43,
	.mmy-xl-43 {
		margin-top: -2.6875rem !important
	}

	.mmr-xl-43 {
		margin-right: -2.6875rem !important
	}

	.mmb-xl-43 {
		margin-bottom: -2.6875rem !important
	}

	.mml-xl-43 {
		margin-left: -2.6875rem !important
	}

	.mm-xl-44 {
		margin: -2.75rem !important
	}

	.mmx-xl-44 {
		margin-left: -2.75rem !important;
		margin-right: -2.75rem !important
	}

	.mmy-xl-44 {
		margin-bottom: -2.75rem !important
	}

	.mmt-xl-44,
	.mmy-xl-44 {
		margin-top: -2.75rem !important
	}

	.mmr-xl-44 {
		margin-right: -2.75rem !important
	}

	.mmb-xl-44 {
		margin-bottom: -2.75rem !important
	}

	.mml-xl-44 {
		margin-left: -2.75rem !important
	}

	.mm-xl-45 {
		margin: -2.8125rem !important
	}

	.mmx-xl-45 {
		margin-left: -2.8125rem !important;
		margin-right: -2.8125rem !important
	}

	.mmy-xl-45 {
		margin-bottom: -2.8125rem !important
	}

	.mmt-xl-45,
	.mmy-xl-45 {
		margin-top: -2.8125rem !important
	}

	.mmr-xl-45 {
		margin-right: -2.8125rem !important
	}

	.mmb-xl-45 {
		margin-bottom: -2.8125rem !important
	}

	.mml-xl-45 {
		margin-left: -2.8125rem !important
	}

	.mm-xl-46 {
		margin: -2.875rem !important
	}

	.mmx-xl-46 {
		margin-left: -2.875rem !important;
		margin-right: -2.875rem !important
	}

	.mmy-xl-46 {
		margin-bottom: -2.875rem !important
	}

	.mmt-xl-46,
	.mmy-xl-46 {
		margin-top: -2.875rem !important
	}

	.mmr-xl-46 {
		margin-right: -2.875rem !important
	}

	.mmb-xl-46 {
		margin-bottom: -2.875rem !important
	}

	.mml-xl-46 {
		margin-left: -2.875rem !important
	}

	.mm-xl-47 {
		margin: -2.9375rem !important
	}

	.mmx-xl-47 {
		margin-left: -2.9375rem !important;
		margin-right: -2.9375rem !important
	}

	.mmy-xl-47 {
		margin-bottom: -2.9375rem !important
	}

	.mmt-xl-47,
	.mmy-xl-47 {
		margin-top: -2.9375rem !important
	}

	.mmr-xl-47 {
		margin-right: -2.9375rem !important
	}

	.mmb-xl-47 {
		margin-bottom: -2.9375rem !important
	}

	.mml-xl-47 {
		margin-left: -2.9375rem !important
	}

	.mm-xl-48 {
		margin: -3rem !important
	}

	.mmx-xl-48 {
		margin-left: -3rem !important;
		margin-right: -3rem !important
	}

	.mmy-xl-48 {
		margin-bottom: -3rem !important
	}

	.mmt-xl-48,
	.mmy-xl-48 {
		margin-top: -3rem !important
	}

	.mmr-xl-48 {
		margin-right: -3rem !important
	}

	.mmb-xl-48 {
		margin-bottom: -3rem !important
	}

	.mml-xl-48 {
		margin-left: -3rem !important
	}

	.mm-xl-49 {
		margin: -3.0625rem !important
	}

	.mmx-xl-49 {
		margin-left: -3.0625rem !important;
		margin-right: -3.0625rem !important
	}

	.mmy-xl-49 {
		margin-bottom: -3.0625rem !important
	}

	.mmt-xl-49,
	.mmy-xl-49 {
		margin-top: -3.0625rem !important
	}

	.mmr-xl-49 {
		margin-right: -3.0625rem !important
	}

	.mmb-xl-49 {
		margin-bottom: -3.0625rem !important
	}

	.mml-xl-49 {
		margin-left: -3.0625rem !important
	}

	.mm-xl-50 {
		margin: -3.125rem !important
	}

	.mmx-xl-50 {
		margin-left: -3.125rem !important;
		margin-right: -3.125rem !important
	}

	.mmy-xl-50 {
		margin-bottom: -3.125rem !important
	}

	.mmt-xl-50,
	.mmy-xl-50 {
		margin-top: -3.125rem !important
	}

	.mmr-xl-50 {
		margin-right: -3.125rem !important
	}

	.mmb-xl-50 {
		margin-bottom: -3.125rem !important
	}

	.mml-xl-50 {
		margin-left: -3.125rem !important
	}

	.mm-xl-51 {
		margin: -3.1875rem !important
	}

	.mmx-xl-51 {
		margin-left: -3.1875rem !important;
		margin-right: -3.1875rem !important
	}

	.mmy-xl-51 {
		margin-bottom: -3.1875rem !important
	}

	.mmt-xl-51,
	.mmy-xl-51 {
		margin-top: -3.1875rem !important
	}

	.mmr-xl-51 {
		margin-right: -3.1875rem !important
	}

	.mmb-xl-51 {
		margin-bottom: -3.1875rem !important
	}

	.mml-xl-51 {
		margin-left: -3.1875rem !important
	}

	.mm-xl-52 {
		margin: -3.25rem !important
	}

	.mmx-xl-52 {
		margin-left: -3.25rem !important;
		margin-right: -3.25rem !important
	}

	.mmy-xl-52 {
		margin-bottom: -3.25rem !important
	}

	.mmt-xl-52,
	.mmy-xl-52 {
		margin-top: -3.25rem !important
	}

	.mmr-xl-52 {
		margin-right: -3.25rem !important
	}

	.mmb-xl-52 {
		margin-bottom: -3.25rem !important
	}

	.mml-xl-52 {
		margin-left: -3.25rem !important
	}

	.mm-xl-53 {
		margin: -3.3125rem !important
	}

	.mmx-xl-53 {
		margin-left: -3.3125rem !important;
		margin-right: -3.3125rem !important
	}

	.mmy-xl-53 {
		margin-bottom: -3.3125rem !important
	}

	.mmt-xl-53,
	.mmy-xl-53 {
		margin-top: -3.3125rem !important
	}

	.mmr-xl-53 {
		margin-right: -3.3125rem !important
	}

	.mmb-xl-53 {
		margin-bottom: -3.3125rem !important
	}

	.mml-xl-53 {
		margin-left: -3.3125rem !important
	}

	.mm-xl-54 {
		margin: -3.375rem !important
	}

	.mmx-xl-54 {
		margin-left: -3.375rem !important;
		margin-right: -3.375rem !important
	}

	.mmy-xl-54 {
		margin-bottom: -3.375rem !important
	}

	.mmt-xl-54,
	.mmy-xl-54 {
		margin-top: -3.375rem !important
	}

	.mmr-xl-54 {
		margin-right: -3.375rem !important
	}

	.mmb-xl-54 {
		margin-bottom: -3.375rem !important
	}

	.mml-xl-54 {
		margin-left: -3.375rem !important
	}

	.mm-xl-55 {
		margin: -3.4375rem !important
	}

	.mmx-xl-55 {
		margin-left: -3.4375rem !important;
		margin-right: -3.4375rem !important
	}

	.mmy-xl-55 {
		margin-bottom: -3.4375rem !important
	}

	.mmt-xl-55,
	.mmy-xl-55 {
		margin-top: -3.4375rem !important
	}

	.mmr-xl-55 {
		margin-right: -3.4375rem !important
	}

	.mmb-xl-55 {
		margin-bottom: -3.4375rem !important
	}

	.mml-xl-55 {
		margin-left: -3.4375rem !important
	}

	.mm-xl-56 {
		margin: -3.5rem !important
	}

	.mmx-xl-56 {
		margin-left: -3.5rem !important;
		margin-right: -3.5rem !important
	}

	.mmy-xl-56 {
		margin-bottom: -3.5rem !important
	}

	.mmt-xl-56,
	.mmy-xl-56 {
		margin-top: -3.5rem !important
	}

	.mmr-xl-56 {
		margin-right: -3.5rem !important
	}

	.mmb-xl-56 {
		margin-bottom: -3.5rem !important
	}

	.mml-xl-56 {
		margin-left: -3.5rem !important
	}

	.mm-xl-57 {
		margin: -3.5625rem !important
	}

	.mmx-xl-57 {
		margin-left: -3.5625rem !important;
		margin-right: -3.5625rem !important
	}

	.mmy-xl-57 {
		margin-bottom: -3.5625rem !important
	}

	.mmt-xl-57,
	.mmy-xl-57 {
		margin-top: -3.5625rem !important
	}

	.mmr-xl-57 {
		margin-right: -3.5625rem !important
	}

	.mmb-xl-57 {
		margin-bottom: -3.5625rem !important
	}

	.mml-xl-57 {
		margin-left: -3.5625rem !important
	}

	.mm-xl-58 {
		margin: -3.625rem !important
	}

	.mmx-xl-58 {
		margin-left: -3.625rem !important;
		margin-right: -3.625rem !important
	}

	.mmy-xl-58 {
		margin-bottom: -3.625rem !important
	}

	.mmt-xl-58,
	.mmy-xl-58 {
		margin-top: -3.625rem !important
	}

	.mmr-xl-58 {
		margin-right: -3.625rem !important
	}

	.mmb-xl-58 {
		margin-bottom: -3.625rem !important
	}

	.mml-xl-58 {
		margin-left: -3.625rem !important
	}

	.mm-xl-59 {
		margin: -3.6875rem !important
	}

	.mmx-xl-59 {
		margin-left: -3.6875rem !important;
		margin-right: -3.6875rem !important
	}

	.mmy-xl-59 {
		margin-bottom: -3.6875rem !important
	}

	.mmt-xl-59,
	.mmy-xl-59 {
		margin-top: -3.6875rem !important
	}

	.mmr-xl-59 {
		margin-right: -3.6875rem !important
	}

	.mmb-xl-59 {
		margin-bottom: -3.6875rem !important
	}

	.mml-xl-59 {
		margin-left: -3.6875rem !important
	}

	.mm-xl-60 {
		margin: -3.75rem !important
	}

	.mmx-xl-60 {
		margin-left: -3.75rem !important;
		margin-right: -3.75rem !important
	}

	.mmy-xl-60 {
		margin-bottom: -3.75rem !important
	}

	.mmt-xl-60,
	.mmy-xl-60 {
		margin-top: -3.75rem !important
	}

	.mmr-xl-60 {
		margin-right: -3.75rem !important
	}

	.mmb-xl-60 {
		margin-bottom: -3.75rem !important
	}

	.mml-xl-60 {
		margin-left: -3.75rem !important
	}

	.mm-xl-61 {
		margin: -3.8125rem !important
	}

	.mmx-xl-61 {
		margin-left: -3.8125rem !important;
		margin-right: -3.8125rem !important
	}

	.mmy-xl-61 {
		margin-bottom: -3.8125rem !important
	}

	.mmt-xl-61,
	.mmy-xl-61 {
		margin-top: -3.8125rem !important
	}

	.mmr-xl-61 {
		margin-right: -3.8125rem !important
	}

	.mmb-xl-61 {
		margin-bottom: -3.8125rem !important
	}

	.mml-xl-61 {
		margin-left: -3.8125rem !important
	}

	.mm-xl-62 {
		margin: -3.875rem !important
	}

	.mmx-xl-62 {
		margin-left: -3.875rem !important;
		margin-right: -3.875rem !important
	}

	.mmy-xl-62 {
		margin-bottom: -3.875rem !important
	}

	.mmt-xl-62,
	.mmy-xl-62 {
		margin-top: -3.875rem !important
	}

	.mmr-xl-62 {
		margin-right: -3.875rem !important
	}

	.mmb-xl-62 {
		margin-bottom: -3.875rem !important
	}

	.mml-xl-62 {
		margin-left: -3.875rem !important
	}

	.mm-xl-63 {
		margin: -3.9375rem !important
	}

	.mmx-xl-63 {
		margin-left: -3.9375rem !important;
		margin-right: -3.9375rem !important
	}

	.mmy-xl-63 {
		margin-bottom: -3.9375rem !important
	}

	.mmt-xl-63,
	.mmy-xl-63 {
		margin-top: -3.9375rem !important
	}

	.mmr-xl-63 {
		margin-right: -3.9375rem !important
	}

	.mmb-xl-63 {
		margin-bottom: -3.9375rem !important
	}

	.mml-xl-63 {
		margin-left: -3.9375rem !important
	}

	.mm-xl-64 {
		margin: -4rem !important
	}

	.mmx-xl-64 {
		margin-left: -4rem !important;
		margin-right: -4rem !important
	}

	.mmy-xl-64 {
		margin-bottom: -4rem !important
	}

	.mmt-xl-64,
	.mmy-xl-64 {
		margin-top: -4rem !important
	}

	.mmr-xl-64 {
		margin-right: -4rem !important
	}

	.mmb-xl-64 {
		margin-bottom: -4rem !important
	}

	.mml-xl-64 {
		margin-left: -4rem !important
	}

	.mm-xl-65 {
		margin: -4.0625rem !important
	}

	.mmx-xl-65 {
		margin-left: -4.0625rem !important;
		margin-right: -4.0625rem !important
	}

	.mmy-xl-65 {
		margin-bottom: -4.0625rem !important
	}

	.mmt-xl-65,
	.mmy-xl-65 {
		margin-top: -4.0625rem !important
	}

	.mmr-xl-65 {
		margin-right: -4.0625rem !important
	}

	.mmb-xl-65 {
		margin-bottom: -4.0625rem !important
	}

	.mml-xl-65 {
		margin-left: -4.0625rem !important
	}

	.mm-xl-66 {
		margin: -4.125rem !important
	}

	.mmx-xl-66 {
		margin-left: -4.125rem !important;
		margin-right: -4.125rem !important
	}

	.mmy-xl-66 {
		margin-bottom: -4.125rem !important
	}

	.mmt-xl-66,
	.mmy-xl-66 {
		margin-top: -4.125rem !important
	}

	.mmr-xl-66 {
		margin-right: -4.125rem !important
	}

	.mmb-xl-66 {
		margin-bottom: -4.125rem !important
	}

	.mml-xl-66 {
		margin-left: -4.125rem !important
	}

	.mm-xl-67 {
		margin: -4.1875rem !important
	}

	.mmx-xl-67 {
		margin-left: -4.1875rem !important;
		margin-right: -4.1875rem !important
	}

	.mmy-xl-67 {
		margin-bottom: -4.1875rem !important
	}

	.mmt-xl-67,
	.mmy-xl-67 {
		margin-top: -4.1875rem !important
	}

	.mmr-xl-67 {
		margin-right: -4.1875rem !important
	}

	.mmb-xl-67 {
		margin-bottom: -4.1875rem !important
	}

	.mml-xl-67 {
		margin-left: -4.1875rem !important
	}

	.mm-xl-68 {
		margin: -4.25rem !important
	}

	.mmx-xl-68 {
		margin-left: -4.25rem !important;
		margin-right: -4.25rem !important
	}

	.mmy-xl-68 {
		margin-bottom: -4.25rem !important
	}

	.mmt-xl-68,
	.mmy-xl-68 {
		margin-top: -4.25rem !important
	}

	.mmr-xl-68 {
		margin-right: -4.25rem !important
	}

	.mmb-xl-68 {
		margin-bottom: -4.25rem !important
	}

	.mml-xl-68 {
		margin-left: -4.25rem !important
	}

	.mm-xl-69 {
		margin: -4.3125rem !important
	}

	.mmx-xl-69 {
		margin-left: -4.3125rem !important;
		margin-right: -4.3125rem !important
	}

	.mmy-xl-69 {
		margin-bottom: -4.3125rem !important
	}

	.mmt-xl-69,
	.mmy-xl-69 {
		margin-top: -4.3125rem !important
	}

	.mmr-xl-69 {
		margin-right: -4.3125rem !important
	}

	.mmb-xl-69 {
		margin-bottom: -4.3125rem !important
	}

	.mml-xl-69 {
		margin-left: -4.3125rem !important
	}

	.mm-xl-70 {
		margin: -4.375rem !important
	}

	.mmx-xl-70 {
		margin-left: -4.375rem !important;
		margin-right: -4.375rem !important
	}

	.mmy-xl-70 {
		margin-bottom: -4.375rem !important
	}

	.mmt-xl-70,
	.mmy-xl-70 {
		margin-top: -4.375rem !important
	}

	.mmr-xl-70 {
		margin-right: -4.375rem !important
	}

	.mmb-xl-70 {
		margin-bottom: -4.375rem !important
	}

	.mml-xl-70 {
		margin-left: -4.375rem !important
	}

	.mm-xl-71 {
		margin: -4.4375rem !important
	}

	.mmx-xl-71 {
		margin-left: -4.4375rem !important;
		margin-right: -4.4375rem !important
	}

	.mmy-xl-71 {
		margin-bottom: -4.4375rem !important
	}

	.mmt-xl-71,
	.mmy-xl-71 {
		margin-top: -4.4375rem !important
	}

	.mmr-xl-71 {
		margin-right: -4.4375rem !important
	}

	.mmb-xl-71 {
		margin-bottom: -4.4375rem !important
	}

	.mml-xl-71 {
		margin-left: -4.4375rem !important
	}

	.mm-xl-72 {
		margin: -4.5rem !important
	}

	.mmx-xl-72 {
		margin-left: -4.5rem !important;
		margin-right: -4.5rem !important
	}

	.mmy-xl-72 {
		margin-bottom: -4.5rem !important
	}

	.mmt-xl-72,
	.mmy-xl-72 {
		margin-top: -4.5rem !important
	}

	.mmr-xl-72 {
		margin-right: -4.5rem !important
	}

	.mmb-xl-72 {
		margin-bottom: -4.5rem !important
	}

	.mml-xl-72 {
		margin-left: -4.5rem !important
	}

	.mm-xl-73 {
		margin: -4.5625rem !important
	}

	.mmx-xl-73 {
		margin-left: -4.5625rem !important;
		margin-right: -4.5625rem !important
	}

	.mmy-xl-73 {
		margin-bottom: -4.5625rem !important
	}

	.mmt-xl-73,
	.mmy-xl-73 {
		margin-top: -4.5625rem !important
	}

	.mmr-xl-73 {
		margin-right: -4.5625rem !important
	}

	.mmb-xl-73 {
		margin-bottom: -4.5625rem !important
	}

	.mml-xl-73 {
		margin-left: -4.5625rem !important
	}

	.mm-xl-74 {
		margin: -4.625rem !important
	}

	.mmx-xl-74 {
		margin-left: -4.625rem !important;
		margin-right: -4.625rem !important
	}

	.mmy-xl-74 {
		margin-bottom: -4.625rem !important
	}

	.mmt-xl-74,
	.mmy-xl-74 {
		margin-top: -4.625rem !important
	}

	.mmr-xl-74 {
		margin-right: -4.625rem !important
	}

	.mmb-xl-74 {
		margin-bottom: -4.625rem !important
	}

	.mml-xl-74 {
		margin-left: -4.625rem !important
	}

	.mm-xl-75 {
		margin: -4.6875rem !important
	}

	.mmx-xl-75 {
		margin-left: -4.6875rem !important;
		margin-right: -4.6875rem !important
	}

	.mmy-xl-75 {
		margin-bottom: -4.6875rem !important
	}

	.mmt-xl-75,
	.mmy-xl-75 {
		margin-top: -4.6875rem !important
	}

	.mmr-xl-75 {
		margin-right: -4.6875rem !important
	}

	.mmb-xl-75 {
		margin-bottom: -4.6875rem !important
	}

	.mml-xl-75 {
		margin-left: -4.6875rem !important
	}

	.mm-xl-76 {
		margin: -4.75rem !important
	}

	.mmx-xl-76 {
		margin-left: -4.75rem !important;
		margin-right: -4.75rem !important
	}

	.mmy-xl-76 {
		margin-bottom: -4.75rem !important
	}

	.mmt-xl-76,
	.mmy-xl-76 {
		margin-top: -4.75rem !important
	}

	.mmr-xl-76 {
		margin-right: -4.75rem !important
	}

	.mmb-xl-76 {
		margin-bottom: -4.75rem !important
	}

	.mml-xl-76 {
		margin-left: -4.75rem !important
	}

	.mm-xl-77 {
		margin: -4.8125rem !important
	}

	.mmx-xl-77 {
		margin-left: -4.8125rem !important;
		margin-right: -4.8125rem !important
	}

	.mmy-xl-77 {
		margin-bottom: -4.8125rem !important
	}

	.mmt-xl-77,
	.mmy-xl-77 {
		margin-top: -4.8125rem !important
	}

	.mmr-xl-77 {
		margin-right: -4.8125rem !important
	}

	.mmb-xl-77 {
		margin-bottom: -4.8125rem !important
	}

	.mml-xl-77 {
		margin-left: -4.8125rem !important
	}

	.mm-xl-78 {
		margin: -4.875rem !important
	}

	.mmx-xl-78 {
		margin-left: -4.875rem !important;
		margin-right: -4.875rem !important
	}

	.mmy-xl-78 {
		margin-bottom: -4.875rem !important
	}

	.mmt-xl-78,
	.mmy-xl-78 {
		margin-top: -4.875rem !important
	}

	.mmr-xl-78 {
		margin-right: -4.875rem !important
	}

	.mmb-xl-78 {
		margin-bottom: -4.875rem !important
	}

	.mml-xl-78 {
		margin-left: -4.875rem !important
	}

	.mm-xl-79 {
		margin: -4.9375rem !important
	}

	.mmx-xl-79 {
		margin-left: -4.9375rem !important;
		margin-right: -4.9375rem !important
	}

	.mmy-xl-79 {
		margin-bottom: -4.9375rem !important
	}

	.mmt-xl-79,
	.mmy-xl-79 {
		margin-top: -4.9375rem !important
	}

	.mmr-xl-79 {
		margin-right: -4.9375rem !important
	}

	.mmb-xl-79 {
		margin-bottom: -4.9375rem !important
	}

	.mml-xl-79 {
		margin-left: -4.9375rem !important
	}

	.mm-xl-80 {
		margin: -5rem !important
	}

	.mmx-xl-80 {
		margin-left: -5rem !important;
		margin-right: -5rem !important
	}

	.mmy-xl-80 {
		margin-bottom: -5rem !important
	}

	.mmt-xl-80,
	.mmy-xl-80 {
		margin-top: -5rem !important
	}

	.mmr-xl-80 {
		margin-right: -5rem !important
	}

	.mmb-xl-80 {
		margin-bottom: -5rem !important
	}

	.mml-xl-80 {
		margin-left: -5rem !important
	}

	.mm-xl-81 {
		margin: -5.0625rem !important
	}

	.mmx-xl-81 {
		margin-left: -5.0625rem !important;
		margin-right: -5.0625rem !important
	}

	.mmy-xl-81 {
		margin-bottom: -5.0625rem !important
	}

	.mmt-xl-81,
	.mmy-xl-81 {
		margin-top: -5.0625rem !important
	}

	.mmr-xl-81 {
		margin-right: -5.0625rem !important
	}

	.mmb-xl-81 {
		margin-bottom: -5.0625rem !important
	}

	.mml-xl-81 {
		margin-left: -5.0625rem !important
	}

	.mm-xl-82 {
		margin: -5.125rem !important
	}

	.mmx-xl-82 {
		margin-left: -5.125rem !important;
		margin-right: -5.125rem !important
	}

	.mmy-xl-82 {
		margin-bottom: -5.125rem !important
	}

	.mmt-xl-82,
	.mmy-xl-82 {
		margin-top: -5.125rem !important
	}

	.mmr-xl-82 {
		margin-right: -5.125rem !important
	}

	.mmb-xl-82 {
		margin-bottom: -5.125rem !important
	}

	.mml-xl-82 {
		margin-left: -5.125rem !important
	}

	.mm-xl-83 {
		margin: -5.1875rem !important
	}

	.mmx-xl-83 {
		margin-left: -5.1875rem !important;
		margin-right: -5.1875rem !important
	}

	.mmy-xl-83 {
		margin-bottom: -5.1875rem !important
	}

	.mmt-xl-83,
	.mmy-xl-83 {
		margin-top: -5.1875rem !important
	}

	.mmr-xl-83 {
		margin-right: -5.1875rem !important
	}

	.mmb-xl-83 {
		margin-bottom: -5.1875rem !important
	}

	.mml-xl-83 {
		margin-left: -5.1875rem !important
	}

	.mm-xl-84 {
		margin: -5.25rem !important
	}

	.mmx-xl-84 {
		margin-left: -5.25rem !important;
		margin-right: -5.25rem !important
	}

	.mmy-xl-84 {
		margin-bottom: -5.25rem !important
	}

	.mmt-xl-84,
	.mmy-xl-84 {
		margin-top: -5.25rem !important
	}

	.mmr-xl-84 {
		margin-right: -5.25rem !important
	}

	.mmb-xl-84 {
		margin-bottom: -5.25rem !important
	}

	.mml-xl-84 {
		margin-left: -5.25rem !important
	}

	.mm-xl-85 {
		margin: -5.3125rem !important
	}

	.mmx-xl-85 {
		margin-left: -5.3125rem !important;
		margin-right: -5.3125rem !important
	}

	.mmy-xl-85 {
		margin-bottom: -5.3125rem !important
	}

	.mmt-xl-85,
	.mmy-xl-85 {
		margin-top: -5.3125rem !important
	}

	.mmr-xl-85 {
		margin-right: -5.3125rem !important
	}

	.mmb-xl-85 {
		margin-bottom: -5.3125rem !important
	}

	.mml-xl-85 {
		margin-left: -5.3125rem !important
	}

	.mm-xl-86 {
		margin: -5.375rem !important
	}

	.mmx-xl-86 {
		margin-left: -5.375rem !important;
		margin-right: -5.375rem !important
	}

	.mmy-xl-86 {
		margin-bottom: -5.375rem !important
	}

	.mmt-xl-86,
	.mmy-xl-86 {
		margin-top: -5.375rem !important
	}

	.mmr-xl-86 {
		margin-right: -5.375rem !important
	}

	.mmb-xl-86 {
		margin-bottom: -5.375rem !important
	}

	.mml-xl-86 {
		margin-left: -5.375rem !important
	}

	.mm-xl-87 {
		margin: -5.4375rem !important
	}

	.mmx-xl-87 {
		margin-left: -5.4375rem !important;
		margin-right: -5.4375rem !important
	}

	.mmy-xl-87 {
		margin-bottom: -5.4375rem !important
	}

	.mmt-xl-87,
	.mmy-xl-87 {
		margin-top: -5.4375rem !important
	}

	.mmr-xl-87 {
		margin-right: -5.4375rem !important
	}

	.mmb-xl-87 {
		margin-bottom: -5.4375rem !important
	}

	.mml-xl-87 {
		margin-left: -5.4375rem !important
	}

	.mm-xl-88 {
		margin: -5.5rem !important
	}

	.mmx-xl-88 {
		margin-left: -5.5rem !important;
		margin-right: -5.5rem !important
	}

	.mmy-xl-88 {
		margin-bottom: -5.5rem !important
	}

	.mmt-xl-88,
	.mmy-xl-88 {
		margin-top: -5.5rem !important
	}

	.mmr-xl-88 {
		margin-right: -5.5rem !important
	}

	.mmb-xl-88 {
		margin-bottom: -5.5rem !important
	}

	.mml-xl-88 {
		margin-left: -5.5rem !important
	}

	.mm-xl-89 {
		margin: -5.5625rem !important
	}

	.mmx-xl-89 {
		margin-left: -5.5625rem !important;
		margin-right: -5.5625rem !important
	}

	.mmy-xl-89 {
		margin-bottom: -5.5625rem !important
	}

	.mmt-xl-89,
	.mmy-xl-89 {
		margin-top: -5.5625rem !important
	}

	.mmr-xl-89 {
		margin-right: -5.5625rem !important
	}

	.mmb-xl-89 {
		margin-bottom: -5.5625rem !important
	}

	.mml-xl-89 {
		margin-left: -5.5625rem !important
	}

	.mm-xl-90 {
		margin: -5.625rem !important
	}

	.mmx-xl-90 {
		margin-left: -5.625rem !important;
		margin-right: -5.625rem !important
	}

	.mmy-xl-90 {
		margin-bottom: -5.625rem !important
	}

	.mmt-xl-90,
	.mmy-xl-90 {
		margin-top: -5.625rem !important
	}

	.mmr-xl-90 {
		margin-right: -5.625rem !important
	}

	.mmb-xl-90 {
		margin-bottom: -5.625rem !important
	}

	.mml-xl-90 {
		margin-left: -5.625rem !important
	}

	.mm-xl-91 {
		margin: -5.6875rem !important
	}

	.mmx-xl-91 {
		margin-left: -5.6875rem !important;
		margin-right: -5.6875rem !important
	}

	.mmy-xl-91 {
		margin-bottom: -5.6875rem !important
	}

	.mmt-xl-91,
	.mmy-xl-91 {
		margin-top: -5.6875rem !important
	}

	.mmr-xl-91 {
		margin-right: -5.6875rem !important
	}

	.mmb-xl-91 {
		margin-bottom: -5.6875rem !important
	}

	.mml-xl-91 {
		margin-left: -5.6875rem !important
	}

	.mm-xl-92 {
		margin: -5.75rem !important
	}

	.mmx-xl-92 {
		margin-left: -5.75rem !important;
		margin-right: -5.75rem !important
	}

	.mmy-xl-92 {
		margin-bottom: -5.75rem !important
	}

	.mmt-xl-92,
	.mmy-xl-92 {
		margin-top: -5.75rem !important
	}

	.mmr-xl-92 {
		margin-right: -5.75rem !important
	}

	.mmb-xl-92 {
		margin-bottom: -5.75rem !important
	}

	.mml-xl-92 {
		margin-left: -5.75rem !important
	}

	.mm-xl-93 {
		margin: -5.8125rem !important
	}

	.mmx-xl-93 {
		margin-left: -5.8125rem !important;
		margin-right: -5.8125rem !important
	}

	.mmy-xl-93 {
		margin-bottom: -5.8125rem !important
	}

	.mmt-xl-93,
	.mmy-xl-93 {
		margin-top: -5.8125rem !important
	}

	.mmr-xl-93 {
		margin-right: -5.8125rem !important
	}

	.mmb-xl-93 {
		margin-bottom: -5.8125rem !important
	}

	.mml-xl-93 {
		margin-left: -5.8125rem !important
	}

	.mm-xl-94 {
		margin: -5.875rem !important
	}

	.mmx-xl-94 {
		margin-left: -5.875rem !important;
		margin-right: -5.875rem !important
	}

	.mmy-xl-94 {
		margin-bottom: -5.875rem !important
	}

	.mmt-xl-94,
	.mmy-xl-94 {
		margin-top: -5.875rem !important
	}

	.mmr-xl-94 {
		margin-right: -5.875rem !important
	}

	.mmb-xl-94 {
		margin-bottom: -5.875rem !important
	}

	.mml-xl-94 {
		margin-left: -5.875rem !important
	}

	.mm-xl-95 {
		margin: -5.9375rem !important
	}

	.mmx-xl-95 {
		margin-left: -5.9375rem !important;
		margin-right: -5.9375rem !important
	}

	.mmy-xl-95 {
		margin-bottom: -5.9375rem !important
	}

	.mmt-xl-95,
	.mmy-xl-95 {
		margin-top: -5.9375rem !important
	}

	.mmr-xl-95 {
		margin-right: -5.9375rem !important
	}

	.mmb-xl-95 {
		margin-bottom: -5.9375rem !important
	}

	.mml-xl-95 {
		margin-left: -5.9375rem !important
	}

	.mm-xl-96 {
		margin: -6rem !important
	}

	.mmx-xl-96 {
		margin-left: -6rem !important;
		margin-right: -6rem !important
	}

	.mmy-xl-96 {
		margin-bottom: -6rem !important
	}

	.mmt-xl-96,
	.mmy-xl-96 {
		margin-top: -6rem !important
	}

	.mmr-xl-96 {
		margin-right: -6rem !important
	}

	.mmb-xl-96 {
		margin-bottom: -6rem !important
	}

	.mml-xl-96 {
		margin-left: -6rem !important
	}

	.mm-xl-97 {
		margin: -6.0625rem !important
	}

	.mmx-xl-97 {
		margin-left: -6.0625rem !important;
		margin-right: -6.0625rem !important
	}

	.mmy-xl-97 {
		margin-bottom: -6.0625rem !important
	}

	.mmt-xl-97,
	.mmy-xl-97 {
		margin-top: -6.0625rem !important
	}

	.mmr-xl-97 {
		margin-right: -6.0625rem !important
	}

	.mmb-xl-97 {
		margin-bottom: -6.0625rem !important
	}

	.mml-xl-97 {
		margin-left: -6.0625rem !important
	}

	.mm-xl-98 {
		margin: -6.125rem !important
	}

	.mmx-xl-98 {
		margin-left: -6.125rem !important;
		margin-right: -6.125rem !important
	}

	.mmy-xl-98 {
		margin-bottom: -6.125rem !important
	}

	.mmt-xl-98,
	.mmy-xl-98 {
		margin-top: -6.125rem !important
	}

	.mmr-xl-98 {
		margin-right: -6.125rem !important
	}

	.mmb-xl-98 {
		margin-bottom: -6.125rem !important
	}

	.mml-xl-98 {
		margin-left: -6.125rem !important
	}

	.mm-xl-99 {
		margin: -6.1875rem !important
	}

	.mmx-xl-99 {
		margin-left: -6.1875rem !important;
		margin-right: -6.1875rem !important
	}

	.mmy-xl-99 {
		margin-bottom: -6.1875rem !important
	}

	.mmt-xl-99,
	.mmy-xl-99 {
		margin-top: -6.1875rem !important
	}

	.mmr-xl-99 {
		margin-right: -6.1875rem !important
	}

	.mmb-xl-99 {
		margin-bottom: -6.1875rem !important
	}

	.mml-xl-99 {
		margin-left: -6.1875rem !important
	}

	.mm-xl-100 {
		margin: -6.25rem !important
	}

	.mmx-xl-100 {
		margin-left: -6.25rem !important;
		margin-right: -6.25rem !important
	}

	.mmy-xl-100 {
		margin-bottom: -6.25rem !important
	}

	.mmt-xl-100,
	.mmy-xl-100 {
		margin-top: -6.25rem !important
	}

	.mmr-xl-100 {
		margin-right: -6.25rem !important
	}

	.mmb-xl-100 {
		margin-bottom: -6.25rem !important
	}

	.mml-xl-100 {
		margin-left: -6.25rem !important
	}

	.mm-xl-101 {
		margin: -6.3125rem !important
	}

	.mmx-xl-101 {
		margin-left: -6.3125rem !important;
		margin-right: -6.3125rem !important
	}

	.mmy-xl-101 {
		margin-bottom: -6.3125rem !important
	}

	.mmt-xl-101,
	.mmy-xl-101 {
		margin-top: -6.3125rem !important
	}

	.mmr-xl-101 {
		margin-right: -6.3125rem !important
	}

	.mmb-xl-101 {
		margin-bottom: -6.3125rem !important
	}

	.mml-xl-101 {
		margin-left: -6.3125rem !important
	}

	.mm-xl-102 {
		margin: -6.375rem !important
	}

	.mmx-xl-102 {
		margin-left: -6.375rem !important;
		margin-right: -6.375rem !important
	}

	.mmy-xl-102 {
		margin-bottom: -6.375rem !important
	}

	.mmt-xl-102,
	.mmy-xl-102 {
		margin-top: -6.375rem !important
	}

	.mmr-xl-102 {
		margin-right: -6.375rem !important
	}

	.mmb-xl-102 {
		margin-bottom: -6.375rem !important
	}

	.mml-xl-102 {
		margin-left: -6.375rem !important
	}

	.mm-xl-103 {
		margin: -6.4375rem !important
	}

	.mmx-xl-103 {
		margin-left: -6.4375rem !important;
		margin-right: -6.4375rem !important
	}

	.mmy-xl-103 {
		margin-bottom: -6.4375rem !important
	}

	.mmt-xl-103,
	.mmy-xl-103 {
		margin-top: -6.4375rem !important
	}

	.mmr-xl-103 {
		margin-right: -6.4375rem !important
	}

	.mmb-xl-103 {
		margin-bottom: -6.4375rem !important
	}

	.mml-xl-103 {
		margin-left: -6.4375rem !important
	}

	.mm-xl-104 {
		margin: -6.5rem !important
	}

	.mmx-xl-104 {
		margin-left: -6.5rem !important;
		margin-right: -6.5rem !important
	}

	.mmy-xl-104 {
		margin-bottom: -6.5rem !important
	}

	.mmt-xl-104,
	.mmy-xl-104 {
		margin-top: -6.5rem !important
	}

	.mmr-xl-104 {
		margin-right: -6.5rem !important
	}

	.mmb-xl-104 {
		margin-bottom: -6.5rem !important
	}

	.mml-xl-104 {
		margin-left: -6.5rem !important
	}

	.mm-xl-105 {
		margin: -6.5625rem !important
	}

	.mmx-xl-105 {
		margin-left: -6.5625rem !important;
		margin-right: -6.5625rem !important
	}

	.mmy-xl-105 {
		margin-bottom: -6.5625rem !important
	}

	.mmt-xl-105,
	.mmy-xl-105 {
		margin-top: -6.5625rem !important
	}

	.mmr-xl-105 {
		margin-right: -6.5625rem !important
	}

	.mmb-xl-105 {
		margin-bottom: -6.5625rem !important
	}

	.mml-xl-105 {
		margin-left: -6.5625rem !important
	}

	.mm-xl-106 {
		margin: -6.625rem !important
	}

	.mmx-xl-106 {
		margin-left: -6.625rem !important;
		margin-right: -6.625rem !important
	}

	.mmy-xl-106 {
		margin-bottom: -6.625rem !important
	}

	.mmt-xl-106,
	.mmy-xl-106 {
		margin-top: -6.625rem !important
	}

	.mmr-xl-106 {
		margin-right: -6.625rem !important
	}

	.mmb-xl-106 {
		margin-bottom: -6.625rem !important
	}

	.mml-xl-106 {
		margin-left: -6.625rem !important
	}

	.mm-xl-107 {
		margin: -6.6875rem !important
	}

	.mmx-xl-107 {
		margin-left: -6.6875rem !important;
		margin-right: -6.6875rem !important
	}

	.mmy-xl-107 {
		margin-bottom: -6.6875rem !important
	}

	.mmt-xl-107,
	.mmy-xl-107 {
		margin-top: -6.6875rem !important
	}

	.mmr-xl-107 {
		margin-right: -6.6875rem !important
	}

	.mmb-xl-107 {
		margin-bottom: -6.6875rem !important
	}

	.mml-xl-107 {
		margin-left: -6.6875rem !important
	}

	.mm-xl-108 {
		margin: -6.75rem !important
	}

	.mmx-xl-108 {
		margin-left: -6.75rem !important;
		margin-right: -6.75rem !important
	}

	.mmy-xl-108 {
		margin-bottom: -6.75rem !important
	}

	.mmt-xl-108,
	.mmy-xl-108 {
		margin-top: -6.75rem !important
	}

	.mmr-xl-108 {
		margin-right: -6.75rem !important
	}

	.mmb-xl-108 {
		margin-bottom: -6.75rem !important
	}

	.mml-xl-108 {
		margin-left: -6.75rem !important
	}

	.mm-xl-109 {
		margin: -6.8125rem !important
	}

	.mmx-xl-109 {
		margin-left: -6.8125rem !important;
		margin-right: -6.8125rem !important
	}

	.mmy-xl-109 {
		margin-bottom: -6.8125rem !important
	}

	.mmt-xl-109,
	.mmy-xl-109 {
		margin-top: -6.8125rem !important
	}

	.mmr-xl-109 {
		margin-right: -6.8125rem !important
	}

	.mmb-xl-109 {
		margin-bottom: -6.8125rem !important
	}

	.mml-xl-109 {
		margin-left: -6.8125rem !important
	}

	.mm-xl-110 {
		margin: -6.875rem !important
	}

	.mmx-xl-110 {
		margin-left: -6.875rem !important;
		margin-right: -6.875rem !important
	}

	.mmy-xl-110 {
		margin-bottom: -6.875rem !important
	}

	.mmt-xl-110,
	.mmy-xl-110 {
		margin-top: -6.875rem !important
	}

	.mmr-xl-110 {
		margin-right: -6.875rem !important
	}

	.mmb-xl-110 {
		margin-bottom: -6.875rem !important
	}

	.mml-xl-110 {
		margin-left: -6.875rem !important
	}

	.mm-xl-111 {
		margin: -6.9375rem !important
	}

	.mmx-xl-111 {
		margin-left: -6.9375rem !important;
		margin-right: -6.9375rem !important
	}

	.mmy-xl-111 {
		margin-bottom: -6.9375rem !important
	}

	.mmt-xl-111,
	.mmy-xl-111 {
		margin-top: -6.9375rem !important
	}

	.mmr-xl-111 {
		margin-right: -6.9375rem !important
	}

	.mmb-xl-111 {
		margin-bottom: -6.9375rem !important
	}

	.mml-xl-111 {
		margin-left: -6.9375rem !important
	}

	.mm-xl-112 {
		margin: -7rem !important
	}

	.mmx-xl-112 {
		margin-left: -7rem !important;
		margin-right: -7rem !important
	}

	.mmy-xl-112 {
		margin-bottom: -7rem !important
	}

	.mmt-xl-112,
	.mmy-xl-112 {
		margin-top: -7rem !important
	}

	.mmr-xl-112 {
		margin-right: -7rem !important
	}

	.mmb-xl-112 {
		margin-bottom: -7rem !important
	}

	.mml-xl-112 {
		margin-left: -7rem !important
	}

	.mm-xl-113 {
		margin: -7.0625rem !important
	}

	.mmx-xl-113 {
		margin-left: -7.0625rem !important;
		margin-right: -7.0625rem !important
	}

	.mmy-xl-113 {
		margin-bottom: -7.0625rem !important
	}

	.mmt-xl-113,
	.mmy-xl-113 {
		margin-top: -7.0625rem !important
	}

	.mmr-xl-113 {
		margin-right: -7.0625rem !important
	}

	.mmb-xl-113 {
		margin-bottom: -7.0625rem !important
	}

	.mml-xl-113 {
		margin-left: -7.0625rem !important
	}

	.mm-xl-114 {
		margin: -7.125rem !important
	}

	.mmx-xl-114 {
		margin-left: -7.125rem !important;
		margin-right: -7.125rem !important
	}

	.mmy-xl-114 {
		margin-bottom: -7.125rem !important
	}

	.mmt-xl-114,
	.mmy-xl-114 {
		margin-top: -7.125rem !important
	}

	.mmr-xl-114 {
		margin-right: -7.125rem !important
	}

	.mmb-xl-114 {
		margin-bottom: -7.125rem !important
	}

	.mml-xl-114 {
		margin-left: -7.125rem !important
	}

	.mm-xl-115 {
		margin: -7.1875rem !important
	}

	.mmx-xl-115 {
		margin-left: -7.1875rem !important;
		margin-right: -7.1875rem !important
	}

	.mmy-xl-115 {
		margin-bottom: -7.1875rem !important
	}

	.mmt-xl-115,
	.mmy-xl-115 {
		margin-top: -7.1875rem !important
	}

	.mmr-xl-115 {
		margin-right: -7.1875rem !important
	}

	.mmb-xl-115 {
		margin-bottom: -7.1875rem !important
	}

	.mml-xl-115 {
		margin-left: -7.1875rem !important
	}

	.mm-xl-116 {
		margin: -7.25rem !important
	}

	.mmx-xl-116 {
		margin-left: -7.25rem !important;
		margin-right: -7.25rem !important
	}

	.mmy-xl-116 {
		margin-bottom: -7.25rem !important
	}

	.mmt-xl-116,
	.mmy-xl-116 {
		margin-top: -7.25rem !important
	}

	.mmr-xl-116 {
		margin-right: -7.25rem !important
	}

	.mmb-xl-116 {
		margin-bottom: -7.25rem !important
	}

	.mml-xl-116 {
		margin-left: -7.25rem !important
	}

	.mm-xl-117 {
		margin: -7.3125rem !important
	}

	.mmx-xl-117 {
		margin-left: -7.3125rem !important;
		margin-right: -7.3125rem !important
	}

	.mmy-xl-117 {
		margin-bottom: -7.3125rem !important
	}

	.mmt-xl-117,
	.mmy-xl-117 {
		margin-top: -7.3125rem !important
	}

	.mmr-xl-117 {
		margin-right: -7.3125rem !important
	}

	.mmb-xl-117 {
		margin-bottom: -7.3125rem !important
	}

	.mml-xl-117 {
		margin-left: -7.3125rem !important
	}

	.mm-xl-118 {
		margin: -7.375rem !important
	}

	.mmx-xl-118 {
		margin-left: -7.375rem !important;
		margin-right: -7.375rem !important
	}

	.mmy-xl-118 {
		margin-bottom: -7.375rem !important
	}

	.mmt-xl-118,
	.mmy-xl-118 {
		margin-top: -7.375rem !important
	}

	.mmr-xl-118 {
		margin-right: -7.375rem !important
	}

	.mmb-xl-118 {
		margin-bottom: -7.375rem !important
	}

	.mml-xl-118 {
		margin-left: -7.375rem !important
	}

	.mm-xl-119 {
		margin: -7.4375rem !important
	}

	.mmx-xl-119 {
		margin-left: -7.4375rem !important;
		margin-right: -7.4375rem !important
	}

	.mmy-xl-119 {
		margin-bottom: -7.4375rem !important
	}

	.mmt-xl-119,
	.mmy-xl-119 {
		margin-top: -7.4375rem !important
	}

	.mmr-xl-119 {
		margin-right: -7.4375rem !important
	}

	.mmb-xl-119 {
		margin-bottom: -7.4375rem !important
	}

	.mml-xl-119 {
		margin-left: -7.4375rem !important
	}

	.mm-xl-120 {
		margin: -7.5rem !important
	}

	.mmx-xl-120 {
		margin-left: -7.5rem !important;
		margin-right: -7.5rem !important
	}

	.mmy-xl-120 {
		margin-bottom: -7.5rem !important
	}

	.mmt-xl-120,
	.mmy-xl-120 {
		margin-top: -7.5rem !important
	}

	.mmr-xl-120 {
		margin-right: -7.5rem !important
	}

	.mmb-xl-120 {
		margin-bottom: -7.5rem !important
	}

	.mml-xl-120 {
		margin-left: -7.5rem !important
	}

	.mm-xl-121 {
		margin: -7.5625rem !important
	}

	.mmx-xl-121 {
		margin-left: -7.5625rem !important;
		margin-right: -7.5625rem !important
	}

	.mmy-xl-121 {
		margin-bottom: -7.5625rem !important
	}

	.mmt-xl-121,
	.mmy-xl-121 {
		margin-top: -7.5625rem !important
	}

	.mmr-xl-121 {
		margin-right: -7.5625rem !important
	}

	.mmb-xl-121 {
		margin-bottom: -7.5625rem !important
	}

	.mml-xl-121 {
		margin-left: -7.5625rem !important
	}

	.mm-xl-122 {
		margin: -7.625rem !important
	}

	.mmx-xl-122 {
		margin-left: -7.625rem !important;
		margin-right: -7.625rem !important
	}

	.mmy-xl-122 {
		margin-bottom: -7.625rem !important
	}

	.mmt-xl-122,
	.mmy-xl-122 {
		margin-top: -7.625rem !important
	}

	.mmr-xl-122 {
		margin-right: -7.625rem !important
	}

	.mmb-xl-122 {
		margin-bottom: -7.625rem !important
	}

	.mml-xl-122 {
		margin-left: -7.625rem !important
	}

	.mm-xl-123 {
		margin: -7.6875rem !important
	}

	.mmx-xl-123 {
		margin-left: -7.6875rem !important;
		margin-right: -7.6875rem !important
	}

	.mmy-xl-123 {
		margin-bottom: -7.6875rem !important
	}

	.mmt-xl-123,
	.mmy-xl-123 {
		margin-top: -7.6875rem !important
	}

	.mmr-xl-123 {
		margin-right: -7.6875rem !important
	}

	.mmb-xl-123 {
		margin-bottom: -7.6875rem !important
	}

	.mml-xl-123 {
		margin-left: -7.6875rem !important
	}

	.mm-xl-124 {
		margin: -7.75rem !important
	}

	.mmx-xl-124 {
		margin-left: -7.75rem !important;
		margin-right: -7.75rem !important
	}

	.mmy-xl-124 {
		margin-bottom: -7.75rem !important
	}

	.mmt-xl-124,
	.mmy-xl-124 {
		margin-top: -7.75rem !important
	}

	.mmr-xl-124 {
		margin-right: -7.75rem !important
	}

	.mmb-xl-124 {
		margin-bottom: -7.75rem !important
	}

	.mml-xl-124 {
		margin-left: -7.75rem !important
	}

	.mm-xl-125 {
		margin: -7.8125rem !important
	}

	.mmx-xl-125 {
		margin-left: -7.8125rem !important;
		margin-right: -7.8125rem !important
	}

	.mmy-xl-125 {
		margin-bottom: -7.8125rem !important
	}

	.mmt-xl-125,
	.mmy-xl-125 {
		margin-top: -7.8125rem !important
	}

	.mmr-xl-125 {
		margin-right: -7.8125rem !important
	}

	.mmb-xl-125 {
		margin-bottom: -7.8125rem !important
	}

	.mml-xl-125 {
		margin-left: -7.8125rem !important
	}

	.mm-xl-126 {
		margin: -7.875rem !important
	}

	.mmx-xl-126 {
		margin-left: -7.875rem !important;
		margin-right: -7.875rem !important
	}

	.mmy-xl-126 {
		margin-bottom: -7.875rem !important
	}

	.mmt-xl-126,
	.mmy-xl-126 {
		margin-top: -7.875rem !important
	}

	.mmr-xl-126 {
		margin-right: -7.875rem !important
	}

	.mmb-xl-126 {
		margin-bottom: -7.875rem !important
	}

	.mml-xl-126 {
		margin-left: -7.875rem !important
	}

	.mm-xl-127 {
		margin: -7.9375rem !important
	}

	.mmx-xl-127 {
		margin-left: -7.9375rem !important;
		margin-right: -7.9375rem !important
	}

	.mmy-xl-127 {
		margin-bottom: -7.9375rem !important
	}

	.mmt-xl-127,
	.mmy-xl-127 {
		margin-top: -7.9375rem !important
	}

	.mmr-xl-127 {
		margin-right: -7.9375rem !important
	}

	.mmb-xl-127 {
		margin-bottom: -7.9375rem !important
	}

	.mml-xl-127 {
		margin-left: -7.9375rem !important
	}

	.mm-xl-128 {
		margin: -8rem !important
	}

	.mmx-xl-128 {
		margin-left: -8rem !important;
		margin-right: -8rem !important
	}

	.mmy-xl-128 {
		margin-bottom: -8rem !important
	}

	.mmt-xl-128,
	.mmy-xl-128 {
		margin-top: -8rem !important
	}

	.mmr-xl-128 {
		margin-right: -8rem !important
	}

	.mmb-xl-128 {
		margin-bottom: -8rem !important
	}

	.mml-xl-128 {
		margin-left: -8rem !important
	}

	.mm-xl-129 {
		margin: -8.0625rem !important
	}

	.mmx-xl-129 {
		margin-left: -8.0625rem !important;
		margin-right: -8.0625rem !important
	}

	.mmy-xl-129 {
		margin-bottom: -8.0625rem !important
	}

	.mmt-xl-129,
	.mmy-xl-129 {
		margin-top: -8.0625rem !important
	}

	.mmr-xl-129 {
		margin-right: -8.0625rem !important
	}

	.mmb-xl-129 {
		margin-bottom: -8.0625rem !important
	}

	.mml-xl-129 {
		margin-left: -8.0625rem !important
	}

	.mm-xl-130 {
		margin: -8.125rem !important
	}

	.mmx-xl-130 {
		margin-left: -8.125rem !important;
		margin-right: -8.125rem !important
	}

	.mmy-xl-130 {
		margin-bottom: -8.125rem !important
	}

	.mmt-xl-130,
	.mmy-xl-130 {
		margin-top: -8.125rem !important
	}

	.mmr-xl-130 {
		margin-right: -8.125rem !important
	}

	.mmb-xl-130 {
		margin-bottom: -8.125rem !important
	}

	.mml-xl-130 {
		margin-left: -8.125rem !important
	}

	.mm-xl-131 {
		margin: -8.1875rem !important
	}

	.mmx-xl-131 {
		margin-left: -8.1875rem !important;
		margin-right: -8.1875rem !important
	}

	.mmy-xl-131 {
		margin-bottom: -8.1875rem !important
	}

	.mmt-xl-131,
	.mmy-xl-131 {
		margin-top: -8.1875rem !important
	}

	.mmr-xl-131 {
		margin-right: -8.1875rem !important
	}

	.mmb-xl-131 {
		margin-bottom: -8.1875rem !important
	}

	.mml-xl-131 {
		margin-left: -8.1875rem !important
	}

	.mm-xl-132 {
		margin: -8.25rem !important
	}

	.mmx-xl-132 {
		margin-left: -8.25rem !important;
		margin-right: -8.25rem !important
	}

	.mmy-xl-132 {
		margin-bottom: -8.25rem !important
	}

	.mmt-xl-132,
	.mmy-xl-132 {
		margin-top: -8.25rem !important
	}

	.mmr-xl-132 {
		margin-right: -8.25rem !important
	}

	.mmb-xl-132 {
		margin-bottom: -8.25rem !important
	}

	.mml-xl-132 {
		margin-left: -8.25rem !important
	}

	.mm-xl-133 {
		margin: -8.3125rem !important
	}

	.mmx-xl-133 {
		margin-left: -8.3125rem !important;
		margin-right: -8.3125rem !important
	}

	.mmy-xl-133 {
		margin-bottom: -8.3125rem !important
	}

	.mmt-xl-133,
	.mmy-xl-133 {
		margin-top: -8.3125rem !important
	}

	.mmr-xl-133 {
		margin-right: -8.3125rem !important
	}

	.mmb-xl-133 {
		margin-bottom: -8.3125rem !important
	}

	.mml-xl-133 {
		margin-left: -8.3125rem !important
	}

	.mm-xl-134 {
		margin: -8.375rem !important
	}

	.mmx-xl-134 {
		margin-left: -8.375rem !important;
		margin-right: -8.375rem !important
	}

	.mmy-xl-134 {
		margin-bottom: -8.375rem !important
	}

	.mmt-xl-134,
	.mmy-xl-134 {
		margin-top: -8.375rem !important
	}

	.mmr-xl-134 {
		margin-right: -8.375rem !important
	}

	.mmb-xl-134 {
		margin-bottom: -8.375rem !important
	}

	.mml-xl-134 {
		margin-left: -8.375rem !important
	}

	.mm-xl-135 {
		margin: -8.4375rem !important
	}

	.mmx-xl-135 {
		margin-left: -8.4375rem !important;
		margin-right: -8.4375rem !important
	}

	.mmy-xl-135 {
		margin-bottom: -8.4375rem !important
	}

	.mmt-xl-135,
	.mmy-xl-135 {
		margin-top: -8.4375rem !important
	}

	.mmr-xl-135 {
		margin-right: -8.4375rem !important
	}

	.mmb-xl-135 {
		margin-bottom: -8.4375rem !important
	}

	.mml-xl-135 {
		margin-left: -8.4375rem !important
	}

	.mm-xl-136 {
		margin: -8.5rem !important
	}

	.mmx-xl-136 {
		margin-left: -8.5rem !important;
		margin-right: -8.5rem !important
	}

	.mmy-xl-136 {
		margin-bottom: -8.5rem !important
	}

	.mmt-xl-136,
	.mmy-xl-136 {
		margin-top: -8.5rem !important
	}

	.mmr-xl-136 {
		margin-right: -8.5rem !important
	}

	.mmb-xl-136 {
		margin-bottom: -8.5rem !important
	}

	.mml-xl-136 {
		margin-left: -8.5rem !important
	}

	.mm-xl-137 {
		margin: -8.5625rem !important
	}

	.mmx-xl-137 {
		margin-left: -8.5625rem !important;
		margin-right: -8.5625rem !important
	}

	.mmy-xl-137 {
		margin-bottom: -8.5625rem !important
	}

	.mmt-xl-137,
	.mmy-xl-137 {
		margin-top: -8.5625rem !important
	}

	.mmr-xl-137 {
		margin-right: -8.5625rem !important
	}

	.mmb-xl-137 {
		margin-bottom: -8.5625rem !important
	}

	.mml-xl-137 {
		margin-left: -8.5625rem !important
	}

	.mm-xl-138 {
		margin: -8.625rem !important
	}

	.mmx-xl-138 {
		margin-left: -8.625rem !important;
		margin-right: -8.625rem !important
	}

	.mmy-xl-138 {
		margin-bottom: -8.625rem !important
	}

	.mmt-xl-138,
	.mmy-xl-138 {
		margin-top: -8.625rem !important
	}

	.mmr-xl-138 {
		margin-right: -8.625rem !important
	}

	.mmb-xl-138 {
		margin-bottom: -8.625rem !important
	}

	.mml-xl-138 {
		margin-left: -8.625rem !important
	}

	.mm-xl-139 {
		margin: -8.6875rem !important
	}

	.mmx-xl-139 {
		margin-left: -8.6875rem !important;
		margin-right: -8.6875rem !important
	}

	.mmy-xl-139 {
		margin-bottom: -8.6875rem !important
	}

	.mmt-xl-139,
	.mmy-xl-139 {
		margin-top: -8.6875rem !important
	}

	.mmr-xl-139 {
		margin-right: -8.6875rem !important
	}

	.mmb-xl-139 {
		margin-bottom: -8.6875rem !important
	}

	.mml-xl-139 {
		margin-left: -8.6875rem !important
	}

	.mm-xl-140 {
		margin: -8.75rem !important
	}

	.mmx-xl-140 {
		margin-left: -8.75rem !important;
		margin-right: -8.75rem !important
	}

	.mmy-xl-140 {
		margin-bottom: -8.75rem !important
	}

	.mmt-xl-140,
	.mmy-xl-140 {
		margin-top: -8.75rem !important
	}

	.mmr-xl-140 {
		margin-right: -8.75rem !important
	}

	.mmb-xl-140 {
		margin-bottom: -8.75rem !important
	}

	.mml-xl-140 {
		margin-left: -8.75rem !important
	}

	.mm-xl-141 {
		margin: -8.8125rem !important
	}

	.mmx-xl-141 {
		margin-left: -8.8125rem !important;
		margin-right: -8.8125rem !important
	}

	.mmy-xl-141 {
		margin-bottom: -8.8125rem !important
	}

	.mmt-xl-141,
	.mmy-xl-141 {
		margin-top: -8.8125rem !important
	}

	.mmr-xl-141 {
		margin-right: -8.8125rem !important
	}

	.mmb-xl-141 {
		margin-bottom: -8.8125rem !important
	}

	.mml-xl-141 {
		margin-left: -8.8125rem !important
	}

	.mm-xl-142 {
		margin: -8.875rem !important
	}

	.mmx-xl-142 {
		margin-left: -8.875rem !important;
		margin-right: -8.875rem !important
	}

	.mmy-xl-142 {
		margin-bottom: -8.875rem !important
	}

	.mmt-xl-142,
	.mmy-xl-142 {
		margin-top: -8.875rem !important
	}

	.mmr-xl-142 {
		margin-right: -8.875rem !important
	}

	.mmb-xl-142 {
		margin-bottom: -8.875rem !important
	}

	.mml-xl-142 {
		margin-left: -8.875rem !important
	}

	.mm-xl-143 {
		margin: -8.9375rem !important
	}

	.mmx-xl-143 {
		margin-left: -8.9375rem !important;
		margin-right: -8.9375rem !important
	}

	.mmy-xl-143 {
		margin-bottom: -8.9375rem !important
	}

	.mmt-xl-143,
	.mmy-xl-143 {
		margin-top: -8.9375rem !important
	}

	.mmr-xl-143 {
		margin-right: -8.9375rem !important
	}

	.mmb-xl-143 {
		margin-bottom: -8.9375rem !important
	}

	.mml-xl-143 {
		margin-left: -8.9375rem !important
	}

	.mm-xl-144 {
		margin: -9rem !important
	}

	.mmx-xl-144 {
		margin-left: -9rem !important;
		margin-right: -9rem !important
	}

	.mmy-xl-144 {
		margin-bottom: -9rem !important
	}

	.mmt-xl-144,
	.mmy-xl-144 {
		margin-top: -9rem !important
	}

	.mmr-xl-144 {
		margin-right: -9rem !important
	}

	.mmb-xl-144 {
		margin-bottom: -9rem !important
	}

	.mml-xl-144 {
		margin-left: -9rem !important
	}

	.mm-xl-145 {
		margin: -9.0625rem !important
	}

	.mmx-xl-145 {
		margin-left: -9.0625rem !important;
		margin-right: -9.0625rem !important
	}

	.mmy-xl-145 {
		margin-bottom: -9.0625rem !important
	}

	.mmt-xl-145,
	.mmy-xl-145 {
		margin-top: -9.0625rem !important
	}

	.mmr-xl-145 {
		margin-right: -9.0625rem !important
	}

	.mmb-xl-145 {
		margin-bottom: -9.0625rem !important
	}

	.mml-xl-145 {
		margin-left: -9.0625rem !important
	}

	.mm-xl-146 {
		margin: -9.125rem !important
	}

	.mmx-xl-146 {
		margin-left: -9.125rem !important;
		margin-right: -9.125rem !important
	}

	.mmy-xl-146 {
		margin-bottom: -9.125rem !important
	}

	.mmt-xl-146,
	.mmy-xl-146 {
		margin-top: -9.125rem !important
	}

	.mmr-xl-146 {
		margin-right: -9.125rem !important
	}

	.mmb-xl-146 {
		margin-bottom: -9.125rem !important
	}

	.mml-xl-146 {
		margin-left: -9.125rem !important
	}

	.mm-xl-147 {
		margin: -9.1875rem !important
	}

	.mmx-xl-147 {
		margin-left: -9.1875rem !important;
		margin-right: -9.1875rem !important
	}

	.mmy-xl-147 {
		margin-bottom: -9.1875rem !important
	}

	.mmt-xl-147,
	.mmy-xl-147 {
		margin-top: -9.1875rem !important
	}

	.mmr-xl-147 {
		margin-right: -9.1875rem !important
	}

	.mmb-xl-147 {
		margin-bottom: -9.1875rem !important
	}

	.mml-xl-147 {
		margin-left: -9.1875rem !important
	}

	.mm-xl-148 {
		margin: -9.25rem !important
	}

	.mmx-xl-148 {
		margin-left: -9.25rem !important;
		margin-right: -9.25rem !important
	}

	.mmy-xl-148 {
		margin-bottom: -9.25rem !important
	}

	.mmt-xl-148,
	.mmy-xl-148 {
		margin-top: -9.25rem !important
	}

	.mmr-xl-148 {
		margin-right: -9.25rem !important
	}

	.mmb-xl-148 {
		margin-bottom: -9.25rem !important
	}

	.mml-xl-148 {
		margin-left: -9.25rem !important
	}

	.mm-xl-149 {
		margin: -9.3125rem !important
	}

	.mmx-xl-149 {
		margin-left: -9.3125rem !important;
		margin-right: -9.3125rem !important
	}

	.mmy-xl-149 {
		margin-bottom: -9.3125rem !important
	}

	.mmt-xl-149,
	.mmy-xl-149 {
		margin-top: -9.3125rem !important
	}

	.mmr-xl-149 {
		margin-right: -9.3125rem !important
	}

	.mmb-xl-149 {
		margin-bottom: -9.3125rem !important
	}

	.mml-xl-149 {
		margin-left: -9.3125rem !important
	}

	.mm-xl-150 {
		margin: -9.375rem !important
	}

	.mmx-xl-150 {
		margin-left: -9.375rem !important;
		margin-right: -9.375rem !important
	}

	.mmy-xl-150 {
		margin-bottom: -9.375rem !important
	}

	.mmt-xl-150,
	.mmy-xl-150 {
		margin-top: -9.375rem !important
	}

	.mmr-xl-150 {
		margin-right: -9.375rem !important
	}

	.mmb-xl-150 {
		margin-bottom: -9.375rem !important
	}

	.mml-xl-150 {
		margin-left: -9.375rem !important
	}

	.mm-xl-151 {
		margin: -9.4375rem !important
	}

	.mmx-xl-151 {
		margin-left: -9.4375rem !important;
		margin-right: -9.4375rem !important
	}

	.mmy-xl-151 {
		margin-bottom: -9.4375rem !important
	}

	.mmt-xl-151,
	.mmy-xl-151 {
		margin-top: -9.4375rem !important
	}

	.mmr-xl-151 {
		margin-right: -9.4375rem !important
	}

	.mmb-xl-151 {
		margin-bottom: -9.4375rem !important
	}

	.mml-xl-151 {
		margin-left: -9.4375rem !important
	}

	.mm-xl-152 {
		margin: -9.5rem !important
	}

	.mmx-xl-152 {
		margin-left: -9.5rem !important;
		margin-right: -9.5rem !important
	}

	.mmy-xl-152 {
		margin-bottom: -9.5rem !important
	}

	.mmt-xl-152,
	.mmy-xl-152 {
		margin-top: -9.5rem !important
	}

	.mmr-xl-152 {
		margin-right: -9.5rem !important
	}

	.mmb-xl-152 {
		margin-bottom: -9.5rem !important
	}

	.mml-xl-152 {
		margin-left: -9.5rem !important
	}

	.mm-xl-153 {
		margin: -9.5625rem !important
	}

	.mmx-xl-153 {
		margin-left: -9.5625rem !important;
		margin-right: -9.5625rem !important
	}

	.mmy-xl-153 {
		margin-bottom: -9.5625rem !important
	}

	.mmt-xl-153,
	.mmy-xl-153 {
		margin-top: -9.5625rem !important
	}

	.mmr-xl-153 {
		margin-right: -9.5625rem !important
	}

	.mmb-xl-153 {
		margin-bottom: -9.5625rem !important
	}

	.mml-xl-153 {
		margin-left: -9.5625rem !important
	}

	.mm-xl-154 {
		margin: -9.625rem !important
	}

	.mmx-xl-154 {
		margin-left: -9.625rem !important;
		margin-right: -9.625rem !important
	}

	.mmy-xl-154 {
		margin-bottom: -9.625rem !important
	}

	.mmt-xl-154,
	.mmy-xl-154 {
		margin-top: -9.625rem !important
	}

	.mmr-xl-154 {
		margin-right: -9.625rem !important
	}

	.mmb-xl-154 {
		margin-bottom: -9.625rem !important
	}

	.mml-xl-154 {
		margin-left: -9.625rem !important
	}

	.mm-xl-155 {
		margin: -9.6875rem !important
	}

	.mmx-xl-155 {
		margin-left: -9.6875rem !important;
		margin-right: -9.6875rem !important
	}

	.mmy-xl-155 {
		margin-bottom: -9.6875rem !important
	}

	.mmt-xl-155,
	.mmy-xl-155 {
		margin-top: -9.6875rem !important
	}

	.mmr-xl-155 {
		margin-right: -9.6875rem !important
	}

	.mmb-xl-155 {
		margin-bottom: -9.6875rem !important
	}

	.mml-xl-155 {
		margin-left: -9.6875rem !important
	}

	.mm-xl-156 {
		margin: -9.75rem !important
	}

	.mmx-xl-156 {
		margin-left: -9.75rem !important;
		margin-right: -9.75rem !important
	}

	.mmy-xl-156 {
		margin-bottom: -9.75rem !important
	}

	.mmt-xl-156,
	.mmy-xl-156 {
		margin-top: -9.75rem !important
	}

	.mmr-xl-156 {
		margin-right: -9.75rem !important
	}

	.mmb-xl-156 {
		margin-bottom: -9.75rem !important
	}

	.mml-xl-156 {
		margin-left: -9.75rem !important
	}

	.mm-xl-157 {
		margin: -9.8125rem !important
	}

	.mmx-xl-157 {
		margin-left: -9.8125rem !important;
		margin-right: -9.8125rem !important
	}

	.mmy-xl-157 {
		margin-bottom: -9.8125rem !important
	}

	.mmt-xl-157,
	.mmy-xl-157 {
		margin-top: -9.8125rem !important
	}

	.mmr-xl-157 {
		margin-right: -9.8125rem !important
	}

	.mmb-xl-157 {
		margin-bottom: -9.8125rem !important
	}

	.mml-xl-157 {
		margin-left: -9.8125rem !important
	}

	.mm-xl-158 {
		margin: -9.875rem !important
	}

	.mmx-xl-158 {
		margin-left: -9.875rem !important;
		margin-right: -9.875rem !important
	}

	.mmy-xl-158 {
		margin-bottom: -9.875rem !important
	}

	.mmt-xl-158,
	.mmy-xl-158 {
		margin-top: -9.875rem !important
	}

	.mmr-xl-158 {
		margin-right: -9.875rem !important
	}

	.mmb-xl-158 {
		margin-bottom: -9.875rem !important
	}

	.mml-xl-158 {
		margin-left: -9.875rem !important
	}

	.mm-xl-159 {
		margin: -9.9375rem !important
	}

	.mmx-xl-159 {
		margin-left: -9.9375rem !important;
		margin-right: -9.9375rem !important
	}

	.mmy-xl-159 {
		margin-bottom: -9.9375rem !important
	}

	.mmt-xl-159,
	.mmy-xl-159 {
		margin-top: -9.9375rem !important
	}

	.mmr-xl-159 {
		margin-right: -9.9375rem !important
	}

	.mmb-xl-159 {
		margin-bottom: -9.9375rem !important
	}

	.mml-xl-159 {
		margin-left: -9.9375rem !important
	}

	.mm-xl-160 {
		margin: -10rem !important
	}

	.mmx-xl-160 {
		margin-left: -10rem !important;
		margin-right: -10rem !important
	}

	.mmy-xl-160 {
		margin-bottom: -10rem !important
	}

	.mmt-xl-160,
	.mmy-xl-160 {
		margin-top: -10rem !important
	}

	.mmr-xl-160 {
		margin-right: -10rem !important
	}

	.mmb-xl-160 {
		margin-bottom: -10rem !important
	}

	.mml-xl-160 {
		margin-left: -10rem !important
	}

	.mm-xl-161 {
		margin: -10.0625rem !important
	}

	.mmx-xl-161 {
		margin-left: -10.0625rem !important;
		margin-right: -10.0625rem !important
	}

	.mmy-xl-161 {
		margin-bottom: -10.0625rem !important
	}

	.mmt-xl-161,
	.mmy-xl-161 {
		margin-top: -10.0625rem !important
	}

	.mmr-xl-161 {
		margin-right: -10.0625rem !important
	}

	.mmb-xl-161 {
		margin-bottom: -10.0625rem !important
	}

	.mml-xl-161 {
		margin-left: -10.0625rem !important
	}

	.mm-xl-162 {
		margin: -10.125rem !important
	}

	.mmx-xl-162 {
		margin-left: -10.125rem !important;
		margin-right: -10.125rem !important
	}

	.mmy-xl-162 {
		margin-bottom: -10.125rem !important
	}

	.mmt-xl-162,
	.mmy-xl-162 {
		margin-top: -10.125rem !important
	}

	.mmr-xl-162 {
		margin-right: -10.125rem !important
	}

	.mmb-xl-162 {
		margin-bottom: -10.125rem !important
	}

	.mml-xl-162 {
		margin-left: -10.125rem !important
	}

	.mm-xl-163 {
		margin: -10.1875rem !important
	}

	.mmx-xl-163 {
		margin-left: -10.1875rem !important;
		margin-right: -10.1875rem !important
	}

	.mmy-xl-163 {
		margin-bottom: -10.1875rem !important
	}

	.mmt-xl-163,
	.mmy-xl-163 {
		margin-top: -10.1875rem !important
	}

	.mmr-xl-163 {
		margin-right: -10.1875rem !important
	}

	.mmb-xl-163 {
		margin-bottom: -10.1875rem !important
	}

	.mml-xl-163 {
		margin-left: -10.1875rem !important
	}

	.mm-xl-164 {
		margin: -10.25rem !important
	}

	.mmx-xl-164 {
		margin-left: -10.25rem !important;
		margin-right: -10.25rem !important
	}

	.mmy-xl-164 {
		margin-bottom: -10.25rem !important
	}

	.mmt-xl-164,
	.mmy-xl-164 {
		margin-top: -10.25rem !important
	}

	.mmr-xl-164 {
		margin-right: -10.25rem !important
	}

	.mmb-xl-164 {
		margin-bottom: -10.25rem !important
	}

	.mml-xl-164 {
		margin-left: -10.25rem !important
	}

	.mm-xl-165 {
		margin: -10.3125rem !important
	}

	.mmx-xl-165 {
		margin-left: -10.3125rem !important;
		margin-right: -10.3125rem !important
	}

	.mmy-xl-165 {
		margin-bottom: -10.3125rem !important
	}

	.mmt-xl-165,
	.mmy-xl-165 {
		margin-top: -10.3125rem !important
	}

	.mmr-xl-165 {
		margin-right: -10.3125rem !important
	}

	.mmb-xl-165 {
		margin-bottom: -10.3125rem !important
	}

	.mml-xl-165 {
		margin-left: -10.3125rem !important
	}

	.mm-xl-166 {
		margin: -10.375rem !important
	}

	.mmx-xl-166 {
		margin-left: -10.375rem !important;
		margin-right: -10.375rem !important
	}

	.mmy-xl-166 {
		margin-bottom: -10.375rem !important
	}

	.mmt-xl-166,
	.mmy-xl-166 {
		margin-top: -10.375rem !important
	}

	.mmr-xl-166 {
		margin-right: -10.375rem !important
	}

	.mmb-xl-166 {
		margin-bottom: -10.375rem !important
	}

	.mml-xl-166 {
		margin-left: -10.375rem !important
	}

	.mm-xl-167 {
		margin: -10.4375rem !important
	}

	.mmx-xl-167 {
		margin-left: -10.4375rem !important;
		margin-right: -10.4375rem !important
	}

	.mmy-xl-167 {
		margin-bottom: -10.4375rem !important
	}

	.mmt-xl-167,
	.mmy-xl-167 {
		margin-top: -10.4375rem !important
	}

	.mmr-xl-167 {
		margin-right: -10.4375rem !important
	}

	.mmb-xl-167 {
		margin-bottom: -10.4375rem !important
	}

	.mml-xl-167 {
		margin-left: -10.4375rem !important
	}

	.mm-xl-168 {
		margin: -10.5rem !important
	}

	.mmx-xl-168 {
		margin-left: -10.5rem !important;
		margin-right: -10.5rem !important
	}

	.mmy-xl-168 {
		margin-bottom: -10.5rem !important
	}

	.mmt-xl-168,
	.mmy-xl-168 {
		margin-top: -10.5rem !important
	}

	.mmr-xl-168 {
		margin-right: -10.5rem !important
	}

	.mmb-xl-168 {
		margin-bottom: -10.5rem !important
	}

	.mml-xl-168 {
		margin-left: -10.5rem !important
	}

	.mm-xl-169 {
		margin: -10.5625rem !important
	}

	.mmx-xl-169 {
		margin-left: -10.5625rem !important;
		margin-right: -10.5625rem !important
	}

	.mmy-xl-169 {
		margin-bottom: -10.5625rem !important
	}

	.mmt-xl-169,
	.mmy-xl-169 {
		margin-top: -10.5625rem !important
	}

	.mmr-xl-169 {
		margin-right: -10.5625rem !important
	}

	.mmb-xl-169 {
		margin-bottom: -10.5625rem !important
	}

	.mml-xl-169 {
		margin-left: -10.5625rem !important
	}

	.mm-xl-170 {
		margin: -10.625rem !important
	}

	.mmx-xl-170 {
		margin-left: -10.625rem !important;
		margin-right: -10.625rem !important
	}

	.mmy-xl-170 {
		margin-bottom: -10.625rem !important
	}

	.mmt-xl-170,
	.mmy-xl-170 {
		margin-top: -10.625rem !important
	}

	.mmr-xl-170 {
		margin-right: -10.625rem !important
	}

	.mmb-xl-170 {
		margin-bottom: -10.625rem !important
	}

	.mml-xl-170 {
		margin-left: -10.625rem !important
	}

	.mm-xl-171 {
		margin: -10.6875rem !important
	}

	.mmx-xl-171 {
		margin-left: -10.6875rem !important;
		margin-right: -10.6875rem !important
	}

	.mmy-xl-171 {
		margin-bottom: -10.6875rem !important
	}

	.mmt-xl-171,
	.mmy-xl-171 {
		margin-top: -10.6875rem !important
	}

	.mmr-xl-171 {
		margin-right: -10.6875rem !important
	}

	.mmb-xl-171 {
		margin-bottom: -10.6875rem !important
	}

	.mml-xl-171 {
		margin-left: -10.6875rem !important
	}

	.mm-xl-172 {
		margin: -10.75rem !important
	}

	.mmx-xl-172 {
		margin-left: -10.75rem !important;
		margin-right: -10.75rem !important
	}

	.mmy-xl-172 {
		margin-bottom: -10.75rem !important
	}

	.mmt-xl-172,
	.mmy-xl-172 {
		margin-top: -10.75rem !important
	}

	.mmr-xl-172 {
		margin-right: -10.75rem !important
	}

	.mmb-xl-172 {
		margin-bottom: -10.75rem !important
	}

	.mml-xl-172 {
		margin-left: -10.75rem !important
	}

	.mm-xl-173 {
		margin: -10.8125rem !important
	}

	.mmx-xl-173 {
		margin-left: -10.8125rem !important;
		margin-right: -10.8125rem !important
	}

	.mmy-xl-173 {
		margin-bottom: -10.8125rem !important
	}

	.mmt-xl-173,
	.mmy-xl-173 {
		margin-top: -10.8125rem !important
	}

	.mmr-xl-173 {
		margin-right: -10.8125rem !important
	}

	.mmb-xl-173 {
		margin-bottom: -10.8125rem !important
	}

	.mml-xl-173 {
		margin-left: -10.8125rem !important
	}

	.mm-xl-174 {
		margin: -10.875rem !important
	}

	.mmx-xl-174 {
		margin-left: -10.875rem !important;
		margin-right: -10.875rem !important
	}

	.mmy-xl-174 {
		margin-bottom: -10.875rem !important
	}

	.mmt-xl-174,
	.mmy-xl-174 {
		margin-top: -10.875rem !important
	}

	.mmr-xl-174 {
		margin-right: -10.875rem !important
	}

	.mmb-xl-174 {
		margin-bottom: -10.875rem !important
	}

	.mml-xl-174 {
		margin-left: -10.875rem !important
	}

	.mm-xl-175 {
		margin: -10.9375rem !important
	}

	.mmx-xl-175 {
		margin-left: -10.9375rem !important;
		margin-right: -10.9375rem !important
	}

	.mmy-xl-175 {
		margin-bottom: -10.9375rem !important
	}

	.mmt-xl-175,
	.mmy-xl-175 {
		margin-top: -10.9375rem !important
	}

	.mmr-xl-175 {
		margin-right: -10.9375rem !important
	}

	.mmb-xl-175 {
		margin-bottom: -10.9375rem !important
	}

	.mml-xl-175 {
		margin-left: -10.9375rem !important
	}

	.mm-xl-176 {
		margin: -11rem !important
	}

	.mmx-xl-176 {
		margin-left: -11rem !important;
		margin-right: -11rem !important
	}

	.mmy-xl-176 {
		margin-bottom: -11rem !important
	}

	.mmt-xl-176,
	.mmy-xl-176 {
		margin-top: -11rem !important
	}

	.mmr-xl-176 {
		margin-right: -11rem !important
	}

	.mmb-xl-176 {
		margin-bottom: -11rem !important
	}

	.mml-xl-176 {
		margin-left: -11rem !important
	}

	.mm-xl-177 {
		margin: -11.0625rem !important
	}

	.mmx-xl-177 {
		margin-left: -11.0625rem !important;
		margin-right: -11.0625rem !important
	}

	.mmy-xl-177 {
		margin-bottom: -11.0625rem !important
	}

	.mmt-xl-177,
	.mmy-xl-177 {
		margin-top: -11.0625rem !important
	}

	.mmr-xl-177 {
		margin-right: -11.0625rem !important
	}

	.mmb-xl-177 {
		margin-bottom: -11.0625rem !important
	}

	.mml-xl-177 {
		margin-left: -11.0625rem !important
	}

	.mm-xl-178 {
		margin: -11.125rem !important
	}

	.mmx-xl-178 {
		margin-left: -11.125rem !important;
		margin-right: -11.125rem !important
	}

	.mmy-xl-178 {
		margin-bottom: -11.125rem !important
	}

	.mmt-xl-178,
	.mmy-xl-178 {
		margin-top: -11.125rem !important
	}

	.mmr-xl-178 {
		margin-right: -11.125rem !important
	}

	.mmb-xl-178 {
		margin-bottom: -11.125rem !important
	}

	.mml-xl-178 {
		margin-left: -11.125rem !important
	}

	.mm-xl-179 {
		margin: -11.1875rem !important
	}

	.mmx-xl-179 {
		margin-left: -11.1875rem !important;
		margin-right: -11.1875rem !important
	}

	.mmy-xl-179 {
		margin-bottom: -11.1875rem !important
	}

	.mmt-xl-179,
	.mmy-xl-179 {
		margin-top: -11.1875rem !important
	}

	.mmr-xl-179 {
		margin-right: -11.1875rem !important
	}

	.mmb-xl-179 {
		margin-bottom: -11.1875rem !important
	}

	.mml-xl-179 {
		margin-left: -11.1875rem !important
	}

	.mm-xl-180 {
		margin: -11.25rem !important
	}

	.mmx-xl-180 {
		margin-left: -11.25rem !important;
		margin-right: -11.25rem !important
	}

	.mmy-xl-180 {
		margin-bottom: -11.25rem !important
	}

	.mmt-xl-180,
	.mmy-xl-180 {
		margin-top: -11.25rem !important
	}

	.mmr-xl-180 {
		margin-right: -11.25rem !important
	}

	.mmb-xl-180 {
		margin-bottom: -11.25rem !important
	}

	.mml-xl-180 {
		margin-left: -11.25rem !important
	}

	.mm-xl-181 {
		margin: -11.3125rem !important
	}

	.mmx-xl-181 {
		margin-left: -11.3125rem !important;
		margin-right: -11.3125rem !important
	}

	.mmy-xl-181 {
		margin-bottom: -11.3125rem !important
	}

	.mmt-xl-181,
	.mmy-xl-181 {
		margin-top: -11.3125rem !important
	}

	.mmr-xl-181 {
		margin-right: -11.3125rem !important
	}

	.mmb-xl-181 {
		margin-bottom: -11.3125rem !important
	}

	.mml-xl-181 {
		margin-left: -11.3125rem !important
	}

	.mm-xl-182 {
		margin: -11.375rem !important
	}

	.mmx-xl-182 {
		margin-left: -11.375rem !important;
		margin-right: -11.375rem !important
	}

	.mmy-xl-182 {
		margin-bottom: -11.375rem !important
	}

	.mmt-xl-182,
	.mmy-xl-182 {
		margin-top: -11.375rem !important
	}

	.mmr-xl-182 {
		margin-right: -11.375rem !important
	}

	.mmb-xl-182 {
		margin-bottom: -11.375rem !important
	}

	.mml-xl-182 {
		margin-left: -11.375rem !important
	}

	.mm-xl-183 {
		margin: -11.4375rem !important
	}

	.mmx-xl-183 {
		margin-left: -11.4375rem !important;
		margin-right: -11.4375rem !important
	}

	.mmy-xl-183 {
		margin-bottom: -11.4375rem !important
	}

	.mmt-xl-183,
	.mmy-xl-183 {
		margin-top: -11.4375rem !important
	}

	.mmr-xl-183 {
		margin-right: -11.4375rem !important
	}

	.mmb-xl-183 {
		margin-bottom: -11.4375rem !important
	}

	.mml-xl-183 {
		margin-left: -11.4375rem !important
	}

	.mm-xl-184 {
		margin: -11.5rem !important
	}

	.mmx-xl-184 {
		margin-left: -11.5rem !important;
		margin-right: -11.5rem !important
	}

	.mmy-xl-184 {
		margin-bottom: -11.5rem !important
	}

	.mmt-xl-184,
	.mmy-xl-184 {
		margin-top: -11.5rem !important
	}

	.mmr-xl-184 {
		margin-right: -11.5rem !important
	}

	.mmb-xl-184 {
		margin-bottom: -11.5rem !important
	}

	.mml-xl-184 {
		margin-left: -11.5rem !important
	}

	.mm-xl-185 {
		margin: -11.5625rem !important
	}

	.mmx-xl-185 {
		margin-left: -11.5625rem !important;
		margin-right: -11.5625rem !important
	}

	.mmy-xl-185 {
		margin-bottom: -11.5625rem !important
	}

	.mmt-xl-185,
	.mmy-xl-185 {
		margin-top: -11.5625rem !important
	}

	.mmr-xl-185 {
		margin-right: -11.5625rem !important
	}

	.mmb-xl-185 {
		margin-bottom: -11.5625rem !important
	}

	.mml-xl-185 {
		margin-left: -11.5625rem !important
	}

	.mm-xl-186 {
		margin: -11.625rem !important
	}

	.mmx-xl-186 {
		margin-left: -11.625rem !important;
		margin-right: -11.625rem !important
	}

	.mmy-xl-186 {
		margin-bottom: -11.625rem !important
	}

	.mmt-xl-186,
	.mmy-xl-186 {
		margin-top: -11.625rem !important
	}

	.mmr-xl-186 {
		margin-right: -11.625rem !important
	}

	.mmb-xl-186 {
		margin-bottom: -11.625rem !important
	}

	.mml-xl-186 {
		margin-left: -11.625rem !important
	}

	.mm-xl-187 {
		margin: -11.6875rem !important
	}

	.mmx-xl-187 {
		margin-left: -11.6875rem !important;
		margin-right: -11.6875rem !important
	}

	.mmy-xl-187 {
		margin-bottom: -11.6875rem !important
	}

	.mmt-xl-187,
	.mmy-xl-187 {
		margin-top: -11.6875rem !important
	}

	.mmr-xl-187 {
		margin-right: -11.6875rem !important
	}

	.mmb-xl-187 {
		margin-bottom: -11.6875rem !important
	}

	.mml-xl-187 {
		margin-left: -11.6875rem !important
	}

	.mm-xl-188 {
		margin: -11.75rem !important
	}

	.mmx-xl-188 {
		margin-left: -11.75rem !important;
		margin-right: -11.75rem !important
	}

	.mmy-xl-188 {
		margin-bottom: -11.75rem !important
	}

	.mmt-xl-188,
	.mmy-xl-188 {
		margin-top: -11.75rem !important
	}

	.mmr-xl-188 {
		margin-right: -11.75rem !important
	}

	.mmb-xl-188 {
		margin-bottom: -11.75rem !important
	}

	.mml-xl-188 {
		margin-left: -11.75rem !important
	}

	.mm-xl-189 {
		margin: -11.8125rem !important
	}

	.mmx-xl-189 {
		margin-left: -11.8125rem !important;
		margin-right: -11.8125rem !important
	}

	.mmy-xl-189 {
		margin-bottom: -11.8125rem !important
	}

	.mmt-xl-189,
	.mmy-xl-189 {
		margin-top: -11.8125rem !important
	}

	.mmr-xl-189 {
		margin-right: -11.8125rem !important
	}

	.mmb-xl-189 {
		margin-bottom: -11.8125rem !important
	}

	.mml-xl-189 {
		margin-left: -11.8125rem !important
	}

	.mm-xl-190 {
		margin: -11.875rem !important
	}

	.mmx-xl-190 {
		margin-left: -11.875rem !important;
		margin-right: -11.875rem !important
	}

	.mmy-xl-190 {
		margin-bottom: -11.875rem !important
	}

	.mmt-xl-190,
	.mmy-xl-190 {
		margin-top: -11.875rem !important
	}

	.mmr-xl-190 {
		margin-right: -11.875rem !important
	}

	.mmb-xl-190 {
		margin-bottom: -11.875rem !important
	}

	.mml-xl-190 {
		margin-left: -11.875rem !important
	}

	.mm-xl-191 {
		margin: -11.9375rem !important
	}

	.mmx-xl-191 {
		margin-left: -11.9375rem !important;
		margin-right: -11.9375rem !important
	}

	.mmy-xl-191 {
		margin-bottom: -11.9375rem !important
	}

	.mmt-xl-191,
	.mmy-xl-191 {
		margin-top: -11.9375rem !important
	}

	.mmr-xl-191 {
		margin-right: -11.9375rem !important
	}

	.mmb-xl-191 {
		margin-bottom: -11.9375rem !important
	}

	.mml-xl-191 {
		margin-left: -11.9375rem !important
	}

	.mm-xl-192 {
		margin: -12rem !important
	}

	.mmx-xl-192 {
		margin-left: -12rem !important;
		margin-right: -12rem !important
	}

	.mmy-xl-192 {
		margin-bottom: -12rem !important
	}

	.mmt-xl-192,
	.mmy-xl-192 {
		margin-top: -12rem !important
	}

	.mmr-xl-192 {
		margin-right: -12rem !important
	}

	.mmb-xl-192 {
		margin-bottom: -12rem !important
	}

	.mml-xl-192 {
		margin-left: -12rem !important
	}

	.mm-xl-193 {
		margin: -12.0625rem !important
	}

	.mmx-xl-193 {
		margin-left: -12.0625rem !important;
		margin-right: -12.0625rem !important
	}

	.mmy-xl-193 {
		margin-bottom: -12.0625rem !important
	}

	.mmt-xl-193,
	.mmy-xl-193 {
		margin-top: -12.0625rem !important
	}

	.mmr-xl-193 {
		margin-right: -12.0625rem !important
	}

	.mmb-xl-193 {
		margin-bottom: -12.0625rem !important
	}

	.mml-xl-193 {
		margin-left: -12.0625rem !important
	}

	.mm-xl-194 {
		margin: -12.125rem !important
	}

	.mmx-xl-194 {
		margin-left: -12.125rem !important;
		margin-right: -12.125rem !important
	}

	.mmy-xl-194 {
		margin-bottom: -12.125rem !important
	}

	.mmt-xl-194,
	.mmy-xl-194 {
		margin-top: -12.125rem !important
	}

	.mmr-xl-194 {
		margin-right: -12.125rem !important
	}

	.mmb-xl-194 {
		margin-bottom: -12.125rem !important
	}

	.mml-xl-194 {
		margin-left: -12.125rem !important
	}

	.mm-xl-195 {
		margin: -12.1875rem !important
	}

	.mmx-xl-195 {
		margin-left: -12.1875rem !important;
		margin-right: -12.1875rem !important
	}

	.mmy-xl-195 {
		margin-bottom: -12.1875rem !important
	}

	.mmt-xl-195,
	.mmy-xl-195 {
		margin-top: -12.1875rem !important
	}

	.mmr-xl-195 {
		margin-right: -12.1875rem !important
	}

	.mmb-xl-195 {
		margin-bottom: -12.1875rem !important
	}

	.mml-xl-195 {
		margin-left: -12.1875rem !important
	}

	.mm-xl-196 {
		margin: -12.25rem !important
	}

	.mmx-xl-196 {
		margin-left: -12.25rem !important;
		margin-right: -12.25rem !important
	}

	.mmy-xl-196 {
		margin-bottom: -12.25rem !important
	}

	.mmt-xl-196,
	.mmy-xl-196 {
		margin-top: -12.25rem !important
	}

	.mmr-xl-196 {
		margin-right: -12.25rem !important
	}

	.mmb-xl-196 {
		margin-bottom: -12.25rem !important
	}

	.mml-xl-196 {
		margin-left: -12.25rem !important
	}

	.mm-xl-197 {
		margin: -12.3125rem !important
	}

	.mmx-xl-197 {
		margin-left: -12.3125rem !important;
		margin-right: -12.3125rem !important
	}

	.mmy-xl-197 {
		margin-bottom: -12.3125rem !important
	}

	.mmt-xl-197,
	.mmy-xl-197 {
		margin-top: -12.3125rem !important
	}

	.mmr-xl-197 {
		margin-right: -12.3125rem !important
	}

	.mmb-xl-197 {
		margin-bottom: -12.3125rem !important
	}

	.mml-xl-197 {
		margin-left: -12.3125rem !important
	}

	.mm-xl-198 {
		margin: -12.375rem !important
	}

	.mmx-xl-198 {
		margin-left: -12.375rem !important;
		margin-right: -12.375rem !important
	}

	.mmy-xl-198 {
		margin-bottom: -12.375rem !important
	}

	.mmt-xl-198,
	.mmy-xl-198 {
		margin-top: -12.375rem !important
	}

	.mmr-xl-198 {
		margin-right: -12.375rem !important
	}

	.mmb-xl-198 {
		margin-bottom: -12.375rem !important
	}

	.mml-xl-198 {
		margin-left: -12.375rem !important
	}

	.mm-xl-199 {
		margin: -12.4375rem !important
	}

	.mmx-xl-199 {
		margin-left: -12.4375rem !important;
		margin-right: -12.4375rem !important
	}

	.mmy-xl-199 {
		margin-bottom: -12.4375rem !important
	}

	.mmt-xl-199,
	.mmy-xl-199 {
		margin-top: -12.4375rem !important
	}

	.mmr-xl-199 {
		margin-right: -12.4375rem !important
	}

	.mmb-xl-199 {
		margin-bottom: -12.4375rem !important
	}

	.mml-xl-199 {
		margin-left: -12.4375rem !important
	}

	.mm-xl-200 {
		margin: -12.5rem !important
	}

	.mmx-xl-200 {
		margin-left: -12.5rem !important;
		margin-right: -12.5rem !important
	}

	.mmy-xl-200 {
		margin-bottom: -12.5rem !important
	}

	.mmt-xl-200,
	.mmy-xl-200 {
		margin-top: -12.5rem !important
	}

	.mmr-xl-200 {
		margin-right: -12.5rem !important
	}

	.mmb-xl-200 {
		margin-bottom: -12.5rem !important
	}

	.mml-xl-200 {
		margin-left: -12.5rem !important
	}

	.mm-xl-auto {
		margin: -auto !important
	}

	.mmx-xl-auto {
		margin-left: -auto !important;
		margin-right: -auto !important
	}

	.mmy-xl-auto {
		margin-bottom: -auto !important
	}

	.mmt-xl-auto,
	.mmy-xl-auto {
		margin-top: -auto !important
	}

	.mmr-xl-auto {
		margin-right: -auto !important
	}

	.mmb-xl-auto {
		margin-bottom: -auto !important
	}

	.mml-xl-auto {
		margin-left: -auto !important
	}
}

.rounded-half-circle {
	border-radius: 50px !important
}

.border-color-1 {
	border-color: #858ba5 !important
}

.border-top-color-1 {
	border-top-color: #858ba5 !important
}

.border-right-color-1 {
	border-right-color: #858ba5 !important
}

.border-bottom-color-1 {
	border-bottom-color: #858ba5 !important
}

.border-left-color-1 {
	border-left-color: #858ba5 !important
}

.border-color-2 {
	border-color: #8a95a9 !important
}

.border-top-color-2 {
	border-top-color: #8a95a9 !important
}

.border-right-color-2 {
	border-right-color: #8a95a9 !important
}

.border-bottom-color-2 {
	border-bottom-color: #8a95a9 !important
}

.border-left-color-2 {
	border-left-color: #8a95a9 !important
}

.border-color-3 {
	border-color: #575e7d !important
}

.border-top-color-3 {
	border-top-color: #575e7d !important
}

.border-right-color-3 {
	border-right-color: #575e7d !important
}

.border-bottom-color-3 {
	border-bottom-color: #575e7d !important
}

.border-left-color-3 {
	border-left-color: #575e7d !important
}

.border-color-4 {
	border-color: #1c1e2b !important
}

.border-top-color-4 {
	border-top-color: #1c1e2b !important
}

.border-right-color-4 {
	border-right-color: #1c1e2b !important
}

.border-bottom-color-4 {
	border-bottom-color: #1c1e2b !important
}

.border-left-color-4 {
	border-left-color: #1c1e2b !important
}

.border-color-5 {
	border-color: #242935 !important
}

.border-top-color-5 {
	border-top-color: #242935 !important
}

.border-right-color-5 {
	border-right-color: #242935 !important
}

.border-bottom-color-5 {
	border-bottom-color: #242935 !important
}

.border-left-color-5 {
	border-left-color: #242935 !important
}

.border-color-6 {
	border-color: #222531 !important
}

.border-top-color-6 {
	border-top-color: #222531 !important
}

.border-right-color-6 {
	border-right-color: #222531 !important
}

.border-bottom-color-6 {
	border-bottom-color: #222531 !important
}

.border-left-color-6 {
	border-left-color: #222531 !important
}

.border-color-7 {
	border-color: #1e202b !important
}

.border-top-color-7 {
	border-top-color: #1e202b !important
}

.border-right-color-7 {
	border-right-color: #1e202b !important
}

.border-bottom-color-7 {
	border-bottom-color: #1e202b !important
}

.border-left-color-7 {
	border-left-color: #1e202b !important
}

.border-color-8 {
	border-color: #7b85a2 !important
}

.border-top-color-8 {
	border-top-color: #7b85a2 !important
}

.border-right-color-8 {
	border-right-color: #7b85a2 !important
}

.border-bottom-color-8 {
	border-bottom-color: #7b85a2 !important
}

.border-left-color-8 {
	border-left-color: #7b85a2 !important
}

.border-color-9 {
	border-color: #a2acbf !important
}

.border-top-color-9 {
	border-top-color: #a2acbf !important
}

.border-right-color-9 {
	border-right-color: #a2acbf !important
}

.border-bottom-color-9 {
	border-bottom-color: #a2acbf !important
}

.border-left-color-9 {
	border-left-color: #a2acbf !important
}

.border-color-10 {
	border-color: #41475d !important
}

.border-top-color-10 {
	border-top-color: #41475d !important
}

.border-right-color-10 {
	border-right-color: #41475d !important
}

.border-bottom-color-10 {
	border-bottom-color: #41475d !important
}

.border-left-color-10 {
	border-left-color: #41475d !important
}

.border-color-11 {
	border-color: #fafbfd !important
}

.border-top-color-11 {
	border-top-color: #fafbfd !important
}

.border-right-color-11 {
	border-right-color: #fafbfd !important
}

.border-bottom-color-11 {
	border-bottom-color: #fafbfd !important
}

.border-left-color-11 {
	border-left-color: #fafbfd !important
}

.border-color-12 {
	border-color: #5d6b8d !important
}

.border-top-color-12 {
	border-top-color: #5d6b8d !important
}

.border-right-color-12 {
	border-right-color: #5d6b8d !important
}

.border-bottom-color-12 {
	border-bottom-color: #5d6b8d !important
}

.border-left-color-12 {
	border-left-color: #5d6b8d !important
}

.border-color-13 {
	border-color: #f4f7fb !important
}

.border-top-color-13 {
	border-top-color: #f4f7fb !important
}

.border-right-color-13 {
	border-right-color: #f4f7fb !important
}

.border-bottom-color-13 {
	border-bottom-color: #f4f7fb !important
}

.border-left-color-13 {
	border-left-color: #f4f7fb !important
}

.border-color-14 {
	border-color: #3589d2 !important
}

.border-top-color-14 {
	border-top-color: #3589d2 !important
}

.border-right-color-14 {
	border-right-color: #3589d2 !important
}

.border-bottom-color-14 {
	border-bottom-color: #3589d2 !important
}

.border-left-color-14 {
	border-left-color: #3589d2 !important
}

.border-color-15 {
	border-color: #5ddcdf !important
}

.border-top-color-15 {
	border-top-color: #5ddcdf !important
}

.border-right-color-15 {
	border-right-color: #5ddcdf !important
}

.border-bottom-color-15 {
	border-bottom-color: #5ddcdf !important
}

.border-left-color-15 {
	border-left-color: #5ddcdf !important
}

.border-color-16 {
	border-color: #d3e7f7 !important
}

.border-top-color-16 {
	border-top-color: #d3e7f7 !important
}

.border-right-color-16 {
	border-right-color: #d3e7f7 !important
}

.border-bottom-color-16 {
	border-bottom-color: #d3e7f7 !important
}

.border-left-color-16 {
	border-left-color: #d3e7f7 !important
}

.border-color-17 {
	border-color: #dbf7f9 !important
}

.border-top-color-17 {
	border-top-color: #dbf7f9 !important
}

.border-right-color-17 {
	border-right-color: #dbf7f9 !important
}

.border-bottom-color-17 {
	border-bottom-color: #dbf7f9 !important
}

.border-left-color-17 {
	border-left-color: #dbf7f9 !important
}

.border-color-18 {
	border-color: #646c86 !important
}

.border-top-color-18 {
	border-top-color: #646c86 !important
}

.border-right-color-18 {
	border-right-color: #646c86 !important
}

.border-bottom-color-18 {
	border-bottom-color: #646c86 !important
}

.border-left-color-18 {
	border-left-color: #646c86 !important
}

.border-color-19 {
	border-color: #fafbfc !important
}

.border-top-color-19 {
	border-top-color: #fafbfc !important
}

.border-right-color-19 {
	border-right-color: #fafbfc !important
}

.border-bottom-color-19 {
	border-bottom-color: #fafbfc !important
}

.border-left-color-19 {
	border-left-color: #fafbfc !important
}

.border-color-20 {
	border-color: #8b98b1 !important
}

.border-top-color-20 {
	border-top-color: #8b98b1 !important
}

.border-right-color-20 {
	border-right-color: #8b98b1 !important
}

.border-bottom-color-20 {
	border-bottom-color: #8b98b1 !important
}

.border-left-color-20 {
	border-left-color: #8b98b1 !important
}

.border-color-21 {
	border-color: #ecf2f9 !important
}

.border-top-color-21 {
	border-top-color: #ecf2f9 !important
}

.border-right-color-21 {
	border-right-color: #ecf2f9 !important
}

.border-bottom-color-21 {
	border-bottom-color: #ecf2f9 !important
}

.border-left-color-21 {
	border-left-color: #ecf2f9 !important
}

.border-color-22 {
	border-color: #f7f7f7 !important
}

.border-top-color-22 {
	border-top-color: #f7f7f7 !important
}

.border-right-color-22 {
	border-right-color: #f7f7f7 !important
}

.border-bottom-color-22 {
	border-bottom-color: #f7f7f7 !important
}

.border-left-color-22 {
	border-left-color: #f7f7f7 !important
}

.border-color-23 {
	border-color: #e8e9ea !important
}

.border-top-color-23 {
	border-top-color: #e8e9ea !important
}

.border-right-color-23 {
	border-right-color: #e8e9ea !important
}

.border-bottom-color-23 {
	border-bottom-color: #e8e9ea !important
}

.border-left-color-23 {
	border-left-color: #e8e9ea !important
}

.border-color-24 {
	border-color: rgba(28, 29, 42, .4) !important
}

.border-top-color-24 {
	border-top-color: rgba(28, 29, 42, .4) !important
}

.border-right-color-24 {
	border-right-color: rgba(28, 29, 42, .4) !important
}

.border-bottom-color-24 {
	border-bottom-color: rgba(28, 29, 42, .4) !important
}

.border-left-color-24 {
	border-left-color: rgba(28, 29, 42, .4) !important
}

.border-color-25 {
	border-color: #1c1d2a !important
}

.border-top-color-25 {
	border-top-color: #1c1d2a !important
}

.border-right-color-25 {
	border-right-color: #1c1d2a !important
}

.border-bottom-color-25 {
	border-bottom-color: #1c1d2a !important
}

.border-left-color-25 {
	border-left-color: #1c1d2a !important
}

.border-color-26 {
	border-color: #676f8f !important
}

.border-top-color-26 {
	border-top-color: #676f8f !important
}

.border-right-color-26 {
	border-right-color: #676f8f !important
}

.border-bottom-color-26 {
	border-bottom-color: #676f8f !important
}

.border-left-color-26 {
	border-left-color: #676f8f !important
}

.border-color-27 {
	border-color: #5b617e !important
}

.border-top-color-27 {
	border-top-color: #5b617e !important
}

.border-right-color-27 {
	border-right-color: #5b617e !important
}

.border-bottom-color-27 {
	border-bottom-color: #5b617e !important
}

.border-left-color-27 {
	border-left-color: #5b617e !important
}

.border-color-28 {
	border-color: #898eab !important
}

.border-top-color-28 {
	border-top-color: #898eab !important
}

.border-right-color-28 {
	border-right-color: #898eab !important
}

.border-bottom-color-28 {
	border-bottom-color: #898eab !important
}

.border-left-color-28 {
	border-left-color: #898eab !important
}

.border-color-29 {
	border-color: #dadce6 !important
}

.border-top-color-29 {
	border-top-color: #dadce6 !important
}

.border-right-color-29 {
	border-right-color: #dadce6 !important
}

.border-bottom-color-29 {
	border-bottom-color: #dadce6 !important
}

.border-left-color-29 {
	border-left-color: #dadce6 !important
}

.border-color-30 {
	border-color: #9a9aa3 !important
}

.border-top-color-30 {
	border-top-color: #9a9aa3 !important
}

.border-right-color-30 {
	border-right-color: #9a9aa3 !important
}

.border-bottom-color-30 {
	border-bottom-color: #9a9aa3 !important
}

.border-left-color-30 {
	border-left-color: #9a9aa3 !important
}

.border-color-31 {
	border-color: rgba(43, 47, 62, .8) !important
}

.border-top-color-31 {
	border-top-color: rgba(43, 47, 62, .8) !important
}

.border-right-color-31 {
	border-right-color: rgba(43, 47, 62, .8) !important
}

.border-bottom-color-31 {
	border-bottom-color: rgba(43, 47, 62, .8) !important
}

.border-left-color-31 {
	border-left-color: rgba(43, 47, 62, .8) !important
}

.border-color-32 {
	border-color: #94a0b3 !important
}

.border-top-color-32 {
	border-top-color: #94a0b3 !important
}

.border-right-color-32 {
	border-right-color: #94a0b3 !important
}

.border-bottom-color-32 {
	border-bottom-color: #94a0b3 !important
}

.border-left-color-32 {
	border-left-color: #94a0b3 !important
}

.border-color-33 {
	border-color: #888ea9 !important
}

.border-top-color-33 {
	border-top-color: #888ea9 !important
}

.border-right-color-33 {
	border-right-color: #888ea9 !important
}

.border-bottom-color-33 {
	border-bottom-color: #888ea9 !important
}

.border-left-color-33 {
	border-left-color: #888ea9 !important
}

.border-color-34 {
	border-color: #ecf0f7 !important
}

.border-top-color-34 {
	border-top-color: #ecf0f7 !important
}

.border-right-color-34 {
	border-right-color: #ecf0f7 !important
}

.border-bottom-color-34 {
	border-bottom-color: #ecf0f7 !important
}

.border-left-color-34 {
	border-left-color: #ecf0f7 !important
}

.border-color-35 {
	border-color: #97a3c5 !important
}

.border-top-color-35 {
	border-top-color: #97a3c5 !important
}

.border-right-color-35 {
	border-right-color: #97a3c5 !important
}

.border-bottom-color-35 {
	border-bottom-color: #97a3c5 !important
}

.border-left-color-35 {
	border-left-color: #97a3c5 !important
}

.border-color-36 {
	border-color: #c32aa3 !important
}

.border-top-color-36 {
	border-top-color: #c32aa3 !important
}

.border-right-color-36 {
	border-right-color: #c32aa3 !important
}

.border-bottom-color-36 {
	border-bottom-color: #c32aa3 !important
}

.border-left-color-36 {
	border-left-color: #c32aa3 !important
}

.border-color-37 {
	border-color: #007bb5 !important
}

.border-top-color-37 {
	border-top-color: #007bb5 !important
}

.border-right-color-37 {
	border-right-color: #007bb5 !important
}

.border-bottom-color-37 {
	border-bottom-color: #007bb5 !important
}

.border-left-color-37 {
	border-left-color: #007bb5 !important
}

.border-color-38 {
	border-color: #bd081c !important
}

.border-top-color-38 {
	border-top-color: #bd081c !important
}

.border-right-color-38 {
	border-right-color: #bd081c !important
}

.border-bottom-color-38 {
	border-bottom-color: #bd081c !important
}

.border-left-color-38 {
	border-left-color: #bd081c !important
}

.border-color-39 {
	border-color: #f40083 !important
}

.border-top-color-39 {
	border-top-color: #f40083 !important
}

.border-right-color-39 {
	border-right-color: #f40083 !important
}

.border-bottom-color-39 {
	border-bottom-color: #f40083 !important
}

.border-left-color-39 {
	border-left-color: #f40083 !important
}

.border-color-40 {
	border-color: #616887 !important
}

.border-top-color-40 {
	border-top-color: #616887 !important
}

.border-right-color-40 {
	border-right-color: #616887 !important
}

.border-bottom-color-40 {
	border-bottom-color: #616887 !important
}

.border-left-color-40 {
	border-left-color: #616887 !important
}

.border-color-41 {
	border-color: #f3f6fb !important
}

.border-top-color-41 {
	border-top-color: #f3f6fb !important
}

.border-right-color-41 {
	border-right-color: #f3f6fb !important
}

.border-bottom-color-41 {
	border-bottom-color: #f3f6fb !important
}

.border-left-color-41 {
	border-left-color: #f3f6fb !important
}

.border-color-42 {
	border-color: hsla(0, 0%, 100%, .74) !important
}

.border-top-color-42 {
	border-top-color: hsla(0, 0%, 100%, .74) !important
}

.border-right-color-42 {
	border-right-color: hsla(0, 0%, 100%, .74) !important
}

.border-bottom-color-42 {
	border-bottom-color: hsla(0, 0%, 100%, .74) !important
}

.border-left-color-42 {
	border-left-color: hsla(0, 0%, 100%, .74) !important
}

.border-color-43 {
	border-color: #f5f6f9 !important
}

.border-top-color-43 {
	border-top-color: #f5f6f9 !important
}

.border-right-color-43 {
	border-right-color: #f5f6f9 !important
}

.border-bottom-color-43 {
	border-bottom-color: #f5f6f9 !important
}

.border-left-color-43 {
	border-left-color: #f5f6f9 !important
}

.border-color-44 {
	border-color: hsla(0, 0%, 100%, 0) !important
}

.border-top-color-44 {
	border-top-color: hsla(0, 0%, 100%, 0) !important
}

.border-right-color-44 {
	border-right-color: hsla(0, 0%, 100%, 0) !important
}

.border-bottom-color-44 {
	border-bottom-color: hsla(0, 0%, 100%, 0) !important
}

.border-left-color-44 {
	border-left-color: hsla(0, 0%, 100%, 0) !important
}

.border-color-45 {
	border-color: #ced4da !important
}

.border-top-color-45 {
	border-top-color: #ced4da !important
}

.border-right-color-45 {
	border-right-color: #ced4da !important
}

.border-bottom-color-45 {
	border-bottom-color: #ced4da !important
}

.border-left-color-45 {
	border-left-color: #ced4da !important
}

.border-color-46 {
	border-color: #fcfcfd !important
}

.border-top-color-46 {
	border-top-color: #fcfcfd !important
}

.border-right-color-46 {
	border-right-color: #fcfcfd !important
}

.border-bottom-color-46 {
	border-bottom-color: #fcfcfd !important
}

.border-left-color-46 {
	border-left-color: #fcfcfd !important
}

.border-color-47 {
	border-color: #f9f9f9 !important
}

.border-top-color-47 {
	border-top-color: #f9f9f9 !important
}

.border-right-color-47 {
	border-right-color: #f9f9f9 !important
}

.border-bottom-color-47 {
	border-bottom-color: #f9f9f9 !important
}

.border-left-color-47 {
	border-left-color: #f9f9f9 !important
}

.border-color-48 {
	border-color: #f1f1f1 !important
}

.border-top-color-48 {
	border-top-color: #f1f1f1 !important
}

.border-right-color-48 {
	border-right-color: #f1f1f1 !important
}

.border-bottom-color-48 {
	border-bottom-color: #f1f1f1 !important
}

.border-left-color-48 {
	border-left-color: #f1f1f1 !important
}

.border-color-49 {
	border-color: #788288 !important
}

.border-top-color-49 {
	border-top-color: #788288 !important
}

.border-right-color-49 {
	border-right-color: #788288 !important
}

.border-bottom-color-49 {
	border-bottom-color: #788288 !important
}

.border-left-color-49 {
	border-left-color: #788288 !important
}

.border-color-50 {
	border-color: #e7ebf5 !important
}

.border-top-color-50 {
	border-top-color: #e7ebf5 !important
}

.border-right-color-50 {
	border-right-color: #e7ebf5 !important
}

.border-bottom-color-50 {
	border-bottom-color: #e7ebf5 !important
}

.border-left-color-50 {
	border-left-color: #e7ebf5 !important
}

.border-color-51 {
	border-color: #d54800 !important
}

.border-top-color-51 {
	border-top-color: #d54800 !important
}

.border-right-color-51 {
	border-right-color: #d54800 !important
}

.border-bottom-color-51 {
	border-bottom-color: #d54800 !important
}

.border-left-color-51 {
	border-left-color: #d54800 !important
}

.border-color-52 {
	border-color: #bcc6d8 !important
}

.border-top-color-52 {
	border-top-color: #bcc6d8 !important
}

.border-right-color-52 {
	border-right-color: #bcc6d8 !important
}

.border-bottom-color-52 {
	border-bottom-color: #bcc6d8 !important
}

.border-left-color-52 {
	border-left-color: #bcc6d8 !important
}

.border-color-53 {
	border-color: #9c9fa9 !important
}

.border-top-color-53 {
	border-top-color: #9c9fa9 !important
}

.border-right-color-53 {
	border-right-color: #9c9fa9 !important
}

.border-bottom-color-53 {
	border-bottom-color: #9c9fa9 !important
}

.border-left-color-53 {
	border-left-color: #9c9fa9 !important
}

.border-color-54 {
	border-color: #fbfafa !important
}

.border-top-color-54 {
	border-top-color: #fbfafa !important
}

.border-right-color-54 {
	border-right-color: #fbfafa !important
}

.border-bottom-color-54 {
	border-bottom-color: #fbfafa !important
}

.border-left-color-54 {
	border-left-color: #fbfafa !important
}

.border-color-55 {
	border-color: #fdfdfd !important
}

.border-top-color-55 {
	border-top-color: #fdfdfd !important
}

.border-right-color-55 {
	border-right-color: #fdfdfd !important
}

.border-bottom-color-55 {
	border-bottom-color: #fdfdfd !important
}

.border-left-color-55 {
	border-left-color: #fdfdfd !important
}

.border-color-56 {
	border-color: #979fb7 !important
}

.border-top-color-56 {
	border-top-color: #979fb7 !important
}

.border-right-color-56 {
	border-right-color: #979fb7 !important
}

.border-bottom-color-56 {
	border-bottom-color: #979fb7 !important
}

.border-left-color-56 {
	border-left-color: #979fb7 !important
}

.border-color-57 {
	border-color: #cbd0d8 !important
}

.border-top-color-57 {
	border-top-color: #cbd0d8 !important
}

.border-right-color-57 {
	border-right-color: #cbd0d8 !important
}

.border-bottom-color-57 {
	border-bottom-color: #cbd0d8 !important
}

.border-left-color-57 {
	border-left-color: #cbd0d8 !important
}

.border-color-58 {
	border-color: #e5e8ec !important
}

.border-top-color-58 {
	border-top-color: #e5e8ec !important
}

.border-right-color-58 {
	border-right-color: #e5e8ec !important
}

.border-bottom-color-58 {
	border-bottom-color: #e5e8ec !important
}

.border-left-color-58 {
	border-left-color: #e5e8ec !important
}

.border-color-59 {
	border-color: #2c3034 !important
}

.border-top-color-59 {
	border-top-color: #2c3034 !important
}

.border-right-color-59 {
	border-right-color: #2c3034 !important
}

.border-bottom-color-59 {
	border-bottom-color: #2c3034 !important
}

.border-left-color-59 {
	border-left-color: #2c3034 !important
}

.border-color-60 {
	border-color: #2e3446 !important
}

.border-top-color-60 {
	border-top-color: #2e3446 !important
}

.border-right-color-60 {
	border-right-color: #2e3446 !important
}

.border-bottom-color-60 {
	border-bottom-color: #2e3446 !important
}

.border-left-color-60 {
	border-left-color: #2e3446 !important
}

.border-color-61 {
	border-color: #e3eaf3 !important
}

.border-top-color-61 {
	border-top-color: #e3eaf3 !important
}

.border-right-color-61 {
	border-right-color: #e3eaf3 !important
}

.border-bottom-color-61 {
	border-bottom-color: #e3eaf3 !important
}

.border-left-color-61 {
	border-left-color: #e3eaf3 !important
}

.border-color-62 {
	border-color: #f5f8fb !important
}

.border-top-color-62 {
	border-top-color: #f5f8fb !important
}

.border-right-color-62 {
	border-right-color: #f5f8fb !important
}

.border-bottom-color-62 {
	border-bottom-color: #f5f8fb !important
}

.border-left-color-62 {
	border-left-color: #f5f8fb !important
}

.border-color-63 {
	border-color: #9fb1ca !important
}

.border-top-color-63 {
	border-top-color: #9fb1ca !important
}

.border-right-color-63 {
	border-right-color: #9fb1ca !important
}

.border-bottom-color-63 {
	border-bottom-color: #9fb1ca !important
}

.border-left-color-63 {
	border-left-color: #9fb1ca !important
}

@-webkit-keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}
}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: .97;
		-webkit-transform: translate3d(0, 30px, 0);
		transform: translate3d(0, 30px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInUp {
	0% {
		opacity: .97;
		-webkit-transform: translate3d(0, 30px, 0);
		transform: translate3d(0, 30px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: .97;
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInDown {
	0% {
		opacity: .97;
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: .97;
		-webkit-transform: translate3d(-30px, 0, 0);
		transform: translate3d(-30px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: .97;
		-webkit-transform: translate3d(-30px, 0, 0);
		transform: translate3d(-30px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: .97;
		-webkit-transform: translate3d(30px, 0, 0);
		transform: translate3d(30px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInRight {
	0% {
		opacity: .97;
		-webkit-transform: translate3d(30px, 0, 0);
		transform: translate3d(30px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.text-color-1 {
	color: #858ba5 !important
}

.text-color-2 {
	color: #8a95a9 !important
}

.text-color-3 {
	color: #575e7d !important
}

.text-color-4 {
	color: #1c1e2b !important
}

.text-color-5 {
	color: #242935 !important
}

.text-color-6 {
	color: #222531 !important
}

.text-color-7 {
	color: #1e202b !important
}

.text-color-8 {
	color: #7b85a2 !important
}

.text-color-9 {
	color: #a2acbf !important
}

.text-color-10 {
	color: #41475d !important
}

.text-color-11 {
	color: #fafbfd !important
}

.text-color-12 {
	color: #5d6b8d !important
}

.text-color-13 {
	color: #f4f7fb !important
}

.text-color-14 {
	color: #3589d2 !important
}

.text-color-15 {
	color: #5ddcdf !important
}

.text-color-16 {
	color: #d3e7f7 !important
}

.text-color-17 {
	color: #dbf7f9 !important
}

.text-color-18 {
	color: #646c86 !important
}

.text-color-19 {
	color: #fafbfc !important
}

.text-color-20 {
	color: #8b98b1 !important
}

.text-color-21 {
	color: #ecf2f9 !important
}

.text-color-22 {
	color: #f7f7f7 !important
}

.text-color-23 {
	color: #e8e9ea !important
}

.text-color-24 {
	color: rgba(28, 29, 42, .4) !important
}

.text-color-25 {
	color: #1c1d2a !important
}

.text-color-26 {
	color: #676f8f !important
}

.text-color-27 {
	color: #5b617e !important
}

.text-color-28 {
	color: #898eab !important
}

.text-color-29 {
	color: #dadce6 !important
}

.text-color-30 {
	color: #9a9aa3 !important
}

.text-color-31 {
	color: rgba(43, 47, 62, .8) !important
}

.text-color-32 {
	color: #94a0b3 !important
}

.text-color-33 {
	color: #888ea9 !important
}

.text-color-34 {
	color: #ecf0f7 !important
}

.text-color-35 {
	color: #97a3c5 !important
}

.text-color-36 {
	color: #c32aa3 !important
}

.text-color-37 {
	color: #007bb5 !important
}

.text-color-38 {
	color: #bd081c !important
}

.text-color-39 {
	color: #f40083 !important
}

.text-color-40 {
	color: #616887 !important
}

.text-color-41 {
	color: #f3f6fb !important
}

.text-color-42 {
	color: hsla(0, 0%, 100%, .74) !important
}

.text-color-43 {
	color: #f5f6f9 !important
}

.text-color-44 {
	color: hsla(0, 0%, 100%, 0) !important
}

.text-color-45 {
	color: #ced4da !important
}

.text-color-46 {
	color: #fcfcfd !important
}

.text-color-47 {
	color: #f9f9f9 !important
}

.text-color-48 {
	color: #f1f1f1 !important
}

.text-color-49 {
	color: #788288 !important
}

.text-color-50 {
	color: #e7ebf5 !important
}

.text-color-51 {
	color: #d54800 !important
}

.text-color-52 {
	color: #bcc6d8 !important
}

.text-color-53 {
	color: #9c9fa9 !important
}

.text-color-54 {
	color: #fbfafa !important
}

.text-color-55 {
	color: #fdfdfd !important
}

.text-color-56 {
	color: #979fb7 !important
}

.text-color-57 {
	color: #cbd0d8 !important
}

.text-color-58 {
	color: #e5e8ec !important
}

.text-color-59 {
	color: #2c3034 !important
}

.text-color-60 {
	color: #2e3446 !important
}

.text-color-61 {
	color: #e3eaf3 !important
}

.text-color-62 {
	color: #f5f8fb !important
}

.text-color-63 {
	color: #9fb1ca !important
}

.fw-0 {
	width: 0 !important
}

.fw-1 {
	width: .0625rem !important
}

.fw-2 {
	width: .125rem !important
}

.fw-3 {
	width: .1875rem !important
}

.fw-4 {
	width: .25rem !important
}

.fw-5 {
	width: .3125rem !important
}

.fw-6 {
	width: .375rem !important
}

.fw-7 {
	width: .4375rem !important
}

.fw-8 {
	width: .5rem !important
}

.fw-9 {
	width: .5625rem !important
}

.fw-10 {
	width: .625rem !important
}

.fw-11 {
	width: .6875rem !important
}

.fw-12 {
	width: .75rem !important
}

.fw-13 {
	width: .8125rem !important
}

.fw-14 {
	width: .875rem !important
}

.fw-15 {
	width: .9375rem !important
}

.fw-16 {
	width: 1rem !important
}

.fw-17 {
	width: 1.0625rem !important
}

.fw-18 {
	width: 1.125rem !important
}

.fw-19 {
	width: 1.1875rem !important
}

.fw-20 {
	width: 1.25rem !important
}

.fw-21 {
	width: 1.3125rem !important
}

.fw-22 {
	width: 1.375rem !important
}

.fw-23 {
	width: 1.4375rem !important
}

.fw-24 {
	width: 1.5rem !important
}

.fw-25 {
	width: 1.5625rem !important
}

.fw-26 {
	width: 1.625rem !important
}

.fw-27 {
	width: 1.6875rem !important
}

.fw-28 {
	width: 1.75rem !important
}

.fw-29 {
	width: 1.8125rem !important
}

.fw-30 {
	width: 1.875rem !important
}

.fw-31 {
	width: 1.9375rem !important
}

.fw-32 {
	width: 2rem !important
}

.fw-33 {
	width: 2.0625rem !important
}

.fw-34 {
	width: 2.125rem !important
}

.fw-35 {
	width: 2.1875rem !important
}

.fw-36 {
	width: 2.25rem !important
}

.fw-37 {
	width: 2.3125rem !important
}

.fw-38 {
	width: 2.375rem !important
}

.fw-39 {
	width: 2.4375rem !important
}

.fw-40 {
	width: 2.5rem !important
}

.fw-41 {
	width: 2.5625rem !important
}

.fw-42 {
	width: 2.625rem !important
}

.fw-43 {
	width: 2.6875rem !important
}

.fw-44 {
	width: 2.75rem !important
}

.fw-45 {
	width: 2.8125rem !important
}

.fw-46 {
	width: 2.875rem !important
}

.fw-47 {
	width: 2.9375rem !important
}

.fw-48 {
	width: 3rem !important
}

.fw-49 {
	width: 3.0625rem !important
}

.fw-50 {
	width: 3.125rem !important
}

.fw-51 {
	width: 3.1875rem !important
}

.fw-52 {
	width: 3.25rem !important
}

.fw-53 {
	width: 3.3125rem !important
}

.fw-54 {
	width: 3.375rem !important
}

.fw-55 {
	width: 3.4375rem !important
}

.fw-56 {
	width: 3.5rem !important
}

.fw-57 {
	width: 3.5625rem !important
}

.fw-58 {
	width: 3.625rem !important
}

.fw-59 {
	width: 3.6875rem !important
}

.fw-60 {
	width: 3.75rem !important
}

.fw-61 {
	width: 3.8125rem !important
}

.fw-62 {
	width: 3.875rem !important
}

.fw-63 {
	width: 3.9375rem !important
}

.fw-64 {
	width: 4rem !important
}

.fw-65 {
	width: 4.0625rem !important
}

.fw-66 {
	width: 4.125rem !important
}

.fw-67 {
	width: 4.1875rem !important
}

.fw-68 {
	width: 4.25rem !important
}

.fw-69 {
	width: 4.3125rem !important
}

.fw-70 {
	width: 4.375rem !important
}

.fw-71 {
	width: 4.4375rem !important
}

.fw-72 {
	width: 4.5rem !important
}

.fw-73 {
	width: 4.5625rem !important
}

.fw-74 {
	width: 4.625rem !important
}

.fw-75 {
	width: 4.6875rem !important
}

.fw-76 {
	width: 4.75rem !important
}

.fw-77 {
	width: 4.8125rem !important
}

.fw-78 {
	width: 4.875rem !important
}

.fw-79 {
	width: 4.9375rem !important
}

.fw-80 {
	width: 5rem !important
}

.fw-81 {
	width: 5.0625rem !important
}

.fw-82 {
	width: 5.125rem !important
}

.fw-83 {
	width: 5.1875rem !important
}

.fw-84 {
	width: 5.25rem !important
}

.fw-85 {
	width: 5.3125rem !important
}

.fw-86 {
	width: 5.375rem !important
}

.fw-87 {
	width: 5.4375rem !important
}

.fw-88 {
	width: 5.5rem !important
}

.fw-89 {
	width: 5.5625rem !important
}

.fw-90 {
	width: 5.625rem !important
}

.fw-91 {
	width: 5.6875rem !important
}

.fw-92 {
	width: 5.75rem !important
}

.fw-93 {
	width: 5.8125rem !important
}

.fw-94 {
	width: 5.875rem !important
}

.fw-95 {
	width: 5.9375rem !important
}

.fw-96 {
	width: 6rem !important
}

.fw-97 {
	width: 6.0625rem !important
}

.fw-98 {
	width: 6.125rem !important
}

.fw-99 {
	width: 6.1875rem !important
}

.fw-100 {
	width: 6.25rem !important
}

.fw-101 {
	width: 6.3125rem !important
}

.fw-102 {
	width: 6.375rem !important
}

.fw-103 {
	width: 6.4375rem !important
}

.fw-104 {
	width: 6.5rem !important
}

.fw-105 {
	width: 6.5625rem !important
}

.fw-106 {
	width: 6.625rem !important
}

.fw-107 {
	width: 6.6875rem !important
}

.fw-108 {
	width: 6.75rem !important
}

.fw-109 {
	width: 6.8125rem !important
}

.fw-110 {
	width: 6.875rem !important
}

.fw-111 {
	width: 6.9375rem !important
}

.fw-112 {
	width: 7rem !important
}

.fw-113 {
	width: 7.0625rem !important
}

.fw-114 {
	width: 7.125rem !important
}

.fw-115 {
	width: 7.1875rem !important
}

.fw-116 {
	width: 7.25rem !important
}

.fw-117 {
	width: 7.3125rem !important
}

.fw-118 {
	width: 7.375rem !important
}

.fw-119 {
	width: 7.4375rem !important
}

.fw-120 {
	width: 7.5rem !important
}

.fw-121 {
	width: 7.5625rem !important
}

.fw-122 {
	width: 7.625rem !important
}

.fw-123 {
	width: 7.6875rem !important
}

.fw-124 {
	width: 7.75rem !important
}

.fw-125 {
	width: 7.8125rem !important
}

.fw-126 {
	width: 7.875rem !important
}

.fw-127 {
	width: 7.9375rem !important
}

.fw-128 {
	width: 8rem !important
}

.fw-129 {
	width: 8.0625rem !important
}

.fw-130 {
	width: 8.125rem !important
}

.fw-131 {
	width: 8.1875rem !important
}

.fw-132 {
	width: 8.25rem !important
}

.fw-133 {
	width: 8.3125rem !important
}

.fw-134 {
	width: 8.375rem !important
}

.fw-135 {
	width: 8.4375rem !important
}

.fw-136 {
	width: 8.5rem !important
}

.fw-137 {
	width: 8.5625rem !important
}

.fw-138 {
	width: 8.625rem !important
}

.fw-139 {
	width: 8.6875rem !important
}

.fw-140 {
	width: 8.75rem !important
}

.fw-141 {
	width: 8.8125rem !important
}

.fw-142 {
	width: 8.875rem !important
}

.fw-143 {
	width: 8.9375rem !important
}

.fw-144 {
	width: 9rem !important
}

.fw-145 {
	width: 9.0625rem !important
}

.fw-146 {
	width: 9.125rem !important
}

.fw-147 {
	width: 9.1875rem !important
}

.fw-148 {
	width: 9.25rem !important
}

.fw-149 {
	width: 9.3125rem !important
}

.fw-150 {
	width: 9.375rem !important
}

.fw-151 {
	width: 9.4375rem !important
}

.fw-152 {
	width: 9.5rem !important
}

.fw-153 {
	width: 9.5625rem !important
}

.fw-154 {
	width: 9.625rem !important
}

.fw-155 {
	width: 9.6875rem !important
}

.fw-156 {
	width: 9.75rem !important
}

.fw-157 {
	width: 9.8125rem !important
}

.fw-158 {
	width: 9.875rem !important
}

.fw-159 {
	width: 9.9375rem !important
}

.fw-160 {
	width: 10rem !important
}

.fw-161 {
	width: 10.0625rem !important
}

.fw-162 {
	width: 10.125rem !important
}

.fw-163 {
	width: 10.1875rem !important
}

.fw-164 {
	width: 10.25rem !important
}

.fw-165 {
	width: 10.3125rem !important
}

.fw-166 {
	width: 10.375rem !important
}

.fw-167 {
	width: 10.4375rem !important
}

.fw-168 {
	width: 10.5rem !important
}

.fw-169 {
	width: 10.5625rem !important
}

.fw-170 {
	width: 10.625rem !important
}

.fw-171 {
	width: 10.6875rem !important
}

.fw-172 {
	width: 10.75rem !important
}

.fw-173 {
	width: 10.8125rem !important
}

.fw-174 {
	width: 10.875rem !important
}

.fw-175 {
	width: 10.9375rem !important
}

.fw-176 {
	width: 11rem !important
}

.fw-177 {
	width: 11.0625rem !important
}

.fw-178 {
	width: 11.125rem !important
}

.fw-179 {
	width: 11.1875rem !important
}

.fw-180 {
	width: 11.25rem !important
}

.fw-181 {
	width: 11.3125rem !important
}

.fw-182 {
	width: 11.375rem !important
}

.fw-183 {
	width: 11.4375rem !important
}

.fw-184 {
	width: 11.5rem !important
}

.fw-185 {
	width: 11.5625rem !important
}

.fw-186 {
	width: 11.625rem !important
}

.fw-187 {
	width: 11.6875rem !important
}

.fw-188 {
	width: 11.75rem !important
}

.fw-189 {
	width: 11.8125rem !important
}

.fw-190 {
	width: 11.875rem !important
}

.fw-191 {
	width: 11.9375rem !important
}

.fw-192 {
	width: 12rem !important
}

.fw-193 {
	width: 12.0625rem !important
}

.fw-194 {
	width: 12.125rem !important
}

.fw-195 {
	width: 12.1875rem !important
}

.fw-196 {
	width: 12.25rem !important
}

.fw-197 {
	width: 12.3125rem !important
}

.fw-198 {
	width: 12.375rem !important
}

.fw-199 {
	width: 12.4375rem !important
}

.fw-200 {
	width: 12.5rem !important
}

.fw-auto {
	width: auto !important
}

@media (min-width:576px) {
	.fw-sm-0 {
		width: 0 !important
	}
}

@media (min-width:576px) {
	.fw-sm-1 {
		width: .0625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-2 {
		width: .125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-3 {
		width: .1875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-4 {
		width: .25rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-5 {
		width: .3125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-6 {
		width: .375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-7 {
		width: .4375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-8 {
		width: .5rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-9 {
		width: .5625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-10 {
		width: .625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-11 {
		width: .6875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-12 {
		width: .75rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-13 {
		width: .8125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-14 {
		width: .875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-15 {
		width: .9375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-16 {
		width: 1rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-17 {
		width: 1.0625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-18 {
		width: 1.125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-19 {
		width: 1.1875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-20 {
		width: 1.25rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-21 {
		width: 1.3125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-22 {
		width: 1.375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-23 {
		width: 1.4375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-24 {
		width: 1.5rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-25 {
		width: 1.5625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-26 {
		width: 1.625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-27 {
		width: 1.6875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-28 {
		width: 1.75rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-29 {
		width: 1.8125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-30 {
		width: 1.875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-31 {
		width: 1.9375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-32 {
		width: 2rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-33 {
		width: 2.0625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-34 {
		width: 2.125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-35 {
		width: 2.1875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-36 {
		width: 2.25rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-37 {
		width: 2.3125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-38 {
		width: 2.375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-39 {
		width: 2.4375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-40 {
		width: 2.5rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-41 {
		width: 2.5625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-42 {
		width: 2.625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-43 {
		width: 2.6875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-44 {
		width: 2.75rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-45 {
		width: 2.8125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-46 {
		width: 2.875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-47 {
		width: 2.9375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-48 {
		width: 3rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-49 {
		width: 3.0625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-50 {
		width: 3.125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-51 {
		width: 3.1875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-52 {
		width: 3.25rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-53 {
		width: 3.3125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-54 {
		width: 3.375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-55 {
		width: 3.4375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-56 {
		width: 3.5rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-57 {
		width: 3.5625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-58 {
		width: 3.625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-59 {
		width: 3.6875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-60 {
		width: 3.75rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-61 {
		width: 3.8125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-62 {
		width: 3.875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-63 {
		width: 3.9375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-64 {
		width: 4rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-65 {
		width: 4.0625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-66 {
		width: 4.125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-67 {
		width: 4.1875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-68 {
		width: 4.25rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-69 {
		width: 4.3125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-70 {
		width: 4.375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-71 {
		width: 4.4375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-72 {
		width: 4.5rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-73 {
		width: 4.5625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-74 {
		width: 4.625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-75 {
		width: 4.6875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-76 {
		width: 4.75rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-77 {
		width: 4.8125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-78 {
		width: 4.875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-79 {
		width: 4.9375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-80 {
		width: 5rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-81 {
		width: 5.0625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-82 {
		width: 5.125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-83 {
		width: 5.1875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-84 {
		width: 5.25rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-85 {
		width: 5.3125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-86 {
		width: 5.375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-87 {
		width: 5.4375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-88 {
		width: 5.5rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-89 {
		width: 5.5625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-90 {
		width: 5.625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-91 {
		width: 5.6875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-92 {
		width: 5.75rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-93 {
		width: 5.8125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-94 {
		width: 5.875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-95 {
		width: 5.9375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-96 {
		width: 6rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-97 {
		width: 6.0625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-98 {
		width: 6.125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-99 {
		width: 6.1875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-100 {
		width: 6.25rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-101 {
		width: 6.3125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-102 {
		width: 6.375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-103 {
		width: 6.4375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-104 {
		width: 6.5rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-105 {
		width: 6.5625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-106 {
		width: 6.625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-107 {
		width: 6.6875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-108 {
		width: 6.75rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-109 {
		width: 6.8125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-110 {
		width: 6.875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-111 {
		width: 6.9375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-112 {
		width: 7rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-113 {
		width: 7.0625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-114 {
		width: 7.125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-115 {
		width: 7.1875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-116 {
		width: 7.25rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-117 {
		width: 7.3125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-118 {
		width: 7.375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-119 {
		width: 7.4375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-120 {
		width: 7.5rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-121 {
		width: 7.5625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-122 {
		width: 7.625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-123 {
		width: 7.6875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-124 {
		width: 7.75rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-125 {
		width: 7.8125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-126 {
		width: 7.875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-127 {
		width: 7.9375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-128 {
		width: 8rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-129 {
		width: 8.0625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-130 {
		width: 8.125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-131 {
		width: 8.1875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-132 {
		width: 8.25rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-133 {
		width: 8.3125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-134 {
		width: 8.375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-135 {
		width: 8.4375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-136 {
		width: 8.5rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-137 {
		width: 8.5625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-138 {
		width: 8.625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-139 {
		width: 8.6875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-140 {
		width: 8.75rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-141 {
		width: 8.8125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-142 {
		width: 8.875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-143 {
		width: 8.9375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-144 {
		width: 9rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-145 {
		width: 9.0625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-146 {
		width: 9.125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-147 {
		width: 9.1875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-148 {
		width: 9.25rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-149 {
		width: 9.3125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-150 {
		width: 9.375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-151 {
		width: 9.4375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-152 {
		width: 9.5rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-153 {
		width: 9.5625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-154 {
		width: 9.625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-155 {
		width: 9.6875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-156 {
		width: 9.75rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-157 {
		width: 9.8125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-158 {
		width: 9.875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-159 {
		width: 9.9375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-160 {
		width: 10rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-161 {
		width: 10.0625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-162 {
		width: 10.125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-163 {
		width: 10.1875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-164 {
		width: 10.25rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-165 {
		width: 10.3125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-166 {
		width: 10.375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-167 {
		width: 10.4375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-168 {
		width: 10.5rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-169 {
		width: 10.5625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-170 {
		width: 10.625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-171 {
		width: 10.6875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-172 {
		width: 10.75rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-173 {
		width: 10.8125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-174 {
		width: 10.875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-175 {
		width: 10.9375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-176 {
		width: 11rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-177 {
		width: 11.0625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-178 {
		width: 11.125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-179 {
		width: 11.1875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-180 {
		width: 11.25rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-181 {
		width: 11.3125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-182 {
		width: 11.375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-183 {
		width: 11.4375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-184 {
		width: 11.5rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-185 {
		width: 11.5625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-186 {
		width: 11.625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-187 {
		width: 11.6875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-188 {
		width: 11.75rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-189 {
		width: 11.8125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-190 {
		width: 11.875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-191 {
		width: 11.9375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-192 {
		width: 12rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-193 {
		width: 12.0625rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-194 {
		width: 12.125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-195 {
		width: 12.1875rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-196 {
		width: 12.25rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-197 {
		width: 12.3125rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-198 {
		width: 12.375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-199 {
		width: 12.4375rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-200 {
		width: 12.5rem !important
	}
}

@media (min-width:576px) {
	.fw-sm-auto {
		width: auto !important
	}
}

@media (min-width:768px) {
	.fw-md-0 {
		width: 0 !important
	}
}

@media (min-width:768px) {
	.fw-md-1 {
		width: .0625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-2 {
		width: .125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-3 {
		width: .1875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-4 {
		width: .25rem !important
	}
}

@media (min-width:768px) {
	.fw-md-5 {
		width: .3125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-6 {
		width: .375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-7 {
		width: .4375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-8 {
		width: .5rem !important
	}
}

@media (min-width:768px) {
	.fw-md-9 {
		width: .5625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-10 {
		width: .625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-11 {
		width: .6875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-12 {
		width: .75rem !important
	}
}

@media (min-width:768px) {
	.fw-md-13 {
		width: .8125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-14 {
		width: .875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-15 {
		width: .9375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-16 {
		width: 1rem !important
	}
}

@media (min-width:768px) {
	.fw-md-17 {
		width: 1.0625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-18 {
		width: 1.125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-19 {
		width: 1.1875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-20 {
		width: 1.25rem !important
	}
}

@media (min-width:768px) {
	.fw-md-21 {
		width: 1.3125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-22 {
		width: 1.375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-23 {
		width: 1.4375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-24 {
		width: 1.5rem !important
	}
}

@media (min-width:768px) {
	.fw-md-25 {
		width: 1.5625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-26 {
		width: 1.625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-27 {
		width: 1.6875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-28 {
		width: 1.75rem !important
	}
}

@media (min-width:768px) {
	.fw-md-29 {
		width: 1.8125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-30 {
		width: 1.875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-31 {
		width: 1.9375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-32 {
		width: 2rem !important
	}
}

@media (min-width:768px) {
	.fw-md-33 {
		width: 2.0625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-34 {
		width: 2.125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-35 {
		width: 2.1875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-36 {
		width: 2.25rem !important
	}
}

@media (min-width:768px) {
	.fw-md-37 {
		width: 2.3125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-38 {
		width: 2.375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-39 {
		width: 2.4375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-40 {
		width: 2.5rem !important
	}
}

@media (min-width:768px) {
	.fw-md-41 {
		width: 2.5625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-42 {
		width: 2.625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-43 {
		width: 2.6875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-44 {
		width: 2.75rem !important
	}
}

@media (min-width:768px) {
	.fw-md-45 {
		width: 2.8125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-46 {
		width: 2.875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-47 {
		width: 2.9375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-48 {
		width: 3rem !important
	}
}

@media (min-width:768px) {
	.fw-md-49 {
		width: 3.0625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-50 {
		width: 3.125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-51 {
		width: 3.1875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-52 {
		width: 3.25rem !important
	}
}

@media (min-width:768px) {
	.fw-md-53 {
		width: 3.3125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-54 {
		width: 3.375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-55 {
		width: 3.4375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-56 {
		width: 3.5rem !important
	}
}

@media (min-width:768px) {
	.fw-md-57 {
		width: 3.5625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-58 {
		width: 3.625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-59 {
		width: 3.6875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-60 {
		width: 3.75rem !important
	}
}

@media (min-width:768px) {
	.fw-md-61 {
		width: 3.8125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-62 {
		width: 3.875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-63 {
		width: 3.9375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-64 {
		width: 4rem !important
	}
}

@media (min-width:768px) {
	.fw-md-65 {
		width: 4.0625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-66 {
		width: 4.125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-67 {
		width: 4.1875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-68 {
		width: 4.25rem !important
	}
}

@media (min-width:768px) {
	.fw-md-69 {
		width: 4.3125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-70 {
		width: 4.375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-71 {
		width: 4.4375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-72 {
		width: 4.5rem !important
	}
}

@media (min-width:768px) {
	.fw-md-73 {
		width: 4.5625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-74 {
		width: 4.625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-75 {
		width: 4.6875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-76 {
		width: 4.75rem !important
	}
}

@media (min-width:768px) {
	.fw-md-77 {
		width: 4.8125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-78 {
		width: 4.875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-79 {
		width: 4.9375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-80 {
		width: 5rem !important
	}
}

@media (min-width:768px) {
	.fw-md-81 {
		width: 5.0625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-82 {
		width: 5.125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-83 {
		width: 5.1875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-84 {
		width: 5.25rem !important
	}
}

@media (min-width:768px) {
	.fw-md-85 {
		width: 5.3125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-86 {
		width: 5.375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-87 {
		width: 5.4375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-88 {
		width: 5.5rem !important
	}
}

@media (min-width:768px) {
	.fw-md-89 {
		width: 5.5625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-90 {
		width: 5.625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-91 {
		width: 5.6875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-92 {
		width: 5.75rem !important
	}
}

@media (min-width:768px) {
	.fw-md-93 {
		width: 5.8125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-94 {
		width: 5.875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-95 {
		width: 5.9375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-96 {
		width: 6rem !important
	}
}

@media (min-width:768px) {
	.fw-md-97 {
		width: 6.0625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-98 {
		width: 6.125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-99 {
		width: 6.1875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-100 {
		width: 6.25rem !important
	}
}

@media (min-width:768px) {
	.fw-md-101 {
		width: 6.3125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-102 {
		width: 6.375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-103 {
		width: 6.4375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-104 {
		width: 6.5rem !important
	}
}

@media (min-width:768px) {
	.fw-md-105 {
		width: 6.5625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-106 {
		width: 6.625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-107 {
		width: 6.6875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-108 {
		width: 6.75rem !important
	}
}

@media (min-width:768px) {
	.fw-md-109 {
		width: 6.8125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-110 {
		width: 6.875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-111 {
		width: 6.9375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-112 {
		width: 7rem !important
	}
}

@media (min-width:768px) {
	.fw-md-113 {
		width: 7.0625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-114 {
		width: 7.125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-115 {
		width: 7.1875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-116 {
		width: 7.25rem !important
	}
}

@media (min-width:768px) {
	.fw-md-117 {
		width: 7.3125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-118 {
		width: 7.375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-119 {
		width: 7.4375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-120 {
		width: 7.5rem !important
	}
}

@media (min-width:768px) {
	.fw-md-121 {
		width: 7.5625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-122 {
		width: 7.625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-123 {
		width: 7.6875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-124 {
		width: 7.75rem !important
	}
}

@media (min-width:768px) {
	.fw-md-125 {
		width: 7.8125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-126 {
		width: 7.875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-127 {
		width: 7.9375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-128 {
		width: 8rem !important
	}
}

@media (min-width:768px) {
	.fw-md-129 {
		width: 8.0625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-130 {
		width: 8.125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-131 {
		width: 8.1875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-132 {
		width: 8.25rem !important
	}
}

@media (min-width:768px) {
	.fw-md-133 {
		width: 8.3125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-134 {
		width: 8.375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-135 {
		width: 8.4375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-136 {
		width: 8.5rem !important
	}
}

@media (min-width:768px) {
	.fw-md-137 {
		width: 8.5625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-138 {
		width: 8.625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-139 {
		width: 8.6875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-140 {
		width: 8.75rem !important
	}
}

@media (min-width:768px) {
	.fw-md-141 {
		width: 8.8125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-142 {
		width: 8.875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-143 {
		width: 8.9375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-144 {
		width: 9rem !important
	}
}

@media (min-width:768px) {
	.fw-md-145 {
		width: 9.0625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-146 {
		width: 9.125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-147 {
		width: 9.1875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-148 {
		width: 9.25rem !important
	}
}

@media (min-width:768px) {
	.fw-md-149 {
		width: 9.3125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-150 {
		width: 9.375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-151 {
		width: 9.4375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-152 {
		width: 9.5rem !important
	}
}

@media (min-width:768px) {
	.fw-md-153 {
		width: 9.5625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-154 {
		width: 9.625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-155 {
		width: 9.6875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-156 {
		width: 9.75rem !important
	}
}

@media (min-width:768px) {
	.fw-md-157 {
		width: 9.8125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-158 {
		width: 9.875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-159 {
		width: 9.9375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-160 {
		width: 10rem !important
	}
}

@media (min-width:768px) {
	.fw-md-161 {
		width: 10.0625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-162 {
		width: 10.125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-163 {
		width: 10.1875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-164 {
		width: 10.25rem !important
	}
}

@media (min-width:768px) {
	.fw-md-165 {
		width: 10.3125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-166 {
		width: 10.375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-167 {
		width: 10.4375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-168 {
		width: 10.5rem !important
	}
}

@media (min-width:768px) {
	.fw-md-169 {
		width: 10.5625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-170 {
		width: 10.625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-171 {
		width: 10.6875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-172 {
		width: 10.75rem !important
	}
}

@media (min-width:768px) {
	.fw-md-173 {
		width: 10.8125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-174 {
		width: 10.875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-175 {
		width: 10.9375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-176 {
		width: 11rem !important
	}
}

@media (min-width:768px) {
	.fw-md-177 {
		width: 11.0625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-178 {
		width: 11.125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-179 {
		width: 11.1875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-180 {
		width: 11.25rem !important
	}
}

@media (min-width:768px) {
	.fw-md-181 {
		width: 11.3125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-182 {
		width: 11.375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-183 {
		width: 11.4375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-184 {
		width: 11.5rem !important
	}
}

@media (min-width:768px) {
	.fw-md-185 {
		width: 11.5625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-186 {
		width: 11.625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-187 {
		width: 11.6875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-188 {
		width: 11.75rem !important
	}
}

@media (min-width:768px) {
	.fw-md-189 {
		width: 11.8125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-190 {
		width: 11.875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-191 {
		width: 11.9375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-192 {
		width: 12rem !important
	}
}

@media (min-width:768px) {
	.fw-md-193 {
		width: 12.0625rem !important
	}
}

@media (min-width:768px) {
	.fw-md-194 {
		width: 12.125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-195 {
		width: 12.1875rem !important
	}
}

@media (min-width:768px) {
	.fw-md-196 {
		width: 12.25rem !important
	}
}

@media (min-width:768px) {
	.fw-md-197 {
		width: 12.3125rem !important
	}
}

@media (min-width:768px) {
	.fw-md-198 {
		width: 12.375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-199 {
		width: 12.4375rem !important
	}
}

@media (min-width:768px) {
	.fw-md-200 {
		width: 12.5rem !important
	}
}

@media (min-width:768px) {
	.fw-md-auto {
		width: auto !important
	}
}

@media (min-width:992px) {
	.fw-lg-0 {
		width: 0 !important
	}
}

@media (min-width:992px) {
	.fw-lg-1 {
		width: .0625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-2 {
		width: .125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-3 {
		width: .1875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-4 {
		width: .25rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-5 {
		width: .3125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-6 {
		width: .375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-7 {
		width: .4375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-8 {
		width: .5rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-9 {
		width: .5625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-10 {
		width: .625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-11 {
		width: .6875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-12 {
		width: .75rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-13 {
		width: .8125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-14 {
		width: .875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-15 {
		width: .9375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-16 {
		width: 1rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-17 {
		width: 1.0625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-18 {
		width: 1.125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-19 {
		width: 1.1875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-20 {
		width: 1.25rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-21 {
		width: 1.3125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-22 {
		width: 1.375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-23 {
		width: 1.4375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-24 {
		width: 1.5rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-25 {
		width: 1.5625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-26 {
		width: 1.625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-27 {
		width: 1.6875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-28 {
		width: 1.75rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-29 {
		width: 1.8125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-30 {
		width: 1.875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-31 {
		width: 1.9375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-32 {
		width: 2rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-33 {
		width: 2.0625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-34 {
		width: 2.125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-35 {
		width: 2.1875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-36 {
		width: 2.25rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-37 {
		width: 2.3125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-38 {
		width: 2.375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-39 {
		width: 2.4375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-40 {
		width: 2.5rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-41 {
		width: 2.5625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-42 {
		width: 2.625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-43 {
		width: 2.6875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-44 {
		width: 2.75rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-45 {
		width: 2.8125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-46 {
		width: 2.875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-47 {
		width: 2.9375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-48 {
		width: 3rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-49 {
		width: 3.0625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-50 {
		width: 3.125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-51 {
		width: 3.1875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-52 {
		width: 3.25rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-53 {
		width: 3.3125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-54 {
		width: 3.375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-55 {
		width: 3.4375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-56 {
		width: 3.5rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-57 {
		width: 3.5625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-58 {
		width: 3.625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-59 {
		width: 3.6875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-60 {
		width: 3.75rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-61 {
		width: 3.8125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-62 {
		width: 3.875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-63 {
		width: 3.9375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-64 {
		width: 4rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-65 {
		width: 4.0625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-66 {
		width: 4.125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-67 {
		width: 4.1875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-68 {
		width: 4.25rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-69 {
		width: 4.3125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-70 {
		width: 4.375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-71 {
		width: 4.4375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-72 {
		width: 4.5rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-73 {
		width: 4.5625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-74 {
		width: 4.625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-75 {
		width: 4.6875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-76 {
		width: 4.75rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-77 {
		width: 4.8125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-78 {
		width: 4.875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-79 {
		width: 4.9375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-80 {
		width: 5rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-81 {
		width: 5.0625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-82 {
		width: 5.125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-83 {
		width: 5.1875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-84 {
		width: 5.25rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-85 {
		width: 5.3125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-86 {
		width: 5.375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-87 {
		width: 5.4375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-88 {
		width: 5.5rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-89 {
		width: 5.5625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-90 {
		width: 5.625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-91 {
		width: 5.6875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-92 {
		width: 5.75rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-93 {
		width: 5.8125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-94 {
		width: 5.875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-95 {
		width: 5.9375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-96 {
		width: 6rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-97 {
		width: 6.0625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-98 {
		width: 6.125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-99 {
		width: 6.1875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-100 {
		width: 6.25rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-101 {
		width: 6.3125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-102 {
		width: 6.375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-103 {
		width: 6.4375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-104 {
		width: 6.5rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-105 {
		width: 6.5625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-106 {
		width: 6.625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-107 {
		width: 6.6875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-108 {
		width: 6.75rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-109 {
		width: 6.8125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-110 {
		width: 6.875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-111 {
		width: 6.9375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-112 {
		width: 7rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-113 {
		width: 7.0625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-114 {
		width: 7.125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-115 {
		width: 7.1875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-116 {
		width: 7.25rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-117 {
		width: 7.3125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-118 {
		width: 7.375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-119 {
		width: 7.4375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-120 {
		width: 7.5rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-121 {
		width: 7.5625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-122 {
		width: 7.625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-123 {
		width: 7.6875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-124 {
		width: 7.75rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-125 {
		width: 7.8125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-126 {
		width: 7.875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-127 {
		width: 7.9375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-128 {
		width: 8rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-129 {
		width: 8.0625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-130 {
		width: 8.125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-131 {
		width: 8.1875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-132 {
		width: 8.25rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-133 {
		width: 8.3125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-134 {
		width: 8.375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-135 {
		width: 8.4375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-136 {
		width: 8.5rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-137 {
		width: 8.5625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-138 {
		width: 8.625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-139 {
		width: 8.6875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-140 {
		width: 8.75rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-141 {
		width: 8.8125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-142 {
		width: 8.875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-143 {
		width: 8.9375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-144 {
		width: 9rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-145 {
		width: 9.0625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-146 {
		width: 9.125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-147 {
		width: 9.1875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-148 {
		width: 9.25rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-149 {
		width: 9.3125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-150 {
		width: 9.375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-151 {
		width: 9.4375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-152 {
		width: 9.5rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-153 {
		width: 9.5625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-154 {
		width: 9.625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-155 {
		width: 9.6875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-156 {
		width: 9.75rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-157 {
		width: 9.8125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-158 {
		width: 9.875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-159 {
		width: 9.9375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-160 {
		width: 10rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-161 {
		width: 10.0625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-162 {
		width: 10.125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-163 {
		width: 10.1875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-164 {
		width: 10.25rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-165 {
		width: 10.3125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-166 {
		width: 10.375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-167 {
		width: 10.4375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-168 {
		width: 10.5rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-169 {
		width: 10.5625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-170 {
		width: 10.625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-171 {
		width: 10.6875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-172 {
		width: 10.75rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-173 {
		width: 10.8125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-174 {
		width: 10.875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-175 {
		width: 10.9375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-176 {
		width: 11rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-177 {
		width: 11.0625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-178 {
		width: 11.125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-179 {
		width: 11.1875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-180 {
		width: 11.25rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-181 {
		width: 11.3125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-182 {
		width: 11.375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-183 {
		width: 11.4375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-184 {
		width: 11.5rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-185 {
		width: 11.5625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-186 {
		width: 11.625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-187 {
		width: 11.6875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-188 {
		width: 11.75rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-189 {
		width: 11.8125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-190 {
		width: 11.875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-191 {
		width: 11.9375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-192 {
		width: 12rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-193 {
		width: 12.0625rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-194 {
		width: 12.125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-195 {
		width: 12.1875rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-196 {
		width: 12.25rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-197 {
		width: 12.3125rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-198 {
		width: 12.375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-199 {
		width: 12.4375rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-200 {
		width: 12.5rem !important
	}
}

@media (min-width:992px) {
	.fw-lg-auto {
		width: auto !important
	}
}

@media (min-width:1200px) {
	.fw-xl-0 {
		width: 0 !important
	}
}

@media (min-width:1200px) {
	.fw-xl-1 {
		width: .0625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-2 {
		width: .125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-3 {
		width: .1875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-4 {
		width: .25rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-5 {
		width: .3125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-6 {
		width: .375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-7 {
		width: .4375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-8 {
		width: .5rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-9 {
		width: .5625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-10 {
		width: .625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-11 {
		width: .6875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-12 {
		width: .75rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-13 {
		width: .8125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-14 {
		width: .875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-15 {
		width: .9375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-16 {
		width: 1rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-17 {
		width: 1.0625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-18 {
		width: 1.125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-19 {
		width: 1.1875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-20 {
		width: 1.25rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-21 {
		width: 1.3125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-22 {
		width: 1.375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-23 {
		width: 1.4375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-24 {
		width: 1.5rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-25 {
		width: 1.5625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-26 {
		width: 1.625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-27 {
		width: 1.6875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-28 {
		width: 1.75rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-29 {
		width: 1.8125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-30 {
		width: 1.875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-31 {
		width: 1.9375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-32 {
		width: 2rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-33 {
		width: 2.0625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-34 {
		width: 2.125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-35 {
		width: 2.1875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-36 {
		width: 2.25rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-37 {
		width: 2.3125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-38 {
		width: 2.375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-39 {
		width: 2.4375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-40 {
		width: 2.5rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-41 {
		width: 2.5625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-42 {
		width: 2.625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-43 {
		width: 2.6875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-44 {
		width: 2.75rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-45 {
		width: 2.8125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-46 {
		width: 2.875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-47 {
		width: 2.9375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-48 {
		width: 3rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-49 {
		width: 3.0625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-50 {
		width: 3.125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-51 {
		width: 3.1875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-52 {
		width: 3.25rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-53 {
		width: 3.3125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-54 {
		width: 3.375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-55 {
		width: 3.4375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-56 {
		width: 3.5rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-57 {
		width: 3.5625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-58 {
		width: 3.625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-59 {
		width: 3.6875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-60 {
		width: 3.75rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-61 {
		width: 3.8125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-62 {
		width: 3.875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-63 {
		width: 3.9375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-64 {
		width: 4rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-65 {
		width: 4.0625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-66 {
		width: 4.125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-67 {
		width: 4.1875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-68 {
		width: 4.25rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-69 {
		width: 4.3125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-70 {
		width: 4.375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-71 {
		width: 4.4375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-72 {
		width: 4.5rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-73 {
		width: 4.5625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-74 {
		width: 4.625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-75 {
		width: 4.6875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-76 {
		width: 4.75rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-77 {
		width: 4.8125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-78 {
		width: 4.875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-79 {
		width: 4.9375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-80 {
		width: 5rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-81 {
		width: 5.0625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-82 {
		width: 5.125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-83 {
		width: 5.1875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-84 {
		width: 5.25rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-85 {
		width: 5.3125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-86 {
		width: 5.375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-87 {
		width: 5.4375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-88 {
		width: 5.5rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-89 {
		width: 5.5625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-90 {
		width: 5.625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-91 {
		width: 5.6875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-92 {
		width: 5.75rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-93 {
		width: 5.8125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-94 {
		width: 5.875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-95 {
		width: 5.9375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-96 {
		width: 6rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-97 {
		width: 6.0625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-98 {
		width: 6.125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-99 {
		width: 6.1875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-100 {
		width: 6.25rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-101 {
		width: 6.3125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-102 {
		width: 6.375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-103 {
		width: 6.4375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-104 {
		width: 6.5rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-105 {
		width: 6.5625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-106 {
		width: 6.625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-107 {
		width: 6.6875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-108 {
		width: 6.75rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-109 {
		width: 6.8125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-110 {
		width: 6.875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-111 {
		width: 6.9375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-112 {
		width: 7rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-113 {
		width: 7.0625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-114 {
		width: 7.125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-115 {
		width: 7.1875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-116 {
		width: 7.25rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-117 {
		width: 7.3125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-118 {
		width: 7.375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-119 {
		width: 7.4375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-120 {
		width: 7.5rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-121 {
		width: 7.5625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-122 {
		width: 7.625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-123 {
		width: 7.6875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-124 {
		width: 7.75rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-125 {
		width: 7.8125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-126 {
		width: 7.875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-127 {
		width: 7.9375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-128 {
		width: 8rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-129 {
		width: 8.0625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-130 {
		width: 8.125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-131 {
		width: 8.1875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-132 {
		width: 8.25rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-133 {
		width: 8.3125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-134 {
		width: 8.375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-135 {
		width: 8.4375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-136 {
		width: 8.5rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-137 {
		width: 8.5625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-138 {
		width: 8.625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-139 {
		width: 8.6875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-140 {
		width: 8.75rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-141 {
		width: 8.8125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-142 {
		width: 8.875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-143 {
		width: 8.9375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-144 {
		width: 9rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-145 {
		width: 9.0625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-146 {
		width: 9.125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-147 {
		width: 9.1875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-148 {
		width: 9.25rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-149 {
		width: 9.3125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-150 {
		width: 9.375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-151 {
		width: 9.4375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-152 {
		width: 9.5rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-153 {
		width: 9.5625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-154 {
		width: 9.625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-155 {
		width: 9.6875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-156 {
		width: 9.75rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-157 {
		width: 9.8125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-158 {
		width: 9.875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-159 {
		width: 9.9375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-160 {
		width: 10rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-161 {
		width: 10.0625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-162 {
		width: 10.125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-163 {
		width: 10.1875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-164 {
		width: 10.25rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-165 {
		width: 10.3125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-166 {
		width: 10.375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-167 {
		width: 10.4375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-168 {
		width: 10.5rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-169 {
		width: 10.5625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-170 {
		width: 10.625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-171 {
		width: 10.6875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-172 {
		width: 10.75rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-173 {
		width: 10.8125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-174 {
		width: 10.875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-175 {
		width: 10.9375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-176 {
		width: 11rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-177 {
		width: 11.0625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-178 {
		width: 11.125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-179 {
		width: 11.1875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-180 {
		width: 11.25rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-181 {
		width: 11.3125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-182 {
		width: 11.375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-183 {
		width: 11.4375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-184 {
		width: 11.5rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-185 {
		width: 11.5625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-186 {
		width: 11.625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-187 {
		width: 11.6875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-188 {
		width: 11.75rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-189 {
		width: 11.8125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-190 {
		width: 11.875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-191 {
		width: 11.9375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-192 {
		width: 12rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-193 {
		width: 12.0625rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-194 {
		width: 12.125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-195 {
		width: 12.1875rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-196 {
		width: 12.25rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-197 {
		width: 12.3125rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-198 {
		width: 12.375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-199 {
		width: 12.4375rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-200 {
		width: 12.5rem !important
	}
}

@media (min-width:1200px) {
	.fw-xl-auto {
		width: auto !important
	}
}

.fh-0 {
	height: 0 !important
}

.fh-1 {
	height: .0625rem !important
}

.fh-2 {
	height: .125rem !important
}

.fh-3 {
	height: .1875rem !important
}

.fh-4 {
	height: .25rem !important
}

.fh-5 {
	height: .3125rem !important
}

.fh-6 {
	height: .375rem !important
}

.fh-7 {
	height: .4375rem !important
}

.fh-8 {
	height: .5rem !important
}

.fh-9 {
	height: .5625rem !important
}

.fh-10 {
	height: .625rem !important
}

.fh-11 {
	height: .6875rem !important
}

.fh-12 {
	height: .75rem !important
}

.fh-13 {
	height: .8125rem !important
}

.fh-14 {
	height: .875rem !important
}

.fh-15 {
	height: .9375rem !important
}

.fh-16 {
	height: 1rem !important
}

.fh-17 {
	height: 1.0625rem !important
}

.fh-18 {
	height: 1.125rem !important
}

.fh-19 {
	height: 1.1875rem !important
}

.fh-20 {
	height: 1.25rem !important
}

.fh-21 {
	height: 1.3125rem !important
}

.fh-22 {
	height: 1.375rem !important
}

.fh-23 {
	height: 1.4375rem !important
}

.fh-24 {
	height: 1.5rem !important
}

.fh-25 {
	height: 1.5625rem !important
}

.fh-26 {
	height: 1.625rem !important
}

.fh-27 {
	height: 1.6875rem !important
}

.fh-28 {
	height: 1.75rem !important
}

.fh-29 {
	height: 1.8125rem !important
}

.fh-30 {
	height: 1.875rem !important
}

.fh-31 {
	height: 1.9375rem !important
}

.fh-32 {
	height: 2rem !important
}

.fh-33 {
	height: 2.0625rem !important
}

.fh-34 {
	height: 2.125rem !important
}

.fh-35 {
	height: 2.1875rem !important
}

.fh-36 {
	height: 2.25rem !important
}

.fh-37 {
	height: 2.3125rem !important
}

.fh-38 {
	height: 2.375rem !important
}

.fh-39 {
	height: 2.4375rem !important
}

.fh-40 {
	height: 2.5rem !important
}

.fh-41 {
	height: 2.5625rem !important
}

.fh-42 {
	height: 2.625rem !important
}

.fh-43 {
	height: 2.6875rem !important
}

.fh-44 {
	height: 2.75rem !important
}

.fh-45 {
	height: 2.8125rem !important
}

.fh-46 {
	height: 2.875rem !important
}

.fh-47 {
	height: 2.9375rem !important
}

.fh-48 {
	height: 3rem !important
}

.fh-49 {
	height: 3.0625rem !important
}

.fh-50 {
	height: 3.125rem !important
}

.fh-51 {
	height: 3.1875rem !important
}

.fh-52 {
	height: 3.25rem !important
}

.fh-53 {
	height: 3.3125rem !important
}

.fh-54 {
	height: 3.375rem !important
}

.fh-55 {
	height: 3.4375rem !important
}

.fh-56 {
	height: 3.5rem !important
}

.fh-57 {
	height: 3.5625rem !important
}

.fh-58 {
	height: 3.625rem !important
}

.fh-59 {
	height: 3.6875rem !important
}

.fh-60 {
	height: 3.75rem !important
}

.fh-61 {
	height: 3.8125rem !important
}

.fh-62 {
	height: 3.875rem !important
}

.fh-63 {
	height: 3.9375rem !important
}

.fh-64 {
	height: 4rem !important
}

.fh-65 {
	height: 4.0625rem !important
}

.fh-66 {
	height: 4.125rem !important
}

.fh-67 {
	height: 4.1875rem !important
}

.fh-68 {
	height: 4.25rem !important
}

.fh-69 {
	height: 4.3125rem !important
}

.fh-70 {
	height: 4.375rem !important
}

.fh-71 {
	height: 4.4375rem !important
}

.fh-72 {
	height: 4.5rem !important
}

.fh-73 {
	height: 4.5625rem !important
}

.fh-74 {
	height: 4.625rem !important
}

.fh-75 {
	height: 4.6875rem !important
}

.fh-76 {
	height: 4.75rem !important
}

.fh-77 {
	height: 4.8125rem !important
}

.fh-78 {
	height: 4.875rem !important
}

.fh-79 {
	height: 4.9375rem !important
}

.fh-80 {
	height: 5rem !important
}

.fh-81 {
	height: 5.0625rem !important
}

.fh-82 {
	height: 5.125rem !important
}

.fh-83 {
	height: 5.1875rem !important
}

.fh-84 {
	height: 5.25rem !important
}

.fh-85 {
	height: 5.3125rem !important
}

.fh-86 {
	height: 5.375rem !important
}

.fh-87 {
	height: 5.4375rem !important
}

.fh-88 {
	height: 5.5rem !important
}

.fh-89 {
	height: 5.5625rem !important
}

.fh-90 {
	height: 5.625rem !important
}

.fh-91 {
	height: 5.6875rem !important
}

.fh-92 {
	height: 5.75rem !important
}

.fh-93 {
	height: 5.8125rem !important
}

.fh-94 {
	height: 5.875rem !important
}

.fh-95 {
	height: 5.9375rem !important
}

.fh-96 {
	height: 6rem !important
}

.fh-97 {
	height: 6.0625rem !important
}

.fh-98 {
	height: 6.125rem !important
}

.fh-99 {
	height: 6.1875rem !important
}

.fh-100 {
	height: 6.25rem !important
}

.fh-101 {
	height: 6.3125rem !important
}

.fh-102 {
	height: 6.375rem !important
}

.fh-103 {
	height: 6.4375rem !important
}

.fh-104 {
	height: 6.5rem !important
}

.fh-105 {
	height: 6.5625rem !important
}

.fh-106 {
	height: 6.625rem !important
}

.fh-107 {
	height: 6.6875rem !important
}

.fh-108 {
	height: 6.75rem !important
}

.fh-109 {
	height: 6.8125rem !important
}

.fh-110 {
	height: 6.875rem !important
}

.fh-111 {
	height: 6.9375rem !important
}

.fh-112 {
	height: 7rem !important
}

.fh-113 {
	height: 7.0625rem !important
}

.fh-114 {
	height: 7.125rem !important
}

.fh-115 {
	height: 7.1875rem !important
}

.fh-116 {
	height: 7.25rem !important
}

.fh-117 {
	height: 7.3125rem !important
}

.fh-118 {
	height: 7.375rem !important
}

.fh-119 {
	height: 7.4375rem !important
}

.fh-120 {
	height: 7.5rem !important
}

.fh-121 {
	height: 7.5625rem !important
}

.fh-122 {
	height: 7.625rem !important
}

.fh-123 {
	height: 7.6875rem !important
}

.fh-124 {
	height: 7.75rem !important
}

.fh-125 {
	height: 7.8125rem !important
}

.fh-126 {
	height: 7.875rem !important
}

.fh-127 {
	height: 7.9375rem !important
}

.fh-128 {
	height: 8rem !important
}

.fh-129 {
	height: 8.0625rem !important
}

.fh-130 {
	height: 8.125rem !important
}

.fh-131 {
	height: 8.1875rem !important
}

.fh-132 {
	height: 8.25rem !important
}

.fh-133 {
	height: 8.3125rem !important
}

.fh-134 {
	height: 8.375rem !important
}

.fh-135 {
	height: 8.4375rem !important
}

.fh-136 {
	height: 8.5rem !important
}

.fh-137 {
	height: 8.5625rem !important
}

.fh-138 {
	height: 8.625rem !important
}

.fh-139 {
	height: 8.6875rem !important
}

.fh-140 {
	height: 8.75rem !important
}

.fh-141 {
	height: 8.8125rem !important
}

.fh-142 {
	height: 8.875rem !important
}

.fh-143 {
	height: 8.9375rem !important
}

.fh-144 {
	height: 9rem !important
}

.fh-145 {
	height: 9.0625rem !important
}

.fh-146 {
	height: 9.125rem !important
}

.fh-147 {
	height: 9.1875rem !important
}

.fh-148 {
	height: 9.25rem !important
}

.fh-149 {
	height: 9.3125rem !important
}

.fh-150 {
	height: 9.375rem !important
}

.fh-151 {
	height: 9.4375rem !important
}

.fh-152 {
	height: 9.5rem !important
}

.fh-153 {
	height: 9.5625rem !important
}

.fh-154 {
	height: 9.625rem !important
}

.fh-155 {
	height: 9.6875rem !important
}

.fh-156 {
	height: 9.75rem !important
}

.fh-157 {
	height: 9.8125rem !important
}

.fh-158 {
	height: 9.875rem !important
}

.fh-159 {
	height: 9.9375rem !important
}

.fh-160 {
	height: 10rem !important
}

.fh-161 {
	height: 10.0625rem !important
}

.fh-162 {
	height: 10.125rem !important
}

.fh-163 {
	height: 10.1875rem !important
}

.fh-164 {
	height: 10.25rem !important
}

.fh-165 {
	height: 10.3125rem !important
}

.fh-166 {
	height: 10.375rem !important
}

.fh-167 {
	height: 10.4375rem !important
}

.fh-168 {
	height: 10.5rem !important
}

.fh-169 {
	height: 10.5625rem !important
}

.fh-170 {
	height: 10.625rem !important
}

.fh-171 {
	height: 10.6875rem !important
}

.fh-172 {
	height: 10.75rem !important
}

.fh-173 {
	height: 10.8125rem !important
}

.fh-174 {
	height: 10.875rem !important
}

.fh-175 {
	height: 10.9375rem !important
}

.fh-176 {
	height: 11rem !important
}

.fh-177 {
	height: 11.0625rem !important
}

.fh-178 {
	height: 11.125rem !important
}

.fh-179 {
	height: 11.1875rem !important
}

.fh-180 {
	height: 11.25rem !important
}

.fh-181 {
	height: 11.3125rem !important
}

.fh-182 {
	height: 11.375rem !important
}

.fh-183 {
	height: 11.4375rem !important
}

.fh-184 {
	height: 11.5rem !important
}

.fh-185 {
	height: 11.5625rem !important
}

.fh-186 {
	height: 11.625rem !important
}

.fh-187 {
	height: 11.6875rem !important
}

.fh-188 {
	height: 11.75rem !important
}

.fh-189 {
	height: 11.8125rem !important
}

.fh-190 {
	height: 11.875rem !important
}

.fh-191 {
	height: 11.9375rem !important
}

.fh-192 {
	height: 12rem !important
}

.fh-193 {
	height: 12.0625rem !important
}

.fh-194 {
	height: 12.125rem !important
}

.fh-195 {
	height: 12.1875rem !important
}

.fh-196 {
	height: 12.25rem !important
}

.fh-197 {
	height: 12.3125rem !important
}

.fh-198 {
	height: 12.375rem !important
}

.fh-199 {
	height: 12.4375rem !important
}

.fh-200 {
	height: 12.5rem !important
}

.fh-auto {
	height: auto !important
}

@media (min-width:576px) {
	.fh-sm-0 {
		height: 0 !important
	}
}

@media (min-width:576px) {
	.fh-sm-1 {
		height: .0625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-2 {
		height: .125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-3 {
		height: .1875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-4 {
		height: .25rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-5 {
		height: .3125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-6 {
		height: .375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-7 {
		height: .4375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-8 {
		height: .5rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-9 {
		height: .5625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-10 {
		height: .625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-11 {
		height: .6875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-12 {
		height: .75rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-13 {
		height: .8125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-14 {
		height: .875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-15 {
		height: .9375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-16 {
		height: 1rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-17 {
		height: 1.0625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-18 {
		height: 1.125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-19 {
		height: 1.1875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-20 {
		height: 1.25rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-21 {
		height: 1.3125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-22 {
		height: 1.375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-23 {
		height: 1.4375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-24 {
		height: 1.5rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-25 {
		height: 1.5625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-26 {
		height: 1.625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-27 {
		height: 1.6875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-28 {
		height: 1.75rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-29 {
		height: 1.8125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-30 {
		height: 1.875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-31 {
		height: 1.9375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-32 {
		height: 2rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-33 {
		height: 2.0625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-34 {
		height: 2.125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-35 {
		height: 2.1875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-36 {
		height: 2.25rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-37 {
		height: 2.3125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-38 {
		height: 2.375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-39 {
		height: 2.4375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-40 {
		height: 2.5rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-41 {
		height: 2.5625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-42 {
		height: 2.625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-43 {
		height: 2.6875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-44 {
		height: 2.75rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-45 {
		height: 2.8125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-46 {
		height: 2.875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-47 {
		height: 2.9375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-48 {
		height: 3rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-49 {
		height: 3.0625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-50 {
		height: 3.125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-51 {
		height: 3.1875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-52 {
		height: 3.25rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-53 {
		height: 3.3125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-54 {
		height: 3.375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-55 {
		height: 3.4375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-56 {
		height: 3.5rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-57 {
		height: 3.5625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-58 {
		height: 3.625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-59 {
		height: 3.6875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-60 {
		height: 3.75rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-61 {
		height: 3.8125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-62 {
		height: 3.875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-63 {
		height: 3.9375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-64 {
		height: 4rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-65 {
		height: 4.0625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-66 {
		height: 4.125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-67 {
		height: 4.1875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-68 {
		height: 4.25rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-69 {
		height: 4.3125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-70 {
		height: 4.375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-71 {
		height: 4.4375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-72 {
		height: 4.5rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-73 {
		height: 4.5625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-74 {
		height: 4.625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-75 {
		height: 4.6875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-76 {
		height: 4.75rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-77 {
		height: 4.8125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-78 {
		height: 4.875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-79 {
		height: 4.9375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-80 {
		height: 5rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-81 {
		height: 5.0625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-82 {
		height: 5.125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-83 {
		height: 5.1875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-84 {
		height: 5.25rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-85 {
		height: 5.3125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-86 {
		height: 5.375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-87 {
		height: 5.4375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-88 {
		height: 5.5rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-89 {
		height: 5.5625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-90 {
		height: 5.625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-91 {
		height: 5.6875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-92 {
		height: 5.75rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-93 {
		height: 5.8125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-94 {
		height: 5.875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-95 {
		height: 5.9375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-96 {
		height: 6rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-97 {
		height: 6.0625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-98 {
		height: 6.125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-99 {
		height: 6.1875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-100 {
		height: 6.25rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-101 {
		height: 6.3125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-102 {
		height: 6.375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-103 {
		height: 6.4375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-104 {
		height: 6.5rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-105 {
		height: 6.5625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-106 {
		height: 6.625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-107 {
		height: 6.6875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-108 {
		height: 6.75rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-109 {
		height: 6.8125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-110 {
		height: 6.875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-111 {
		height: 6.9375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-112 {
		height: 7rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-113 {
		height: 7.0625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-114 {
		height: 7.125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-115 {
		height: 7.1875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-116 {
		height: 7.25rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-117 {
		height: 7.3125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-118 {
		height: 7.375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-119 {
		height: 7.4375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-120 {
		height: 7.5rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-121 {
		height: 7.5625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-122 {
		height: 7.625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-123 {
		height: 7.6875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-124 {
		height: 7.75rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-125 {
		height: 7.8125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-126 {
		height: 7.875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-127 {
		height: 7.9375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-128 {
		height: 8rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-129 {
		height: 8.0625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-130 {
		height: 8.125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-131 {
		height: 8.1875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-132 {
		height: 8.25rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-133 {
		height: 8.3125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-134 {
		height: 8.375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-135 {
		height: 8.4375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-136 {
		height: 8.5rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-137 {
		height: 8.5625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-138 {
		height: 8.625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-139 {
		height: 8.6875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-140 {
		height: 8.75rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-141 {
		height: 8.8125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-142 {
		height: 8.875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-143 {
		height: 8.9375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-144 {
		height: 9rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-145 {
		height: 9.0625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-146 {
		height: 9.125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-147 {
		height: 9.1875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-148 {
		height: 9.25rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-149 {
		height: 9.3125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-150 {
		height: 9.375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-151 {
		height: 9.4375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-152 {
		height: 9.5rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-153 {
		height: 9.5625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-154 {
		height: 9.625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-155 {
		height: 9.6875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-156 {
		height: 9.75rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-157 {
		height: 9.8125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-158 {
		height: 9.875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-159 {
		height: 9.9375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-160 {
		height: 10rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-161 {
		height: 10.0625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-162 {
		height: 10.125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-163 {
		height: 10.1875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-164 {
		height: 10.25rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-165 {
		height: 10.3125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-166 {
		height: 10.375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-167 {
		height: 10.4375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-168 {
		height: 10.5rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-169 {
		height: 10.5625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-170 {
		height: 10.625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-171 {
		height: 10.6875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-172 {
		height: 10.75rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-173 {
		height: 10.8125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-174 {
		height: 10.875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-175 {
		height: 10.9375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-176 {
		height: 11rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-177 {
		height: 11.0625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-178 {
		height: 11.125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-179 {
		height: 11.1875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-180 {
		height: 11.25rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-181 {
		height: 11.3125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-182 {
		height: 11.375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-183 {
		height: 11.4375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-184 {
		height: 11.5rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-185 {
		height: 11.5625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-186 {
		height: 11.625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-187 {
		height: 11.6875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-188 {
		height: 11.75rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-189 {
		height: 11.8125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-190 {
		height: 11.875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-191 {
		height: 11.9375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-192 {
		height: 12rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-193 {
		height: 12.0625rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-194 {
		height: 12.125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-195 {
		height: 12.1875rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-196 {
		height: 12.25rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-197 {
		height: 12.3125rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-198 {
		height: 12.375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-199 {
		height: 12.4375rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-200 {
		height: 12.5rem !important
	}
}

@media (min-width:576px) {
	.fh-sm-auto {
		height: auto !important
	}
}

@media (min-width:768px) {
	.fh-md-0 {
		height: 0 !important
	}
}

@media (min-width:768px) {
	.fh-md-1 {
		height: .0625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-2 {
		height: .125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-3 {
		height: .1875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-4 {
		height: .25rem !important
	}
}

@media (min-width:768px) {
	.fh-md-5 {
		height: .3125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-6 {
		height: .375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-7 {
		height: .4375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-8 {
		height: .5rem !important
	}
}

@media (min-width:768px) {
	.fh-md-9 {
		height: .5625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-10 {
		height: .625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-11 {
		height: .6875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-12 {
		height: .75rem !important
	}
}

@media (min-width:768px) {
	.fh-md-13 {
		height: .8125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-14 {
		height: .875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-15 {
		height: .9375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-16 {
		height: 1rem !important
	}
}

@media (min-width:768px) {
	.fh-md-17 {
		height: 1.0625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-18 {
		height: 1.125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-19 {
		height: 1.1875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-20 {
		height: 1.25rem !important
	}
}

@media (min-width:768px) {
	.fh-md-21 {
		height: 1.3125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-22 {
		height: 1.375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-23 {
		height: 1.4375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-24 {
		height: 1.5rem !important
	}
}

@media (min-width:768px) {
	.fh-md-25 {
		height: 1.5625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-26 {
		height: 1.625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-27 {
		height: 1.6875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-28 {
		height: 1.75rem !important
	}
}

@media (min-width:768px) {
	.fh-md-29 {
		height: 1.8125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-30 {
		height: 1.875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-31 {
		height: 1.9375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-32 {
		height: 2rem !important
	}
}

@media (min-width:768px) {
	.fh-md-33 {
		height: 2.0625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-34 {
		height: 2.125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-35 {
		height: 2.1875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-36 {
		height: 2.25rem !important
	}
}

@media (min-width:768px) {
	.fh-md-37 {
		height: 2.3125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-38 {
		height: 2.375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-39 {
		height: 2.4375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-40 {
		height: 2.5rem !important
	}
}

@media (min-width:768px) {
	.fh-md-41 {
		height: 2.5625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-42 {
		height: 2.625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-43 {
		height: 2.6875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-44 {
		height: 2.75rem !important
	}
}

@media (min-width:768px) {
	.fh-md-45 {
		height: 2.8125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-46 {
		height: 2.875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-47 {
		height: 2.9375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-48 {
		height: 3rem !important
	}
}

@media (min-width:768px) {
	.fh-md-49 {
		height: 3.0625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-50 {
		height: 3.125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-51 {
		height: 3.1875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-52 {
		height: 3.25rem !important
	}
}

@media (min-width:768px) {
	.fh-md-53 {
		height: 3.3125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-54 {
		height: 3.375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-55 {
		height: 3.4375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-56 {
		height: 3.5rem !important
	}
}

@media (min-width:768px) {
	.fh-md-57 {
		height: 3.5625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-58 {
		height: 3.625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-59 {
		height: 3.6875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-60 {
		height: 3.75rem !important
	}
}

@media (min-width:768px) {
	.fh-md-61 {
		height: 3.8125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-62 {
		height: 3.875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-63 {
		height: 3.9375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-64 {
		height: 4rem !important
	}
}

@media (min-width:768px) {
	.fh-md-65 {
		height: 4.0625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-66 {
		height: 4.125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-67 {
		height: 4.1875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-68 {
		height: 4.25rem !important
	}
}

@media (min-width:768px) {
	.fh-md-69 {
		height: 4.3125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-70 {
		height: 4.375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-71 {
		height: 4.4375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-72 {
		height: 4.5rem !important
	}
}

@media (min-width:768px) {
	.fh-md-73 {
		height: 4.5625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-74 {
		height: 4.625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-75 {
		height: 4.6875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-76 {
		height: 4.75rem !important
	}
}

@media (min-width:768px) {
	.fh-md-77 {
		height: 4.8125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-78 {
		height: 4.875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-79 {
		height: 4.9375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-80 {
		height: 5rem !important
	}
}

@media (min-width:768px) {
	.fh-md-81 {
		height: 5.0625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-82 {
		height: 5.125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-83 {
		height: 5.1875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-84 {
		height: 5.25rem !important
	}
}

@media (min-width:768px) {
	.fh-md-85 {
		height: 5.3125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-86 {
		height: 5.375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-87 {
		height: 5.4375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-88 {
		height: 5.5rem !important
	}
}

@media (min-width:768px) {
	.fh-md-89 {
		height: 5.5625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-90 {
		height: 5.625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-91 {
		height: 5.6875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-92 {
		height: 5.75rem !important
	}
}

@media (min-width:768px) {
	.fh-md-93 {
		height: 5.8125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-94 {
		height: 5.875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-95 {
		height: 5.9375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-96 {
		height: 6rem !important
	}
}

@media (min-width:768px) {
	.fh-md-97 {
		height: 6.0625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-98 {
		height: 6.125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-99 {
		height: 6.1875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-100 {
		height: 6.25rem !important
	}
}

@media (min-width:768px) {
	.fh-md-101 {
		height: 6.3125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-102 {
		height: 6.375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-103 {
		height: 6.4375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-104 {
		height: 6.5rem !important
	}
}

@media (min-width:768px) {
	.fh-md-105 {
		height: 6.5625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-106 {
		height: 6.625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-107 {
		height: 6.6875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-108 {
		height: 6.75rem !important
	}
}

@media (min-width:768px) {
	.fh-md-109 {
		height: 6.8125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-110 {
		height: 6.875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-111 {
		height: 6.9375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-112 {
		height: 7rem !important
	}
}

@media (min-width:768px) {
	.fh-md-113 {
		height: 7.0625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-114 {
		height: 7.125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-115 {
		height: 7.1875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-116 {
		height: 7.25rem !important
	}
}

@media (min-width:768px) {
	.fh-md-117 {
		height: 7.3125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-118 {
		height: 7.375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-119 {
		height: 7.4375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-120 {
		height: 7.5rem !important
	}
}

@media (min-width:768px) {
	.fh-md-121 {
		height: 7.5625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-122 {
		height: 7.625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-123 {
		height: 7.6875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-124 {
		height: 7.75rem !important
	}
}

@media (min-width:768px) {
	.fh-md-125 {
		height: 7.8125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-126 {
		height: 7.875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-127 {
		height: 7.9375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-128 {
		height: 8rem !important
	}
}

@media (min-width:768px) {
	.fh-md-129 {
		height: 8.0625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-130 {
		height: 8.125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-131 {
		height: 8.1875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-132 {
		height: 8.25rem !important
	}
}

@media (min-width:768px) {
	.fh-md-133 {
		height: 8.3125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-134 {
		height: 8.375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-135 {
		height: 8.4375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-136 {
		height: 8.5rem !important
	}
}

@media (min-width:768px) {
	.fh-md-137 {
		height: 8.5625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-138 {
		height: 8.625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-139 {
		height: 8.6875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-140 {
		height: 8.75rem !important
	}
}

@media (min-width:768px) {
	.fh-md-141 {
		height: 8.8125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-142 {
		height: 8.875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-143 {
		height: 8.9375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-144 {
		height: 9rem !important
	}
}

@media (min-width:768px) {
	.fh-md-145 {
		height: 9.0625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-146 {
		height: 9.125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-147 {
		height: 9.1875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-148 {
		height: 9.25rem !important
	}
}

@media (min-width:768px) {
	.fh-md-149 {
		height: 9.3125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-150 {
		height: 9.375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-151 {
		height: 9.4375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-152 {
		height: 9.5rem !important
	}
}

@media (min-width:768px) {
	.fh-md-153 {
		height: 9.5625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-154 {
		height: 9.625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-155 {
		height: 9.6875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-156 {
		height: 9.75rem !important
	}
}

@media (min-width:768px) {
	.fh-md-157 {
		height: 9.8125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-158 {
		height: 9.875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-159 {
		height: 9.9375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-160 {
		height: 10rem !important
	}
}

@media (min-width:768px) {
	.fh-md-161 {
		height: 10.0625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-162 {
		height: 10.125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-163 {
		height: 10.1875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-164 {
		height: 10.25rem !important
	}
}

@media (min-width:768px) {
	.fh-md-165 {
		height: 10.3125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-166 {
		height: 10.375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-167 {
		height: 10.4375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-168 {
		height: 10.5rem !important
	}
}

@media (min-width:768px) {
	.fh-md-169 {
		height: 10.5625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-170 {
		height: 10.625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-171 {
		height: 10.6875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-172 {
		height: 10.75rem !important
	}
}

@media (min-width:768px) {
	.fh-md-173 {
		height: 10.8125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-174 {
		height: 10.875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-175 {
		height: 10.9375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-176 {
		height: 11rem !important
	}
}

@media (min-width:768px) {
	.fh-md-177 {
		height: 11.0625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-178 {
		height: 11.125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-179 {
		height: 11.1875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-180 {
		height: 11.25rem !important
	}
}

@media (min-width:768px) {
	.fh-md-181 {
		height: 11.3125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-182 {
		height: 11.375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-183 {
		height: 11.4375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-184 {
		height: 11.5rem !important
	}
}

@media (min-width:768px) {
	.fh-md-185 {
		height: 11.5625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-186 {
		height: 11.625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-187 {
		height: 11.6875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-188 {
		height: 11.75rem !important
	}
}

@media (min-width:768px) {
	.fh-md-189 {
		height: 11.8125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-190 {
		height: 11.875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-191 {
		height: 11.9375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-192 {
		height: 12rem !important
	}
}

@media (min-width:768px) {
	.fh-md-193 {
		height: 12.0625rem !important
	}
}

@media (min-width:768px) {
	.fh-md-194 {
		height: 12.125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-195 {
		height: 12.1875rem !important
	}
}

@media (min-width:768px) {
	.fh-md-196 {
		height: 12.25rem !important
	}
}

@media (min-width:768px) {
	.fh-md-197 {
		height: 12.3125rem !important
	}
}

@media (min-width:768px) {
	.fh-md-198 {
		height: 12.375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-199 {
		height: 12.4375rem !important
	}
}

@media (min-width:768px) {
	.fh-md-200 {
		height: 12.5rem !important
	}
}

@media (min-width:768px) {
	.fh-md-auto {
		height: auto !important
	}
}

@media (min-width:992px) {
	.fh-lg-0 {
		height: 0 !important
	}
}

@media (min-width:992px) {
	.fh-lg-1 {
		height: .0625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-2 {
		height: .125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-3 {
		height: .1875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-4 {
		height: .25rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-5 {
		height: .3125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-6 {
		height: .375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-7 {
		height: .4375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-8 {
		height: .5rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-9 {
		height: .5625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-10 {
		height: .625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-11 {
		height: .6875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-12 {
		height: .75rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-13 {
		height: .8125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-14 {
		height: .875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-15 {
		height: .9375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-16 {
		height: 1rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-17 {
		height: 1.0625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-18 {
		height: 1.125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-19 {
		height: 1.1875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-20 {
		height: 1.25rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-21 {
		height: 1.3125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-22 {
		height: 1.375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-23 {
		height: 1.4375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-24 {
		height: 1.5rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-25 {
		height: 1.5625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-26 {
		height: 1.625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-27 {
		height: 1.6875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-28 {
		height: 1.75rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-29 {
		height: 1.8125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-30 {
		height: 1.875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-31 {
		height: 1.9375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-32 {
		height: 2rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-33 {
		height: 2.0625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-34 {
		height: 2.125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-35 {
		height: 2.1875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-36 {
		height: 2.25rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-37 {
		height: 2.3125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-38 {
		height: 2.375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-39 {
		height: 2.4375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-40 {
		height: 2.5rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-41 {
		height: 2.5625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-42 {
		height: 2.625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-43 {
		height: 2.6875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-44 {
		height: 2.75rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-45 {
		height: 2.8125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-46 {
		height: 2.875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-47 {
		height: 2.9375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-48 {
		height: 3rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-49 {
		height: 3.0625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-50 {
		height: 3.125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-51 {
		height: 3.1875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-52 {
		height: 3.25rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-53 {
		height: 3.3125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-54 {
		height: 3.375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-55 {
		height: 3.4375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-56 {
		height: 3.5rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-57 {
		height: 3.5625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-58 {
		height: 3.625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-59 {
		height: 3.6875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-60 {
		height: 3.75rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-61 {
		height: 3.8125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-62 {
		height: 3.875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-63 {
		height: 3.9375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-64 {
		height: 4rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-65 {
		height: 4.0625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-66 {
		height: 4.125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-67 {
		height: 4.1875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-68 {
		height: 4.25rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-69 {
		height: 4.3125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-70 {
		height: 4.375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-71 {
		height: 4.4375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-72 {
		height: 4.5rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-73 {
		height: 4.5625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-74 {
		height: 4.625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-75 {
		height: 4.6875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-76 {
		height: 4.75rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-77 {
		height: 4.8125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-78 {
		height: 4.875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-79 {
		height: 4.9375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-80 {
		height: 5rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-81 {
		height: 5.0625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-82 {
		height: 5.125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-83 {
		height: 5.1875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-84 {
		height: 5.25rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-85 {
		height: 5.3125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-86 {
		height: 5.375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-87 {
		height: 5.4375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-88 {
		height: 5.5rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-89 {
		height: 5.5625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-90 {
		height: 5.625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-91 {
		height: 5.6875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-92 {
		height: 5.75rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-93 {
		height: 5.8125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-94 {
		height: 5.875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-95 {
		height: 5.9375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-96 {
		height: 6rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-97 {
		height: 6.0625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-98 {
		height: 6.125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-99 {
		height: 6.1875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-100 {
		height: 6.25rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-101 {
		height: 6.3125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-102 {
		height: 6.375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-103 {
		height: 6.4375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-104 {
		height: 6.5rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-105 {
		height: 6.5625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-106 {
		height: 6.625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-107 {
		height: 6.6875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-108 {
		height: 6.75rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-109 {
		height: 6.8125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-110 {
		height: 6.875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-111 {
		height: 6.9375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-112 {
		height: 7rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-113 {
		height: 7.0625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-114 {
		height: 7.125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-115 {
		height: 7.1875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-116 {
		height: 7.25rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-117 {
		height: 7.3125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-118 {
		height: 7.375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-119 {
		height: 7.4375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-120 {
		height: 7.5rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-121 {
		height: 7.5625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-122 {
		height: 7.625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-123 {
		height: 7.6875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-124 {
		height: 7.75rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-125 {
		height: 7.8125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-126 {
		height: 7.875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-127 {
		height: 7.9375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-128 {
		height: 8rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-129 {
		height: 8.0625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-130 {
		height: 8.125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-131 {
		height: 8.1875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-132 {
		height: 8.25rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-133 {
		height: 8.3125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-134 {
		height: 8.375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-135 {
		height: 8.4375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-136 {
		height: 8.5rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-137 {
		height: 8.5625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-138 {
		height: 8.625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-139 {
		height: 8.6875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-140 {
		height: 8.75rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-141 {
		height: 8.8125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-142 {
		height: 8.875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-143 {
		height: 8.9375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-144 {
		height: 9rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-145 {
		height: 9.0625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-146 {
		height: 9.125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-147 {
		height: 9.1875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-148 {
		height: 9.25rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-149 {
		height: 9.3125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-150 {
		height: 9.375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-151 {
		height: 9.4375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-152 {
		height: 9.5rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-153 {
		height: 9.5625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-154 {
		height: 9.625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-155 {
		height: 9.6875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-156 {
		height: 9.75rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-157 {
		height: 9.8125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-158 {
		height: 9.875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-159 {
		height: 9.9375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-160 {
		height: 10rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-161 {
		height: 10.0625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-162 {
		height: 10.125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-163 {
		height: 10.1875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-164 {
		height: 10.25rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-165 {
		height: 10.3125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-166 {
		height: 10.375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-167 {
		height: 10.4375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-168 {
		height: 10.5rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-169 {
		height: 10.5625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-170 {
		height: 10.625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-171 {
		height: 10.6875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-172 {
		height: 10.75rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-173 {
		height: 10.8125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-174 {
		height: 10.875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-175 {
		height: 10.9375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-176 {
		height: 11rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-177 {
		height: 11.0625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-178 {
		height: 11.125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-179 {
		height: 11.1875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-180 {
		height: 11.25rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-181 {
		height: 11.3125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-182 {
		height: 11.375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-183 {
		height: 11.4375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-184 {
		height: 11.5rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-185 {
		height: 11.5625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-186 {
		height: 11.625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-187 {
		height: 11.6875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-188 {
		height: 11.75rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-189 {
		height: 11.8125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-190 {
		height: 11.875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-191 {
		height: 11.9375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-192 {
		height: 12rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-193 {
		height: 12.0625rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-194 {
		height: 12.125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-195 {
		height: 12.1875rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-196 {
		height: 12.25rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-197 {
		height: 12.3125rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-198 {
		height: 12.375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-199 {
		height: 12.4375rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-200 {
		height: 12.5rem !important
	}
}

@media (min-width:992px) {
	.fh-lg-auto {
		height: auto !important
	}
}

@media (min-width:1200px) {
	.fh-xl-0 {
		height: 0 !important
	}
}

@media (min-width:1200px) {
	.fh-xl-1 {
		height: .0625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-2 {
		height: .125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-3 {
		height: .1875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-4 {
		height: .25rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-5 {
		height: .3125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-6 {
		height: .375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-7 {
		height: .4375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-8 {
		height: .5rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-9 {
		height: .5625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-10 {
		height: .625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-11 {
		height: .6875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-12 {
		height: .75rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-13 {
		height: .8125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-14 {
		height: .875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-15 {
		height: .9375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-16 {
		height: 1rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-17 {
		height: 1.0625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-18 {
		height: 1.125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-19 {
		height: 1.1875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-20 {
		height: 1.25rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-21 {
		height: 1.3125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-22 {
		height: 1.375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-23 {
		height: 1.4375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-24 {
		height: 1.5rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-25 {
		height: 1.5625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-26 {
		height: 1.625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-27 {
		height: 1.6875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-28 {
		height: 1.75rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-29 {
		height: 1.8125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-30 {
		height: 1.875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-31 {
		height: 1.9375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-32 {
		height: 2rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-33 {
		height: 2.0625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-34 {
		height: 2.125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-35 {
		height: 2.1875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-36 {
		height: 2.25rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-37 {
		height: 2.3125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-38 {
		height: 2.375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-39 {
		height: 2.4375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-40 {
		height: 2.5rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-41 {
		height: 2.5625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-42 {
		height: 2.625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-43 {
		height: 2.6875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-44 {
		height: 2.75rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-45 {
		height: 2.8125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-46 {
		height: 2.875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-47 {
		height: 2.9375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-48 {
		height: 3rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-49 {
		height: 3.0625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-50 {
		height: 3.125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-51 {
		height: 3.1875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-52 {
		height: 3.25rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-53 {
		height: 3.3125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-54 {
		height: 3.375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-55 {
		height: 3.4375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-56 {
		height: 3.5rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-57 {
		height: 3.5625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-58 {
		height: 3.625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-59 {
		height: 3.6875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-60 {
		height: 3.75rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-61 {
		height: 3.8125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-62 {
		height: 3.875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-63 {
		height: 3.9375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-64 {
		height: 4rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-65 {
		height: 4.0625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-66 {
		height: 4.125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-67 {
		height: 4.1875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-68 {
		height: 4.25rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-69 {
		height: 4.3125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-70 {
		height: 4.375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-71 {
		height: 4.4375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-72 {
		height: 4.5rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-73 {
		height: 4.5625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-74 {
		height: 4.625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-75 {
		height: 4.6875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-76 {
		height: 4.75rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-77 {
		height: 4.8125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-78 {
		height: 4.875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-79 {
		height: 4.9375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-80 {
		height: 5rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-81 {
		height: 5.0625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-82 {
		height: 5.125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-83 {
		height: 5.1875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-84 {
		height: 5.25rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-85 {
		height: 5.3125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-86 {
		height: 5.375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-87 {
		height: 5.4375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-88 {
		height: 5.5rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-89 {
		height: 5.5625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-90 {
		height: 5.625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-91 {
		height: 5.6875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-92 {
		height: 5.75rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-93 {
		height: 5.8125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-94 {
		height: 5.875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-95 {
		height: 5.9375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-96 {
		height: 6rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-97 {
		height: 6.0625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-98 {
		height: 6.125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-99 {
		height: 6.1875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-100 {
		height: 6.25rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-101 {
		height: 6.3125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-102 {
		height: 6.375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-103 {
		height: 6.4375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-104 {
		height: 6.5rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-105 {
		height: 6.5625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-106 {
		height: 6.625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-107 {
		height: 6.6875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-108 {
		height: 6.75rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-109 {
		height: 6.8125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-110 {
		height: 6.875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-111 {
		height: 6.9375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-112 {
		height: 7rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-113 {
		height: 7.0625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-114 {
		height: 7.125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-115 {
		height: 7.1875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-116 {
		height: 7.25rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-117 {
		height: 7.3125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-118 {
		height: 7.375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-119 {
		height: 7.4375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-120 {
		height: 7.5rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-121 {
		height: 7.5625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-122 {
		height: 7.625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-123 {
		height: 7.6875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-124 {
		height: 7.75rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-125 {
		height: 7.8125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-126 {
		height: 7.875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-127 {
		height: 7.9375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-128 {
		height: 8rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-129 {
		height: 8.0625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-130 {
		height: 8.125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-131 {
		height: 8.1875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-132 {
		height: 8.25rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-133 {
		height: 8.3125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-134 {
		height: 8.375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-135 {
		height: 8.4375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-136 {
		height: 8.5rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-137 {
		height: 8.5625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-138 {
		height: 8.625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-139 {
		height: 8.6875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-140 {
		height: 8.75rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-141 {
		height: 8.8125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-142 {
		height: 8.875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-143 {
		height: 8.9375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-144 {
		height: 9rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-145 {
		height: 9.0625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-146 {
		height: 9.125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-147 {
		height: 9.1875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-148 {
		height: 9.25rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-149 {
		height: 9.3125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-150 {
		height: 9.375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-151 {
		height: 9.4375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-152 {
		height: 9.5rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-153 {
		height: 9.5625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-154 {
		height: 9.625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-155 {
		height: 9.6875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-156 {
		height: 9.75rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-157 {
		height: 9.8125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-158 {
		height: 9.875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-159 {
		height: 9.9375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-160 {
		height: 10rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-161 {
		height: 10.0625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-162 {
		height: 10.125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-163 {
		height: 10.1875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-164 {
		height: 10.25rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-165 {
		height: 10.3125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-166 {
		height: 10.375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-167 {
		height: 10.4375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-168 {
		height: 10.5rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-169 {
		height: 10.5625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-170 {
		height: 10.625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-171 {
		height: 10.6875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-172 {
		height: 10.75rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-173 {
		height: 10.8125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-174 {
		height: 10.875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-175 {
		height: 10.9375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-176 {
		height: 11rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-177 {
		height: 11.0625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-178 {
		height: 11.125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-179 {
		height: 11.1875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-180 {
		height: 11.25rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-181 {
		height: 11.3125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-182 {
		height: 11.375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-183 {
		height: 11.4375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-184 {
		height: 11.5rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-185 {
		height: 11.5625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-186 {
		height: 11.625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-187 {
		height: 11.6875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-188 {
		height: 11.75rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-189 {
		height: 11.8125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-190 {
		height: 11.875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-191 {
		height: 11.9375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-192 {
		height: 12rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-193 {
		height: 12.0625rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-194 {
		height: 12.125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-195 {
		height: 12.1875rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-196 {
		height: 12.25rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-197 {
		height: 12.3125rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-198 {
		height: 12.375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-199 {
		height: 12.4375rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-200 {
		height: 12.5rem !important
	}
}

@media (min-width:1200px) {
	.fh-xl-auto {
		height: auto !important
	}
}

.text-size-0 {
	font-size: 0 !important
}

.text-size-1 {
	font-size: .0625rem !important
}

.text-size-2 {
	font-size: .125rem !important
}

.text-size-3 {
	font-size: .1875rem !important
}

.text-size-4 {
	font-size: .25rem !important
}

.text-size-5 {
	font-size: .3125rem !important
}

.text-size-6 {
	font-size: .375rem !important
}

.text-size-7 {
	font-size: .4375rem !important
}

.text-size-8 {
	font-size: .5rem !important
}

.text-size-9 {
	font-size: .5625rem !important
}

.text-size-10 {
	font-size: .625rem !important
}

.text-size-11 {
	font-size: .6875rem !important
}

.text-size-12 {
	font-size: .75rem !important
}

.text-size-13 {
	font-size: .8125rem !important
}

.text-size-14 {
	font-size: .875rem !important
}

.text-size-15 {
	font-size: .9375rem !important
}

.text-size-16 {
	font-size: 1rem !important
}

.text-size-17 {
	font-size: 1.0625rem !important
}

.text-size-18 {
	font-size: 1.125rem !important
}

.text-size-19 {
	font-size: 1.1875rem !important
}

.text-size-20 {
	font-size: 1.25rem !important
}

.text-size-21 {
	font-size: 1.3125rem !important
}

.text-size-22 {
	font-size: 1.375rem !important
}

.text-size-23 {
	font-size: 1.4375rem !important
}

.text-size-24 {
	font-size: 1.5rem !important
}

.text-size-25 {
	font-size: 1.5625rem !important
}

.text-size-26 {
	font-size: 1.625rem !important
}

.text-size-27 {
	font-size: 1.6875rem !important
}

.text-size-28 {
	font-size: 1.75rem !important
}

.text-size-29 {
	font-size: 1.8125rem !important
}

.text-size-30 {
	font-size: 1.875rem !important
}

.text-size-31 {
	font-size: 1.9375rem !important
}

.text-size-32 {
	font-size: 2rem !important
}

.text-size-33 {
	font-size: 2.0625rem !important
}

.text-size-34 {
	font-size: 2.125rem !important
}

.text-size-35 {
	font-size: 2.1875rem !important
}

.text-size-36 {
	font-size: 2.25rem !important
}

.text-size-37 {
	font-size: 2.3125rem !important
}

.text-size-38 {
	font-size: 2.375rem !important
}

.text-size-39 {
	font-size: 2.4375rem !important
}

.text-size-40 {
	font-size: 2.5rem !important
}

.text-size-41 {
	font-size: 2.5625rem !important
}

.text-size-42 {
	font-size: 2.625rem !important
}

.text-size-43 {
	font-size: 2.6875rem !important
}

.text-size-44 {
	font-size: 2.75rem !important
}

.text-size-45 {
	font-size: 2.8125rem !important
}

.text-size-46 {
	font-size: 2.875rem !important
}

.text-size-47 {
	font-size: 2.9375rem !important
}

.text-size-48 {
	font-size: 3rem !important
}

.text-size-49 {
	font-size: 3.0625rem !important
}

.text-size-50 {
	font-size: 3.125rem !important
}

.text-size-51 {
	font-size: 3.1875rem !important
}

.text-size-52 {
	font-size: 3.25rem !important
}

.text-size-53 {
	font-size: 3.3125rem !important
}

.text-size-54 {
	font-size: 3.375rem !important
}

.text-size-55 {
	font-size: 3.4375rem !important
}

.text-size-56 {
	font-size: 3.5rem !important
}

.text-size-57 {
	font-size: 3.5625rem !important
}

.text-size-58 {
	font-size: 3.625rem !important
}

.text-size-59 {
	font-size: 3.6875rem !important
}

.text-size-60 {
	font-size: 3.75rem !important
}

.text-size-61 {
	font-size: 3.8125rem !important
}

.text-size-62 {
	font-size: 3.875rem !important
}

.text-size-63 {
	font-size: 3.9375rem !important
}

.text-size-64 {
	font-size: 4rem !important
}

.text-size-65 {
	font-size: 4.0625rem !important
}

.text-size-66 {
	font-size: 4.125rem !important
}

.text-size-67 {
	font-size: 4.1875rem !important
}

.text-size-68 {
	font-size: 4.25rem !important
}

.text-size-69 {
	font-size: 4.3125rem !important
}

.text-size-70 {
	font-size: 4.375rem !important
}

@media (min-width:576px) {
	.text-size-sm-0 {
		font-size: 0 !important
	}
}

@media (min-width:576px) {
	.text-size-sm-1 {
		font-size: .0625rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-2 {
		font-size: .125rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-3 {
		font-size: .1875rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-4 {
		font-size: .25rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-5 {
		font-size: .3125rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-6 {
		font-size: .375rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-7 {
		font-size: .4375rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-8 {
		font-size: .5rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-9 {
		font-size: .5625rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-10 {
		font-size: .625rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-11 {
		font-size: .6875rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-12 {
		font-size: .75rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-13 {
		font-size: .8125rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-14 {
		font-size: .875rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-15 {
		font-size: .9375rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-16 {
		font-size: 1rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-17 {
		font-size: 1.0625rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-18 {
		font-size: 1.125rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-19 {
		font-size: 1.1875rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-20 {
		font-size: 1.25rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-21 {
		font-size: 1.3125rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-22 {
		font-size: 1.375rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-23 {
		font-size: 1.4375rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-24 {
		font-size: 1.5rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-25 {
		font-size: 1.5625rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-26 {
		font-size: 1.625rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-27 {
		font-size: 1.6875rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-28 {
		font-size: 1.75rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-29 {
		font-size: 1.8125rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-30 {
		font-size: 1.875rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-31 {
		font-size: 1.9375rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-32 {
		font-size: 2rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-33 {
		font-size: 2.0625rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-34 {
		font-size: 2.125rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-35 {
		font-size: 2.1875rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-36 {
		font-size: 2.25rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-37 {
		font-size: 2.3125rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-38 {
		font-size: 2.375rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-39 {
		font-size: 2.4375rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-40 {
		font-size: 2.5rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-41 {
		font-size: 2.5625rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-42 {
		font-size: 2.625rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-43 {
		font-size: 2.6875rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-44 {
		font-size: 2.75rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-45 {
		font-size: 2.8125rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-46 {
		font-size: 2.875rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-47 {
		font-size: 2.9375rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-48 {
		font-size: 3rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-49 {
		font-size: 3.0625rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-50 {
		font-size: 3.125rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-51 {
		font-size: 3.1875rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-52 {
		font-size: 3.25rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-53 {
		font-size: 3.3125rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-54 {
		font-size: 3.375rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-55 {
		font-size: 3.4375rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-56 {
		font-size: 3.5rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-57 {
		font-size: 3.5625rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-58 {
		font-size: 3.625rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-59 {
		font-size: 3.6875rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-60 {
		font-size: 3.75rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-61 {
		font-size: 3.8125rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-62 {
		font-size: 3.875rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-63 {
		font-size: 3.9375rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-64 {
		font-size: 4rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-65 {
		font-size: 4.0625rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-66 {
		font-size: 4.125rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-67 {
		font-size: 4.1875rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-68 {
		font-size: 4.25rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-69 {
		font-size: 4.3125rem !important
	}
}

@media (min-width:576px) {
	.text-size-sm-70 {
		font-size: 4.375rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-0 {
		font-size: 0 !important
	}
}

@media (min-width:768px) {
	.text-size-md-1 {
		font-size: .0625rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-2 {
		font-size: .125rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-3 {
		font-size: .1875rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-4 {
		font-size: .25rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-5 {
		font-size: .3125rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-6 {
		font-size: .375rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-7 {
		font-size: .4375rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-8 {
		font-size: .5rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-9 {
		font-size: .5625rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-10 {
		font-size: .625rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-11 {
		font-size: .6875rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-12 {
		font-size: .75rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-13 {
		font-size: .8125rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-14 {
		font-size: .875rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-15 {
		font-size: .9375rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-16 {
		font-size: 1rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-17 {
		font-size: 1.0625rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-18 {
		font-size: 1.125rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-19 {
		font-size: 1.1875rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-20 {
		font-size: 1.25rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-21 {
		font-size: 1.3125rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-22 {
		font-size: 1.375rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-23 {
		font-size: 1.4375rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-24 {
		font-size: 1.5rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-25 {
		font-size: 1.5625rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-26 {
		font-size: 1.625rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-27 {
		font-size: 1.6875rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-28 {
		font-size: 1.75rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-29 {
		font-size: 1.8125rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-30 {
		font-size: 1.875rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-31 {
		font-size: 1.9375rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-32 {
		font-size: 2rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-33 {
		font-size: 2.0625rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-34 {
		font-size: 2.125rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-35 {
		font-size: 2.1875rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-36 {
		font-size: 2.25rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-37 {
		font-size: 2.3125rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-38 {
		font-size: 2.375rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-39 {
		font-size: 2.4375rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-40 {
		font-size: 2.5rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-41 {
		font-size: 2.5625rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-42 {
		font-size: 2.625rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-43 {
		font-size: 2.6875rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-44 {
		font-size: 2.75rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-45 {
		font-size: 2.8125rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-46 {
		font-size: 2.875rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-47 {
		font-size: 2.9375rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-48 {
		font-size: 3rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-49 {
		font-size: 3.0625rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-50 {
		font-size: 3.125rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-51 {
		font-size: 3.1875rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-52 {
		font-size: 3.25rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-53 {
		font-size: 3.3125rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-54 {
		font-size: 3.375rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-55 {
		font-size: 3.4375rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-56 {
		font-size: 3.5rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-57 {
		font-size: 3.5625rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-58 {
		font-size: 3.625rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-59 {
		font-size: 3.6875rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-60 {
		font-size: 3.75rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-61 {
		font-size: 3.8125rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-62 {
		font-size: 3.875rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-63 {
		font-size: 3.9375rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-64 {
		font-size: 4rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-65 {
		font-size: 4.0625rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-66 {
		font-size: 4.125rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-67 {
		font-size: 4.1875rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-68 {
		font-size: 4.25rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-69 {
		font-size: 4.3125rem !important
	}
}

@media (min-width:768px) {
	.text-size-md-70 {
		font-size: 4.375rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-0 {
		font-size: 0 !important
	}
}

@media (min-width:992px) {
	.text-size-lg-1 {
		font-size: .0625rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-2 {
		font-size: .125rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-3 {
		font-size: .1875rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-4 {
		font-size: .25rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-5 {
		font-size: .3125rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-6 {
		font-size: .375rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-7 {
		font-size: .4375rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-8 {
		font-size: .5rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-9 {
		font-size: .5625rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-10 {
		font-size: .625rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-11 {
		font-size: .6875rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-12 {
		font-size: .75rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-13 {
		font-size: .8125rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-14 {
		font-size: .875rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-15 {
		font-size: .9375rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-16 {
		font-size: 1rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-17 {
		font-size: 1.0625rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-18 {
		font-size: 1.125rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-19 {
		font-size: 1.1875rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-20 {
		font-size: 1.25rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-21 {
		font-size: 1.3125rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-22 {
		font-size: 1.375rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-23 {
		font-size: 1.4375rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-24 {
		font-size: 1.5rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-25 {
		font-size: 1.5625rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-26 {
		font-size: 1.625rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-27 {
		font-size: 1.6875rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-28 {
		font-size: 1.75rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-29 {
		font-size: 1.8125rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-30 {
		font-size: 1.875rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-31 {
		font-size: 1.9375rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-32 {
		font-size: 2rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-33 {
		font-size: 2.0625rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-34 {
		font-size: 2.125rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-35 {
		font-size: 2.1875rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-36 {
		font-size: 2.25rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-37 {
		font-size: 2.3125rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-38 {
		font-size: 2.375rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-39 {
		font-size: 2.4375rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-40 {
		font-size: 2.5rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-41 {
		font-size: 2.5625rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-42 {
		font-size: 2.625rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-43 {
		font-size: 2.6875rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-44 {
		font-size: 2.75rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-45 {
		font-size: 2.8125rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-46 {
		font-size: 2.875rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-47 {
		font-size: 2.9375rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-48 {
		font-size: 3rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-49 {
		font-size: 3.0625rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-50 {
		font-size: 3.125rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-51 {
		font-size: 3.1875rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-52 {
		font-size: 3.25rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-53 {
		font-size: 3.3125rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-54 {
		font-size: 3.375rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-55 {
		font-size: 3.4375rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-56 {
		font-size: 3.5rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-57 {
		font-size: 3.5625rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-58 {
		font-size: 3.625rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-59 {
		font-size: 3.6875rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-60 {
		font-size: 3.75rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-61 {
		font-size: 3.8125rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-62 {
		font-size: 3.875rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-63 {
		font-size: 3.9375rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-64 {
		font-size: 4rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-65 {
		font-size: 4.0625rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-66 {
		font-size: 4.125rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-67 {
		font-size: 4.1875rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-68 {
		font-size: 4.25rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-69 {
		font-size: 4.3125rem !important
	}
}

@media (min-width:992px) {
	.text-size-lg-70 {
		font-size: 4.375rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-0 {
		font-size: 0 !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-1 {
		font-size: .0625rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-2 {
		font-size: .125rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-3 {
		font-size: .1875rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-4 {
		font-size: .25rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-5 {
		font-size: .3125rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-6 {
		font-size: .375rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-7 {
		font-size: .4375rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-8 {
		font-size: .5rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-9 {
		font-size: .5625rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-10 {
		font-size: .625rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-11 {
		font-size: .6875rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-12 {
		font-size: .75rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-13 {
		font-size: .8125rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-14 {
		font-size: .875rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-15 {
		font-size: .9375rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-16 {
		font-size: 1rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-17 {
		font-size: 1.0625rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-18 {
		font-size: 1.125rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-19 {
		font-size: 1.1875rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-20 {
		font-size: 1.25rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-21 {
		font-size: 1.3125rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-22 {
		font-size: 1.375rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-23 {
		font-size: 1.4375rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-24 {
		font-size: 1.5rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-25 {
		font-size: 1.5625rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-26 {
		font-size: 1.625rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-27 {
		font-size: 1.6875rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-28 {
		font-size: 1.75rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-29 {
		font-size: 1.8125rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-30 {
		font-size: 1.875rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-31 {
		font-size: 1.9375rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-32 {
		font-size: 2rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-33 {
		font-size: 2.0625rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-34 {
		font-size: 2.125rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-35 {
		font-size: 2.1875rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-36 {
		font-size: 2.25rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-37 {
		font-size: 2.3125rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-38 {
		font-size: 2.375rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-39 {
		font-size: 2.4375rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-40 {
		font-size: 2.5rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-41 {
		font-size: 2.5625rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-42 {
		font-size: 2.625rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-43 {
		font-size: 2.6875rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-44 {
		font-size: 2.75rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-45 {
		font-size: 2.8125rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-46 {
		font-size: 2.875rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-47 {
		font-size: 2.9375rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-48 {
		font-size: 3rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-49 {
		font-size: 3.0625rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-50 {
		font-size: 3.125rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-51 {
		font-size: 3.1875rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-52 {
		font-size: 3.25rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-53 {
		font-size: 3.3125rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-54 {
		font-size: 3.375rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-55 {
		font-size: 3.4375rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-56 {
		font-size: 3.5rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-57 {
		font-size: 3.5625rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-58 {
		font-size: 3.625rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-59 {
		font-size: 3.6875rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-60 {
		font-size: 3.75rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-61 {
		font-size: 3.8125rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-62 {
		font-size: 3.875rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-63 {
		font-size: 3.9375rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-64 {
		font-size: 4rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-65 {
		font-size: 4.0625rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-66 {
		font-size: 4.125rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-67 {
		font-size: 4.1875rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-68 {
		font-size: 4.25rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-69 {
		font-size: 4.3125rem !important
	}
}

@media (min-width:1200px) {
	.text-size-xl-70 {
		font-size: 4.375rem !important
	}
}

.overflow-hidden {
	overflow: hidden
}

.pos-0 {
	top: 0 !important;
	bottom: 0 !important
}

.pos-0,
.posx-0 {
	right: 0 !important;
	left: 0 !important
}

.posy-0 {
	bottom: 0 !important
}

.post-0,
.posy-0 {
	top: 0 !important
}

.posr-0 {
	right: 0 !important
}

.posb-0 {
	bottom: 0 !important
}

.posl-0 {
	left: 0 !important
}

.posmt-0 {
	top: 0 !important
}

.posmr-0 {
	right: 0 !important
}

.posmb-0 {
	bottom: 0 !important
}

.posml-0 {
	left: 0 !important
}

.pos-1 {
	top: .0625rem !important;
	bottom: .0625rem !important
}

.pos-1,
.posx-1 {
	right: .0625rem !important;
	left: .0625rem !important
}

.posy-1 {
	bottom: .0625rem !important
}

.post-1,
.posy-1 {
	top: .0625rem !important
}

.posr-1 {
	right: .0625rem !important
}

.posb-1 {
	bottom: .0625rem !important
}

.posl-1 {
	left: .0625rem !important
}

.posmt-1 {
	top: -.0625rem !important
}

.posmr-1 {
	right: -.0625rem !important
}

.posmb-1 {
	bottom: -.0625rem !important
}

.posml-1 {
	left: -.0625rem !important
}

.pos-2 {
	top: .125rem !important;
	bottom: .125rem !important
}

.pos-2,
.posx-2 {
	right: .125rem !important;
	left: .125rem !important
}

.posy-2 {
	bottom: .125rem !important
}

.post-2,
.posy-2 {
	top: .125rem !important
}

.posr-2 {
	right: .125rem !important
}

.posb-2 {
	bottom: .125rem !important
}

.posl-2 {
	left: .125rem !important
}

.posmt-2 {
	top: -.125rem !important
}

.posmr-2 {
	right: -.125rem !important
}

.posmb-2 {
	bottom: -.125rem !important
}

.posml-2 {
	left: -.125rem !important
}

.pos-3 {
	top: .1875rem !important;
	bottom: .1875rem !important
}

.pos-3,
.posx-3 {
	right: .1875rem !important;
	left: .1875rem !important
}

.posy-3 {
	bottom: .1875rem !important
}

.post-3,
.posy-3 {
	top: .1875rem !important
}

.posr-3 {
	right: .1875rem !important
}

.posb-3 {
	bottom: .1875rem !important
}

.posl-3 {
	left: .1875rem !important
}

.posmt-3 {
	top: -.1875rem !important
}

.posmr-3 {
	right: -.1875rem !important
}

.posmb-3 {
	bottom: -.1875rem !important
}

.posml-3 {
	left: -.1875rem !important
}

.pos-4 {
	top: .25rem !important;
	bottom: .25rem !important
}

.pos-4,
.posx-4 {
	right: .25rem !important;
	left: .25rem !important
}

.posy-4 {
	bottom: .25rem !important
}

.post-4,
.posy-4 {
	top: .25rem !important
}

.posr-4 {
	right: .25rem !important
}

.posb-4 {
	bottom: .25rem !important
}

.posl-4 {
	left: .25rem !important
}

.posmt-4 {
	top: -.25rem !important
}

.posmr-4 {
	right: -.25rem !important
}

.posmb-4 {
	bottom: -.25rem !important
}

.posml-4 {
	left: -.25rem !important
}

.pos-5 {
	top: .3125rem !important;
	bottom: .3125rem !important
}

.pos-5,
.posx-5 {
	right: .3125rem !important;
	left: .3125rem !important
}

.posy-5 {
	bottom: .3125rem !important
}

.post-5,
.posy-5 {
	top: .3125rem !important
}

.posr-5 {
	right: .3125rem !important
}

.posb-5 {
	bottom: .3125rem !important
}

.posl-5 {
	left: .3125rem !important
}

.posmt-5 {
	top: -.3125rem !important
}

.posmr-5 {
	right: -.3125rem !important
}

.posmb-5 {
	bottom: -.3125rem !important
}

.posml-5 {
	left: -.3125rem !important
}

.pos-6 {
	top: .375rem !important;
	bottom: .375rem !important
}

.pos-6,
.posx-6 {
	right: .375rem !important;
	left: .375rem !important
}

.posy-6 {
	bottom: .375rem !important
}

.post-6,
.posy-6 {
	top: .375rem !important
}

.posr-6 {
	right: .375rem !important
}

.posb-6 {
	bottom: .375rem !important
}

.posl-6 {
	left: .375rem !important
}

.posmt-6 {
	top: -.375rem !important
}

.posmr-6 {
	right: -.375rem !important
}

.posmb-6 {
	bottom: -.375rem !important
}

.posml-6 {
	left: -.375rem !important
}

.pos-7 {
	top: .4375rem !important;
	bottom: .4375rem !important
}

.pos-7,
.posx-7 {
	right: .4375rem !important;
	left: .4375rem !important
}

.posy-7 {
	bottom: .4375rem !important
}

.post-7,
.posy-7 {
	top: .4375rem !important
}

.posr-7 {
	right: .4375rem !important
}

.posb-7 {
	bottom: .4375rem !important
}

.posl-7 {
	left: .4375rem !important
}

.posmt-7 {
	top: -.4375rem !important
}

.posmr-7 {
	right: -.4375rem !important
}

.posmb-7 {
	bottom: -.4375rem !important
}

.posml-7 {
	left: -.4375rem !important
}

.pos-8 {
	top: .5rem !important;
	bottom: .5rem !important
}

.pos-8,
.posx-8 {
	right: .5rem !important;
	left: .5rem !important
}

.posy-8 {
	bottom: .5rem !important
}

.post-8,
.posy-8 {
	top: .5rem !important
}

.posr-8 {
	right: .5rem !important
}

.posb-8 {
	bottom: .5rem !important
}

.posl-8 {
	left: .5rem !important
}

.posmt-8 {
	top: -.5rem !important
}

.posmr-8 {
	right: -.5rem !important
}

.posmb-8 {
	bottom: -.5rem !important
}

.posml-8 {
	left: -.5rem !important
}

.pos-9 {
	top: .5625rem !important;
	bottom: .5625rem !important
}

.pos-9,
.posx-9 {
	right: .5625rem !important;
	left: .5625rem !important
}

.posy-9 {
	bottom: .5625rem !important
}

.post-9,
.posy-9 {
	top: .5625rem !important
}

.posr-9 {
	right: .5625rem !important
}

.posb-9 {
	bottom: .5625rem !important
}

.posl-9 {
	left: .5625rem !important
}

.posmt-9 {
	top: -.5625rem !important
}

.posmr-9 {
	right: -.5625rem !important
}

.posmb-9 {
	bottom: -.5625rem !important
}

.posml-9 {
	left: -.5625rem !important
}

.pos-10 {
	top: .625rem !important;
	bottom: .625rem !important
}

.pos-10,
.posx-10 {
	right: .625rem !important;
	left: .625rem !important
}

.posy-10 {
	bottom: .625rem !important
}

.post-10,
.posy-10 {
	top: .625rem !important
}

.posr-10 {
	right: .625rem !important
}

.posb-10 {
	bottom: .625rem !important
}

.posl-10 {
	left: .625rem !important
}

.posmt-10 {
	top: -.625rem !important
}

.posmr-10 {
	right: -.625rem !important
}

.posmb-10 {
	bottom: -.625rem !important
}

.posml-10 {
	left: -.625rem !important
}

.pos-11 {
	top: .6875rem !important;
	bottom: .6875rem !important
}

.pos-11,
.posx-11 {
	right: .6875rem !important;
	left: .6875rem !important
}

.posy-11 {
	bottom: .6875rem !important
}

.post-11,
.posy-11 {
	top: .6875rem !important
}

.posr-11 {
	right: .6875rem !important
}

.posb-11 {
	bottom: .6875rem !important
}

.posl-11 {
	left: .6875rem !important
}

.posmt-11 {
	top: -.6875rem !important
}

.posmr-11 {
	right: -.6875rem !important
}

.posmb-11 {
	bottom: -.6875rem !important
}

.posml-11 {
	left: -.6875rem !important
}

.pos-12 {
	top: .75rem !important;
	bottom: .75rem !important
}

.pos-12,
.posx-12 {
	right: .75rem !important;
	left: .75rem !important
}

.posy-12 {
	bottom: .75rem !important
}

.post-12,
.posy-12 {
	top: .75rem !important
}

.posr-12 {
	right: .75rem !important
}

.posb-12 {
	bottom: .75rem !important
}

.posl-12 {
	left: .75rem !important
}

.posmt-12 {
	top: -.75rem !important
}

.posmr-12 {
	right: -.75rem !important
}

.posmb-12 {
	bottom: -.75rem !important
}

.posml-12 {
	left: -.75rem !important
}

.pos-13 {
	top: .8125rem !important;
	bottom: .8125rem !important
}

.pos-13,
.posx-13 {
	right: .8125rem !important;
	left: .8125rem !important
}

.posy-13 {
	bottom: .8125rem !important
}

.post-13,
.posy-13 {
	top: .8125rem !important
}

.posr-13 {
	right: .8125rem !important
}

.posb-13 {
	bottom: .8125rem !important
}

.posl-13 {
	left: .8125rem !important
}

.posmt-13 {
	top: -.8125rem !important
}

.posmr-13 {
	right: -.8125rem !important
}

.posmb-13 {
	bottom: -.8125rem !important
}

.posml-13 {
	left: -.8125rem !important
}

.pos-14 {
	top: .875rem !important;
	bottom: .875rem !important
}

.pos-14,
.posx-14 {
	right: .875rem !important;
	left: .875rem !important
}

.posy-14 {
	bottom: .875rem !important
}

.post-14,
.posy-14 {
	top: .875rem !important
}

.posr-14 {
	right: .875rem !important
}

.posb-14 {
	bottom: .875rem !important
}

.posl-14 {
	left: .875rem !important
}

.posmt-14 {
	top: -.875rem !important
}

.posmr-14 {
	right: -.875rem !important
}

.posmb-14 {
	bottom: -.875rem !important
}

.posml-14 {
	left: -.875rem !important
}

.pos-15 {
	top: .9375rem !important;
	bottom: .9375rem !important
}

.pos-15,
.posx-15 {
	right: .9375rem !important;
	left: .9375rem !important
}

.posy-15 {
	bottom: .9375rem !important
}

.post-15,
.posy-15 {
	top: .9375rem !important
}

.posr-15 {
	right: .9375rem !important
}

.posb-15 {
	bottom: .9375rem !important
}

.posl-15 {
	left: .9375rem !important
}

.posmt-15 {
	top: -.9375rem !important
}

.posmr-15 {
	right: -.9375rem !important
}

.posmb-15 {
	bottom: -.9375rem !important
}

.posml-15 {
	left: -.9375rem !important
}

.pos-16 {
	top: 1rem !important;
	bottom: 1rem !important
}

.pos-16,
.posx-16 {
	right: 1rem !important;
	left: 1rem !important
}

.posy-16 {
	bottom: 1rem !important
}

.post-16,
.posy-16 {
	top: 1rem !important
}

.posr-16 {
	right: 1rem !important
}

.posb-16 {
	bottom: 1rem !important
}

.posl-16 {
	left: 1rem !important
}

.posmt-16 {
	top: -1rem !important
}

.posmr-16 {
	right: -1rem !important
}

.posmb-16 {
	bottom: -1rem !important
}

.posml-16 {
	left: -1rem !important
}

.pos-17 {
	top: 1.0625rem !important;
	bottom: 1.0625rem !important
}

.pos-17,
.posx-17 {
	right: 1.0625rem !important;
	left: 1.0625rem !important
}

.posy-17 {
	bottom: 1.0625rem !important
}

.post-17,
.posy-17 {
	top: 1.0625rem !important
}

.posr-17 {
	right: 1.0625rem !important
}

.posb-17 {
	bottom: 1.0625rem !important
}

.posl-17 {
	left: 1.0625rem !important
}

.posmt-17 {
	top: -1.0625rem !important
}

.posmr-17 {
	right: -1.0625rem !important
}

.posmb-17 {
	bottom: -1.0625rem !important
}

.posml-17 {
	left: -1.0625rem !important
}

.pos-18 {
	top: 1.125rem !important;
	bottom: 1.125rem !important
}

.pos-18,
.posx-18 {
	right: 1.125rem !important;
	left: 1.125rem !important
}

.posy-18 {
	bottom: 1.125rem !important
}

.post-18,
.posy-18 {
	top: 1.125rem !important
}

.posr-18 {
	right: 1.125rem !important
}

.posb-18 {
	bottom: 1.125rem !important
}

.posl-18 {
	left: 1.125rem !important
}

.posmt-18 {
	top: -1.125rem !important
}

.posmr-18 {
	right: -1.125rem !important
}

.posmb-18 {
	bottom: -1.125rem !important
}

.posml-18 {
	left: -1.125rem !important
}

.pos-19 {
	top: 1.1875rem !important;
	bottom: 1.1875rem !important
}

.pos-19,
.posx-19 {
	right: 1.1875rem !important;
	left: 1.1875rem !important
}

.posy-19 {
	bottom: 1.1875rem !important
}

.post-19,
.posy-19 {
	top: 1.1875rem !important
}

.posr-19 {
	right: 1.1875rem !important
}

.posb-19 {
	bottom: 1.1875rem !important
}

.posl-19 {
	left: 1.1875rem !important
}

.posmt-19 {
	top: -1.1875rem !important
}

.posmr-19 {
	right: -1.1875rem !important
}

.posmb-19 {
	bottom: -1.1875rem !important
}

.posml-19 {
	left: -1.1875rem !important
}

.pos-20 {
	top: 1.25rem !important;
	bottom: 1.25rem !important
}

.pos-20,
.posx-20 {
	right: 1.25rem !important;
	left: 1.25rem !important
}

.posy-20 {
	bottom: 1.25rem !important
}

.post-20,
.posy-20 {
	top: 1.25rem !important
}

.posr-20 {
	right: 1.25rem !important
}

.posb-20 {
	bottom: 1.25rem !important
}

.posl-20 {
	left: 1.25rem !important
}

.posmt-20 {
	top: -1.25rem !important
}

.posmr-20 {
	right: -1.25rem !important
}

.posmb-20 {
	bottom: -1.25rem !important
}

.posml-20 {
	left: -1.25rem !important
}

.pos-21 {
	top: 1.3125rem !important;
	bottom: 1.3125rem !important
}

.pos-21,
.posx-21 {
	right: 1.3125rem !important;
	left: 1.3125rem !important
}

.posy-21 {
	bottom: 1.3125rem !important
}

.post-21,
.posy-21 {
	top: 1.3125rem !important
}

.posr-21 {
	right: 1.3125rem !important
}

.posb-21 {
	bottom: 1.3125rem !important
}

.posl-21 {
	left: 1.3125rem !important
}

.posmt-21 {
	top: -1.3125rem !important
}

.posmr-21 {
	right: -1.3125rem !important
}

.posmb-21 {
	bottom: -1.3125rem !important
}

.posml-21 {
	left: -1.3125rem !important
}

.pos-22 {
	top: 1.375rem !important;
	bottom: 1.375rem !important
}

.pos-22,
.posx-22 {
	right: 1.375rem !important;
	left: 1.375rem !important
}

.posy-22 {
	bottom: 1.375rem !important
}

.post-22,
.posy-22 {
	top: 1.375rem !important
}

.posr-22 {
	right: 1.375rem !important
}

.posb-22 {
	bottom: 1.375rem !important
}

.posl-22 {
	left: 1.375rem !important
}

.posmt-22 {
	top: -1.375rem !important
}

.posmr-22 {
	right: -1.375rem !important
}

.posmb-22 {
	bottom: -1.375rem !important
}

.posml-22 {
	left: -1.375rem !important
}

.pos-23 {
	top: 1.4375rem !important;
	bottom: 1.4375rem !important
}

.pos-23,
.posx-23 {
	right: 1.4375rem !important;
	left: 1.4375rem !important
}

.posy-23 {
	bottom: 1.4375rem !important
}

.post-23,
.posy-23 {
	top: 1.4375rem !important
}

.posr-23 {
	right: 1.4375rem !important
}

.posb-23 {
	bottom: 1.4375rem !important
}

.posl-23 {
	left: 1.4375rem !important
}

.posmt-23 {
	top: -1.4375rem !important
}

.posmr-23 {
	right: -1.4375rem !important
}

.posmb-23 {
	bottom: -1.4375rem !important
}

.posml-23 {
	left: -1.4375rem !important
}

.pos-24 {
	top: 1.5rem !important;
	bottom: 1.5rem !important
}

.pos-24,
.posx-24 {
	right: 1.5rem !important;
	left: 1.5rem !important
}

.posy-24 {
	bottom: 1.5rem !important
}

.post-24,
.posy-24 {
	top: 1.5rem !important
}

.posr-24 {
	right: 1.5rem !important
}

.posb-24 {
	bottom: 1.5rem !important
}

.posl-24 {
	left: 1.5rem !important
}

.posmt-24 {
	top: -1.5rem !important
}

.posmr-24 {
	right: -1.5rem !important
}

.posmb-24 {
	bottom: -1.5rem !important
}

.posml-24 {
	left: -1.5rem !important
}

.pos-25 {
	top: 1.5625rem !important;
	bottom: 1.5625rem !important
}

.pos-25,
.posx-25 {
	right: 1.5625rem !important;
	left: 1.5625rem !important
}

.posy-25 {
	bottom: 1.5625rem !important
}

.post-25,
.posy-25 {
	top: 1.5625rem !important
}

.posr-25 {
	right: 1.5625rem !important
}

.posb-25 {
	bottom: 1.5625rem !important
}

.posl-25 {
	left: 1.5625rem !important
}

.posmt-25 {
	top: -1.5625rem !important
}

.posmr-25 {
	right: -1.5625rem !important
}

.posmb-25 {
	bottom: -1.5625rem !important
}

.posml-25 {
	left: -1.5625rem !important
}

.pos-26 {
	top: 1.625rem !important;
	bottom: 1.625rem !important
}

.pos-26,
.posx-26 {
	right: 1.625rem !important;
	left: 1.625rem !important
}

.posy-26 {
	bottom: 1.625rem !important
}

.post-26,
.posy-26 {
	top: 1.625rem !important
}

.posr-26 {
	right: 1.625rem !important
}

.posb-26 {
	bottom: 1.625rem !important
}

.posl-26 {
	left: 1.625rem !important
}

.posmt-26 {
	top: -1.625rem !important
}

.posmr-26 {
	right: -1.625rem !important
}

.posmb-26 {
	bottom: -1.625rem !important
}

.posml-26 {
	left: -1.625rem !important
}

.pos-27 {
	top: 1.6875rem !important;
	bottom: 1.6875rem !important
}

.pos-27,
.posx-27 {
	right: 1.6875rem !important;
	left: 1.6875rem !important
}

.posy-27 {
	bottom: 1.6875rem !important
}

.post-27,
.posy-27 {
	top: 1.6875rem !important
}

.posr-27 {
	right: 1.6875rem !important
}

.posb-27 {
	bottom: 1.6875rem !important
}

.posl-27 {
	left: 1.6875rem !important
}

.posmt-27 {
	top: -1.6875rem !important
}

.posmr-27 {
	right: -1.6875rem !important
}

.posmb-27 {
	bottom: -1.6875rem !important
}

.posml-27 {
	left: -1.6875rem !important
}

.pos-28 {
	top: 1.75rem !important;
	bottom: 1.75rem !important
}

.pos-28,
.posx-28 {
	right: 1.75rem !important;
	left: 1.75rem !important
}

.posy-28 {
	bottom: 1.75rem !important
}

.post-28,
.posy-28 {
	top: 1.75rem !important
}

.posr-28 {
	right: 1.75rem !important
}

.posb-28 {
	bottom: 1.75rem !important
}

.posl-28 {
	left: 1.75rem !important
}

.posmt-28 {
	top: -1.75rem !important
}

.posmr-28 {
	right: -1.75rem !important
}

.posmb-28 {
	bottom: -1.75rem !important
}

.posml-28 {
	left: -1.75rem !important
}

.pos-29 {
	top: 1.8125rem !important;
	bottom: 1.8125rem !important
}

.pos-29,
.posx-29 {
	right: 1.8125rem !important;
	left: 1.8125rem !important
}

.posy-29 {
	bottom: 1.8125rem !important
}

.post-29,
.posy-29 {
	top: 1.8125rem !important
}

.posr-29 {
	right: 1.8125rem !important
}

.posb-29 {
	bottom: 1.8125rem !important
}

.posl-29 {
	left: 1.8125rem !important
}

.posmt-29 {
	top: -1.8125rem !important
}

.posmr-29 {
	right: -1.8125rem !important
}

.posmb-29 {
	bottom: -1.8125rem !important
}

.posml-29 {
	left: -1.8125rem !important
}

.pos-30 {
	top: 1.875rem !important;
	bottom: 1.875rem !important
}

.pos-30,
.posx-30 {
	right: 1.875rem !important;
	left: 1.875rem !important
}

.posy-30 {
	bottom: 1.875rem !important
}

.post-30,
.posy-30 {
	top: 1.875rem !important
}

.posr-30 {
	right: 1.875rem !important
}

.posb-30 {
	bottom: 1.875rem !important
}

.posl-30 {
	left: 1.875rem !important
}

.posmt-30 {
	top: -1.875rem !important
}

.posmr-30 {
	right: -1.875rem !important
}

.posmb-30 {
	bottom: -1.875rem !important
}

.posml-30 {
	left: -1.875rem !important
}

.pos-31 {
	top: 1.9375rem !important;
	bottom: 1.9375rem !important
}

.pos-31,
.posx-31 {
	right: 1.9375rem !important;
	left: 1.9375rem !important
}

.posy-31 {
	bottom: 1.9375rem !important
}

.post-31,
.posy-31 {
	top: 1.9375rem !important
}

.posr-31 {
	right: 1.9375rem !important
}

.posb-31 {
	bottom: 1.9375rem !important
}

.posl-31 {
	left: 1.9375rem !important
}

.posmt-31 {
	top: -1.9375rem !important
}

.posmr-31 {
	right: -1.9375rem !important
}

.posmb-31 {
	bottom: -1.9375rem !important
}

.posml-31 {
	left: -1.9375rem !important
}

.pos-32 {
	top: 2rem !important;
	bottom: 2rem !important
}

.pos-32,
.posx-32 {
	right: 2rem !important;
	left: 2rem !important
}

.posy-32 {
	bottom: 2rem !important
}

.post-32,
.posy-32 {
	top: 2rem !important
}

.posr-32 {
	right: 2rem !important
}

.posb-32 {
	bottom: 2rem !important
}

.posl-32 {
	left: 2rem !important
}

.posmt-32 {
	top: -2rem !important
}

.posmr-32 {
	right: -2rem !important
}

.posmb-32 {
	bottom: -2rem !important
}

.posml-32 {
	left: -2rem !important
}

.pos-33 {
	top: 2.0625rem !important;
	bottom: 2.0625rem !important
}

.pos-33,
.posx-33 {
	right: 2.0625rem !important;
	left: 2.0625rem !important
}

.posy-33 {
	bottom: 2.0625rem !important
}

.post-33,
.posy-33 {
	top: 2.0625rem !important
}

.posr-33 {
	right: 2.0625rem !important
}

.posb-33 {
	bottom: 2.0625rem !important
}

.posl-33 {
	left: 2.0625rem !important
}

.posmt-33 {
	top: -2.0625rem !important
}

.posmr-33 {
	right: -2.0625rem !important
}

.posmb-33 {
	bottom: -2.0625rem !important
}

.posml-33 {
	left: -2.0625rem !important
}

.pos-34 {
	top: 2.125rem !important;
	bottom: 2.125rem !important
}

.pos-34,
.posx-34 {
	right: 2.125rem !important;
	left: 2.125rem !important
}

.posy-34 {
	bottom: 2.125rem !important
}

.post-34,
.posy-34 {
	top: 2.125rem !important
}

.posr-34 {
	right: 2.125rem !important
}

.posb-34 {
	bottom: 2.125rem !important
}

.posl-34 {
	left: 2.125rem !important
}

.posmt-34 {
	top: -2.125rem !important
}

.posmr-34 {
	right: -2.125rem !important
}

.posmb-34 {
	bottom: -2.125rem !important
}

.posml-34 {
	left: -2.125rem !important
}

.pos-35 {
	top: 2.1875rem !important;
	bottom: 2.1875rem !important
}

.pos-35,
.posx-35 {
	right: 2.1875rem !important;
	left: 2.1875rem !important
}

.posy-35 {
	bottom: 2.1875rem !important
}

.post-35,
.posy-35 {
	top: 2.1875rem !important
}

.posr-35 {
	right: 2.1875rem !important
}

.posb-35 {
	bottom: 2.1875rem !important
}

.posl-35 {
	left: 2.1875rem !important
}

.posmt-35 {
	top: -2.1875rem !important
}

.posmr-35 {
	right: -2.1875rem !important
}

.posmb-35 {
	bottom: -2.1875rem !important
}

.posml-35 {
	left: -2.1875rem !important
}

.pos-36 {
	top: 2.25rem !important;
	bottom: 2.25rem !important
}

.pos-36,
.posx-36 {
	right: 2.25rem !important;
	left: 2.25rem !important
}

.posy-36 {
	bottom: 2.25rem !important
}

.post-36,
.posy-36 {
	top: 2.25rem !important
}

.posr-36 {
	right: 2.25rem !important
}

.posb-36 {
	bottom: 2.25rem !important
}

.posl-36 {
	left: 2.25rem !important
}

.posmt-36 {
	top: -2.25rem !important
}

.posmr-36 {
	right: -2.25rem !important
}

.posmb-36 {
	bottom: -2.25rem !important
}

.posml-36 {
	left: -2.25rem !important
}

.pos-37 {
	top: 2.3125rem !important;
	bottom: 2.3125rem !important
}

.pos-37,
.posx-37 {
	right: 2.3125rem !important;
	left: 2.3125rem !important
}

.posy-37 {
	bottom: 2.3125rem !important
}

.post-37,
.posy-37 {
	top: 2.3125rem !important
}

.posr-37 {
	right: 2.3125rem !important
}

.posb-37 {
	bottom: 2.3125rem !important
}

.posl-37 {
	left: 2.3125rem !important
}

.posmt-37 {
	top: -2.3125rem !important
}

.posmr-37 {
	right: -2.3125rem !important
}

.posmb-37 {
	bottom: -2.3125rem !important
}

.posml-37 {
	left: -2.3125rem !important
}

.pos-38 {
	top: 2.375rem !important;
	bottom: 2.375rem !important
}

.pos-38,
.posx-38 {
	right: 2.375rem !important;
	left: 2.375rem !important
}

.posy-38 {
	bottom: 2.375rem !important
}

.post-38,
.posy-38 {
	top: 2.375rem !important
}

.posr-38 {
	right: 2.375rem !important
}

.posb-38 {
	bottom: 2.375rem !important
}

.posl-38 {
	left: 2.375rem !important
}

.posmt-38 {
	top: -2.375rem !important
}

.posmr-38 {
	right: -2.375rem !important
}

.posmb-38 {
	bottom: -2.375rem !important
}

.posml-38 {
	left: -2.375rem !important
}

.pos-39 {
	top: 2.4375rem !important;
	bottom: 2.4375rem !important
}

.pos-39,
.posx-39 {
	right: 2.4375rem !important;
	left: 2.4375rem !important
}

.posy-39 {
	bottom: 2.4375rem !important
}

.post-39,
.posy-39 {
	top: 2.4375rem !important
}

.posr-39 {
	right: 2.4375rem !important
}

.posb-39 {
	bottom: 2.4375rem !important
}

.posl-39 {
	left: 2.4375rem !important
}

.posmt-39 {
	top: -2.4375rem !important
}

.posmr-39 {
	right: -2.4375rem !important
}

.posmb-39 {
	bottom: -2.4375rem !important
}

.posml-39 {
	left: -2.4375rem !important
}

.pos-40 {
	top: 2.5rem !important;
	bottom: 2.5rem !important
}

.pos-40,
.posx-40 {
	right: 2.5rem !important;
	left: 2.5rem !important
}

.posy-40 {
	bottom: 2.5rem !important
}

.post-40,
.posy-40 {
	top: 2.5rem !important
}

.posr-40 {
	right: 2.5rem !important
}

.posb-40 {
	bottom: 2.5rem !important
}

.posl-40 {
	left: 2.5rem !important
}

.posmt-40 {
	top: -2.5rem !important
}

.posmr-40 {
	right: -2.5rem !important
}

.posmb-40 {
	bottom: -2.5rem !important
}

.posml-40 {
	left: -2.5rem !important
}

.pos-41 {
	top: 2.5625rem !important;
	bottom: 2.5625rem !important
}

.pos-41,
.posx-41 {
	right: 2.5625rem !important;
	left: 2.5625rem !important
}

.posy-41 {
	bottom: 2.5625rem !important
}

.post-41,
.posy-41 {
	top: 2.5625rem !important
}

.posr-41 {
	right: 2.5625rem !important
}

.posb-41 {
	bottom: 2.5625rem !important
}

.posl-41 {
	left: 2.5625rem !important
}

.posmt-41 {
	top: -2.5625rem !important
}

.posmr-41 {
	right: -2.5625rem !important
}

.posmb-41 {
	bottom: -2.5625rem !important
}

.posml-41 {
	left: -2.5625rem !important
}

.pos-42 {
	top: 2.625rem !important;
	bottom: 2.625rem !important
}

.pos-42,
.posx-42 {
	right: 2.625rem !important;
	left: 2.625rem !important
}

.posy-42 {
	bottom: 2.625rem !important
}

.post-42,
.posy-42 {
	top: 2.625rem !important
}

.posr-42 {
	right: 2.625rem !important
}

.posb-42 {
	bottom: 2.625rem !important
}

.posl-42 {
	left: 2.625rem !important
}

.posmt-42 {
	top: -2.625rem !important
}

.posmr-42 {
	right: -2.625rem !important
}

.posmb-42 {
	bottom: -2.625rem !important
}

.posml-42 {
	left: -2.625rem !important
}

.pos-43 {
	top: 2.6875rem !important;
	bottom: 2.6875rem !important
}

.pos-43,
.posx-43 {
	right: 2.6875rem !important;
	left: 2.6875rem !important
}

.posy-43 {
	bottom: 2.6875rem !important
}

.post-43,
.posy-43 {
	top: 2.6875rem !important
}

.posr-43 {
	right: 2.6875rem !important
}

.posb-43 {
	bottom: 2.6875rem !important
}

.posl-43 {
	left: 2.6875rem !important
}

.posmt-43 {
	top: -2.6875rem !important
}

.posmr-43 {
	right: -2.6875rem !important
}

.posmb-43 {
	bottom: -2.6875rem !important
}

.posml-43 {
	left: -2.6875rem !important
}

.pos-44 {
	top: 2.75rem !important;
	bottom: 2.75rem !important
}

.pos-44,
.posx-44 {
	right: 2.75rem !important;
	left: 2.75rem !important
}

.posy-44 {
	bottom: 2.75rem !important
}

.post-44,
.posy-44 {
	top: 2.75rem !important
}

.posr-44 {
	right: 2.75rem !important
}

.posb-44 {
	bottom: 2.75rem !important
}

.posl-44 {
	left: 2.75rem !important
}

.posmt-44 {
	top: -2.75rem !important
}

.posmr-44 {
	right: -2.75rem !important
}

.posmb-44 {
	bottom: -2.75rem !important
}

.posml-44 {
	left: -2.75rem !important
}

.pos-45 {
	top: 2.8125rem !important;
	bottom: 2.8125rem !important
}

.pos-45,
.posx-45 {
	right: 2.8125rem !important;
	left: 2.8125rem !important
}

.posy-45 {
	bottom: 2.8125rem !important
}

.post-45,
.posy-45 {
	top: 2.8125rem !important
}

.posr-45 {
	right: 2.8125rem !important
}

.posb-45 {
	bottom: 2.8125rem !important
}

.posl-45 {
	left: 2.8125rem !important
}

.posmt-45 {
	top: -2.8125rem !important
}

.posmr-45 {
	right: -2.8125rem !important
}

.posmb-45 {
	bottom: -2.8125rem !important
}

.posml-45 {
	left: -2.8125rem !important
}

.pos-46 {
	top: 2.875rem !important;
	bottom: 2.875rem !important
}

.pos-46,
.posx-46 {
	right: 2.875rem !important;
	left: 2.875rem !important
}

.posy-46 {
	bottom: 2.875rem !important
}

.post-46,
.posy-46 {
	top: 2.875rem !important
}

.posr-46 {
	right: 2.875rem !important
}

.posb-46 {
	bottom: 2.875rem !important
}

.posl-46 {
	left: 2.875rem !important
}

.posmt-46 {
	top: -2.875rem !important
}

.posmr-46 {
	right: -2.875rem !important
}

.posmb-46 {
	bottom: -2.875rem !important
}

.posml-46 {
	left: -2.875rem !important
}

.pos-47 {
	top: 2.9375rem !important;
	bottom: 2.9375rem !important
}

.pos-47,
.posx-47 {
	right: 2.9375rem !important;
	left: 2.9375rem !important
}

.posy-47 {
	bottom: 2.9375rem !important
}

.post-47,
.posy-47 {
	top: 2.9375rem !important
}

.posr-47 {
	right: 2.9375rem !important
}

.posb-47 {
	bottom: 2.9375rem !important
}

.posl-47 {
	left: 2.9375rem !important
}

.posmt-47 {
	top: -2.9375rem !important
}

.posmr-47 {
	right: -2.9375rem !important
}

.posmb-47 {
	bottom: -2.9375rem !important
}

.posml-47 {
	left: -2.9375rem !important
}

.pos-48 {
	top: 3rem !important;
	bottom: 3rem !important
}

.pos-48,
.posx-48 {
	right: 3rem !important;
	left: 3rem !important
}

.posy-48 {
	bottom: 3rem !important
}

.post-48,
.posy-48 {
	top: 3rem !important
}

.posr-48 {
	right: 3rem !important
}

.posb-48 {
	bottom: 3rem !important
}

.posl-48 {
	left: 3rem !important
}

.posmt-48 {
	top: -3rem !important
}

.posmr-48 {
	right: -3rem !important
}

.posmb-48 {
	bottom: -3rem !important
}

.posml-48 {
	left: -3rem !important
}

.pos-49 {
	top: 3.0625rem !important;
	bottom: 3.0625rem !important
}

.pos-49,
.posx-49 {
	right: 3.0625rem !important;
	left: 3.0625rem !important
}

.posy-49 {
	bottom: 3.0625rem !important
}

.post-49,
.posy-49 {
	top: 3.0625rem !important
}

.posr-49 {
	right: 3.0625rem !important
}

.posb-49 {
	bottom: 3.0625rem !important
}

.posl-49 {
	left: 3.0625rem !important
}

.posmt-49 {
	top: -3.0625rem !important
}

.posmr-49 {
	right: -3.0625rem !important
}

.posmb-49 {
	bottom: -3.0625rem !important
}

.posml-49 {
	left: -3.0625rem !important
}

.pos-50 {
	top: 3.125rem !important;
	bottom: 3.125rem !important
}

.pos-50,
.posx-50 {
	right: 3.125rem !important;
	left: 3.125rem !important
}

.posy-50 {
	bottom: 3.125rem !important
}

.post-50,
.posy-50 {
	top: 3.125rem !important
}

.posr-50 {
	right: 3.125rem !important
}

.posb-50 {
	bottom: 3.125rem !important
}

.posl-50 {
	left: 3.125rem !important
}

.posmt-50 {
	top: -3.125rem !important
}

.posmr-50 {
	right: -3.125rem !important
}

.posmb-50 {
	bottom: -3.125rem !important
}

.posml-50 {
	left: -3.125rem !important
}

.pos-51 {
	top: 3.1875rem !important;
	bottom: 3.1875rem !important
}

.pos-51,
.posx-51 {
	right: 3.1875rem !important;
	left: 3.1875rem !important
}

.posy-51 {
	bottom: 3.1875rem !important
}

.post-51,
.posy-51 {
	top: 3.1875rem !important
}

.posr-51 {
	right: 3.1875rem !important
}

.posb-51 {
	bottom: 3.1875rem !important
}

.posl-51 {
	left: 3.1875rem !important
}

.posmt-51 {
	top: -3.1875rem !important
}

.posmr-51 {
	right: -3.1875rem !important
}

.posmb-51 {
	bottom: -3.1875rem !important
}

.posml-51 {
	left: -3.1875rem !important
}

.pos-52 {
	top: 3.25rem !important;
	bottom: 3.25rem !important
}

.pos-52,
.posx-52 {
	right: 3.25rem !important;
	left: 3.25rem !important
}

.posy-52 {
	bottom: 3.25rem !important
}

.post-52,
.posy-52 {
	top: 3.25rem !important
}

.posr-52 {
	right: 3.25rem !important
}

.posb-52 {
	bottom: 3.25rem !important
}

.posl-52 {
	left: 3.25rem !important
}

.posmt-52 {
	top: -3.25rem !important
}

.posmr-52 {
	right: -3.25rem !important
}

.posmb-52 {
	bottom: -3.25rem !important
}

.posml-52 {
	left: -3.25rem !important
}

.pos-53 {
	top: 3.3125rem !important;
	bottom: 3.3125rem !important
}

.pos-53,
.posx-53 {
	right: 3.3125rem !important;
	left: 3.3125rem !important
}

.posy-53 {
	bottom: 3.3125rem !important
}

.post-53,
.posy-53 {
	top: 3.3125rem !important
}

.posr-53 {
	right: 3.3125rem !important
}

.posb-53 {
	bottom: 3.3125rem !important
}

.posl-53 {
	left: 3.3125rem !important
}

.posmt-53 {
	top: -3.3125rem !important
}

.posmr-53 {
	right: -3.3125rem !important
}

.posmb-53 {
	bottom: -3.3125rem !important
}

.posml-53 {
	left: -3.3125rem !important
}

.pos-54 {
	top: 3.375rem !important;
	bottom: 3.375rem !important
}

.pos-54,
.posx-54 {
	right: 3.375rem !important;
	left: 3.375rem !important
}

.posy-54 {
	bottom: 3.375rem !important
}

.post-54,
.posy-54 {
	top: 3.375rem !important
}

.posr-54 {
	right: 3.375rem !important
}

.posb-54 {
	bottom: 3.375rem !important
}

.posl-54 {
	left: 3.375rem !important
}

.posmt-54 {
	top: -3.375rem !important
}

.posmr-54 {
	right: -3.375rem !important
}

.posmb-54 {
	bottom: -3.375rem !important
}

.posml-54 {
	left: -3.375rem !important
}

.pos-55 {
	top: 3.4375rem !important;
	bottom: 3.4375rem !important
}

.pos-55,
.posx-55 {
	right: 3.4375rem !important;
	left: 3.4375rem !important
}

.posy-55 {
	bottom: 3.4375rem !important
}

.post-55,
.posy-55 {
	top: 3.4375rem !important
}

.posr-55 {
	right: 3.4375rem !important
}

.posb-55 {
	bottom: 3.4375rem !important
}

.posl-55 {
	left: 3.4375rem !important
}

.posmt-55 {
	top: -3.4375rem !important
}

.posmr-55 {
	right: -3.4375rem !important
}

.posmb-55 {
	bottom: -3.4375rem !important
}

.posml-55 {
	left: -3.4375rem !important
}

.pos-56 {
	top: 3.5rem !important;
	bottom: 3.5rem !important
}

.pos-56,
.posx-56 {
	right: 3.5rem !important;
	left: 3.5rem !important
}

.posy-56 {
	bottom: 3.5rem !important
}

.post-56,
.posy-56 {
	top: 3.5rem !important
}

.posr-56 {
	right: 3.5rem !important
}

.posb-56 {
	bottom: 3.5rem !important
}

.posl-56 {
	left: 3.5rem !important
}

.posmt-56 {
	top: -3.5rem !important
}

.posmr-56 {
	right: -3.5rem !important
}

.posmb-56 {
	bottom: -3.5rem !important
}

.posml-56 {
	left: -3.5rem !important
}

.pos-57 {
	top: 3.5625rem !important;
	bottom: 3.5625rem !important
}

.pos-57,
.posx-57 {
	right: 3.5625rem !important;
	left: 3.5625rem !important
}

.posy-57 {
	bottom: 3.5625rem !important
}

.post-57,
.posy-57 {
	top: 3.5625rem !important
}

.posr-57 {
	right: 3.5625rem !important
}

.posb-57 {
	bottom: 3.5625rem !important
}

.posl-57 {
	left: 3.5625rem !important
}

.posmt-57 {
	top: -3.5625rem !important
}

.posmr-57 {
	right: -3.5625rem !important
}

.posmb-57 {
	bottom: -3.5625rem !important
}

.posml-57 {
	left: -3.5625rem !important
}

.pos-58 {
	top: 3.625rem !important;
	bottom: 3.625rem !important
}

.pos-58,
.posx-58 {
	right: 3.625rem !important;
	left: 3.625rem !important
}

.posy-58 {
	bottom: 3.625rem !important
}

.post-58,
.posy-58 {
	top: 3.625rem !important
}

.posr-58 {
	right: 3.625rem !important
}

.posb-58 {
	bottom: 3.625rem !important
}

.posl-58 {
	left: 3.625rem !important
}

.posmt-58 {
	top: -3.625rem !important
}

.posmr-58 {
	right: -3.625rem !important
}

.posmb-58 {
	bottom: -3.625rem !important
}

.posml-58 {
	left: -3.625rem !important
}

.pos-59 {
	top: 3.6875rem !important;
	bottom: 3.6875rem !important
}

.pos-59,
.posx-59 {
	right: 3.6875rem !important;
	left: 3.6875rem !important
}

.posy-59 {
	bottom: 3.6875rem !important
}

.post-59,
.posy-59 {
	top: 3.6875rem !important
}

.posr-59 {
	right: 3.6875rem !important
}

.posb-59 {
	bottom: 3.6875rem !important
}

.posl-59 {
	left: 3.6875rem !important
}

.posmt-59 {
	top: -3.6875rem !important
}

.posmr-59 {
	right: -3.6875rem !important
}

.posmb-59 {
	bottom: -3.6875rem !important
}

.posml-59 {
	left: -3.6875rem !important
}

.pos-60 {
	top: 3.75rem !important;
	bottom: 3.75rem !important
}

.pos-60,
.posx-60 {
	right: 3.75rem !important;
	left: 3.75rem !important
}

.posy-60 {
	bottom: 3.75rem !important
}

.post-60,
.posy-60 {
	top: 3.75rem !important
}

.posr-60 {
	right: 3.75rem !important
}

.posb-60 {
	bottom: 3.75rem !important
}

.posl-60 {
	left: 3.75rem !important
}

.posmt-60 {
	top: -3.75rem !important
}

.posmr-60 {
	right: -3.75rem !important
}

.posmb-60 {
	bottom: -3.75rem !important
}

.posml-60 {
	left: -3.75rem !important
}

.pos-61 {
	top: 3.8125rem !important;
	bottom: 3.8125rem !important
}

.pos-61,
.posx-61 {
	right: 3.8125rem !important;
	left: 3.8125rem !important
}

.posy-61 {
	bottom: 3.8125rem !important
}

.post-61,
.posy-61 {
	top: 3.8125rem !important
}

.posr-61 {
	right: 3.8125rem !important
}

.posb-61 {
	bottom: 3.8125rem !important
}

.posl-61 {
	left: 3.8125rem !important
}

.posmt-61 {
	top: -3.8125rem !important
}

.posmr-61 {
	right: -3.8125rem !important
}

.posmb-61 {
	bottom: -3.8125rem !important
}

.posml-61 {
	left: -3.8125rem !important
}

.pos-62 {
	top: 3.875rem !important;
	bottom: 3.875rem !important
}

.pos-62,
.posx-62 {
	right: 3.875rem !important;
	left: 3.875rem !important
}

.posy-62 {
	bottom: 3.875rem !important
}

.post-62,
.posy-62 {
	top: 3.875rem !important
}

.posr-62 {
	right: 3.875rem !important
}

.posb-62 {
	bottom: 3.875rem !important
}

.posl-62 {
	left: 3.875rem !important
}

.posmt-62 {
	top: -3.875rem !important
}

.posmr-62 {
	right: -3.875rem !important
}

.posmb-62 {
	bottom: -3.875rem !important
}

.posml-62 {
	left: -3.875rem !important
}

.pos-63 {
	top: 3.9375rem !important;
	bottom: 3.9375rem !important
}

.pos-63,
.posx-63 {
	right: 3.9375rem !important;
	left: 3.9375rem !important
}

.posy-63 {
	bottom: 3.9375rem !important
}

.post-63,
.posy-63 {
	top: 3.9375rem !important
}

.posr-63 {
	right: 3.9375rem !important
}

.posb-63 {
	bottom: 3.9375rem !important
}

.posl-63 {
	left: 3.9375rem !important
}

.posmt-63 {
	top: -3.9375rem !important
}

.posmr-63 {
	right: -3.9375rem !important
}

.posmb-63 {
	bottom: -3.9375rem !important
}

.posml-63 {
	left: -3.9375rem !important
}

.pos-64 {
	top: 4rem !important;
	bottom: 4rem !important
}

.pos-64,
.posx-64 {
	right: 4rem !important;
	left: 4rem !important
}

.posy-64 {
	bottom: 4rem !important
}

.post-64,
.posy-64 {
	top: 4rem !important
}

.posr-64 {
	right: 4rem !important
}

.posb-64 {
	bottom: 4rem !important
}

.posl-64 {
	left: 4rem !important
}

.posmt-64 {
	top: -4rem !important
}

.posmr-64 {
	right: -4rem !important
}

.posmb-64 {
	bottom: -4rem !important
}

.posml-64 {
	left: -4rem !important
}

.pos-65 {
	top: 4.0625rem !important;
	bottom: 4.0625rem !important
}

.pos-65,
.posx-65 {
	right: 4.0625rem !important;
	left: 4.0625rem !important
}

.posy-65 {
	bottom: 4.0625rem !important
}

.post-65,
.posy-65 {
	top: 4.0625rem !important
}

.posr-65 {
	right: 4.0625rem !important
}

.posb-65 {
	bottom: 4.0625rem !important
}

.posl-65 {
	left: 4.0625rem !important
}

.posmt-65 {
	top: -4.0625rem !important
}

.posmr-65 {
	right: -4.0625rem !important
}

.posmb-65 {
	bottom: -4.0625rem !important
}

.posml-65 {
	left: -4.0625rem !important
}

.pos-66 {
	top: 4.125rem !important;
	bottom: 4.125rem !important
}

.pos-66,
.posx-66 {
	right: 4.125rem !important;
	left: 4.125rem !important
}

.posy-66 {
	bottom: 4.125rem !important
}

.post-66,
.posy-66 {
	top: 4.125rem !important
}

.posr-66 {
	right: 4.125rem !important
}

.posb-66 {
	bottom: 4.125rem !important
}

.posl-66 {
	left: 4.125rem !important
}

.posmt-66 {
	top: -4.125rem !important
}

.posmr-66 {
	right: -4.125rem !important
}

.posmb-66 {
	bottom: -4.125rem !important
}

.posml-66 {
	left: -4.125rem !important
}

.pos-67 {
	top: 4.1875rem !important;
	bottom: 4.1875rem !important
}

.pos-67,
.posx-67 {
	right: 4.1875rem !important;
	left: 4.1875rem !important
}

.posy-67 {
	bottom: 4.1875rem !important
}

.post-67,
.posy-67 {
	top: 4.1875rem !important
}

.posr-67 {
	right: 4.1875rem !important
}

.posb-67 {
	bottom: 4.1875rem !important
}

.posl-67 {
	left: 4.1875rem !important
}

.posmt-67 {
	top: -4.1875rem !important
}

.posmr-67 {
	right: -4.1875rem !important
}

.posmb-67 {
	bottom: -4.1875rem !important
}

.posml-67 {
	left: -4.1875rem !important
}

.pos-68 {
	top: 4.25rem !important;
	bottom: 4.25rem !important
}

.pos-68,
.posx-68 {
	right: 4.25rem !important;
	left: 4.25rem !important
}

.posy-68 {
	bottom: 4.25rem !important
}

.post-68,
.posy-68 {
	top: 4.25rem !important
}

.posr-68 {
	right: 4.25rem !important
}

.posb-68 {
	bottom: 4.25rem !important
}

.posl-68 {
	left: 4.25rem !important
}

.posmt-68 {
	top: -4.25rem !important
}

.posmr-68 {
	right: -4.25rem !important
}

.posmb-68 {
	bottom: -4.25rem !important
}

.posml-68 {
	left: -4.25rem !important
}

.pos-69 {
	top: 4.3125rem !important;
	bottom: 4.3125rem !important
}

.pos-69,
.posx-69 {
	right: 4.3125rem !important;
	left: 4.3125rem !important
}

.posy-69 {
	bottom: 4.3125rem !important
}

.post-69,
.posy-69 {
	top: 4.3125rem !important
}

.posr-69 {
	right: 4.3125rem !important
}

.posb-69 {
	bottom: 4.3125rem !important
}

.posl-69 {
	left: 4.3125rem !important
}

.posmt-69 {
	top: -4.3125rem !important
}

.posmr-69 {
	right: -4.3125rem !important
}

.posmb-69 {
	bottom: -4.3125rem !important
}

.posml-69 {
	left: -4.3125rem !important
}

.pos-70 {
	top: 4.375rem !important;
	bottom: 4.375rem !important
}

.pos-70,
.posx-70 {
	right: 4.375rem !important;
	left: 4.375rem !important
}

.posy-70 {
	bottom: 4.375rem !important
}

.post-70,
.posy-70 {
	top: 4.375rem !important
}

.posr-70 {
	right: 4.375rem !important
}

.posb-70 {
	bottom: 4.375rem !important
}

.posl-70 {
	left: 4.375rem !important
}

.posmt-70 {
	top: -4.375rem !important
}

.posmr-70 {
	right: -4.375rem !important
}

.posmb-70 {
	bottom: -4.375rem !important
}

.posml-70 {
	left: -4.375rem !important
}

.pos-71 {
	top: 4.4375rem !important;
	bottom: 4.4375rem !important
}

.pos-71,
.posx-71 {
	right: 4.4375rem !important;
	left: 4.4375rem !important
}

.posy-71 {
	bottom: 4.4375rem !important
}

.post-71,
.posy-71 {
	top: 4.4375rem !important
}

.posr-71 {
	right: 4.4375rem !important
}

.posb-71 {
	bottom: 4.4375rem !important
}

.posl-71 {
	left: 4.4375rem !important
}

.posmt-71 {
	top: -4.4375rem !important
}

.posmr-71 {
	right: -4.4375rem !important
}

.posmb-71 {
	bottom: -4.4375rem !important
}

.posml-71 {
	left: -4.4375rem !important
}

.pos-72 {
	top: 4.5rem !important;
	bottom: 4.5rem !important
}

.pos-72,
.posx-72 {
	right: 4.5rem !important;
	left: 4.5rem !important
}

.posy-72 {
	bottom: 4.5rem !important
}

.post-72,
.posy-72 {
	top: 4.5rem !important
}

.posr-72 {
	right: 4.5rem !important
}

.posb-72 {
	bottom: 4.5rem !important
}

.posl-72 {
	left: 4.5rem !important
}

.posmt-72 {
	top: -4.5rem !important
}

.posmr-72 {
	right: -4.5rem !important
}

.posmb-72 {
	bottom: -4.5rem !important
}

.posml-72 {
	left: -4.5rem !important
}

.pos-73 {
	top: 4.5625rem !important;
	bottom: 4.5625rem !important
}

.pos-73,
.posx-73 {
	right: 4.5625rem !important;
	left: 4.5625rem !important
}

.posy-73 {
	bottom: 4.5625rem !important
}

.post-73,
.posy-73 {
	top: 4.5625rem !important
}

.posr-73 {
	right: 4.5625rem !important
}

.posb-73 {
	bottom: 4.5625rem !important
}

.posl-73 {
	left: 4.5625rem !important
}

.posmt-73 {
	top: -4.5625rem !important
}

.posmr-73 {
	right: -4.5625rem !important
}

.posmb-73 {
	bottom: -4.5625rem !important
}

.posml-73 {
	left: -4.5625rem !important
}

.pos-74 {
	top: 4.625rem !important;
	bottom: 4.625rem !important
}

.pos-74,
.posx-74 {
	right: 4.625rem !important;
	left: 4.625rem !important
}

.posy-74 {
	bottom: 4.625rem !important
}

.post-74,
.posy-74 {
	top: 4.625rem !important
}

.posr-74 {
	right: 4.625rem !important
}

.posb-74 {
	bottom: 4.625rem !important
}

.posl-74 {
	left: 4.625rem !important
}

.posmt-74 {
	top: -4.625rem !important
}

.posmr-74 {
	right: -4.625rem !important
}

.posmb-74 {
	bottom: -4.625rem !important
}

.posml-74 {
	left: -4.625rem !important
}

.pos-75 {
	top: 4.6875rem !important;
	bottom: 4.6875rem !important
}

.pos-75,
.posx-75 {
	right: 4.6875rem !important;
	left: 4.6875rem !important
}

.posy-75 {
	bottom: 4.6875rem !important
}

.post-75,
.posy-75 {
	top: 4.6875rem !important
}

.posr-75 {
	right: 4.6875rem !important
}

.posb-75 {
	bottom: 4.6875rem !important
}

.posl-75 {
	left: 4.6875rem !important
}

.posmt-75 {
	top: -4.6875rem !important
}

.posmr-75 {
	right: -4.6875rem !important
}

.posmb-75 {
	bottom: -4.6875rem !important
}

.posml-75 {
	left: -4.6875rem !important
}

.pos-76 {
	top: 4.75rem !important;
	bottom: 4.75rem !important
}

.pos-76,
.posx-76 {
	right: 4.75rem !important;
	left: 4.75rem !important
}

.posy-76 {
	bottom: 4.75rem !important
}

.post-76,
.posy-76 {
	top: 4.75rem !important
}

.posr-76 {
	right: 4.75rem !important
}

.posb-76 {
	bottom: 4.75rem !important
}

.posl-76 {
	left: 4.75rem !important
}

.posmt-76 {
	top: -4.75rem !important
}

.posmr-76 {
	right: -4.75rem !important
}

.posmb-76 {
	bottom: -4.75rem !important
}

.posml-76 {
	left: -4.75rem !important
}

.pos-77 {
	top: 4.8125rem !important;
	bottom: 4.8125rem !important
}

.pos-77,
.posx-77 {
	right: 4.8125rem !important;
	left: 4.8125rem !important
}

.posy-77 {
	bottom: 4.8125rem !important
}

.post-77,
.posy-77 {
	top: 4.8125rem !important
}

.posr-77 {
	right: 4.8125rem !important
}

.posb-77 {
	bottom: 4.8125rem !important
}

.posl-77 {
	left: 4.8125rem !important
}

.posmt-77 {
	top: -4.8125rem !important
}

.posmr-77 {
	right: -4.8125rem !important
}

.posmb-77 {
	bottom: -4.8125rem !important
}

.posml-77 {
	left: -4.8125rem !important
}

.pos-78 {
	top: 4.875rem !important;
	bottom: 4.875rem !important
}

.pos-78,
.posx-78 {
	right: 4.875rem !important;
	left: 4.875rem !important
}

.posy-78 {
	bottom: 4.875rem !important
}

.post-78,
.posy-78 {
	top: 4.875rem !important
}

.posr-78 {
	right: 4.875rem !important
}

.posb-78 {
	bottom: 4.875rem !important
}

.posl-78 {
	left: 4.875rem !important
}

.posmt-78 {
	top: -4.875rem !important
}

.posmr-78 {
	right: -4.875rem !important
}

.posmb-78 {
	bottom: -4.875rem !important
}

.posml-78 {
	left: -4.875rem !important
}

.pos-79 {
	top: 4.9375rem !important;
	bottom: 4.9375rem !important
}

.pos-79,
.posx-79 {
	right: 4.9375rem !important;
	left: 4.9375rem !important
}

.posy-79 {
	bottom: 4.9375rem !important
}

.post-79,
.posy-79 {
	top: 4.9375rem !important
}

.posr-79 {
	right: 4.9375rem !important
}

.posb-79 {
	bottom: 4.9375rem !important
}

.posl-79 {
	left: 4.9375rem !important
}

.posmt-79 {
	top: -4.9375rem !important
}

.posmr-79 {
	right: -4.9375rem !important
}

.posmb-79 {
	bottom: -4.9375rem !important
}

.posml-79 {
	left: -4.9375rem !important
}

.pos-80 {
	top: 5rem !important;
	bottom: 5rem !important
}

.pos-80,
.posx-80 {
	right: 5rem !important;
	left: 5rem !important
}

.posy-80 {
	bottom: 5rem !important
}

.post-80,
.posy-80 {
	top: 5rem !important
}

.posr-80 {
	right: 5rem !important
}

.posb-80 {
	bottom: 5rem !important
}

.posl-80 {
	left: 5rem !important
}

.posmt-80 {
	top: -5rem !important
}

.posmr-80 {
	right: -5rem !important
}

.posmb-80 {
	bottom: -5rem !important
}

.posml-80 {
	left: -5rem !important
}

.pos-81 {
	top: 5.0625rem !important;
	bottom: 5.0625rem !important
}

.pos-81,
.posx-81 {
	right: 5.0625rem !important;
	left: 5.0625rem !important
}

.posy-81 {
	bottom: 5.0625rem !important
}

.post-81,
.posy-81 {
	top: 5.0625rem !important
}

.posr-81 {
	right: 5.0625rem !important
}

.posb-81 {
	bottom: 5.0625rem !important
}

.posl-81 {
	left: 5.0625rem !important
}

.posmt-81 {
	top: -5.0625rem !important
}

.posmr-81 {
	right: -5.0625rem !important
}

.posmb-81 {
	bottom: -5.0625rem !important
}

.posml-81 {
	left: -5.0625rem !important
}

.pos-82 {
	top: 5.125rem !important;
	bottom: 5.125rem !important
}

.pos-82,
.posx-82 {
	right: 5.125rem !important;
	left: 5.125rem !important
}

.posy-82 {
	bottom: 5.125rem !important
}

.post-82,
.posy-82 {
	top: 5.125rem !important
}

.posr-82 {
	right: 5.125rem !important
}

.posb-82 {
	bottom: 5.125rem !important
}

.posl-82 {
	left: 5.125rem !important
}

.posmt-82 {
	top: -5.125rem !important
}

.posmr-82 {
	right: -5.125rem !important
}

.posmb-82 {
	bottom: -5.125rem !important
}

.posml-82 {
	left: -5.125rem !important
}

.pos-83 {
	top: 5.1875rem !important;
	bottom: 5.1875rem !important
}

.pos-83,
.posx-83 {
	right: 5.1875rem !important;
	left: 5.1875rem !important
}

.posy-83 {
	bottom: 5.1875rem !important
}

.post-83,
.posy-83 {
	top: 5.1875rem !important
}

.posr-83 {
	right: 5.1875rem !important
}

.posb-83 {
	bottom: 5.1875rem !important
}

.posl-83 {
	left: 5.1875rem !important
}

.posmt-83 {
	top: -5.1875rem !important
}

.posmr-83 {
	right: -5.1875rem !important
}

.posmb-83 {
	bottom: -5.1875rem !important
}

.posml-83 {
	left: -5.1875rem !important
}

.pos-84 {
	top: 5.25rem !important;
	bottom: 5.25rem !important
}

.pos-84,
.posx-84 {
	right: 5.25rem !important;
	left: 5.25rem !important
}

.posy-84 {
	bottom: 5.25rem !important
}

.post-84,
.posy-84 {
	top: 5.25rem !important
}

.posr-84 {
	right: 5.25rem !important
}

.posb-84 {
	bottom: 5.25rem !important
}

.posl-84 {
	left: 5.25rem !important
}

.posmt-84 {
	top: -5.25rem !important
}

.posmr-84 {
	right: -5.25rem !important
}

.posmb-84 {
	bottom: -5.25rem !important
}

.posml-84 {
	left: -5.25rem !important
}

.pos-85 {
	top: 5.3125rem !important;
	bottom: 5.3125rem !important
}

.pos-85,
.posx-85 {
	right: 5.3125rem !important;
	left: 5.3125rem !important
}

.posy-85 {
	bottom: 5.3125rem !important
}

.post-85,
.posy-85 {
	top: 5.3125rem !important
}

.posr-85 {
	right: 5.3125rem !important
}

.posb-85 {
	bottom: 5.3125rem !important
}

.posl-85 {
	left: 5.3125rem !important
}

.posmt-85 {
	top: -5.3125rem !important
}

.posmr-85 {
	right: -5.3125rem !important
}

.posmb-85 {
	bottom: -5.3125rem !important
}

.posml-85 {
	left: -5.3125rem !important
}

.pos-86 {
	top: 5.375rem !important;
	bottom: 5.375rem !important
}

.pos-86,
.posx-86 {
	right: 5.375rem !important;
	left: 5.375rem !important
}

.posy-86 {
	bottom: 5.375rem !important
}

.post-86,
.posy-86 {
	top: 5.375rem !important
}

.posr-86 {
	right: 5.375rem !important
}

.posb-86 {
	bottom: 5.375rem !important
}

.posl-86 {
	left: 5.375rem !important
}

.posmt-86 {
	top: -5.375rem !important
}

.posmr-86 {
	right: -5.375rem !important
}

.posmb-86 {
	bottom: -5.375rem !important
}

.posml-86 {
	left: -5.375rem !important
}

.pos-87 {
	top: 5.4375rem !important;
	bottom: 5.4375rem !important
}

.pos-87,
.posx-87 {
	right: 5.4375rem !important;
	left: 5.4375rem !important
}

.posy-87 {
	bottom: 5.4375rem !important
}

.post-87,
.posy-87 {
	top: 5.4375rem !important
}

.posr-87 {
	right: 5.4375rem !important
}

.posb-87 {
	bottom: 5.4375rem !important
}

.posl-87 {
	left: 5.4375rem !important
}

.posmt-87 {
	top: -5.4375rem !important
}

.posmr-87 {
	right: -5.4375rem !important
}

.posmb-87 {
	bottom: -5.4375rem !important
}

.posml-87 {
	left: -5.4375rem !important
}

.pos-88 {
	top: 5.5rem !important;
	bottom: 5.5rem !important
}

.pos-88,
.posx-88 {
	right: 5.5rem !important;
	left: 5.5rem !important
}

.posy-88 {
	bottom: 5.5rem !important
}

.post-88,
.posy-88 {
	top: 5.5rem !important
}

.posr-88 {
	right: 5.5rem !important
}

.posb-88 {
	bottom: 5.5rem !important
}

.posl-88 {
	left: 5.5rem !important
}

.posmt-88 {
	top: -5.5rem !important
}

.posmr-88 {
	right: -5.5rem !important
}

.posmb-88 {
	bottom: -5.5rem !important
}

.posml-88 {
	left: -5.5rem !important
}

.pos-89 {
	top: 5.5625rem !important;
	bottom: 5.5625rem !important
}

.pos-89,
.posx-89 {
	right: 5.5625rem !important;
	left: 5.5625rem !important
}

.posy-89 {
	bottom: 5.5625rem !important
}

.post-89,
.posy-89 {
	top: 5.5625rem !important
}

.posr-89 {
	right: 5.5625rem !important
}

.posb-89 {
	bottom: 5.5625rem !important
}

.posl-89 {
	left: 5.5625rem !important
}

.posmt-89 {
	top: -5.5625rem !important
}

.posmr-89 {
	right: -5.5625rem !important
}

.posmb-89 {
	bottom: -5.5625rem !important
}

.posml-89 {
	left: -5.5625rem !important
}

.pos-90 {
	top: 5.625rem !important;
	bottom: 5.625rem !important
}

.pos-90,
.posx-90 {
	right: 5.625rem !important;
	left: 5.625rem !important
}

.posy-90 {
	bottom: 5.625rem !important
}

.post-90,
.posy-90 {
	top: 5.625rem !important
}

.posr-90 {
	right: 5.625rem !important
}

.posb-90 {
	bottom: 5.625rem !important
}

.posl-90 {
	left: 5.625rem !important
}

.posmt-90 {
	top: -5.625rem !important
}

.posmr-90 {
	right: -5.625rem !important
}

.posmb-90 {
	bottom: -5.625rem !important
}

.posml-90 {
	left: -5.625rem !important
}

.pos-91 {
	top: 5.6875rem !important;
	bottom: 5.6875rem !important
}

.pos-91,
.posx-91 {
	right: 5.6875rem !important;
	left: 5.6875rem !important
}

.posy-91 {
	bottom: 5.6875rem !important
}

.post-91,
.posy-91 {
	top: 5.6875rem !important
}

.posr-91 {
	right: 5.6875rem !important
}

.posb-91 {
	bottom: 5.6875rem !important
}

.posl-91 {
	left: 5.6875rem !important
}

.posmt-91 {
	top: -5.6875rem !important
}

.posmr-91 {
	right: -5.6875rem !important
}

.posmb-91 {
	bottom: -5.6875rem !important
}

.posml-91 {
	left: -5.6875rem !important
}

.pos-92 {
	top: 5.75rem !important;
	bottom: 5.75rem !important
}

.pos-92,
.posx-92 {
	right: 5.75rem !important;
	left: 5.75rem !important
}

.posy-92 {
	bottom: 5.75rem !important
}

.post-92,
.posy-92 {
	top: 5.75rem !important
}

.posr-92 {
	right: 5.75rem !important
}

.posb-92 {
	bottom: 5.75rem !important
}

.posl-92 {
	left: 5.75rem !important
}

.posmt-92 {
	top: -5.75rem !important
}

.posmr-92 {
	right: -5.75rem !important
}

.posmb-92 {
	bottom: -5.75rem !important
}

.posml-92 {
	left: -5.75rem !important
}

.pos-93 {
	top: 5.8125rem !important;
	bottom: 5.8125rem !important
}

.pos-93,
.posx-93 {
	right: 5.8125rem !important;
	left: 5.8125rem !important
}

.posy-93 {
	bottom: 5.8125rem !important
}

.post-93,
.posy-93 {
	top: 5.8125rem !important
}

.posr-93 {
	right: 5.8125rem !important
}

.posb-93 {
	bottom: 5.8125rem !important
}

.posl-93 {
	left: 5.8125rem !important
}

.posmt-93 {
	top: -5.8125rem !important
}

.posmr-93 {
	right: -5.8125rem !important
}

.posmb-93 {
	bottom: -5.8125rem !important
}

.posml-93 {
	left: -5.8125rem !important
}

.pos-94 {
	top: 5.875rem !important;
	bottom: 5.875rem !important
}

.pos-94,
.posx-94 {
	right: 5.875rem !important;
	left: 5.875rem !important
}

.posy-94 {
	bottom: 5.875rem !important
}

.post-94,
.posy-94 {
	top: 5.875rem !important
}

.posr-94 {
	right: 5.875rem !important
}

.posb-94 {
	bottom: 5.875rem !important
}

.posl-94 {
	left: 5.875rem !important
}

.posmt-94 {
	top: -5.875rem !important
}

.posmr-94 {
	right: -5.875rem !important
}

.posmb-94 {
	bottom: -5.875rem !important
}

.posml-94 {
	left: -5.875rem !important
}

.pos-95 {
	top: 5.9375rem !important;
	bottom: 5.9375rem !important
}

.pos-95,
.posx-95 {
	right: 5.9375rem !important;
	left: 5.9375rem !important
}

.posy-95 {
	bottom: 5.9375rem !important
}

.post-95,
.posy-95 {
	top: 5.9375rem !important
}

.posr-95 {
	right: 5.9375rem !important
}

.posb-95 {
	bottom: 5.9375rem !important
}

.posl-95 {
	left: 5.9375rem !important
}

.posmt-95 {
	top: -5.9375rem !important
}

.posmr-95 {
	right: -5.9375rem !important
}

.posmb-95 {
	bottom: -5.9375rem !important
}

.posml-95 {
	left: -5.9375rem !important
}

.pos-96 {
	top: 6rem !important;
	bottom: 6rem !important
}

.pos-96,
.posx-96 {
	right: 6rem !important;
	left: 6rem !important
}

.posy-96 {
	bottom: 6rem !important
}

.post-96,
.posy-96 {
	top: 6rem !important
}

.posr-96 {
	right: 6rem !important
}

.posb-96 {
	bottom: 6rem !important
}

.posl-96 {
	left: 6rem !important
}

.posmt-96 {
	top: -6rem !important
}

.posmr-96 {
	right: -6rem !important
}

.posmb-96 {
	bottom: -6rem !important
}

.posml-96 {
	left: -6rem !important
}

.pos-97 {
	top: 6.0625rem !important;
	bottom: 6.0625rem !important
}

.pos-97,
.posx-97 {
	right: 6.0625rem !important;
	left: 6.0625rem !important
}

.posy-97 {
	bottom: 6.0625rem !important
}

.post-97,
.posy-97 {
	top: 6.0625rem !important
}

.posr-97 {
	right: 6.0625rem !important
}

.posb-97 {
	bottom: 6.0625rem !important
}

.posl-97 {
	left: 6.0625rem !important
}

.posmt-97 {
	top: -6.0625rem !important
}

.posmr-97 {
	right: -6.0625rem !important
}

.posmb-97 {
	bottom: -6.0625rem !important
}

.posml-97 {
	left: -6.0625rem !important
}

.pos-98 {
	top: 6.125rem !important;
	bottom: 6.125rem !important
}

.pos-98,
.posx-98 {
	right: 6.125rem !important;
	left: 6.125rem !important
}

.posy-98 {
	bottom: 6.125rem !important
}

.post-98,
.posy-98 {
	top: 6.125rem !important
}

.posr-98 {
	right: 6.125rem !important
}

.posb-98 {
	bottom: 6.125rem !important
}

.posl-98 {
	left: 6.125rem !important
}

.posmt-98 {
	top: -6.125rem !important
}

.posmr-98 {
	right: -6.125rem !important
}

.posmb-98 {
	bottom: -6.125rem !important
}

.posml-98 {
	left: -6.125rem !important
}

.pos-99 {
	top: 6.1875rem !important;
	bottom: 6.1875rem !important
}

.pos-99,
.posx-99 {
	right: 6.1875rem !important;
	left: 6.1875rem !important
}

.posy-99 {
	bottom: 6.1875rem !important
}

.post-99,
.posy-99 {
	top: 6.1875rem !important
}

.posr-99 {
	right: 6.1875rem !important
}

.posb-99 {
	bottom: 6.1875rem !important
}

.posl-99 {
	left: 6.1875rem !important
}

.posmt-99 {
	top: -6.1875rem !important
}

.posmr-99 {
	right: -6.1875rem !important
}

.posmb-99 {
	bottom: -6.1875rem !important
}

.posml-99 {
	left: -6.1875rem !important
}

.pos-100 {
	top: 6.25rem !important;
	bottom: 6.25rem !important
}

.pos-100,
.posx-100 {
	right: 6.25rem !important;
	left: 6.25rem !important
}

.posy-100 {
	bottom: 6.25rem !important
}

.post-100,
.posy-100 {
	top: 6.25rem !important
}

.posr-100 {
	right: 6.25rem !important
}

.posb-100 {
	bottom: 6.25rem !important
}

.posl-100 {
	left: 6.25rem !important
}

.posmt-100 {
	top: -6.25rem !important
}

.posmr-100 {
	right: -6.25rem !important
}

.posmb-100 {
	bottom: -6.25rem !important
}

.posml-100 {
	left: -6.25rem !important
}

.pos-101 {
	top: 6.3125rem !important;
	bottom: 6.3125rem !important
}

.pos-101,
.posx-101 {
	right: 6.3125rem !important;
	left: 6.3125rem !important
}

.posy-101 {
	bottom: 6.3125rem !important
}

.post-101,
.posy-101 {
	top: 6.3125rem !important
}

.posr-101 {
	right: 6.3125rem !important
}

.posb-101 {
	bottom: 6.3125rem !important
}

.posl-101 {
	left: 6.3125rem !important
}

.posmt-101 {
	top: -6.3125rem !important
}

.posmr-101 {
	right: -6.3125rem !important
}

.posmb-101 {
	bottom: -6.3125rem !important
}

.posml-101 {
	left: -6.3125rem !important
}

.pos-102 {
	top: 6.375rem !important;
	bottom: 6.375rem !important
}

.pos-102,
.posx-102 {
	right: 6.375rem !important;
	left: 6.375rem !important
}

.posy-102 {
	bottom: 6.375rem !important
}

.post-102,
.posy-102 {
	top: 6.375rem !important
}

.posr-102 {
	right: 6.375rem !important
}

.posb-102 {
	bottom: 6.375rem !important
}

.posl-102 {
	left: 6.375rem !important
}

.posmt-102 {
	top: -6.375rem !important
}

.posmr-102 {
	right: -6.375rem !important
}

.posmb-102 {
	bottom: -6.375rem !important
}

.posml-102 {
	left: -6.375rem !important
}

.pos-103 {
	top: 6.4375rem !important;
	bottom: 6.4375rem !important
}

.pos-103,
.posx-103 {
	right: 6.4375rem !important;
	left: 6.4375rem !important
}

.posy-103 {
	bottom: 6.4375rem !important
}

.post-103,
.posy-103 {
	top: 6.4375rem !important
}

.posr-103 {
	right: 6.4375rem !important
}

.posb-103 {
	bottom: 6.4375rem !important
}

.posl-103 {
	left: 6.4375rem !important
}

.posmt-103 {
	top: -6.4375rem !important
}

.posmr-103 {
	right: -6.4375rem !important
}

.posmb-103 {
	bottom: -6.4375rem !important
}

.posml-103 {
	left: -6.4375rem !important
}

.pos-104 {
	top: 6.5rem !important;
	bottom: 6.5rem !important
}

.pos-104,
.posx-104 {
	right: 6.5rem !important;
	left: 6.5rem !important
}

.posy-104 {
	bottom: 6.5rem !important
}

.post-104,
.posy-104 {
	top: 6.5rem !important
}

.posr-104 {
	right: 6.5rem !important
}

.posb-104 {
	bottom: 6.5rem !important
}

.posl-104 {
	left: 6.5rem !important
}

.posmt-104 {
	top: -6.5rem !important
}

.posmr-104 {
	right: -6.5rem !important
}

.posmb-104 {
	bottom: -6.5rem !important
}

.posml-104 {
	left: -6.5rem !important
}

.pos-105 {
	top: 6.5625rem !important;
	bottom: 6.5625rem !important
}

.pos-105,
.posx-105 {
	right: 6.5625rem !important;
	left: 6.5625rem !important
}

.posy-105 {
	bottom: 6.5625rem !important
}

.post-105,
.posy-105 {
	top: 6.5625rem !important
}

.posr-105 {
	right: 6.5625rem !important
}

.posb-105 {
	bottom: 6.5625rem !important
}

.posl-105 {
	left: 6.5625rem !important
}

.posmt-105 {
	top: -6.5625rem !important
}

.posmr-105 {
	right: -6.5625rem !important
}

.posmb-105 {
	bottom: -6.5625rem !important
}

.posml-105 {
	left: -6.5625rem !important
}

.pos-106 {
	top: 6.625rem !important;
	bottom: 6.625rem !important
}

.pos-106,
.posx-106 {
	right: 6.625rem !important;
	left: 6.625rem !important
}

.posy-106 {
	bottom: 6.625rem !important
}

.post-106,
.posy-106 {
	top: 6.625rem !important
}

.posr-106 {
	right: 6.625rem !important
}

.posb-106 {
	bottom: 6.625rem !important
}

.posl-106 {
	left: 6.625rem !important
}

.posmt-106 {
	top: -6.625rem !important
}

.posmr-106 {
	right: -6.625rem !important
}

.posmb-106 {
	bottom: -6.625rem !important
}

.posml-106 {
	left: -6.625rem !important
}

.pos-107 {
	top: 6.6875rem !important;
	bottom: 6.6875rem !important
}

.pos-107,
.posx-107 {
	right: 6.6875rem !important;
	left: 6.6875rem !important
}

.posy-107 {
	bottom: 6.6875rem !important
}

.post-107,
.posy-107 {
	top: 6.6875rem !important
}

.posr-107 {
	right: 6.6875rem !important
}

.posb-107 {
	bottom: 6.6875rem !important
}

.posl-107 {
	left: 6.6875rem !important
}

.posmt-107 {
	top: -6.6875rem !important
}

.posmr-107 {
	right: -6.6875rem !important
}

.posmb-107 {
	bottom: -6.6875rem !important
}

.posml-107 {
	left: -6.6875rem !important
}

.pos-108 {
	top: 6.75rem !important;
	bottom: 6.75rem !important
}

.pos-108,
.posx-108 {
	right: 6.75rem !important;
	left: 6.75rem !important
}

.posy-108 {
	bottom: 6.75rem !important
}

.post-108,
.posy-108 {
	top: 6.75rem !important
}

.posr-108 {
	right: 6.75rem !important
}

.posb-108 {
	bottom: 6.75rem !important
}

.posl-108 {
	left: 6.75rem !important
}

.posmt-108 {
	top: -6.75rem !important
}

.posmr-108 {
	right: -6.75rem !important
}

.posmb-108 {
	bottom: -6.75rem !important
}

.posml-108 {
	left: -6.75rem !important
}

.pos-109 {
	top: 6.8125rem !important;
	bottom: 6.8125rem !important
}

.pos-109,
.posx-109 {
	right: 6.8125rem !important;
	left: 6.8125rem !important
}

.posy-109 {
	bottom: 6.8125rem !important
}

.post-109,
.posy-109 {
	top: 6.8125rem !important
}

.posr-109 {
	right: 6.8125rem !important
}

.posb-109 {
	bottom: 6.8125rem !important
}

.posl-109 {
	left: 6.8125rem !important
}

.posmt-109 {
	top: -6.8125rem !important
}

.posmr-109 {
	right: -6.8125rem !important
}

.posmb-109 {
	bottom: -6.8125rem !important
}

.posml-109 {
	left: -6.8125rem !important
}

.pos-110 {
	top: 6.875rem !important;
	bottom: 6.875rem !important
}

.pos-110,
.posx-110 {
	right: 6.875rem !important;
	left: 6.875rem !important
}

.posy-110 {
	bottom: 6.875rem !important
}

.post-110,
.posy-110 {
	top: 6.875rem !important
}

.posr-110 {
	right: 6.875rem !important
}

.posb-110 {
	bottom: 6.875rem !important
}

.posl-110 {
	left: 6.875rem !important
}

.posmt-110 {
	top: -6.875rem !important
}

.posmr-110 {
	right: -6.875rem !important
}

.posmb-110 {
	bottom: -6.875rem !important
}

.posml-110 {
	left: -6.875rem !important
}

.pos-111 {
	top: 6.9375rem !important;
	bottom: 6.9375rem !important
}

.pos-111,
.posx-111 {
	right: 6.9375rem !important;
	left: 6.9375rem !important
}

.posy-111 {
	bottom: 6.9375rem !important
}

.post-111,
.posy-111 {
	top: 6.9375rem !important
}

.posr-111 {
	right: 6.9375rem !important
}

.posb-111 {
	bottom: 6.9375rem !important
}

.posl-111 {
	left: 6.9375rem !important
}

.posmt-111 {
	top: -6.9375rem !important
}

.posmr-111 {
	right: -6.9375rem !important
}

.posmb-111 {
	bottom: -6.9375rem !important
}

.posml-111 {
	left: -6.9375rem !important
}

.pos-112 {
	top: 7rem !important;
	bottom: 7rem !important
}

.pos-112,
.posx-112 {
	right: 7rem !important;
	left: 7rem !important
}

.posy-112 {
	bottom: 7rem !important
}

.post-112,
.posy-112 {
	top: 7rem !important
}

.posr-112 {
	right: 7rem !important
}

.posb-112 {
	bottom: 7rem !important
}

.posl-112 {
	left: 7rem !important
}

.posmt-112 {
	top: -7rem !important
}

.posmr-112 {
	right: -7rem !important
}

.posmb-112 {
	bottom: -7rem !important
}

.posml-112 {
	left: -7rem !important
}

.pos-113 {
	top: 7.0625rem !important;
	bottom: 7.0625rem !important
}

.pos-113,
.posx-113 {
	right: 7.0625rem !important;
	left: 7.0625rem !important
}

.posy-113 {
	bottom: 7.0625rem !important
}

.post-113,
.posy-113 {
	top: 7.0625rem !important
}

.posr-113 {
	right: 7.0625rem !important
}

.posb-113 {
	bottom: 7.0625rem !important
}

.posl-113 {
	left: 7.0625rem !important
}

.posmt-113 {
	top: -7.0625rem !important
}

.posmr-113 {
	right: -7.0625rem !important
}

.posmb-113 {
	bottom: -7.0625rem !important
}

.posml-113 {
	left: -7.0625rem !important
}

.pos-114 {
	top: 7.125rem !important;
	bottom: 7.125rem !important
}

.pos-114,
.posx-114 {
	right: 7.125rem !important;
	left: 7.125rem !important
}

.posy-114 {
	bottom: 7.125rem !important
}

.post-114,
.posy-114 {
	top: 7.125rem !important
}

.posr-114 {
	right: 7.125rem !important
}

.posb-114 {
	bottom: 7.125rem !important
}

.posl-114 {
	left: 7.125rem !important
}

.posmt-114 {
	top: -7.125rem !important
}

.posmr-114 {
	right: -7.125rem !important
}

.posmb-114 {
	bottom: -7.125rem !important
}

.posml-114 {
	left: -7.125rem !important
}

.pos-115 {
	top: 7.1875rem !important;
	bottom: 7.1875rem !important
}

.pos-115,
.posx-115 {
	right: 7.1875rem !important;
	left: 7.1875rem !important
}

.posy-115 {
	bottom: 7.1875rem !important
}

.post-115,
.posy-115 {
	top: 7.1875rem !important
}

.posr-115 {
	right: 7.1875rem !important
}

.posb-115 {
	bottom: 7.1875rem !important
}

.posl-115 {
	left: 7.1875rem !important
}

.posmt-115 {
	top: -7.1875rem !important
}

.posmr-115 {
	right: -7.1875rem !important
}

.posmb-115 {
	bottom: -7.1875rem !important
}

.posml-115 {
	left: -7.1875rem !important
}

.pos-116 {
	top: 7.25rem !important;
	bottom: 7.25rem !important
}

.pos-116,
.posx-116 {
	right: 7.25rem !important;
	left: 7.25rem !important
}

.posy-116 {
	bottom: 7.25rem !important
}

.post-116,
.posy-116 {
	top: 7.25rem !important
}

.posr-116 {
	right: 7.25rem !important
}

.posb-116 {
	bottom: 7.25rem !important
}

.posl-116 {
	left: 7.25rem !important
}

.posmt-116 {
	top: -7.25rem !important
}

.posmr-116 {
	right: -7.25rem !important
}

.posmb-116 {
	bottom: -7.25rem !important
}

.posml-116 {
	left: -7.25rem !important
}

.pos-117 {
	top: 7.3125rem !important;
	bottom: 7.3125rem !important
}

.pos-117,
.posx-117 {
	right: 7.3125rem !important;
	left: 7.3125rem !important
}

.posy-117 {
	bottom: 7.3125rem !important
}

.post-117,
.posy-117 {
	top: 7.3125rem !important
}

.posr-117 {
	right: 7.3125rem !important
}

.posb-117 {
	bottom: 7.3125rem !important
}

.posl-117 {
	left: 7.3125rem !important
}

.posmt-117 {
	top: -7.3125rem !important
}

.posmr-117 {
	right: -7.3125rem !important
}

.posmb-117 {
	bottom: -7.3125rem !important
}

.posml-117 {
	left: -7.3125rem !important
}

.pos-118 {
	top: 7.375rem !important;
	bottom: 7.375rem !important
}

.pos-118,
.posx-118 {
	right: 7.375rem !important;
	left: 7.375rem !important
}

.posy-118 {
	bottom: 7.375rem !important
}

.post-118,
.posy-118 {
	top: 7.375rem !important
}

.posr-118 {
	right: 7.375rem !important
}

.posb-118 {
	bottom: 7.375rem !important
}

.posl-118 {
	left: 7.375rem !important
}

.posmt-118 {
	top: -7.375rem !important
}

.posmr-118 {
	right: -7.375rem !important
}

.posmb-118 {
	bottom: -7.375rem !important
}

.posml-118 {
	left: -7.375rem !important
}

.pos-119 {
	top: 7.4375rem !important;
	bottom: 7.4375rem !important
}

.pos-119,
.posx-119 {
	right: 7.4375rem !important;
	left: 7.4375rem !important
}

.posy-119 {
	bottom: 7.4375rem !important
}

.post-119,
.posy-119 {
	top: 7.4375rem !important
}

.posr-119 {
	right: 7.4375rem !important
}

.posb-119 {
	bottom: 7.4375rem !important
}

.posl-119 {
	left: 7.4375rem !important
}

.posmt-119 {
	top: -7.4375rem !important
}

.posmr-119 {
	right: -7.4375rem !important
}

.posmb-119 {
	bottom: -7.4375rem !important
}

.posml-119 {
	left: -7.4375rem !important
}

.pos-120 {
	top: 7.5rem !important;
	bottom: 7.5rem !important
}

.pos-120,
.posx-120 {
	right: 7.5rem !important;
	left: 7.5rem !important
}

.posy-120 {
	bottom: 7.5rem !important
}

.post-120,
.posy-120 {
	top: 7.5rem !important
}

.posr-120 {
	right: 7.5rem !important
}

.posb-120 {
	bottom: 7.5rem !important
}

.posl-120 {
	left: 7.5rem !important
}

.posmt-120 {
	top: -7.5rem !important
}

.posmr-120 {
	right: -7.5rem !important
}

.posmb-120 {
	bottom: -7.5rem !important
}

.posml-120 {
	left: -7.5rem !important
}

.pos-121 {
	top: 7.5625rem !important;
	bottom: 7.5625rem !important
}

.pos-121,
.posx-121 {
	right: 7.5625rem !important;
	left: 7.5625rem !important
}

.posy-121 {
	bottom: 7.5625rem !important
}

.post-121,
.posy-121 {
	top: 7.5625rem !important
}

.posr-121 {
	right: 7.5625rem !important
}

.posb-121 {
	bottom: 7.5625rem !important
}

.posl-121 {
	left: 7.5625rem !important
}

.posmt-121 {
	top: -7.5625rem !important
}

.posmr-121 {
	right: -7.5625rem !important
}

.posmb-121 {
	bottom: -7.5625rem !important
}

.posml-121 {
	left: -7.5625rem !important
}

.pos-122 {
	top: 7.625rem !important;
	bottom: 7.625rem !important
}

.pos-122,
.posx-122 {
	right: 7.625rem !important;
	left: 7.625rem !important
}

.posy-122 {
	bottom: 7.625rem !important
}

.post-122,
.posy-122 {
	top: 7.625rem !important
}

.posr-122 {
	right: 7.625rem !important
}

.posb-122 {
	bottom: 7.625rem !important
}

.posl-122 {
	left: 7.625rem !important
}

.posmt-122 {
	top: -7.625rem !important
}

.posmr-122 {
	right: -7.625rem !important
}

.posmb-122 {
	bottom: -7.625rem !important
}

.posml-122 {
	left: -7.625rem !important
}

.pos-123 {
	top: 7.6875rem !important;
	bottom: 7.6875rem !important
}

.pos-123,
.posx-123 {
	right: 7.6875rem !important;
	left: 7.6875rem !important
}

.posy-123 {
	bottom: 7.6875rem !important
}

.post-123,
.posy-123 {
	top: 7.6875rem !important
}

.posr-123 {
	right: 7.6875rem !important
}

.posb-123 {
	bottom: 7.6875rem !important
}

.posl-123 {
	left: 7.6875rem !important
}

.posmt-123 {
	top: -7.6875rem !important
}

.posmr-123 {
	right: -7.6875rem !important
}

.posmb-123 {
	bottom: -7.6875rem !important
}

.posml-123 {
	left: -7.6875rem !important
}

.pos-124 {
	top: 7.75rem !important;
	bottom: 7.75rem !important
}

.pos-124,
.posx-124 {
	right: 7.75rem !important;
	left: 7.75rem !important
}

.posy-124 {
	bottom: 7.75rem !important
}

.post-124,
.posy-124 {
	top: 7.75rem !important
}

.posr-124 {
	right: 7.75rem !important
}

.posb-124 {
	bottom: 7.75rem !important
}

.posl-124 {
	left: 7.75rem !important
}

.posmt-124 {
	top: -7.75rem !important
}

.posmr-124 {
	right: -7.75rem !important
}

.posmb-124 {
	bottom: -7.75rem !important
}

.posml-124 {
	left: -7.75rem !important
}

.pos-125 {
	top: 7.8125rem !important;
	bottom: 7.8125rem !important
}

.pos-125,
.posx-125 {
	right: 7.8125rem !important;
	left: 7.8125rem !important
}

.posy-125 {
	bottom: 7.8125rem !important
}

.post-125,
.posy-125 {
	top: 7.8125rem !important
}

.posr-125 {
	right: 7.8125rem !important
}

.posb-125 {
	bottom: 7.8125rem !important
}

.posl-125 {
	left: 7.8125rem !important
}

.posmt-125 {
	top: -7.8125rem !important
}

.posmr-125 {
	right: -7.8125rem !important
}

.posmb-125 {
	bottom: -7.8125rem !important
}

.posml-125 {
	left: -7.8125rem !important
}

.pos-126 {
	top: 7.875rem !important;
	bottom: 7.875rem !important
}

.pos-126,
.posx-126 {
	right: 7.875rem !important;
	left: 7.875rem !important
}

.posy-126 {
	bottom: 7.875rem !important
}

.post-126,
.posy-126 {
	top: 7.875rem !important
}

.posr-126 {
	right: 7.875rem !important
}

.posb-126 {
	bottom: 7.875rem !important
}

.posl-126 {
	left: 7.875rem !important
}

.posmt-126 {
	top: -7.875rem !important
}

.posmr-126 {
	right: -7.875rem !important
}

.posmb-126 {
	bottom: -7.875rem !important
}

.posml-126 {
	left: -7.875rem !important
}

.pos-127 {
	top: 7.9375rem !important;
	bottom: 7.9375rem !important
}

.pos-127,
.posx-127 {
	right: 7.9375rem !important;
	left: 7.9375rem !important
}

.posy-127 {
	bottom: 7.9375rem !important
}

.post-127,
.posy-127 {
	top: 7.9375rem !important
}

.posr-127 {
	right: 7.9375rem !important
}

.posb-127 {
	bottom: 7.9375rem !important
}

.posl-127 {
	left: 7.9375rem !important
}

.posmt-127 {
	top: -7.9375rem !important
}

.posmr-127 {
	right: -7.9375rem !important
}

.posmb-127 {
	bottom: -7.9375rem !important
}

.posml-127 {
	left: -7.9375rem !important
}

.pos-128 {
	top: 8rem !important;
	bottom: 8rem !important
}

.pos-128,
.posx-128 {
	right: 8rem !important;
	left: 8rem !important
}

.posy-128 {
	bottom: 8rem !important
}

.post-128,
.posy-128 {
	top: 8rem !important
}

.posr-128 {
	right: 8rem !important
}

.posb-128 {
	bottom: 8rem !important
}

.posl-128 {
	left: 8rem !important
}

.posmt-128 {
	top: -8rem !important
}

.posmr-128 {
	right: -8rem !important
}

.posmb-128 {
	bottom: -8rem !important
}

.posml-128 {
	left: -8rem !important
}

.pos-129 {
	top: 8.0625rem !important;
	bottom: 8.0625rem !important
}

.pos-129,
.posx-129 {
	right: 8.0625rem !important;
	left: 8.0625rem !important
}

.posy-129 {
	bottom: 8.0625rem !important
}

.post-129,
.posy-129 {
	top: 8.0625rem !important
}

.posr-129 {
	right: 8.0625rem !important
}

.posb-129 {
	bottom: 8.0625rem !important
}

.posl-129 {
	left: 8.0625rem !important
}

.posmt-129 {
	top: -8.0625rem !important
}

.posmr-129 {
	right: -8.0625rem !important
}

.posmb-129 {
	bottom: -8.0625rem !important
}

.posml-129 {
	left: -8.0625rem !important
}

.pos-130 {
	top: 8.125rem !important;
	bottom: 8.125rem !important
}

.pos-130,
.posx-130 {
	right: 8.125rem !important;
	left: 8.125rem !important
}

.posy-130 {
	bottom: 8.125rem !important
}

.post-130,
.posy-130 {
	top: 8.125rem !important
}

.posr-130 {
	right: 8.125rem !important
}

.posb-130 {
	bottom: 8.125rem !important
}

.posl-130 {
	left: 8.125rem !important
}

.posmt-130 {
	top: -8.125rem !important
}

.posmr-130 {
	right: -8.125rem !important
}

.posmb-130 {
	bottom: -8.125rem !important
}

.posml-130 {
	left: -8.125rem !important
}

.pos-131 {
	top: 8.1875rem !important;
	bottom: 8.1875rem !important
}

.pos-131,
.posx-131 {
	right: 8.1875rem !important;
	left: 8.1875rem !important
}

.posy-131 {
	bottom: 8.1875rem !important
}

.post-131,
.posy-131 {
	top: 8.1875rem !important
}

.posr-131 {
	right: 8.1875rem !important
}

.posb-131 {
	bottom: 8.1875rem !important
}

.posl-131 {
	left: 8.1875rem !important
}

.posmt-131 {
	top: -8.1875rem !important
}

.posmr-131 {
	right: -8.1875rem !important
}

.posmb-131 {
	bottom: -8.1875rem !important
}

.posml-131 {
	left: -8.1875rem !important
}

.pos-132 {
	top: 8.25rem !important;
	bottom: 8.25rem !important
}

.pos-132,
.posx-132 {
	right: 8.25rem !important;
	left: 8.25rem !important
}

.posy-132 {
	bottom: 8.25rem !important
}

.post-132,
.posy-132 {
	top: 8.25rem !important
}

.posr-132 {
	right: 8.25rem !important
}

.posb-132 {
	bottom: 8.25rem !important
}

.posl-132 {
	left: 8.25rem !important
}

.posmt-132 {
	top: -8.25rem !important
}

.posmr-132 {
	right: -8.25rem !important
}

.posmb-132 {
	bottom: -8.25rem !important
}

.posml-132 {
	left: -8.25rem !important
}

.pos-133 {
	top: 8.3125rem !important;
	bottom: 8.3125rem !important
}

.pos-133,
.posx-133 {
	right: 8.3125rem !important;
	left: 8.3125rem !important
}

.posy-133 {
	bottom: 8.3125rem !important
}

.post-133,
.posy-133 {
	top: 8.3125rem !important
}

.posr-133 {
	right: 8.3125rem !important
}

.posb-133 {
	bottom: 8.3125rem !important
}

.posl-133 {
	left: 8.3125rem !important
}

.posmt-133 {
	top: -8.3125rem !important
}

.posmr-133 {
	right: -8.3125rem !important
}

.posmb-133 {
	bottom: -8.3125rem !important
}

.posml-133 {
	left: -8.3125rem !important
}

.pos-134 {
	top: 8.375rem !important;
	bottom: 8.375rem !important
}

.pos-134,
.posx-134 {
	right: 8.375rem !important;
	left: 8.375rem !important
}

.posy-134 {
	bottom: 8.375rem !important
}

.post-134,
.posy-134 {
	top: 8.375rem !important
}

.posr-134 {
	right: 8.375rem !important
}

.posb-134 {
	bottom: 8.375rem !important
}

.posl-134 {
	left: 8.375rem !important
}

.posmt-134 {
	top: -8.375rem !important
}

.posmr-134 {
	right: -8.375rem !important
}

.posmb-134 {
	bottom: -8.375rem !important
}

.posml-134 {
	left: -8.375rem !important
}

.pos-135 {
	top: 8.4375rem !important;
	bottom: 8.4375rem !important
}

.pos-135,
.posx-135 {
	right: 8.4375rem !important;
	left: 8.4375rem !important
}

.posy-135 {
	bottom: 8.4375rem !important
}

.post-135,
.posy-135 {
	top: 8.4375rem !important
}

.posr-135 {
	right: 8.4375rem !important
}

.posb-135 {
	bottom: 8.4375rem !important
}

.posl-135 {
	left: 8.4375rem !important
}

.posmt-135 {
	top: -8.4375rem !important
}

.posmr-135 {
	right: -8.4375rem !important
}

.posmb-135 {
	bottom: -8.4375rem !important
}

.posml-135 {
	left: -8.4375rem !important
}

.pos-136 {
	top: 8.5rem !important;
	bottom: 8.5rem !important
}

.pos-136,
.posx-136 {
	right: 8.5rem !important;
	left: 8.5rem !important
}

.posy-136 {
	bottom: 8.5rem !important
}

.post-136,
.posy-136 {
	top: 8.5rem !important
}

.posr-136 {
	right: 8.5rem !important
}

.posb-136 {
	bottom: 8.5rem !important
}

.posl-136 {
	left: 8.5rem !important
}

.posmt-136 {
	top: -8.5rem !important
}

.posmr-136 {
	right: -8.5rem !important
}

.posmb-136 {
	bottom: -8.5rem !important
}

.posml-136 {
	left: -8.5rem !important
}

.pos-137 {
	top: 8.5625rem !important;
	bottom: 8.5625rem !important
}

.pos-137,
.posx-137 {
	right: 8.5625rem !important;
	left: 8.5625rem !important
}

.posy-137 {
	bottom: 8.5625rem !important
}

.post-137,
.posy-137 {
	top: 8.5625rem !important
}

.posr-137 {
	right: 8.5625rem !important
}

.posb-137 {
	bottom: 8.5625rem !important
}

.posl-137 {
	left: 8.5625rem !important
}

.posmt-137 {
	top: -8.5625rem !important
}

.posmr-137 {
	right: -8.5625rem !important
}

.posmb-137 {
	bottom: -8.5625rem !important
}

.posml-137 {
	left: -8.5625rem !important
}

.pos-138 {
	top: 8.625rem !important;
	bottom: 8.625rem !important
}

.pos-138,
.posx-138 {
	right: 8.625rem !important;
	left: 8.625rem !important
}

.posy-138 {
	bottom: 8.625rem !important
}

.post-138,
.posy-138 {
	top: 8.625rem !important
}

.posr-138 {
	right: 8.625rem !important
}

.posb-138 {
	bottom: 8.625rem !important
}

.posl-138 {
	left: 8.625rem !important
}

.posmt-138 {
	top: -8.625rem !important
}

.posmr-138 {
	right: -8.625rem !important
}

.posmb-138 {
	bottom: -8.625rem !important
}

.posml-138 {
	left: -8.625rem !important
}

.pos-139 {
	top: 8.6875rem !important;
	bottom: 8.6875rem !important
}

.pos-139,
.posx-139 {
	right: 8.6875rem !important;
	left: 8.6875rem !important
}

.posy-139 {
	bottom: 8.6875rem !important
}

.post-139,
.posy-139 {
	top: 8.6875rem !important
}

.posr-139 {
	right: 8.6875rem !important
}

.posb-139 {
	bottom: 8.6875rem !important
}

.posl-139 {
	left: 8.6875rem !important
}

.posmt-139 {
	top: -8.6875rem !important
}

.posmr-139 {
	right: -8.6875rem !important
}

.posmb-139 {
	bottom: -8.6875rem !important
}

.posml-139 {
	left: -8.6875rem !important
}

.pos-140 {
	top: 8.75rem !important;
	bottom: 8.75rem !important
}

.pos-140,
.posx-140 {
	right: 8.75rem !important;
	left: 8.75rem !important
}

.posy-140 {
	bottom: 8.75rem !important
}

.post-140,
.posy-140 {
	top: 8.75rem !important
}

.posr-140 {
	right: 8.75rem !important
}

.posb-140 {
	bottom: 8.75rem !important
}

.posl-140 {
	left: 8.75rem !important
}

.posmt-140 {
	top: -8.75rem !important
}

.posmr-140 {
	right: -8.75rem !important
}

.posmb-140 {
	bottom: -8.75rem !important
}

.posml-140 {
	left: -8.75rem !important
}

.pos-141 {
	top: 8.8125rem !important;
	bottom: 8.8125rem !important
}

.pos-141,
.posx-141 {
	right: 8.8125rem !important;
	left: 8.8125rem !important
}

.posy-141 {
	bottom: 8.8125rem !important
}

.post-141,
.posy-141 {
	top: 8.8125rem !important
}

.posr-141 {
	right: 8.8125rem !important
}

.posb-141 {
	bottom: 8.8125rem !important
}

.posl-141 {
	left: 8.8125rem !important
}

.posmt-141 {
	top: -8.8125rem !important
}

.posmr-141 {
	right: -8.8125rem !important
}

.posmb-141 {
	bottom: -8.8125rem !important
}

.posml-141 {
	left: -8.8125rem !important
}

.pos-142 {
	top: 8.875rem !important;
	bottom: 8.875rem !important
}

.pos-142,
.posx-142 {
	right: 8.875rem !important;
	left: 8.875rem !important
}

.posy-142 {
	bottom: 8.875rem !important
}

.post-142,
.posy-142 {
	top: 8.875rem !important
}

.posr-142 {
	right: 8.875rem !important
}

.posb-142 {
	bottom: 8.875rem !important
}

.posl-142 {
	left: 8.875rem !important
}

.posmt-142 {
	top: -8.875rem !important
}

.posmr-142 {
	right: -8.875rem !important
}

.posmb-142 {
	bottom: -8.875rem !important
}

.posml-142 {
	left: -8.875rem !important
}

.pos-143 {
	top: 8.9375rem !important;
	bottom: 8.9375rem !important
}

.pos-143,
.posx-143 {
	right: 8.9375rem !important;
	left: 8.9375rem !important
}

.posy-143 {
	bottom: 8.9375rem !important
}

.post-143,
.posy-143 {
	top: 8.9375rem !important
}

.posr-143 {
	right: 8.9375rem !important
}

.posb-143 {
	bottom: 8.9375rem !important
}

.posl-143 {
	left: 8.9375rem !important
}

.posmt-143 {
	top: -8.9375rem !important
}

.posmr-143 {
	right: -8.9375rem !important
}

.posmb-143 {
	bottom: -8.9375rem !important
}

.posml-143 {
	left: -8.9375rem !important
}

.pos-144 {
	top: 9rem !important;
	bottom: 9rem !important
}

.pos-144,
.posx-144 {
	right: 9rem !important;
	left: 9rem !important
}

.posy-144 {
	bottom: 9rem !important
}

.post-144,
.posy-144 {
	top: 9rem !important
}

.posr-144 {
	right: 9rem !important
}

.posb-144 {
	bottom: 9rem !important
}

.posl-144 {
	left: 9rem !important
}

.posmt-144 {
	top: -9rem !important
}

.posmr-144 {
	right: -9rem !important
}

.posmb-144 {
	bottom: -9rem !important
}

.posml-144 {
	left: -9rem !important
}

.pos-145 {
	top: 9.0625rem !important;
	bottom: 9.0625rem !important
}

.pos-145,
.posx-145 {
	right: 9.0625rem !important;
	left: 9.0625rem !important
}

.posy-145 {
	bottom: 9.0625rem !important
}

.post-145,
.posy-145 {
	top: 9.0625rem !important
}

.posr-145 {
	right: 9.0625rem !important
}

.posb-145 {
	bottom: 9.0625rem !important
}

.posl-145 {
	left: 9.0625rem !important
}

.posmt-145 {
	top: -9.0625rem !important
}

.posmr-145 {
	right: -9.0625rem !important
}

.posmb-145 {
	bottom: -9.0625rem !important
}

.posml-145 {
	left: -9.0625rem !important
}

.pos-146 {
	top: 9.125rem !important;
	bottom: 9.125rem !important
}

.pos-146,
.posx-146 {
	right: 9.125rem !important;
	left: 9.125rem !important
}

.posy-146 {
	bottom: 9.125rem !important
}

.post-146,
.posy-146 {
	top: 9.125rem !important
}

.posr-146 {
	right: 9.125rem !important
}

.posb-146 {
	bottom: 9.125rem !important
}

.posl-146 {
	left: 9.125rem !important
}

.posmt-146 {
	top: -9.125rem !important
}

.posmr-146 {
	right: -9.125rem !important
}

.posmb-146 {
	bottom: -9.125rem !important
}

.posml-146 {
	left: -9.125rem !important
}

.pos-147 {
	top: 9.1875rem !important;
	bottom: 9.1875rem !important
}

.pos-147,
.posx-147 {
	right: 9.1875rem !important;
	left: 9.1875rem !important
}

.posy-147 {
	bottom: 9.1875rem !important
}

.post-147,
.posy-147 {
	top: 9.1875rem !important
}

.posr-147 {
	right: 9.1875rem !important
}

.posb-147 {
	bottom: 9.1875rem !important
}

.posl-147 {
	left: 9.1875rem !important
}

.posmt-147 {
	top: -9.1875rem !important
}

.posmr-147 {
	right: -9.1875rem !important
}

.posmb-147 {
	bottom: -9.1875rem !important
}

.posml-147 {
	left: -9.1875rem !important
}

.pos-148 {
	top: 9.25rem !important;
	bottom: 9.25rem !important
}

.pos-148,
.posx-148 {
	right: 9.25rem !important;
	left: 9.25rem !important
}

.posy-148 {
	bottom: 9.25rem !important
}

.post-148,
.posy-148 {
	top: 9.25rem !important
}

.posr-148 {
	right: 9.25rem !important
}

.posb-148 {
	bottom: 9.25rem !important
}

.posl-148 {
	left: 9.25rem !important
}

.posmt-148 {
	top: -9.25rem !important
}

.posmr-148 {
	right: -9.25rem !important
}

.posmb-148 {
	bottom: -9.25rem !important
}

.posml-148 {
	left: -9.25rem !important
}

.pos-149 {
	top: 9.3125rem !important;
	bottom: 9.3125rem !important
}

.pos-149,
.posx-149 {
	right: 9.3125rem !important;
	left: 9.3125rem !important
}

.posy-149 {
	bottom: 9.3125rem !important
}

.post-149,
.posy-149 {
	top: 9.3125rem !important
}

.posr-149 {
	right: 9.3125rem !important
}

.posb-149 {
	bottom: 9.3125rem !important
}

.posl-149 {
	left: 9.3125rem !important
}

.posmt-149 {
	top: -9.3125rem !important
}

.posmr-149 {
	right: -9.3125rem !important
}

.posmb-149 {
	bottom: -9.3125rem !important
}

.posml-149 {
	left: -9.3125rem !important
}

.pos-150 {
	top: 9.375rem !important;
	bottom: 9.375rem !important
}

.pos-150,
.posx-150 {
	right: 9.375rem !important;
	left: 9.375rem !important
}

.posy-150 {
	bottom: 9.375rem !important
}

.post-150,
.posy-150 {
	top: 9.375rem !important
}

.posr-150 {
	right: 9.375rem !important
}

.posb-150 {
	bottom: 9.375rem !important
}

.posl-150 {
	left: 9.375rem !important
}

.posmt-150 {
	top: -9.375rem !important
}

.posmr-150 {
	right: -9.375rem !important
}

.posmb-150 {
	bottom: -9.375rem !important
}

.posml-150 {
	left: -9.375rem !important
}

.pos-151 {
	top: 9.4375rem !important;
	bottom: 9.4375rem !important
}

.pos-151,
.posx-151 {
	right: 9.4375rem !important;
	left: 9.4375rem !important
}

.posy-151 {
	bottom: 9.4375rem !important
}

.post-151,
.posy-151 {
	top: 9.4375rem !important
}

.posr-151 {
	right: 9.4375rem !important
}

.posb-151 {
	bottom: 9.4375rem !important
}

.posl-151 {
	left: 9.4375rem !important
}

.posmt-151 {
	top: -9.4375rem !important
}

.posmr-151 {
	right: -9.4375rem !important
}

.posmb-151 {
	bottom: -9.4375rem !important
}

.posml-151 {
	left: -9.4375rem !important
}

.pos-152 {
	top: 9.5rem !important;
	bottom: 9.5rem !important
}

.pos-152,
.posx-152 {
	right: 9.5rem !important;
	left: 9.5rem !important
}

.posy-152 {
	bottom: 9.5rem !important
}

.post-152,
.posy-152 {
	top: 9.5rem !important
}

.posr-152 {
	right: 9.5rem !important
}

.posb-152 {
	bottom: 9.5rem !important
}

.posl-152 {
	left: 9.5rem !important
}

.posmt-152 {
	top: -9.5rem !important
}

.posmr-152 {
	right: -9.5rem !important
}

.posmb-152 {
	bottom: -9.5rem !important
}

.posml-152 {
	left: -9.5rem !important
}

.pos-153 {
	top: 9.5625rem !important;
	bottom: 9.5625rem !important
}

.pos-153,
.posx-153 {
	right: 9.5625rem !important;
	left: 9.5625rem !important
}

.posy-153 {
	bottom: 9.5625rem !important
}

.post-153,
.posy-153 {
	top: 9.5625rem !important
}

.posr-153 {
	right: 9.5625rem !important
}

.posb-153 {
	bottom: 9.5625rem !important
}

.posl-153 {
	left: 9.5625rem !important
}

.posmt-153 {
	top: -9.5625rem !important
}

.posmr-153 {
	right: -9.5625rem !important
}

.posmb-153 {
	bottom: -9.5625rem !important
}

.posml-153 {
	left: -9.5625rem !important
}

.pos-154 {
	top: 9.625rem !important;
	bottom: 9.625rem !important
}

.pos-154,
.posx-154 {
	right: 9.625rem !important;
	left: 9.625rem !important
}

.posy-154 {
	bottom: 9.625rem !important
}

.post-154,
.posy-154 {
	top: 9.625rem !important
}

.posr-154 {
	right: 9.625rem !important
}

.posb-154 {
	bottom: 9.625rem !important
}

.posl-154 {
	left: 9.625rem !important
}

.posmt-154 {
	top: -9.625rem !important
}

.posmr-154 {
	right: -9.625rem !important
}

.posmb-154 {
	bottom: -9.625rem !important
}

.posml-154 {
	left: -9.625rem !important
}

.pos-155 {
	top: 9.6875rem !important;
	bottom: 9.6875rem !important
}

.pos-155,
.posx-155 {
	right: 9.6875rem !important;
	left: 9.6875rem !important
}

.posy-155 {
	bottom: 9.6875rem !important
}

.post-155,
.posy-155 {
	top: 9.6875rem !important
}

.posr-155 {
	right: 9.6875rem !important
}

.posb-155 {
	bottom: 9.6875rem !important
}

.posl-155 {
	left: 9.6875rem !important
}

.posmt-155 {
	top: -9.6875rem !important
}

.posmr-155 {
	right: -9.6875rem !important
}

.posmb-155 {
	bottom: -9.6875rem !important
}

.posml-155 {
	left: -9.6875rem !important
}

.pos-156 {
	top: 9.75rem !important;
	bottom: 9.75rem !important
}

.pos-156,
.posx-156 {
	right: 9.75rem !important;
	left: 9.75rem !important
}

.posy-156 {
	bottom: 9.75rem !important
}

.post-156,
.posy-156 {
	top: 9.75rem !important
}

.posr-156 {
	right: 9.75rem !important
}

.posb-156 {
	bottom: 9.75rem !important
}

.posl-156 {
	left: 9.75rem !important
}

.posmt-156 {
	top: -9.75rem !important
}

.posmr-156 {
	right: -9.75rem !important
}

.posmb-156 {
	bottom: -9.75rem !important
}

.posml-156 {
	left: -9.75rem !important
}

.pos-157 {
	top: 9.8125rem !important;
	bottom: 9.8125rem !important
}

.pos-157,
.posx-157 {
	right: 9.8125rem !important;
	left: 9.8125rem !important
}

.posy-157 {
	bottom: 9.8125rem !important
}

.post-157,
.posy-157 {
	top: 9.8125rem !important
}

.posr-157 {
	right: 9.8125rem !important
}

.posb-157 {
	bottom: 9.8125rem !important
}

.posl-157 {
	left: 9.8125rem !important
}

.posmt-157 {
	top: -9.8125rem !important
}

.posmr-157 {
	right: -9.8125rem !important
}

.posmb-157 {
	bottom: -9.8125rem !important
}

.posml-157 {
	left: -9.8125rem !important
}

.pos-158 {
	top: 9.875rem !important;
	bottom: 9.875rem !important
}

.pos-158,
.posx-158 {
	right: 9.875rem !important;
	left: 9.875rem !important
}

.posy-158 {
	bottom: 9.875rem !important
}

.post-158,
.posy-158 {
	top: 9.875rem !important
}

.posr-158 {
	right: 9.875rem !important
}

.posb-158 {
	bottom: 9.875rem !important
}

.posl-158 {
	left: 9.875rem !important
}

.posmt-158 {
	top: -9.875rem !important
}

.posmr-158 {
	right: -9.875rem !important
}

.posmb-158 {
	bottom: -9.875rem !important
}

.posml-158 {
	left: -9.875rem !important
}

.pos-159 {
	top: 9.9375rem !important;
	bottom: 9.9375rem !important
}

.pos-159,
.posx-159 {
	right: 9.9375rem !important;
	left: 9.9375rem !important
}

.posy-159 {
	bottom: 9.9375rem !important
}

.post-159,
.posy-159 {
	top: 9.9375rem !important
}

.posr-159 {
	right: 9.9375rem !important
}

.posb-159 {
	bottom: 9.9375rem !important
}

.posl-159 {
	left: 9.9375rem !important
}

.posmt-159 {
	top: -9.9375rem !important
}

.posmr-159 {
	right: -9.9375rem !important
}

.posmb-159 {
	bottom: -9.9375rem !important
}

.posml-159 {
	left: -9.9375rem !important
}

.pos-160 {
	top: 10rem !important;
	bottom: 10rem !important
}

.pos-160,
.posx-160 {
	right: 10rem !important;
	left: 10rem !important
}

.posy-160 {
	bottom: 10rem !important
}

.post-160,
.posy-160 {
	top: 10rem !important
}

.posr-160 {
	right: 10rem !important
}

.posb-160 {
	bottom: 10rem !important
}

.posl-160 {
	left: 10rem !important
}

.posmt-160 {
	top: -10rem !important
}

.posmr-160 {
	right: -10rem !important
}

.posmb-160 {
	bottom: -10rem !important
}

.posml-160 {
	left: -10rem !important
}

.pos-161 {
	top: 10.0625rem !important;
	bottom: 10.0625rem !important
}

.pos-161,
.posx-161 {
	right: 10.0625rem !important;
	left: 10.0625rem !important
}

.posy-161 {
	bottom: 10.0625rem !important
}

.post-161,
.posy-161 {
	top: 10.0625rem !important
}

.posr-161 {
	right: 10.0625rem !important
}

.posb-161 {
	bottom: 10.0625rem !important
}

.posl-161 {
	left: 10.0625rem !important
}

.posmt-161 {
	top: -10.0625rem !important
}

.posmr-161 {
	right: -10.0625rem !important
}

.posmb-161 {
	bottom: -10.0625rem !important
}

.posml-161 {
	left: -10.0625rem !important
}

.pos-162 {
	top: 10.125rem !important;
	bottom: 10.125rem !important
}

.pos-162,
.posx-162 {
	right: 10.125rem !important;
	left: 10.125rem !important
}

.posy-162 {
	bottom: 10.125rem !important
}

.post-162,
.posy-162 {
	top: 10.125rem !important
}

.posr-162 {
	right: 10.125rem !important
}

.posb-162 {
	bottom: 10.125rem !important
}

.posl-162 {
	left: 10.125rem !important
}

.posmt-162 {
	top: -10.125rem !important
}

.posmr-162 {
	right: -10.125rem !important
}

.posmb-162 {
	bottom: -10.125rem !important
}

.posml-162 {
	left: -10.125rem !important
}

.pos-163 {
	top: 10.1875rem !important;
	bottom: 10.1875rem !important
}

.pos-163,
.posx-163 {
	right: 10.1875rem !important;
	left: 10.1875rem !important
}

.posy-163 {
	bottom: 10.1875rem !important
}

.post-163,
.posy-163 {
	top: 10.1875rem !important
}

.posr-163 {
	right: 10.1875rem !important
}

.posb-163 {
	bottom: 10.1875rem !important
}

.posl-163 {
	left: 10.1875rem !important
}

.posmt-163 {
	top: -10.1875rem !important
}

.posmr-163 {
	right: -10.1875rem !important
}

.posmb-163 {
	bottom: -10.1875rem !important
}

.posml-163 {
	left: -10.1875rem !important
}

.pos-164 {
	top: 10.25rem !important;
	bottom: 10.25rem !important
}

.pos-164,
.posx-164 {
	right: 10.25rem !important;
	left: 10.25rem !important
}

.posy-164 {
	bottom: 10.25rem !important
}

.post-164,
.posy-164 {
	top: 10.25rem !important
}

.posr-164 {
	right: 10.25rem !important
}

.posb-164 {
	bottom: 10.25rem !important
}

.posl-164 {
	left: 10.25rem !important
}

.posmt-164 {
	top: -10.25rem !important
}

.posmr-164 {
	right: -10.25rem !important
}

.posmb-164 {
	bottom: -10.25rem !important
}

.posml-164 {
	left: -10.25rem !important
}

.pos-165 {
	top: 10.3125rem !important;
	bottom: 10.3125rem !important
}

.pos-165,
.posx-165 {
	right: 10.3125rem !important;
	left: 10.3125rem !important
}

.posy-165 {
	bottom: 10.3125rem !important
}

.post-165,
.posy-165 {
	top: 10.3125rem !important
}

.posr-165 {
	right: 10.3125rem !important
}

.posb-165 {
	bottom: 10.3125rem !important
}

.posl-165 {
	left: 10.3125rem !important
}

.posmt-165 {
	top: -10.3125rem !important
}

.posmr-165 {
	right: -10.3125rem !important
}

.posmb-165 {
	bottom: -10.3125rem !important
}

.posml-165 {
	left: -10.3125rem !important
}

.pos-166 {
	top: 10.375rem !important;
	bottom: 10.375rem !important
}

.pos-166,
.posx-166 {
	right: 10.375rem !important;
	left: 10.375rem !important
}

.posy-166 {
	bottom: 10.375rem !important
}

.post-166,
.posy-166 {
	top: 10.375rem !important
}

.posr-166 {
	right: 10.375rem !important
}

.posb-166 {
	bottom: 10.375rem !important
}

.posl-166 {
	left: 10.375rem !important
}

.posmt-166 {
	top: -10.375rem !important
}

.posmr-166 {
	right: -10.375rem !important
}

.posmb-166 {
	bottom: -10.375rem !important
}

.posml-166 {
	left: -10.375rem !important
}

.pos-167 {
	top: 10.4375rem !important;
	bottom: 10.4375rem !important
}

.pos-167,
.posx-167 {
	right: 10.4375rem !important;
	left: 10.4375rem !important
}

.posy-167 {
	bottom: 10.4375rem !important
}

.post-167,
.posy-167 {
	top: 10.4375rem !important
}

.posr-167 {
	right: 10.4375rem !important
}

.posb-167 {
	bottom: 10.4375rem !important
}

.posl-167 {
	left: 10.4375rem !important
}

.posmt-167 {
	top: -10.4375rem !important
}

.posmr-167 {
	right: -10.4375rem !important
}

.posmb-167 {
	bottom: -10.4375rem !important
}

.posml-167 {
	left: -10.4375rem !important
}

.pos-168 {
	top: 10.5rem !important;
	bottom: 10.5rem !important
}

.pos-168,
.posx-168 {
	right: 10.5rem !important;
	left: 10.5rem !important
}

.posy-168 {
	bottom: 10.5rem !important
}

.post-168,
.posy-168 {
	top: 10.5rem !important
}

.posr-168 {
	right: 10.5rem !important
}

.posb-168 {
	bottom: 10.5rem !important
}

.posl-168 {
	left: 10.5rem !important
}

.posmt-168 {
	top: -10.5rem !important
}

.posmr-168 {
	right: -10.5rem !important
}

.posmb-168 {
	bottom: -10.5rem !important
}

.posml-168 {
	left: -10.5rem !important
}

.pos-169 {
	top: 10.5625rem !important;
	bottom: 10.5625rem !important
}

.pos-169,
.posx-169 {
	right: 10.5625rem !important;
	left: 10.5625rem !important
}

.posy-169 {
	bottom: 10.5625rem !important
}

.post-169,
.posy-169 {
	top: 10.5625rem !important
}

.posr-169 {
	right: 10.5625rem !important
}

.posb-169 {
	bottom: 10.5625rem !important
}

.posl-169 {
	left: 10.5625rem !important
}

.posmt-169 {
	top: -10.5625rem !important
}

.posmr-169 {
	right: -10.5625rem !important
}

.posmb-169 {
	bottom: -10.5625rem !important
}

.posml-169 {
	left: -10.5625rem !important
}

.pos-170 {
	top: 10.625rem !important;
	bottom: 10.625rem !important
}

.pos-170,
.posx-170 {
	right: 10.625rem !important;
	left: 10.625rem !important
}

.posy-170 {
	bottom: 10.625rem !important
}

.post-170,
.posy-170 {
	top: 10.625rem !important
}

.posr-170 {
	right: 10.625rem !important
}

.posb-170 {
	bottom: 10.625rem !important
}

.posl-170 {
	left: 10.625rem !important
}

.posmt-170 {
	top: -10.625rem !important
}

.posmr-170 {
	right: -10.625rem !important
}

.posmb-170 {
	bottom: -10.625rem !important
}

.posml-170 {
	left: -10.625rem !important
}

.pos-171 {
	top: 10.6875rem !important;
	bottom: 10.6875rem !important
}

.pos-171,
.posx-171 {
	right: 10.6875rem !important;
	left: 10.6875rem !important
}

.posy-171 {
	bottom: 10.6875rem !important
}

.post-171,
.posy-171 {
	top: 10.6875rem !important
}

.posr-171 {
	right: 10.6875rem !important
}

.posb-171 {
	bottom: 10.6875rem !important
}

.posl-171 {
	left: 10.6875rem !important
}

.posmt-171 {
	top: -10.6875rem !important
}

.posmr-171 {
	right: -10.6875rem !important
}

.posmb-171 {
	bottom: -10.6875rem !important
}

.posml-171 {
	left: -10.6875rem !important
}

.pos-172 {
	top: 10.75rem !important;
	bottom: 10.75rem !important
}

.pos-172,
.posx-172 {
	right: 10.75rem !important;
	left: 10.75rem !important
}

.posy-172 {
	bottom: 10.75rem !important
}

.post-172,
.posy-172 {
	top: 10.75rem !important
}

.posr-172 {
	right: 10.75rem !important
}

.posb-172 {
	bottom: 10.75rem !important
}

.posl-172 {
	left: 10.75rem !important
}

.posmt-172 {
	top: -10.75rem !important
}

.posmr-172 {
	right: -10.75rem !important
}

.posmb-172 {
	bottom: -10.75rem !important
}

.posml-172 {
	left: -10.75rem !important
}

.pos-173 {
	top: 10.8125rem !important;
	bottom: 10.8125rem !important
}

.pos-173,
.posx-173 {
	right: 10.8125rem !important;
	left: 10.8125rem !important
}

.posy-173 {
	bottom: 10.8125rem !important
}

.post-173,
.posy-173 {
	top: 10.8125rem !important
}

.posr-173 {
	right: 10.8125rem !important
}

.posb-173 {
	bottom: 10.8125rem !important
}

.posl-173 {
	left: 10.8125rem !important
}

.posmt-173 {
	top: -10.8125rem !important
}

.posmr-173 {
	right: -10.8125rem !important
}

.posmb-173 {
	bottom: -10.8125rem !important
}

.posml-173 {
	left: -10.8125rem !important
}

.pos-174 {
	top: 10.875rem !important;
	bottom: 10.875rem !important
}

.pos-174,
.posx-174 {
	right: 10.875rem !important;
	left: 10.875rem !important
}

.posy-174 {
	bottom: 10.875rem !important
}

.post-174,
.posy-174 {
	top: 10.875rem !important
}

.posr-174 {
	right: 10.875rem !important
}

.posb-174 {
	bottom: 10.875rem !important
}

.posl-174 {
	left: 10.875rem !important
}

.posmt-174 {
	top: -10.875rem !important
}

.posmr-174 {
	right: -10.875rem !important
}

.posmb-174 {
	bottom: -10.875rem !important
}

.posml-174 {
	left: -10.875rem !important
}

.pos-175 {
	top: 10.9375rem !important;
	bottom: 10.9375rem !important
}

.pos-175,
.posx-175 {
	right: 10.9375rem !important;
	left: 10.9375rem !important
}

.posy-175 {
	bottom: 10.9375rem !important
}

.post-175,
.posy-175 {
	top: 10.9375rem !important
}

.posr-175 {
	right: 10.9375rem !important
}

.posb-175 {
	bottom: 10.9375rem !important
}

.posl-175 {
	left: 10.9375rem !important
}

.posmt-175 {
	top: -10.9375rem !important
}

.posmr-175 {
	right: -10.9375rem !important
}

.posmb-175 {
	bottom: -10.9375rem !important
}

.posml-175 {
	left: -10.9375rem !important
}

.pos-176 {
	top: 11rem !important;
	bottom: 11rem !important
}

.pos-176,
.posx-176 {
	right: 11rem !important;
	left: 11rem !important
}

.posy-176 {
	bottom: 11rem !important
}

.post-176,
.posy-176 {
	top: 11rem !important
}

.posr-176 {
	right: 11rem !important
}

.posb-176 {
	bottom: 11rem !important
}

.posl-176 {
	left: 11rem !important
}

.posmt-176 {
	top: -11rem !important
}

.posmr-176 {
	right: -11rem !important
}

.posmb-176 {
	bottom: -11rem !important
}

.posml-176 {
	left: -11rem !important
}

.pos-177 {
	top: 11.0625rem !important;
	bottom: 11.0625rem !important
}

.pos-177,
.posx-177 {
	right: 11.0625rem !important;
	left: 11.0625rem !important
}

.posy-177 {
	bottom: 11.0625rem !important
}

.post-177,
.posy-177 {
	top: 11.0625rem !important
}

.posr-177 {
	right: 11.0625rem !important
}

.posb-177 {
	bottom: 11.0625rem !important
}

.posl-177 {
	left: 11.0625rem !important
}

.posmt-177 {
	top: -11.0625rem !important
}

.posmr-177 {
	right: -11.0625rem !important
}

.posmb-177 {
	bottom: -11.0625rem !important
}

.posml-177 {
	left: -11.0625rem !important
}

.pos-178 {
	top: 11.125rem !important;
	bottom: 11.125rem !important
}

.pos-178,
.posx-178 {
	right: 11.125rem !important;
	left: 11.125rem !important
}

.posy-178 {
	bottom: 11.125rem !important
}

.post-178,
.posy-178 {
	top: 11.125rem !important
}

.posr-178 {
	right: 11.125rem !important
}

.posb-178 {
	bottom: 11.125rem !important
}

.posl-178 {
	left: 11.125rem !important
}

.posmt-178 {
	top: -11.125rem !important
}

.posmr-178 {
	right: -11.125rem !important
}

.posmb-178 {
	bottom: -11.125rem !important
}

.posml-178 {
	left: -11.125rem !important
}

.pos-179 {
	top: 11.1875rem !important;
	bottom: 11.1875rem !important
}

.pos-179,
.posx-179 {
	right: 11.1875rem !important;
	left: 11.1875rem !important
}

.posy-179 {
	bottom: 11.1875rem !important
}

.post-179,
.posy-179 {
	top: 11.1875rem !important
}

.posr-179 {
	right: 11.1875rem !important
}

.posb-179 {
	bottom: 11.1875rem !important
}

.posl-179 {
	left: 11.1875rem !important
}

.posmt-179 {
	top: -11.1875rem !important
}

.posmr-179 {
	right: -11.1875rem !important
}

.posmb-179 {
	bottom: -11.1875rem !important
}

.posml-179 {
	left: -11.1875rem !important
}

.pos-180 {
	top: 11.25rem !important;
	bottom: 11.25rem !important
}

.pos-180,
.posx-180 {
	right: 11.25rem !important;
	left: 11.25rem !important
}

.posy-180 {
	bottom: 11.25rem !important
}

.post-180,
.posy-180 {
	top: 11.25rem !important
}

.posr-180 {
	right: 11.25rem !important
}

.posb-180 {
	bottom: 11.25rem !important
}

.posl-180 {
	left: 11.25rem !important
}

.posmt-180 {
	top: -11.25rem !important
}

.posmr-180 {
	right: -11.25rem !important
}

.posmb-180 {
	bottom: -11.25rem !important
}

.posml-180 {
	left: -11.25rem !important
}

.pos-181 {
	top: 11.3125rem !important;
	bottom: 11.3125rem !important
}

.pos-181,
.posx-181 {
	right: 11.3125rem !important;
	left: 11.3125rem !important
}

.posy-181 {
	bottom: 11.3125rem !important
}

.post-181,
.posy-181 {
	top: 11.3125rem !important
}

.posr-181 {
	right: 11.3125rem !important
}

.posb-181 {
	bottom: 11.3125rem !important
}

.posl-181 {
	left: 11.3125rem !important
}

.posmt-181 {
	top: -11.3125rem !important
}

.posmr-181 {
	right: -11.3125rem !important
}

.posmb-181 {
	bottom: -11.3125rem !important
}

.posml-181 {
	left: -11.3125rem !important
}

.pos-182 {
	top: 11.375rem !important;
	bottom: 11.375rem !important
}

.pos-182,
.posx-182 {
	right: 11.375rem !important;
	left: 11.375rem !important
}

.posy-182 {
	bottom: 11.375rem !important
}

.post-182,
.posy-182 {
	top: 11.375rem !important
}

.posr-182 {
	right: 11.375rem !important
}

.posb-182 {
	bottom: 11.375rem !important
}

.posl-182 {
	left: 11.375rem !important
}

.posmt-182 {
	top: -11.375rem !important
}

.posmr-182 {
	right: -11.375rem !important
}

.posmb-182 {
	bottom: -11.375rem !important
}

.posml-182 {
	left: -11.375rem !important
}

.pos-183 {
	top: 11.4375rem !important;
	bottom: 11.4375rem !important
}

.pos-183,
.posx-183 {
	right: 11.4375rem !important;
	left: 11.4375rem !important
}

.posy-183 {
	bottom: 11.4375rem !important
}

.post-183,
.posy-183 {
	top: 11.4375rem !important
}

.posr-183 {
	right: 11.4375rem !important
}

.posb-183 {
	bottom: 11.4375rem !important
}

.posl-183 {
	left: 11.4375rem !important
}

.posmt-183 {
	top: -11.4375rem !important
}

.posmr-183 {
	right: -11.4375rem !important
}

.posmb-183 {
	bottom: -11.4375rem !important
}

.posml-183 {
	left: -11.4375rem !important
}

.pos-184 {
	top: 11.5rem !important;
	bottom: 11.5rem !important
}

.pos-184,
.posx-184 {
	right: 11.5rem !important;
	left: 11.5rem !important
}

.posy-184 {
	bottom: 11.5rem !important
}

.post-184,
.posy-184 {
	top: 11.5rem !important
}

.posr-184 {
	right: 11.5rem !important
}

.posb-184 {
	bottom: 11.5rem !important
}

.posl-184 {
	left: 11.5rem !important
}

.posmt-184 {
	top: -11.5rem !important
}

.posmr-184 {
	right: -11.5rem !important
}

.posmb-184 {
	bottom: -11.5rem !important
}

.posml-184 {
	left: -11.5rem !important
}

.pos-185 {
	top: 11.5625rem !important;
	bottom: 11.5625rem !important
}

.pos-185,
.posx-185 {
	right: 11.5625rem !important;
	left: 11.5625rem !important
}

.posy-185 {
	bottom: 11.5625rem !important
}

.post-185,
.posy-185 {
	top: 11.5625rem !important
}

.posr-185 {
	right: 11.5625rem !important
}

.posb-185 {
	bottom: 11.5625rem !important
}

.posl-185 {
	left: 11.5625rem !important
}

.posmt-185 {
	top: -11.5625rem !important
}

.posmr-185 {
	right: -11.5625rem !important
}

.posmb-185 {
	bottom: -11.5625rem !important
}

.posml-185 {
	left: -11.5625rem !important
}

.pos-186 {
	top: 11.625rem !important;
	bottom: 11.625rem !important
}

.pos-186,
.posx-186 {
	right: 11.625rem !important;
	left: 11.625rem !important
}

.posy-186 {
	bottom: 11.625rem !important
}

.post-186,
.posy-186 {
	top: 11.625rem !important
}

.posr-186 {
	right: 11.625rem !important
}

.posb-186 {
	bottom: 11.625rem !important
}

.posl-186 {
	left: 11.625rem !important
}

.posmt-186 {
	top: -11.625rem !important
}

.posmr-186 {
	right: -11.625rem !important
}

.posmb-186 {
	bottom: -11.625rem !important
}

.posml-186 {
	left: -11.625rem !important
}

.pos-187 {
	top: 11.6875rem !important;
	bottom: 11.6875rem !important
}

.pos-187,
.posx-187 {
	right: 11.6875rem !important;
	left: 11.6875rem !important
}

.posy-187 {
	bottom: 11.6875rem !important
}

.post-187,
.posy-187 {
	top: 11.6875rem !important
}

.posr-187 {
	right: 11.6875rem !important
}

.posb-187 {
	bottom: 11.6875rem !important
}

.posl-187 {
	left: 11.6875rem !important
}

.posmt-187 {
	top: -11.6875rem !important
}

.posmr-187 {
	right: -11.6875rem !important
}

.posmb-187 {
	bottom: -11.6875rem !important
}

.posml-187 {
	left: -11.6875rem !important
}

.pos-188 {
	top: 11.75rem !important;
	bottom: 11.75rem !important
}

.pos-188,
.posx-188 {
	right: 11.75rem !important;
	left: 11.75rem !important
}

.posy-188 {
	bottom: 11.75rem !important
}

.post-188,
.posy-188 {
	top: 11.75rem !important
}

.posr-188 {
	right: 11.75rem !important
}

.posb-188 {
	bottom: 11.75rem !important
}

.posl-188 {
	left: 11.75rem !important
}

.posmt-188 {
	top: -11.75rem !important
}

.posmr-188 {
	right: -11.75rem !important
}

.posmb-188 {
	bottom: -11.75rem !important
}

.posml-188 {
	left: -11.75rem !important
}

.pos-189 {
	top: 11.8125rem !important;
	bottom: 11.8125rem !important
}

.pos-189,
.posx-189 {
	right: 11.8125rem !important;
	left: 11.8125rem !important
}

.posy-189 {
	bottom: 11.8125rem !important
}

.post-189,
.posy-189 {
	top: 11.8125rem !important
}

.posr-189 {
	right: 11.8125rem !important
}

.posb-189 {
	bottom: 11.8125rem !important
}

.posl-189 {
	left: 11.8125rem !important
}

.posmt-189 {
	top: -11.8125rem !important
}

.posmr-189 {
	right: -11.8125rem !important
}

.posmb-189 {
	bottom: -11.8125rem !important
}

.posml-189 {
	left: -11.8125rem !important
}

.pos-190 {
	top: 11.875rem !important;
	bottom: 11.875rem !important
}

.pos-190,
.posx-190 {
	right: 11.875rem !important;
	left: 11.875rem !important
}

.posy-190 {
	bottom: 11.875rem !important
}

.post-190,
.posy-190 {
	top: 11.875rem !important
}

.posr-190 {
	right: 11.875rem !important
}

.posb-190 {
	bottom: 11.875rem !important
}

.posl-190 {
	left: 11.875rem !important
}

.posmt-190 {
	top: -11.875rem !important
}

.posmr-190 {
	right: -11.875rem !important
}

.posmb-190 {
	bottom: -11.875rem !important
}

.posml-190 {
	left: -11.875rem !important
}

.pos-191 {
	top: 11.9375rem !important;
	bottom: 11.9375rem !important
}

.pos-191,
.posx-191 {
	right: 11.9375rem !important;
	left: 11.9375rem !important
}

.posy-191 {
	bottom: 11.9375rem !important
}

.post-191,
.posy-191 {
	top: 11.9375rem !important
}

.posr-191 {
	right: 11.9375rem !important
}

.posb-191 {
	bottom: 11.9375rem !important
}

.posl-191 {
	left: 11.9375rem !important
}

.posmt-191 {
	top: -11.9375rem !important
}

.posmr-191 {
	right: -11.9375rem !important
}

.posmb-191 {
	bottom: -11.9375rem !important
}

.posml-191 {
	left: -11.9375rem !important
}

.pos-192 {
	top: 12rem !important;
	bottom: 12rem !important
}

.pos-192,
.posx-192 {
	right: 12rem !important;
	left: 12rem !important
}

.posy-192 {
	bottom: 12rem !important
}

.post-192,
.posy-192 {
	top: 12rem !important
}

.posr-192 {
	right: 12rem !important
}

.posb-192 {
	bottom: 12rem !important
}

.posl-192 {
	left: 12rem !important
}

.posmt-192 {
	top: -12rem !important
}

.posmr-192 {
	right: -12rem !important
}

.posmb-192 {
	bottom: -12rem !important
}

.posml-192 {
	left: -12rem !important
}

.pos-193 {
	top: 12.0625rem !important;
	bottom: 12.0625rem !important
}

.pos-193,
.posx-193 {
	right: 12.0625rem !important;
	left: 12.0625rem !important
}

.posy-193 {
	bottom: 12.0625rem !important
}

.post-193,
.posy-193 {
	top: 12.0625rem !important
}

.posr-193 {
	right: 12.0625rem !important
}

.posb-193 {
	bottom: 12.0625rem !important
}

.posl-193 {
	left: 12.0625rem !important
}

.posmt-193 {
	top: -12.0625rem !important
}

.posmr-193 {
	right: -12.0625rem !important
}

.posmb-193 {
	bottom: -12.0625rem !important
}

.posml-193 {
	left: -12.0625rem !important
}

.pos-194 {
	top: 12.125rem !important;
	bottom: 12.125rem !important
}

.pos-194,
.posx-194 {
	right: 12.125rem !important;
	left: 12.125rem !important
}

.posy-194 {
	bottom: 12.125rem !important
}

.post-194,
.posy-194 {
	top: 12.125rem !important
}

.posr-194 {
	right: 12.125rem !important
}

.posb-194 {
	bottom: 12.125rem !important
}

.posl-194 {
	left: 12.125rem !important
}

.posmt-194 {
	top: -12.125rem !important
}

.posmr-194 {
	right: -12.125rem !important
}

.posmb-194 {
	bottom: -12.125rem !important
}

.posml-194 {
	left: -12.125rem !important
}

.pos-195 {
	top: 12.1875rem !important;
	bottom: 12.1875rem !important
}

.pos-195,
.posx-195 {
	right: 12.1875rem !important;
	left: 12.1875rem !important
}

.posy-195 {
	bottom: 12.1875rem !important
}

.post-195,
.posy-195 {
	top: 12.1875rem !important
}

.posr-195 {
	right: 12.1875rem !important
}

.posb-195 {
	bottom: 12.1875rem !important
}

.posl-195 {
	left: 12.1875rem !important
}

.posmt-195 {
	top: -12.1875rem !important
}

.posmr-195 {
	right: -12.1875rem !important
}

.posmb-195 {
	bottom: -12.1875rem !important
}

.posml-195 {
	left: -12.1875rem !important
}

.pos-196 {
	top: 12.25rem !important;
	bottom: 12.25rem !important
}

.pos-196,
.posx-196 {
	right: 12.25rem !important;
	left: 12.25rem !important
}

.posy-196 {
	bottom: 12.25rem !important
}

.post-196,
.posy-196 {
	top: 12.25rem !important
}

.posr-196 {
	right: 12.25rem !important
}

.posb-196 {
	bottom: 12.25rem !important
}

.posl-196 {
	left: 12.25rem !important
}

.posmt-196 {
	top: -12.25rem !important
}

.posmr-196 {
	right: -12.25rem !important
}

.posmb-196 {
	bottom: -12.25rem !important
}

.posml-196 {
	left: -12.25rem !important
}

.pos-197 {
	top: 12.3125rem !important;
	bottom: 12.3125rem !important
}

.pos-197,
.posx-197 {
	right: 12.3125rem !important;
	left: 12.3125rem !important
}

.posy-197 {
	bottom: 12.3125rem !important
}

.post-197,
.posy-197 {
	top: 12.3125rem !important
}

.posr-197 {
	right: 12.3125rem !important
}

.posb-197 {
	bottom: 12.3125rem !important
}

.posl-197 {
	left: 12.3125rem !important
}

.posmt-197 {
	top: -12.3125rem !important
}

.posmr-197 {
	right: -12.3125rem !important
}

.posmb-197 {
	bottom: -12.3125rem !important
}

.posml-197 {
	left: -12.3125rem !important
}

.pos-198 {
	top: 12.375rem !important;
	bottom: 12.375rem !important
}

.pos-198,
.posx-198 {
	right: 12.375rem !important;
	left: 12.375rem !important
}

.posy-198 {
	bottom: 12.375rem !important
}

.post-198,
.posy-198 {
	top: 12.375rem !important
}

.posr-198 {
	right: 12.375rem !important
}

.posb-198 {
	bottom: 12.375rem !important
}

.posl-198 {
	left: 12.375rem !important
}

.posmt-198 {
	top: -12.375rem !important
}

.posmr-198 {
	right: -12.375rem !important
}

.posmb-198 {
	bottom: -12.375rem !important
}

.posml-198 {
	left: -12.375rem !important
}

.pos-199 {
	top: 12.4375rem !important;
	bottom: 12.4375rem !important
}

.pos-199,
.posx-199 {
	right: 12.4375rem !important;
	left: 12.4375rem !important
}

.posy-199 {
	bottom: 12.4375rem !important
}

.post-199,
.posy-199 {
	top: 12.4375rem !important
}

.posr-199 {
	right: 12.4375rem !important
}

.posb-199 {
	bottom: 12.4375rem !important
}

.posl-199 {
	left: 12.4375rem !important
}

.posmt-199 {
	top: -12.4375rem !important
}

.posmr-199 {
	right: -12.4375rem !important
}

.posmb-199 {
	bottom: -12.4375rem !important
}

.posml-199 {
	left: -12.4375rem !important
}

.pos-200 {
	top: 12.5rem !important;
	bottom: 12.5rem !important
}

.pos-200,
.posx-200 {
	right: 12.5rem !important;
	left: 12.5rem !important
}

.posy-200 {
	bottom: 12.5rem !important
}

.post-200,
.posy-200 {
	top: 12.5rem !important
}

.posr-200 {
	right: 12.5rem !important
}

.posb-200 {
	bottom: 12.5rem !important
}

.posl-200 {
	left: 12.5rem !important
}

.posmt-200 {
	top: -12.5rem !important
}

.posmr-200 {
	right: -12.5rem !important
}

.posmb-200 {
	bottom: -12.5rem !important
}

.posml-200 {
	left: -12.5rem !important
}

.pos-auto {
	top: auto !important;
	bottom: auto !important
}

.pos-auto,
.posx-auto {
	right: auto !important;
	left: auto !important
}

.posy-auto {
	bottom: auto !important
}

.post-auto,
.posy-auto {
	top: auto !important
}

.posr-auto {
	right: auto !important
}

.posb-auto {
	bottom: auto !important
}

.posl-auto {
	left: auto !important
}

.posmt-auto {
	top: -auto !important
}

.posmr-auto {
	right: -auto !important
}

.posmb-auto {
	bottom: -auto !important
}

.posml-auto {
	left: -auto !important
}

@media (min-width:576px) {
	.pos-sm-0 {
		top: 0 !important;
		bottom: 0 !important
	}

	.pos-sm-0,
	.posx-sm-0 {
		right: 0 !important;
		left: 0 !important
	}

	.posy-sm-0 {
		bottom: 0 !important
	}

	.post-sm-0,
	.posy-sm-0 {
		top: 0 !important
	}

	.posr-sm-0 {
		right: 0 !important
	}

	.posb-sm-0 {
		bottom: 0 !important
	}

	.posl-sm-0 {
		left: 0 !important
	}

	.posmt-sm-0 {
		top: 0 !important
	}

	.posmr-sm-0 {
		right: 0 !important
	}

	.posmb-sm-0 {
		bottom: 0 !important
	}

	.posml-sm-0 {
		left: 0 !important
	}

	.pos-sm-1 {
		top: .0625rem !important;
		bottom: .0625rem !important
	}

	.pos-sm-1,
	.posx-sm-1 {
		right: .0625rem !important;
		left: .0625rem !important
	}

	.posy-sm-1 {
		bottom: .0625rem !important
	}

	.post-sm-1,
	.posy-sm-1 {
		top: .0625rem !important
	}

	.posr-sm-1 {
		right: .0625rem !important
	}

	.posb-sm-1 {
		bottom: .0625rem !important
	}

	.posl-sm-1 {
		left: .0625rem !important
	}

	.posmt-sm-1 {
		top: -.0625rem !important
	}

	.posmr-sm-1 {
		right: -.0625rem !important
	}

	.posmb-sm-1 {
		bottom: -.0625rem !important
	}

	.posml-sm-1 {
		left: -.0625rem !important
	}

	.pos-sm-2 {
		top: .125rem !important;
		bottom: .125rem !important
	}

	.pos-sm-2,
	.posx-sm-2 {
		right: .125rem !important;
		left: .125rem !important
	}

	.posy-sm-2 {
		bottom: .125rem !important
	}

	.post-sm-2,
	.posy-sm-2 {
		top: .125rem !important
	}

	.posr-sm-2 {
		right: .125rem !important
	}

	.posb-sm-2 {
		bottom: .125rem !important
	}

	.posl-sm-2 {
		left: .125rem !important
	}

	.posmt-sm-2 {
		top: -.125rem !important
	}

	.posmr-sm-2 {
		right: -.125rem !important
	}

	.posmb-sm-2 {
		bottom: -.125rem !important
	}

	.posml-sm-2 {
		left: -.125rem !important
	}

	.pos-sm-3 {
		top: .1875rem !important;
		bottom: .1875rem !important
	}

	.pos-sm-3,
	.posx-sm-3 {
		right: .1875rem !important;
		left: .1875rem !important
	}

	.posy-sm-3 {
		bottom: .1875rem !important
	}

	.post-sm-3,
	.posy-sm-3 {
		top: .1875rem !important
	}

	.posr-sm-3 {
		right: .1875rem !important
	}

	.posb-sm-3 {
		bottom: .1875rem !important
	}

	.posl-sm-3 {
		left: .1875rem !important
	}

	.posmt-sm-3 {
		top: -.1875rem !important
	}

	.posmr-sm-3 {
		right: -.1875rem !important
	}

	.posmb-sm-3 {
		bottom: -.1875rem !important
	}

	.posml-sm-3 {
		left: -.1875rem !important
	}

	.pos-sm-4 {
		top: .25rem !important;
		bottom: .25rem !important
	}

	.pos-sm-4,
	.posx-sm-4 {
		right: .25rem !important;
		left: .25rem !important
	}

	.posy-sm-4 {
		bottom: .25rem !important
	}

	.post-sm-4,
	.posy-sm-4 {
		top: .25rem !important
	}

	.posr-sm-4 {
		right: .25rem !important
	}

	.posb-sm-4 {
		bottom: .25rem !important
	}

	.posl-sm-4 {
		left: .25rem !important
	}

	.posmt-sm-4 {
		top: -.25rem !important
	}

	.posmr-sm-4 {
		right: -.25rem !important
	}

	.posmb-sm-4 {
		bottom: -.25rem !important
	}

	.posml-sm-4 {
		left: -.25rem !important
	}

	.pos-sm-5 {
		top: .3125rem !important;
		bottom: .3125rem !important
	}

	.pos-sm-5,
	.posx-sm-5 {
		right: .3125rem !important;
		left: .3125rem !important
	}

	.posy-sm-5 {
		bottom: .3125rem !important
	}

	.post-sm-5,
	.posy-sm-5 {
		top: .3125rem !important
	}

	.posr-sm-5 {
		right: .3125rem !important
	}

	.posb-sm-5 {
		bottom: .3125rem !important
	}

	.posl-sm-5 {
		left: .3125rem !important
	}

	.posmt-sm-5 {
		top: -.3125rem !important
	}

	.posmr-sm-5 {
		right: -.3125rem !important
	}

	.posmb-sm-5 {
		bottom: -.3125rem !important
	}

	.posml-sm-5 {
		left: -.3125rem !important
	}

	.pos-sm-6 {
		top: .375rem !important;
		bottom: .375rem !important
	}

	.pos-sm-6,
	.posx-sm-6 {
		right: .375rem !important;
		left: .375rem !important
	}

	.posy-sm-6 {
		bottom: .375rem !important
	}

	.post-sm-6,
	.posy-sm-6 {
		top: .375rem !important
	}

	.posr-sm-6 {
		right: .375rem !important
	}

	.posb-sm-6 {
		bottom: .375rem !important
	}

	.posl-sm-6 {
		left: .375rem !important
	}

	.posmt-sm-6 {
		top: -.375rem !important
	}

	.posmr-sm-6 {
		right: -.375rem !important
	}

	.posmb-sm-6 {
		bottom: -.375rem !important
	}

	.posml-sm-6 {
		left: -.375rem !important
	}

	.pos-sm-7 {
		top: .4375rem !important;
		bottom: .4375rem !important
	}

	.pos-sm-7,
	.posx-sm-7 {
		right: .4375rem !important;
		left: .4375rem !important
	}

	.posy-sm-7 {
		bottom: .4375rem !important
	}

	.post-sm-7,
	.posy-sm-7 {
		top: .4375rem !important
	}

	.posr-sm-7 {
		right: .4375rem !important
	}

	.posb-sm-7 {
		bottom: .4375rem !important
	}

	.posl-sm-7 {
		left: .4375rem !important
	}

	.posmt-sm-7 {
		top: -.4375rem !important
	}

	.posmr-sm-7 {
		right: -.4375rem !important
	}

	.posmb-sm-7 {
		bottom: -.4375rem !important
	}

	.posml-sm-7 {
		left: -.4375rem !important
	}

	.pos-sm-8 {
		top: .5rem !important;
		bottom: .5rem !important
	}

	.pos-sm-8,
	.posx-sm-8 {
		right: .5rem !important;
		left: .5rem !important
	}

	.posy-sm-8 {
		bottom: .5rem !important
	}

	.post-sm-8,
	.posy-sm-8 {
		top: .5rem !important
	}

	.posr-sm-8 {
		right: .5rem !important
	}

	.posb-sm-8 {
		bottom: .5rem !important
	}

	.posl-sm-8 {
		left: .5rem !important
	}

	.posmt-sm-8 {
		top: -.5rem !important
	}

	.posmr-sm-8 {
		right: -.5rem !important
	}

	.posmb-sm-8 {
		bottom: -.5rem !important
	}

	.posml-sm-8 {
		left: -.5rem !important
	}

	.pos-sm-9 {
		top: .5625rem !important;
		bottom: .5625rem !important
	}

	.pos-sm-9,
	.posx-sm-9 {
		right: .5625rem !important;
		left: .5625rem !important
	}

	.posy-sm-9 {
		bottom: .5625rem !important
	}

	.post-sm-9,
	.posy-sm-9 {
		top: .5625rem !important
	}

	.posr-sm-9 {
		right: .5625rem !important
	}

	.posb-sm-9 {
		bottom: .5625rem !important
	}

	.posl-sm-9 {
		left: .5625rem !important
	}

	.posmt-sm-9 {
		top: -.5625rem !important
	}

	.posmr-sm-9 {
		right: -.5625rem !important
	}

	.posmb-sm-9 {
		bottom: -.5625rem !important
	}

	.posml-sm-9 {
		left: -.5625rem !important
	}

	.pos-sm-10 {
		top: .625rem !important;
		bottom: .625rem !important
	}

	.pos-sm-10,
	.posx-sm-10 {
		right: .625rem !important;
		left: .625rem !important
	}

	.posy-sm-10 {
		bottom: .625rem !important
	}

	.post-sm-10,
	.posy-sm-10 {
		top: .625rem !important
	}

	.posr-sm-10 {
		right: .625rem !important
	}

	.posb-sm-10 {
		bottom: .625rem !important
	}

	.posl-sm-10 {
		left: .625rem !important
	}

	.posmt-sm-10 {
		top: -.625rem !important
	}

	.posmr-sm-10 {
		right: -.625rem !important
	}

	.posmb-sm-10 {
		bottom: -.625rem !important
	}

	.posml-sm-10 {
		left: -.625rem !important
	}

	.pos-sm-11 {
		top: .6875rem !important;
		bottom: .6875rem !important
	}

	.pos-sm-11,
	.posx-sm-11 {
		right: .6875rem !important;
		left: .6875rem !important
	}

	.posy-sm-11 {
		bottom: .6875rem !important
	}

	.post-sm-11,
	.posy-sm-11 {
		top: .6875rem !important
	}

	.posr-sm-11 {
		right: .6875rem !important
	}

	.posb-sm-11 {
		bottom: .6875rem !important
	}

	.posl-sm-11 {
		left: .6875rem !important
	}

	.posmt-sm-11 {
		top: -.6875rem !important
	}

	.posmr-sm-11 {
		right: -.6875rem !important
	}

	.posmb-sm-11 {
		bottom: -.6875rem !important
	}

	.posml-sm-11 {
		left: -.6875rem !important
	}

	.pos-sm-12 {
		top: .75rem !important;
		bottom: .75rem !important
	}

	.pos-sm-12,
	.posx-sm-12 {
		right: .75rem !important;
		left: .75rem !important
	}

	.posy-sm-12 {
		bottom: .75rem !important
	}

	.post-sm-12,
	.posy-sm-12 {
		top: .75rem !important
	}

	.posr-sm-12 {
		right: .75rem !important
	}

	.posb-sm-12 {
		bottom: .75rem !important
	}

	.posl-sm-12 {
		left: .75rem !important
	}

	.posmt-sm-12 {
		top: -.75rem !important
	}

	.posmr-sm-12 {
		right: -.75rem !important
	}

	.posmb-sm-12 {
		bottom: -.75rem !important
	}

	.posml-sm-12 {
		left: -.75rem !important
	}

	.pos-sm-13 {
		top: .8125rem !important;
		bottom: .8125rem !important
	}

	.pos-sm-13,
	.posx-sm-13 {
		right: .8125rem !important;
		left: .8125rem !important
	}

	.posy-sm-13 {
		bottom: .8125rem !important
	}

	.post-sm-13,
	.posy-sm-13 {
		top: .8125rem !important
	}

	.posr-sm-13 {
		right: .8125rem !important
	}

	.posb-sm-13 {
		bottom: .8125rem !important
	}

	.posl-sm-13 {
		left: .8125rem !important
	}

	.posmt-sm-13 {
		top: -.8125rem !important
	}

	.posmr-sm-13 {
		right: -.8125rem !important
	}

	.posmb-sm-13 {
		bottom: -.8125rem !important
	}

	.posml-sm-13 {
		left: -.8125rem !important
	}

	.pos-sm-14 {
		top: .875rem !important;
		bottom: .875rem !important
	}

	.pos-sm-14,
	.posx-sm-14 {
		right: .875rem !important;
		left: .875rem !important
	}

	.posy-sm-14 {
		bottom: .875rem !important
	}

	.post-sm-14,
	.posy-sm-14 {
		top: .875rem !important
	}

	.posr-sm-14 {
		right: .875rem !important
	}

	.posb-sm-14 {
		bottom: .875rem !important
	}

	.posl-sm-14 {
		left: .875rem !important
	}

	.posmt-sm-14 {
		top: -.875rem !important
	}

	.posmr-sm-14 {
		right: -.875rem !important
	}

	.posmb-sm-14 {
		bottom: -.875rem !important
	}

	.posml-sm-14 {
		left: -.875rem !important
	}

	.pos-sm-15 {
		top: .9375rem !important;
		bottom: .9375rem !important
	}

	.pos-sm-15,
	.posx-sm-15 {
		right: .9375rem !important;
		left: .9375rem !important
	}

	.posy-sm-15 {
		bottom: .9375rem !important
	}

	.post-sm-15,
	.posy-sm-15 {
		top: .9375rem !important
	}

	.posr-sm-15 {
		right: .9375rem !important
	}

	.posb-sm-15 {
		bottom: .9375rem !important
	}

	.posl-sm-15 {
		left: .9375rem !important
	}

	.posmt-sm-15 {
		top: -.9375rem !important
	}

	.posmr-sm-15 {
		right: -.9375rem !important
	}

	.posmb-sm-15 {
		bottom: -.9375rem !important
	}

	.posml-sm-15 {
		left: -.9375rem !important
	}

	.pos-sm-16 {
		top: 1rem !important;
		bottom: 1rem !important
	}

	.pos-sm-16,
	.posx-sm-16 {
		right: 1rem !important;
		left: 1rem !important
	}

	.posy-sm-16 {
		bottom: 1rem !important
	}

	.post-sm-16,
	.posy-sm-16 {
		top: 1rem !important
	}

	.posr-sm-16 {
		right: 1rem !important
	}

	.posb-sm-16 {
		bottom: 1rem !important
	}

	.posl-sm-16 {
		left: 1rem !important
	}

	.posmt-sm-16 {
		top: -1rem !important
	}

	.posmr-sm-16 {
		right: -1rem !important
	}

	.posmb-sm-16 {
		bottom: -1rem !important
	}

	.posml-sm-16 {
		left: -1rem !important
	}

	.pos-sm-17 {
		top: 1.0625rem !important;
		bottom: 1.0625rem !important
	}

	.pos-sm-17,
	.posx-sm-17 {
		right: 1.0625rem !important;
		left: 1.0625rem !important
	}

	.posy-sm-17 {
		bottom: 1.0625rem !important
	}

	.post-sm-17,
	.posy-sm-17 {
		top: 1.0625rem !important
	}

	.posr-sm-17 {
		right: 1.0625rem !important
	}

	.posb-sm-17 {
		bottom: 1.0625rem !important
	}

	.posl-sm-17 {
		left: 1.0625rem !important
	}

	.posmt-sm-17 {
		top: -1.0625rem !important
	}

	.posmr-sm-17 {
		right: -1.0625rem !important
	}

	.posmb-sm-17 {
		bottom: -1.0625rem !important
	}

	.posml-sm-17 {
		left: -1.0625rem !important
	}

	.pos-sm-18 {
		top: 1.125rem !important;
		bottom: 1.125rem !important
	}

	.pos-sm-18,
	.posx-sm-18 {
		right: 1.125rem !important;
		left: 1.125rem !important
	}

	.posy-sm-18 {
		bottom: 1.125rem !important
	}

	.post-sm-18,
	.posy-sm-18 {
		top: 1.125rem !important
	}

	.posr-sm-18 {
		right: 1.125rem !important
	}

	.posb-sm-18 {
		bottom: 1.125rem !important
	}

	.posl-sm-18 {
		left: 1.125rem !important
	}

	.posmt-sm-18 {
		top: -1.125rem !important
	}

	.posmr-sm-18 {
		right: -1.125rem !important
	}

	.posmb-sm-18 {
		bottom: -1.125rem !important
	}

	.posml-sm-18 {
		left: -1.125rem !important
	}

	.pos-sm-19 {
		top: 1.1875rem !important;
		bottom: 1.1875rem !important
	}

	.pos-sm-19,
	.posx-sm-19 {
		right: 1.1875rem !important;
		left: 1.1875rem !important
	}

	.posy-sm-19 {
		bottom: 1.1875rem !important
	}

	.post-sm-19,
	.posy-sm-19 {
		top: 1.1875rem !important
	}

	.posr-sm-19 {
		right: 1.1875rem !important
	}

	.posb-sm-19 {
		bottom: 1.1875rem !important
	}

	.posl-sm-19 {
		left: 1.1875rem !important
	}

	.posmt-sm-19 {
		top: -1.1875rem !important
	}

	.posmr-sm-19 {
		right: -1.1875rem !important
	}

	.posmb-sm-19 {
		bottom: -1.1875rem !important
	}

	.posml-sm-19 {
		left: -1.1875rem !important
	}

	.pos-sm-20 {
		top: 1.25rem !important;
		bottom: 1.25rem !important
	}

	.pos-sm-20,
	.posx-sm-20 {
		right: 1.25rem !important;
		left: 1.25rem !important
	}

	.posy-sm-20 {
		bottom: 1.25rem !important
	}

	.post-sm-20,
	.posy-sm-20 {
		top: 1.25rem !important
	}

	.posr-sm-20 {
		right: 1.25rem !important
	}

	.posb-sm-20 {
		bottom: 1.25rem !important
	}

	.posl-sm-20 {
		left: 1.25rem !important
	}

	.posmt-sm-20 {
		top: -1.25rem !important
	}

	.posmr-sm-20 {
		right: -1.25rem !important
	}

	.posmb-sm-20 {
		bottom: -1.25rem !important
	}

	.posml-sm-20 {
		left: -1.25rem !important
	}

	.pos-sm-21 {
		top: 1.3125rem !important;
		bottom: 1.3125rem !important
	}

	.pos-sm-21,
	.posx-sm-21 {
		right: 1.3125rem !important;
		left: 1.3125rem !important
	}

	.posy-sm-21 {
		bottom: 1.3125rem !important
	}

	.post-sm-21,
	.posy-sm-21 {
		top: 1.3125rem !important
	}

	.posr-sm-21 {
		right: 1.3125rem !important
	}

	.posb-sm-21 {
		bottom: 1.3125rem !important
	}

	.posl-sm-21 {
		left: 1.3125rem !important
	}

	.posmt-sm-21 {
		top: -1.3125rem !important
	}

	.posmr-sm-21 {
		right: -1.3125rem !important
	}

	.posmb-sm-21 {
		bottom: -1.3125rem !important
	}

	.posml-sm-21 {
		left: -1.3125rem !important
	}

	.pos-sm-22 {
		top: 1.375rem !important;
		bottom: 1.375rem !important
	}

	.pos-sm-22,
	.posx-sm-22 {
		right: 1.375rem !important;
		left: 1.375rem !important
	}

	.posy-sm-22 {
		bottom: 1.375rem !important
	}

	.post-sm-22,
	.posy-sm-22 {
		top: 1.375rem !important
	}

	.posr-sm-22 {
		right: 1.375rem !important
	}

	.posb-sm-22 {
		bottom: 1.375rem !important
	}

	.posl-sm-22 {
		left: 1.375rem !important
	}

	.posmt-sm-22 {
		top: -1.375rem !important
	}

	.posmr-sm-22 {
		right: -1.375rem !important
	}

	.posmb-sm-22 {
		bottom: -1.375rem !important
	}

	.posml-sm-22 {
		left: -1.375rem !important
	}

	.pos-sm-23 {
		top: 1.4375rem !important;
		bottom: 1.4375rem !important
	}

	.pos-sm-23,
	.posx-sm-23 {
		right: 1.4375rem !important;
		left: 1.4375rem !important
	}

	.posy-sm-23 {
		bottom: 1.4375rem !important
	}

	.post-sm-23,
	.posy-sm-23 {
		top: 1.4375rem !important
	}

	.posr-sm-23 {
		right: 1.4375rem !important
	}

	.posb-sm-23 {
		bottom: 1.4375rem !important
	}

	.posl-sm-23 {
		left: 1.4375rem !important
	}

	.posmt-sm-23 {
		top: -1.4375rem !important
	}

	.posmr-sm-23 {
		right: -1.4375rem !important
	}

	.posmb-sm-23 {
		bottom: -1.4375rem !important
	}

	.posml-sm-23 {
		left: -1.4375rem !important
	}

	.pos-sm-24 {
		top: 1.5rem !important;
		bottom: 1.5rem !important
	}

	.pos-sm-24,
	.posx-sm-24 {
		right: 1.5rem !important;
		left: 1.5rem !important
	}

	.posy-sm-24 {
		bottom: 1.5rem !important
	}

	.post-sm-24,
	.posy-sm-24 {
		top: 1.5rem !important
	}

	.posr-sm-24 {
		right: 1.5rem !important
	}

	.posb-sm-24 {
		bottom: 1.5rem !important
	}

	.posl-sm-24 {
		left: 1.5rem !important
	}

	.posmt-sm-24 {
		top: -1.5rem !important
	}

	.posmr-sm-24 {
		right: -1.5rem !important
	}

	.posmb-sm-24 {
		bottom: -1.5rem !important
	}

	.posml-sm-24 {
		left: -1.5rem !important
	}

	.pos-sm-25 {
		top: 1.5625rem !important;
		bottom: 1.5625rem !important
	}

	.pos-sm-25,
	.posx-sm-25 {
		right: 1.5625rem !important;
		left: 1.5625rem !important
	}

	.posy-sm-25 {
		bottom: 1.5625rem !important
	}

	.post-sm-25,
	.posy-sm-25 {
		top: 1.5625rem !important
	}

	.posr-sm-25 {
		right: 1.5625rem !important
	}

	.posb-sm-25 {
		bottom: 1.5625rem !important
	}

	.posl-sm-25 {
		left: 1.5625rem !important
	}

	.posmt-sm-25 {
		top: -1.5625rem !important
	}

	.posmr-sm-25 {
		right: -1.5625rem !important
	}

	.posmb-sm-25 {
		bottom: -1.5625rem !important
	}

	.posml-sm-25 {
		left: -1.5625rem !important
	}

	.pos-sm-26 {
		top: 1.625rem !important;
		bottom: 1.625rem !important
	}

	.pos-sm-26,
	.posx-sm-26 {
		right: 1.625rem !important;
		left: 1.625rem !important
	}

	.posy-sm-26 {
		bottom: 1.625rem !important
	}

	.post-sm-26,
	.posy-sm-26 {
		top: 1.625rem !important
	}

	.posr-sm-26 {
		right: 1.625rem !important
	}

	.posb-sm-26 {
		bottom: 1.625rem !important
	}

	.posl-sm-26 {
		left: 1.625rem !important
	}

	.posmt-sm-26 {
		top: -1.625rem !important
	}

	.posmr-sm-26 {
		right: -1.625rem !important
	}

	.posmb-sm-26 {
		bottom: -1.625rem !important
	}

	.posml-sm-26 {
		left: -1.625rem !important
	}

	.pos-sm-27 {
		top: 1.6875rem !important;
		bottom: 1.6875rem !important
	}

	.pos-sm-27,
	.posx-sm-27 {
		right: 1.6875rem !important;
		left: 1.6875rem !important
	}

	.posy-sm-27 {
		bottom: 1.6875rem !important
	}

	.post-sm-27,
	.posy-sm-27 {
		top: 1.6875rem !important
	}

	.posr-sm-27 {
		right: 1.6875rem !important
	}

	.posb-sm-27 {
		bottom: 1.6875rem !important
	}

	.posl-sm-27 {
		left: 1.6875rem !important
	}

	.posmt-sm-27 {
		top: -1.6875rem !important
	}

	.posmr-sm-27 {
		right: -1.6875rem !important
	}

	.posmb-sm-27 {
		bottom: -1.6875rem !important
	}

	.posml-sm-27 {
		left: -1.6875rem !important
	}

	.pos-sm-28 {
		top: 1.75rem !important;
		bottom: 1.75rem !important
	}

	.pos-sm-28,
	.posx-sm-28 {
		right: 1.75rem !important;
		left: 1.75rem !important
	}

	.posy-sm-28 {
		bottom: 1.75rem !important
	}

	.post-sm-28,
	.posy-sm-28 {
		top: 1.75rem !important
	}

	.posr-sm-28 {
		right: 1.75rem !important
	}

	.posb-sm-28 {
		bottom: 1.75rem !important
	}

	.posl-sm-28 {
		left: 1.75rem !important
	}

	.posmt-sm-28 {
		top: -1.75rem !important
	}

	.posmr-sm-28 {
		right: -1.75rem !important
	}

	.posmb-sm-28 {
		bottom: -1.75rem !important
	}

	.posml-sm-28 {
		left: -1.75rem !important
	}

	.pos-sm-29 {
		top: 1.8125rem !important;
		bottom: 1.8125rem !important
	}

	.pos-sm-29,
	.posx-sm-29 {
		right: 1.8125rem !important;
		left: 1.8125rem !important
	}

	.posy-sm-29 {
		bottom: 1.8125rem !important
	}

	.post-sm-29,
	.posy-sm-29 {
		top: 1.8125rem !important
	}

	.posr-sm-29 {
		right: 1.8125rem !important
	}

	.posb-sm-29 {
		bottom: 1.8125rem !important
	}

	.posl-sm-29 {
		left: 1.8125rem !important
	}

	.posmt-sm-29 {
		top: -1.8125rem !important
	}

	.posmr-sm-29 {
		right: -1.8125rem !important
	}

	.posmb-sm-29 {
		bottom: -1.8125rem !important
	}

	.posml-sm-29 {
		left: -1.8125rem !important
	}

	.pos-sm-30 {
		top: 1.875rem !important;
		bottom: 1.875rem !important
	}

	.pos-sm-30,
	.posx-sm-30 {
		right: 1.875rem !important;
		left: 1.875rem !important
	}

	.posy-sm-30 {
		bottom: 1.875rem !important
	}

	.post-sm-30,
	.posy-sm-30 {
		top: 1.875rem !important
	}

	.posr-sm-30 {
		right: 1.875rem !important
	}

	.posb-sm-30 {
		bottom: 1.875rem !important
	}

	.posl-sm-30 {
		left: 1.875rem !important
	}

	.posmt-sm-30 {
		top: -1.875rem !important
	}

	.posmr-sm-30 {
		right: -1.875rem !important
	}

	.posmb-sm-30 {
		bottom: -1.875rem !important
	}

	.posml-sm-30 {
		left: -1.875rem !important
	}

	.pos-sm-31 {
		top: 1.9375rem !important;
		bottom: 1.9375rem !important
	}

	.pos-sm-31,
	.posx-sm-31 {
		right: 1.9375rem !important;
		left: 1.9375rem !important
	}

	.posy-sm-31 {
		bottom: 1.9375rem !important
	}

	.post-sm-31,
	.posy-sm-31 {
		top: 1.9375rem !important
	}

	.posr-sm-31 {
		right: 1.9375rem !important
	}

	.posb-sm-31 {
		bottom: 1.9375rem !important
	}

	.posl-sm-31 {
		left: 1.9375rem !important
	}

	.posmt-sm-31 {
		top: -1.9375rem !important
	}

	.posmr-sm-31 {
		right: -1.9375rem !important
	}

	.posmb-sm-31 {
		bottom: -1.9375rem !important
	}

	.posml-sm-31 {
		left: -1.9375rem !important
	}

	.pos-sm-32 {
		top: 2rem !important;
		bottom: 2rem !important
	}

	.pos-sm-32,
	.posx-sm-32 {
		right: 2rem !important;
		left: 2rem !important
	}

	.posy-sm-32 {
		bottom: 2rem !important
	}

	.post-sm-32,
	.posy-sm-32 {
		top: 2rem !important
	}

	.posr-sm-32 {
		right: 2rem !important
	}

	.posb-sm-32 {
		bottom: 2rem !important
	}

	.posl-sm-32 {
		left: 2rem !important
	}

	.posmt-sm-32 {
		top: -2rem !important
	}

	.posmr-sm-32 {
		right: -2rem !important
	}

	.posmb-sm-32 {
		bottom: -2rem !important
	}

	.posml-sm-32 {
		left: -2rem !important
	}

	.pos-sm-33 {
		top: 2.0625rem !important;
		bottom: 2.0625rem !important
	}

	.pos-sm-33,
	.posx-sm-33 {
		right: 2.0625rem !important;
		left: 2.0625rem !important
	}

	.posy-sm-33 {
		bottom: 2.0625rem !important
	}

	.post-sm-33,
	.posy-sm-33 {
		top: 2.0625rem !important
	}

	.posr-sm-33 {
		right: 2.0625rem !important
	}

	.posb-sm-33 {
		bottom: 2.0625rem !important
	}

	.posl-sm-33 {
		left: 2.0625rem !important
	}

	.posmt-sm-33 {
		top: -2.0625rem !important
	}

	.posmr-sm-33 {
		right: -2.0625rem !important
	}

	.posmb-sm-33 {
		bottom: -2.0625rem !important
	}

	.posml-sm-33 {
		left: -2.0625rem !important
	}

	.pos-sm-34 {
		top: 2.125rem !important;
		bottom: 2.125rem !important
	}

	.pos-sm-34,
	.posx-sm-34 {
		right: 2.125rem !important;
		left: 2.125rem !important
	}

	.posy-sm-34 {
		bottom: 2.125rem !important
	}

	.post-sm-34,
	.posy-sm-34 {
		top: 2.125rem !important
	}

	.posr-sm-34 {
		right: 2.125rem !important
	}

	.posb-sm-34 {
		bottom: 2.125rem !important
	}

	.posl-sm-34 {
		left: 2.125rem !important
	}

	.posmt-sm-34 {
		top: -2.125rem !important
	}

	.posmr-sm-34 {
		right: -2.125rem !important
	}

	.posmb-sm-34 {
		bottom: -2.125rem !important
	}

	.posml-sm-34 {
		left: -2.125rem !important
	}

	.pos-sm-35 {
		top: 2.1875rem !important;
		bottom: 2.1875rem !important
	}

	.pos-sm-35,
	.posx-sm-35 {
		right: 2.1875rem !important;
		left: 2.1875rem !important
	}

	.posy-sm-35 {
		bottom: 2.1875rem !important
	}

	.post-sm-35,
	.posy-sm-35 {
		top: 2.1875rem !important
	}

	.posr-sm-35 {
		right: 2.1875rem !important
	}

	.posb-sm-35 {
		bottom: 2.1875rem !important
	}

	.posl-sm-35 {
		left: 2.1875rem !important
	}

	.posmt-sm-35 {
		top: -2.1875rem !important
	}

	.posmr-sm-35 {
		right: -2.1875rem !important
	}

	.posmb-sm-35 {
		bottom: -2.1875rem !important
	}

	.posml-sm-35 {
		left: -2.1875rem !important
	}

	.pos-sm-36 {
		top: 2.25rem !important;
		bottom: 2.25rem !important
	}

	.pos-sm-36,
	.posx-sm-36 {
		right: 2.25rem !important;
		left: 2.25rem !important
	}

	.posy-sm-36 {
		bottom: 2.25rem !important
	}

	.post-sm-36,
	.posy-sm-36 {
		top: 2.25rem !important
	}

	.posr-sm-36 {
		right: 2.25rem !important
	}

	.posb-sm-36 {
		bottom: 2.25rem !important
	}

	.posl-sm-36 {
		left: 2.25rem !important
	}

	.posmt-sm-36 {
		top: -2.25rem !important
	}

	.posmr-sm-36 {
		right: -2.25rem !important
	}

	.posmb-sm-36 {
		bottom: -2.25rem !important
	}

	.posml-sm-36 {
		left: -2.25rem !important
	}

	.pos-sm-37 {
		top: 2.3125rem !important;
		bottom: 2.3125rem !important
	}

	.pos-sm-37,
	.posx-sm-37 {
		right: 2.3125rem !important;
		left: 2.3125rem !important
	}

	.posy-sm-37 {
		bottom: 2.3125rem !important
	}

	.post-sm-37,
	.posy-sm-37 {
		top: 2.3125rem !important
	}

	.posr-sm-37 {
		right: 2.3125rem !important
	}

	.posb-sm-37 {
		bottom: 2.3125rem !important
	}

	.posl-sm-37 {
		left: 2.3125rem !important
	}

	.posmt-sm-37 {
		top: -2.3125rem !important
	}

	.posmr-sm-37 {
		right: -2.3125rem !important
	}

	.posmb-sm-37 {
		bottom: -2.3125rem !important
	}

	.posml-sm-37 {
		left: -2.3125rem !important
	}

	.pos-sm-38 {
		top: 2.375rem !important;
		bottom: 2.375rem !important
	}

	.pos-sm-38,
	.posx-sm-38 {
		right: 2.375rem !important;
		left: 2.375rem !important
	}

	.posy-sm-38 {
		bottom: 2.375rem !important
	}

	.post-sm-38,
	.posy-sm-38 {
		top: 2.375rem !important
	}

	.posr-sm-38 {
		right: 2.375rem !important
	}

	.posb-sm-38 {
		bottom: 2.375rem !important
	}

	.posl-sm-38 {
		left: 2.375rem !important
	}

	.posmt-sm-38 {
		top: -2.375rem !important
	}

	.posmr-sm-38 {
		right: -2.375rem !important
	}

	.posmb-sm-38 {
		bottom: -2.375rem !important
	}

	.posml-sm-38 {
		left: -2.375rem !important
	}

	.pos-sm-39 {
		top: 2.4375rem !important;
		bottom: 2.4375rem !important
	}

	.pos-sm-39,
	.posx-sm-39 {
		right: 2.4375rem !important;
		left: 2.4375rem !important
	}

	.posy-sm-39 {
		bottom: 2.4375rem !important
	}

	.post-sm-39,
	.posy-sm-39 {
		top: 2.4375rem !important
	}

	.posr-sm-39 {
		right: 2.4375rem !important
	}

	.posb-sm-39 {
		bottom: 2.4375rem !important
	}

	.posl-sm-39 {
		left: 2.4375rem !important
	}

	.posmt-sm-39 {
		top: -2.4375rem !important
	}

	.posmr-sm-39 {
		right: -2.4375rem !important
	}

	.posmb-sm-39 {
		bottom: -2.4375rem !important
	}

	.posml-sm-39 {
		left: -2.4375rem !important
	}

	.pos-sm-40 {
		top: 2.5rem !important;
		bottom: 2.5rem !important
	}

	.pos-sm-40,
	.posx-sm-40 {
		right: 2.5rem !important;
		left: 2.5rem !important
	}

	.posy-sm-40 {
		bottom: 2.5rem !important
	}

	.post-sm-40,
	.posy-sm-40 {
		top: 2.5rem !important
	}

	.posr-sm-40 {
		right: 2.5rem !important
	}

	.posb-sm-40 {
		bottom: 2.5rem !important
	}

	.posl-sm-40 {
		left: 2.5rem !important
	}

	.posmt-sm-40 {
		top: -2.5rem !important
	}

	.posmr-sm-40 {
		right: -2.5rem !important
	}

	.posmb-sm-40 {
		bottom: -2.5rem !important
	}

	.posml-sm-40 {
		left: -2.5rem !important
	}

	.pos-sm-41 {
		top: 2.5625rem !important;
		bottom: 2.5625rem !important
	}

	.pos-sm-41,
	.posx-sm-41 {
		right: 2.5625rem !important;
		left: 2.5625rem !important
	}

	.posy-sm-41 {
		bottom: 2.5625rem !important
	}

	.post-sm-41,
	.posy-sm-41 {
		top: 2.5625rem !important
	}

	.posr-sm-41 {
		right: 2.5625rem !important
	}

	.posb-sm-41 {
		bottom: 2.5625rem !important
	}

	.posl-sm-41 {
		left: 2.5625rem !important
	}

	.posmt-sm-41 {
		top: -2.5625rem !important
	}

	.posmr-sm-41 {
		right: -2.5625rem !important
	}

	.posmb-sm-41 {
		bottom: -2.5625rem !important
	}

	.posml-sm-41 {
		left: -2.5625rem !important
	}

	.pos-sm-42 {
		top: 2.625rem !important;
		bottom: 2.625rem !important
	}

	.pos-sm-42,
	.posx-sm-42 {
		right: 2.625rem !important;
		left: 2.625rem !important
	}

	.posy-sm-42 {
		bottom: 2.625rem !important
	}

	.post-sm-42,
	.posy-sm-42 {
		top: 2.625rem !important
	}

	.posr-sm-42 {
		right: 2.625rem !important
	}

	.posb-sm-42 {
		bottom: 2.625rem !important
	}

	.posl-sm-42 {
		left: 2.625rem !important
	}

	.posmt-sm-42 {
		top: -2.625rem !important
	}

	.posmr-sm-42 {
		right: -2.625rem !important
	}

	.posmb-sm-42 {
		bottom: -2.625rem !important
	}

	.posml-sm-42 {
		left: -2.625rem !important
	}

	.pos-sm-43 {
		top: 2.6875rem !important;
		bottom: 2.6875rem !important
	}

	.pos-sm-43,
	.posx-sm-43 {
		right: 2.6875rem !important;
		left: 2.6875rem !important
	}

	.posy-sm-43 {
		bottom: 2.6875rem !important
	}

	.post-sm-43,
	.posy-sm-43 {
		top: 2.6875rem !important
	}

	.posr-sm-43 {
		right: 2.6875rem !important
	}

	.posb-sm-43 {
		bottom: 2.6875rem !important
	}

	.posl-sm-43 {
		left: 2.6875rem !important
	}

	.posmt-sm-43 {
		top: -2.6875rem !important
	}

	.posmr-sm-43 {
		right: -2.6875rem !important
	}

	.posmb-sm-43 {
		bottom: -2.6875rem !important
	}

	.posml-sm-43 {
		left: -2.6875rem !important
	}

	.pos-sm-44 {
		top: 2.75rem !important;
		bottom: 2.75rem !important
	}

	.pos-sm-44,
	.posx-sm-44 {
		right: 2.75rem !important;
		left: 2.75rem !important
	}

	.posy-sm-44 {
		bottom: 2.75rem !important
	}

	.post-sm-44,
	.posy-sm-44 {
		top: 2.75rem !important
	}

	.posr-sm-44 {
		right: 2.75rem !important
	}

	.posb-sm-44 {
		bottom: 2.75rem !important
	}

	.posl-sm-44 {
		left: 2.75rem !important
	}

	.posmt-sm-44 {
		top: -2.75rem !important
	}

	.posmr-sm-44 {
		right: -2.75rem !important
	}

	.posmb-sm-44 {
		bottom: -2.75rem !important
	}

	.posml-sm-44 {
		left: -2.75rem !important
	}

	.pos-sm-45 {
		top: 2.8125rem !important;
		bottom: 2.8125rem !important
	}

	.pos-sm-45,
	.posx-sm-45 {
		right: 2.8125rem !important;
		left: 2.8125rem !important
	}

	.posy-sm-45 {
		bottom: 2.8125rem !important
	}

	.post-sm-45,
	.posy-sm-45 {
		top: 2.8125rem !important
	}

	.posr-sm-45 {
		right: 2.8125rem !important
	}

	.posb-sm-45 {
		bottom: 2.8125rem !important
	}

	.posl-sm-45 {
		left: 2.8125rem !important
	}

	.posmt-sm-45 {
		top: -2.8125rem !important
	}

	.posmr-sm-45 {
		right: -2.8125rem !important
	}

	.posmb-sm-45 {
		bottom: -2.8125rem !important
	}

	.posml-sm-45 {
		left: -2.8125rem !important
	}

	.pos-sm-46 {
		top: 2.875rem !important;
		bottom: 2.875rem !important
	}

	.pos-sm-46,
	.posx-sm-46 {
		right: 2.875rem !important;
		left: 2.875rem !important
	}

	.posy-sm-46 {
		bottom: 2.875rem !important
	}

	.post-sm-46,
	.posy-sm-46 {
		top: 2.875rem !important
	}

	.posr-sm-46 {
		right: 2.875rem !important
	}

	.posb-sm-46 {
		bottom: 2.875rem !important
	}

	.posl-sm-46 {
		left: 2.875rem !important
	}

	.posmt-sm-46 {
		top: -2.875rem !important
	}

	.posmr-sm-46 {
		right: -2.875rem !important
	}

	.posmb-sm-46 {
		bottom: -2.875rem !important
	}

	.posml-sm-46 {
		left: -2.875rem !important
	}

	.pos-sm-47 {
		top: 2.9375rem !important;
		bottom: 2.9375rem !important
	}

	.pos-sm-47,
	.posx-sm-47 {
		right: 2.9375rem !important;
		left: 2.9375rem !important
	}

	.posy-sm-47 {
		bottom: 2.9375rem !important
	}

	.post-sm-47,
	.posy-sm-47 {
		top: 2.9375rem !important
	}

	.posr-sm-47 {
		right: 2.9375rem !important
	}

	.posb-sm-47 {
		bottom: 2.9375rem !important
	}

	.posl-sm-47 {
		left: 2.9375rem !important
	}

	.posmt-sm-47 {
		top: -2.9375rem !important
	}

	.posmr-sm-47 {
		right: -2.9375rem !important
	}

	.posmb-sm-47 {
		bottom: -2.9375rem !important
	}

	.posml-sm-47 {
		left: -2.9375rem !important
	}

	.pos-sm-48 {
		top: 3rem !important;
		bottom: 3rem !important
	}

	.pos-sm-48,
	.posx-sm-48 {
		right: 3rem !important;
		left: 3rem !important
	}

	.posy-sm-48 {
		bottom: 3rem !important
	}

	.post-sm-48,
	.posy-sm-48 {
		top: 3rem !important
	}

	.posr-sm-48 {
		right: 3rem !important
	}

	.posb-sm-48 {
		bottom: 3rem !important
	}

	.posl-sm-48 {
		left: 3rem !important
	}

	.posmt-sm-48 {
		top: -3rem !important
	}

	.posmr-sm-48 {
		right: -3rem !important
	}

	.posmb-sm-48 {
		bottom: -3rem !important
	}

	.posml-sm-48 {
		left: -3rem !important
	}

	.pos-sm-49 {
		top: 3.0625rem !important;
		bottom: 3.0625rem !important
	}

	.pos-sm-49,
	.posx-sm-49 {
		right: 3.0625rem !important;
		left: 3.0625rem !important
	}

	.posy-sm-49 {
		bottom: 3.0625rem !important
	}

	.post-sm-49,
	.posy-sm-49 {
		top: 3.0625rem !important
	}

	.posr-sm-49 {
		right: 3.0625rem !important
	}

	.posb-sm-49 {
		bottom: 3.0625rem !important
	}

	.posl-sm-49 {
		left: 3.0625rem !important
	}

	.posmt-sm-49 {
		top: -3.0625rem !important
	}

	.posmr-sm-49 {
		right: -3.0625rem !important
	}

	.posmb-sm-49 {
		bottom: -3.0625rem !important
	}

	.posml-sm-49 {
		left: -3.0625rem !important
	}

	.pos-sm-50 {
		top: 3.125rem !important;
		bottom: 3.125rem !important
	}

	.pos-sm-50,
	.posx-sm-50 {
		right: 3.125rem !important;
		left: 3.125rem !important
	}

	.posy-sm-50 {
		bottom: 3.125rem !important
	}

	.post-sm-50,
	.posy-sm-50 {
		top: 3.125rem !important
	}

	.posr-sm-50 {
		right: 3.125rem !important
	}

	.posb-sm-50 {
		bottom: 3.125rem !important
	}

	.posl-sm-50 {
		left: 3.125rem !important
	}

	.posmt-sm-50 {
		top: -3.125rem !important
	}

	.posmr-sm-50 {
		right: -3.125rem !important
	}

	.posmb-sm-50 {
		bottom: -3.125rem !important
	}

	.posml-sm-50 {
		left: -3.125rem !important
	}

	.pos-sm-51 {
		top: 3.1875rem !important;
		bottom: 3.1875rem !important
	}

	.pos-sm-51,
	.posx-sm-51 {
		right: 3.1875rem !important;
		left: 3.1875rem !important
	}

	.posy-sm-51 {
		bottom: 3.1875rem !important
	}

	.post-sm-51,
	.posy-sm-51 {
		top: 3.1875rem !important
	}

	.posr-sm-51 {
		right: 3.1875rem !important
	}

	.posb-sm-51 {
		bottom: 3.1875rem !important
	}

	.posl-sm-51 {
		left: 3.1875rem !important
	}

	.posmt-sm-51 {
		top: -3.1875rem !important
	}

	.posmr-sm-51 {
		right: -3.1875rem !important
	}

	.posmb-sm-51 {
		bottom: -3.1875rem !important
	}

	.posml-sm-51 {
		left: -3.1875rem !important
	}

	.pos-sm-52 {
		top: 3.25rem !important;
		bottom: 3.25rem !important
	}

	.pos-sm-52,
	.posx-sm-52 {
		right: 3.25rem !important;
		left: 3.25rem !important
	}

	.posy-sm-52 {
		bottom: 3.25rem !important
	}

	.post-sm-52,
	.posy-sm-52 {
		top: 3.25rem !important
	}

	.posr-sm-52 {
		right: 3.25rem !important
	}

	.posb-sm-52 {
		bottom: 3.25rem !important
	}

	.posl-sm-52 {
		left: 3.25rem !important
	}

	.posmt-sm-52 {
		top: -3.25rem !important
	}

	.posmr-sm-52 {
		right: -3.25rem !important
	}

	.posmb-sm-52 {
		bottom: -3.25rem !important
	}

	.posml-sm-52 {
		left: -3.25rem !important
	}

	.pos-sm-53 {
		top: 3.3125rem !important;
		bottom: 3.3125rem !important
	}

	.pos-sm-53,
	.posx-sm-53 {
		right: 3.3125rem !important;
		left: 3.3125rem !important
	}

	.posy-sm-53 {
		bottom: 3.3125rem !important
	}

	.post-sm-53,
	.posy-sm-53 {
		top: 3.3125rem !important
	}

	.posr-sm-53 {
		right: 3.3125rem !important
	}

	.posb-sm-53 {
		bottom: 3.3125rem !important
	}

	.posl-sm-53 {
		left: 3.3125rem !important
	}

	.posmt-sm-53 {
		top: -3.3125rem !important
	}

	.posmr-sm-53 {
		right: -3.3125rem !important
	}

	.posmb-sm-53 {
		bottom: -3.3125rem !important
	}

	.posml-sm-53 {
		left: -3.3125rem !important
	}

	.pos-sm-54 {
		top: 3.375rem !important;
		bottom: 3.375rem !important
	}

	.pos-sm-54,
	.posx-sm-54 {
		right: 3.375rem !important;
		left: 3.375rem !important
	}

	.posy-sm-54 {
		bottom: 3.375rem !important
	}

	.post-sm-54,
	.posy-sm-54 {
		top: 3.375rem !important
	}

	.posr-sm-54 {
		right: 3.375rem !important
	}

	.posb-sm-54 {
		bottom: 3.375rem !important
	}

	.posl-sm-54 {
		left: 3.375rem !important
	}

	.posmt-sm-54 {
		top: -3.375rem !important
	}

	.posmr-sm-54 {
		right: -3.375rem !important
	}

	.posmb-sm-54 {
		bottom: -3.375rem !important
	}

	.posml-sm-54 {
		left: -3.375rem !important
	}

	.pos-sm-55 {
		top: 3.4375rem !important;
		bottom: 3.4375rem !important
	}

	.pos-sm-55,
	.posx-sm-55 {
		right: 3.4375rem !important;
		left: 3.4375rem !important
	}

	.posy-sm-55 {
		bottom: 3.4375rem !important
	}

	.post-sm-55,
	.posy-sm-55 {
		top: 3.4375rem !important
	}

	.posr-sm-55 {
		right: 3.4375rem !important
	}

	.posb-sm-55 {
		bottom: 3.4375rem !important
	}

	.posl-sm-55 {
		left: 3.4375rem !important
	}

	.posmt-sm-55 {
		top: -3.4375rem !important
	}

	.posmr-sm-55 {
		right: -3.4375rem !important
	}

	.posmb-sm-55 {
		bottom: -3.4375rem !important
	}

	.posml-sm-55 {
		left: -3.4375rem !important
	}

	.pos-sm-56 {
		top: 3.5rem !important;
		bottom: 3.5rem !important
	}

	.pos-sm-56,
	.posx-sm-56 {
		right: 3.5rem !important;
		left: 3.5rem !important
	}

	.posy-sm-56 {
		bottom: 3.5rem !important
	}

	.post-sm-56,
	.posy-sm-56 {
		top: 3.5rem !important
	}

	.posr-sm-56 {
		right: 3.5rem !important
	}

	.posb-sm-56 {
		bottom: 3.5rem !important
	}

	.posl-sm-56 {
		left: 3.5rem !important
	}

	.posmt-sm-56 {
		top: -3.5rem !important
	}

	.posmr-sm-56 {
		right: -3.5rem !important
	}

	.posmb-sm-56 {
		bottom: -3.5rem !important
	}

	.posml-sm-56 {
		left: -3.5rem !important
	}

	.pos-sm-57 {
		top: 3.5625rem !important;
		bottom: 3.5625rem !important
	}

	.pos-sm-57,
	.posx-sm-57 {
		right: 3.5625rem !important;
		left: 3.5625rem !important
	}

	.posy-sm-57 {
		bottom: 3.5625rem !important
	}

	.post-sm-57,
	.posy-sm-57 {
		top: 3.5625rem !important
	}

	.posr-sm-57 {
		right: 3.5625rem !important
	}

	.posb-sm-57 {
		bottom: 3.5625rem !important
	}

	.posl-sm-57 {
		left: 3.5625rem !important
	}

	.posmt-sm-57 {
		top: -3.5625rem !important
	}

	.posmr-sm-57 {
		right: -3.5625rem !important
	}

	.posmb-sm-57 {
		bottom: -3.5625rem !important
	}

	.posml-sm-57 {
		left: -3.5625rem !important
	}

	.pos-sm-58 {
		top: 3.625rem !important;
		bottom: 3.625rem !important
	}

	.pos-sm-58,
	.posx-sm-58 {
		right: 3.625rem !important;
		left: 3.625rem !important
	}

	.posy-sm-58 {
		bottom: 3.625rem !important
	}

	.post-sm-58,
	.posy-sm-58 {
		top: 3.625rem !important
	}

	.posr-sm-58 {
		right: 3.625rem !important
	}

	.posb-sm-58 {
		bottom: 3.625rem !important
	}

	.posl-sm-58 {
		left: 3.625rem !important
	}

	.posmt-sm-58 {
		top: -3.625rem !important
	}

	.posmr-sm-58 {
		right: -3.625rem !important
	}

	.posmb-sm-58 {
		bottom: -3.625rem !important
	}

	.posml-sm-58 {
		left: -3.625rem !important
	}

	.pos-sm-59 {
		top: 3.6875rem !important;
		bottom: 3.6875rem !important
	}

	.pos-sm-59,
	.posx-sm-59 {
		right: 3.6875rem !important;
		left: 3.6875rem !important
	}

	.posy-sm-59 {
		bottom: 3.6875rem !important
	}

	.post-sm-59,
	.posy-sm-59 {
		top: 3.6875rem !important
	}

	.posr-sm-59 {
		right: 3.6875rem !important
	}

	.posb-sm-59 {
		bottom: 3.6875rem !important
	}

	.posl-sm-59 {
		left: 3.6875rem !important
	}

	.posmt-sm-59 {
		top: -3.6875rem !important
	}

	.posmr-sm-59 {
		right: -3.6875rem !important
	}

	.posmb-sm-59 {
		bottom: -3.6875rem !important
	}

	.posml-sm-59 {
		left: -3.6875rem !important
	}

	.pos-sm-60 {
		top: 3.75rem !important;
		bottom: 3.75rem !important
	}

	.pos-sm-60,
	.posx-sm-60 {
		right: 3.75rem !important;
		left: 3.75rem !important
	}

	.posy-sm-60 {
		bottom: 3.75rem !important
	}

	.post-sm-60,
	.posy-sm-60 {
		top: 3.75rem !important
	}

	.posr-sm-60 {
		right: 3.75rem !important
	}

	.posb-sm-60 {
		bottom: 3.75rem !important
	}

	.posl-sm-60 {
		left: 3.75rem !important
	}

	.posmt-sm-60 {
		top: -3.75rem !important
	}

	.posmr-sm-60 {
		right: -3.75rem !important
	}

	.posmb-sm-60 {
		bottom: -3.75rem !important
	}

	.posml-sm-60 {
		left: -3.75rem !important
	}

	.pos-sm-61 {
		top: 3.8125rem !important;
		bottom: 3.8125rem !important
	}

	.pos-sm-61,
	.posx-sm-61 {
		right: 3.8125rem !important;
		left: 3.8125rem !important
	}

	.posy-sm-61 {
		bottom: 3.8125rem !important
	}

	.post-sm-61,
	.posy-sm-61 {
		top: 3.8125rem !important
	}

	.posr-sm-61 {
		right: 3.8125rem !important
	}

	.posb-sm-61 {
		bottom: 3.8125rem !important
	}

	.posl-sm-61 {
		left: 3.8125rem !important
	}

	.posmt-sm-61 {
		top: -3.8125rem !important
	}

	.posmr-sm-61 {
		right: -3.8125rem !important
	}

	.posmb-sm-61 {
		bottom: -3.8125rem !important
	}

	.posml-sm-61 {
		left: -3.8125rem !important
	}

	.pos-sm-62 {
		top: 3.875rem !important;
		bottom: 3.875rem !important
	}

	.pos-sm-62,
	.posx-sm-62 {
		right: 3.875rem !important;
		left: 3.875rem !important
	}

	.posy-sm-62 {
		bottom: 3.875rem !important
	}

	.post-sm-62,
	.posy-sm-62 {
		top: 3.875rem !important
	}

	.posr-sm-62 {
		right: 3.875rem !important
	}

	.posb-sm-62 {
		bottom: 3.875rem !important
	}

	.posl-sm-62 {
		left: 3.875rem !important
	}

	.posmt-sm-62 {
		top: -3.875rem !important
	}

	.posmr-sm-62 {
		right: -3.875rem !important
	}

	.posmb-sm-62 {
		bottom: -3.875rem !important
	}

	.posml-sm-62 {
		left: -3.875rem !important
	}

	.pos-sm-63 {
		top: 3.9375rem !important;
		bottom: 3.9375rem !important
	}

	.pos-sm-63,
	.posx-sm-63 {
		right: 3.9375rem !important;
		left: 3.9375rem !important
	}

	.posy-sm-63 {
		bottom: 3.9375rem !important
	}

	.post-sm-63,
	.posy-sm-63 {
		top: 3.9375rem !important
	}

	.posr-sm-63 {
		right: 3.9375rem !important
	}

	.posb-sm-63 {
		bottom: 3.9375rem !important
	}

	.posl-sm-63 {
		left: 3.9375rem !important
	}

	.posmt-sm-63 {
		top: -3.9375rem !important
	}

	.posmr-sm-63 {
		right: -3.9375rem !important
	}

	.posmb-sm-63 {
		bottom: -3.9375rem !important
	}

	.posml-sm-63 {
		left: -3.9375rem !important
	}

	.pos-sm-64 {
		top: 4rem !important;
		bottom: 4rem !important
	}

	.pos-sm-64,
	.posx-sm-64 {
		right: 4rem !important;
		left: 4rem !important
	}

	.posy-sm-64 {
		bottom: 4rem !important
	}

	.post-sm-64,
	.posy-sm-64 {
		top: 4rem !important
	}

	.posr-sm-64 {
		right: 4rem !important
	}

	.posb-sm-64 {
		bottom: 4rem !important
	}

	.posl-sm-64 {
		left: 4rem !important
	}

	.posmt-sm-64 {
		top: -4rem !important
	}

	.posmr-sm-64 {
		right: -4rem !important
	}

	.posmb-sm-64 {
		bottom: -4rem !important
	}

	.posml-sm-64 {
		left: -4rem !important
	}

	.pos-sm-65 {
		top: 4.0625rem !important;
		bottom: 4.0625rem !important
	}

	.pos-sm-65,
	.posx-sm-65 {
		right: 4.0625rem !important;
		left: 4.0625rem !important
	}

	.posy-sm-65 {
		bottom: 4.0625rem !important
	}

	.post-sm-65,
	.posy-sm-65 {
		top: 4.0625rem !important
	}

	.posr-sm-65 {
		right: 4.0625rem !important
	}

	.posb-sm-65 {
		bottom: 4.0625rem !important
	}

	.posl-sm-65 {
		left: 4.0625rem !important
	}

	.posmt-sm-65 {
		top: -4.0625rem !important
	}

	.posmr-sm-65 {
		right: -4.0625rem !important
	}

	.posmb-sm-65 {
		bottom: -4.0625rem !important
	}

	.posml-sm-65 {
		left: -4.0625rem !important
	}

	.pos-sm-66 {
		top: 4.125rem !important;
		bottom: 4.125rem !important
	}

	.pos-sm-66,
	.posx-sm-66 {
		right: 4.125rem !important;
		left: 4.125rem !important
	}

	.posy-sm-66 {
		bottom: 4.125rem !important
	}

	.post-sm-66,
	.posy-sm-66 {
		top: 4.125rem !important
	}

	.posr-sm-66 {
		right: 4.125rem !important
	}

	.posb-sm-66 {
		bottom: 4.125rem !important
	}

	.posl-sm-66 {
		left: 4.125rem !important
	}

	.posmt-sm-66 {
		top: -4.125rem !important
	}

	.posmr-sm-66 {
		right: -4.125rem !important
	}

	.posmb-sm-66 {
		bottom: -4.125rem !important
	}

	.posml-sm-66 {
		left: -4.125rem !important
	}

	.pos-sm-67 {
		top: 4.1875rem !important;
		bottom: 4.1875rem !important
	}

	.pos-sm-67,
	.posx-sm-67 {
		right: 4.1875rem !important;
		left: 4.1875rem !important
	}

	.posy-sm-67 {
		bottom: 4.1875rem !important
	}

	.post-sm-67,
	.posy-sm-67 {
		top: 4.1875rem !important
	}

	.posr-sm-67 {
		right: 4.1875rem !important
	}

	.posb-sm-67 {
		bottom: 4.1875rem !important
	}

	.posl-sm-67 {
		left: 4.1875rem !important
	}

	.posmt-sm-67 {
		top: -4.1875rem !important
	}

	.posmr-sm-67 {
		right: -4.1875rem !important
	}

	.posmb-sm-67 {
		bottom: -4.1875rem !important
	}

	.posml-sm-67 {
		left: -4.1875rem !important
	}

	.pos-sm-68 {
		top: 4.25rem !important;
		bottom: 4.25rem !important
	}

	.pos-sm-68,
	.posx-sm-68 {
		right: 4.25rem !important;
		left: 4.25rem !important
	}

	.posy-sm-68 {
		bottom: 4.25rem !important
	}

	.post-sm-68,
	.posy-sm-68 {
		top: 4.25rem !important
	}

	.posr-sm-68 {
		right: 4.25rem !important
	}

	.posb-sm-68 {
		bottom: 4.25rem !important
	}

	.posl-sm-68 {
		left: 4.25rem !important
	}

	.posmt-sm-68 {
		top: -4.25rem !important
	}

	.posmr-sm-68 {
		right: -4.25rem !important
	}

	.posmb-sm-68 {
		bottom: -4.25rem !important
	}

	.posml-sm-68 {
		left: -4.25rem !important
	}

	.pos-sm-69 {
		top: 4.3125rem !important;
		bottom: 4.3125rem !important
	}

	.pos-sm-69,
	.posx-sm-69 {
		right: 4.3125rem !important;
		left: 4.3125rem !important
	}

	.posy-sm-69 {
		bottom: 4.3125rem !important
	}

	.post-sm-69,
	.posy-sm-69 {
		top: 4.3125rem !important
	}

	.posr-sm-69 {
		right: 4.3125rem !important
	}

	.posb-sm-69 {
		bottom: 4.3125rem !important
	}

	.posl-sm-69 {
		left: 4.3125rem !important
	}

	.posmt-sm-69 {
		top: -4.3125rem !important
	}

	.posmr-sm-69 {
		right: -4.3125rem !important
	}

	.posmb-sm-69 {
		bottom: -4.3125rem !important
	}

	.posml-sm-69 {
		left: -4.3125rem !important
	}

	.pos-sm-70 {
		top: 4.375rem !important;
		bottom: 4.375rem !important
	}

	.pos-sm-70,
	.posx-sm-70 {
		right: 4.375rem !important;
		left: 4.375rem !important
	}

	.posy-sm-70 {
		bottom: 4.375rem !important
	}

	.post-sm-70,
	.posy-sm-70 {
		top: 4.375rem !important
	}

	.posr-sm-70 {
		right: 4.375rem !important
	}

	.posb-sm-70 {
		bottom: 4.375rem !important
	}

	.posl-sm-70 {
		left: 4.375rem !important
	}

	.posmt-sm-70 {
		top: -4.375rem !important
	}

	.posmr-sm-70 {
		right: -4.375rem !important
	}

	.posmb-sm-70 {
		bottom: -4.375rem !important
	}

	.posml-sm-70 {
		left: -4.375rem !important
	}

	.pos-sm-71 {
		top: 4.4375rem !important;
		bottom: 4.4375rem !important
	}

	.pos-sm-71,
	.posx-sm-71 {
		right: 4.4375rem !important;
		left: 4.4375rem !important
	}

	.posy-sm-71 {
		bottom: 4.4375rem !important
	}

	.post-sm-71,
	.posy-sm-71 {
		top: 4.4375rem !important
	}

	.posr-sm-71 {
		right: 4.4375rem !important
	}

	.posb-sm-71 {
		bottom: 4.4375rem !important
	}

	.posl-sm-71 {
		left: 4.4375rem !important
	}

	.posmt-sm-71 {
		top: -4.4375rem !important
	}

	.posmr-sm-71 {
		right: -4.4375rem !important
	}

	.posmb-sm-71 {
		bottom: -4.4375rem !important
	}

	.posml-sm-71 {
		left: -4.4375rem !important
	}

	.pos-sm-72 {
		top: 4.5rem !important;
		bottom: 4.5rem !important
	}

	.pos-sm-72,
	.posx-sm-72 {
		right: 4.5rem !important;
		left: 4.5rem !important
	}

	.posy-sm-72 {
		bottom: 4.5rem !important
	}

	.post-sm-72,
	.posy-sm-72 {
		top: 4.5rem !important
	}

	.posr-sm-72 {
		right: 4.5rem !important
	}

	.posb-sm-72 {
		bottom: 4.5rem !important
	}

	.posl-sm-72 {
		left: 4.5rem !important
	}

	.posmt-sm-72 {
		top: -4.5rem !important
	}

	.posmr-sm-72 {
		right: -4.5rem !important
	}

	.posmb-sm-72 {
		bottom: -4.5rem !important
	}

	.posml-sm-72 {
		left: -4.5rem !important
	}

	.pos-sm-73 {
		top: 4.5625rem !important;
		bottom: 4.5625rem !important
	}

	.pos-sm-73,
	.posx-sm-73 {
		right: 4.5625rem !important;
		left: 4.5625rem !important
	}

	.posy-sm-73 {
		bottom: 4.5625rem !important
	}

	.post-sm-73,
	.posy-sm-73 {
		top: 4.5625rem !important
	}

	.posr-sm-73 {
		right: 4.5625rem !important
	}

	.posb-sm-73 {
		bottom: 4.5625rem !important
	}

	.posl-sm-73 {
		left: 4.5625rem !important
	}

	.posmt-sm-73 {
		top: -4.5625rem !important
	}

	.posmr-sm-73 {
		right: -4.5625rem !important
	}

	.posmb-sm-73 {
		bottom: -4.5625rem !important
	}

	.posml-sm-73 {
		left: -4.5625rem !important
	}

	.pos-sm-74 {
		top: 4.625rem !important;
		bottom: 4.625rem !important
	}

	.pos-sm-74,
	.posx-sm-74 {
		right: 4.625rem !important;
		left: 4.625rem !important
	}

	.posy-sm-74 {
		bottom: 4.625rem !important
	}

	.post-sm-74,
	.posy-sm-74 {
		top: 4.625rem !important
	}

	.posr-sm-74 {
		right: 4.625rem !important
	}

	.posb-sm-74 {
		bottom: 4.625rem !important
	}

	.posl-sm-74 {
		left: 4.625rem !important
	}

	.posmt-sm-74 {
		top: -4.625rem !important
	}

	.posmr-sm-74 {
		right: -4.625rem !important
	}

	.posmb-sm-74 {
		bottom: -4.625rem !important
	}

	.posml-sm-74 {
		left: -4.625rem !important
	}

	.pos-sm-75 {
		top: 4.6875rem !important;
		bottom: 4.6875rem !important
	}

	.pos-sm-75,
	.posx-sm-75 {
		right: 4.6875rem !important;
		left: 4.6875rem !important
	}

	.posy-sm-75 {
		bottom: 4.6875rem !important
	}

	.post-sm-75,
	.posy-sm-75 {
		top: 4.6875rem !important
	}

	.posr-sm-75 {
		right: 4.6875rem !important
	}

	.posb-sm-75 {
		bottom: 4.6875rem !important
	}

	.posl-sm-75 {
		left: 4.6875rem !important
	}

	.posmt-sm-75 {
		top: -4.6875rem !important
	}

	.posmr-sm-75 {
		right: -4.6875rem !important
	}

	.posmb-sm-75 {
		bottom: -4.6875rem !important
	}

	.posml-sm-75 {
		left: -4.6875rem !important
	}

	.pos-sm-76 {
		top: 4.75rem !important;
		bottom: 4.75rem !important
	}

	.pos-sm-76,
	.posx-sm-76 {
		right: 4.75rem !important;
		left: 4.75rem !important
	}

	.posy-sm-76 {
		bottom: 4.75rem !important
	}

	.post-sm-76,
	.posy-sm-76 {
		top: 4.75rem !important
	}

	.posr-sm-76 {
		right: 4.75rem !important
	}

	.posb-sm-76 {
		bottom: 4.75rem !important
	}

	.posl-sm-76 {
		left: 4.75rem !important
	}

	.posmt-sm-76 {
		top: -4.75rem !important
	}

	.posmr-sm-76 {
		right: -4.75rem !important
	}

	.posmb-sm-76 {
		bottom: -4.75rem !important
	}

	.posml-sm-76 {
		left: -4.75rem !important
	}

	.pos-sm-77 {
		top: 4.8125rem !important;
		bottom: 4.8125rem !important
	}

	.pos-sm-77,
	.posx-sm-77 {
		right: 4.8125rem !important;
		left: 4.8125rem !important
	}

	.posy-sm-77 {
		bottom: 4.8125rem !important
	}

	.post-sm-77,
	.posy-sm-77 {
		top: 4.8125rem !important
	}

	.posr-sm-77 {
		right: 4.8125rem !important
	}

	.posb-sm-77 {
		bottom: 4.8125rem !important
	}

	.posl-sm-77 {
		left: 4.8125rem !important
	}

	.posmt-sm-77 {
		top: -4.8125rem !important
	}

	.posmr-sm-77 {
		right: -4.8125rem !important
	}

	.posmb-sm-77 {
		bottom: -4.8125rem !important
	}

	.posml-sm-77 {
		left: -4.8125rem !important
	}

	.pos-sm-78 {
		top: 4.875rem !important;
		bottom: 4.875rem !important
	}

	.pos-sm-78,
	.posx-sm-78 {
		right: 4.875rem !important;
		left: 4.875rem !important
	}

	.posy-sm-78 {
		bottom: 4.875rem !important
	}

	.post-sm-78,
	.posy-sm-78 {
		top: 4.875rem !important
	}

	.posr-sm-78 {
		right: 4.875rem !important
	}

	.posb-sm-78 {
		bottom: 4.875rem !important
	}

	.posl-sm-78 {
		left: 4.875rem !important
	}

	.posmt-sm-78 {
		top: -4.875rem !important
	}

	.posmr-sm-78 {
		right: -4.875rem !important
	}

	.posmb-sm-78 {
		bottom: -4.875rem !important
	}

	.posml-sm-78 {
		left: -4.875rem !important
	}

	.pos-sm-79 {
		top: 4.9375rem !important;
		bottom: 4.9375rem !important
	}

	.pos-sm-79,
	.posx-sm-79 {
		right: 4.9375rem !important;
		left: 4.9375rem !important
	}

	.posy-sm-79 {
		bottom: 4.9375rem !important
	}

	.post-sm-79,
	.posy-sm-79 {
		top: 4.9375rem !important
	}

	.posr-sm-79 {
		right: 4.9375rem !important
	}

	.posb-sm-79 {
		bottom: 4.9375rem !important
	}

	.posl-sm-79 {
		left: 4.9375rem !important
	}

	.posmt-sm-79 {
		top: -4.9375rem !important
	}

	.posmr-sm-79 {
		right: -4.9375rem !important
	}

	.posmb-sm-79 {
		bottom: -4.9375rem !important
	}

	.posml-sm-79 {
		left: -4.9375rem !important
	}

	.pos-sm-80 {
		top: 5rem !important;
		bottom: 5rem !important
	}

	.pos-sm-80,
	.posx-sm-80 {
		right: 5rem !important;
		left: 5rem !important
	}

	.posy-sm-80 {
		bottom: 5rem !important
	}

	.post-sm-80,
	.posy-sm-80 {
		top: 5rem !important
	}

	.posr-sm-80 {
		right: 5rem !important
	}

	.posb-sm-80 {
		bottom: 5rem !important
	}

	.posl-sm-80 {
		left: 5rem !important
	}

	.posmt-sm-80 {
		top: -5rem !important
	}

	.posmr-sm-80 {
		right: -5rem !important
	}

	.posmb-sm-80 {
		bottom: -5rem !important
	}

	.posml-sm-80 {
		left: -5rem !important
	}

	.pos-sm-81 {
		top: 5.0625rem !important;
		bottom: 5.0625rem !important
	}

	.pos-sm-81,
	.posx-sm-81 {
		right: 5.0625rem !important;
		left: 5.0625rem !important
	}

	.posy-sm-81 {
		bottom: 5.0625rem !important
	}

	.post-sm-81,
	.posy-sm-81 {
		top: 5.0625rem !important
	}

	.posr-sm-81 {
		right: 5.0625rem !important
	}

	.posb-sm-81 {
		bottom: 5.0625rem !important
	}

	.posl-sm-81 {
		left: 5.0625rem !important
	}

	.posmt-sm-81 {
		top: -5.0625rem !important
	}

	.posmr-sm-81 {
		right: -5.0625rem !important
	}

	.posmb-sm-81 {
		bottom: -5.0625rem !important
	}

	.posml-sm-81 {
		left: -5.0625rem !important
	}

	.pos-sm-82 {
		top: 5.125rem !important;
		bottom: 5.125rem !important
	}

	.pos-sm-82,
	.posx-sm-82 {
		right: 5.125rem !important;
		left: 5.125rem !important
	}

	.posy-sm-82 {
		bottom: 5.125rem !important
	}

	.post-sm-82,
	.posy-sm-82 {
		top: 5.125rem !important
	}

	.posr-sm-82 {
		right: 5.125rem !important
	}

	.posb-sm-82 {
		bottom: 5.125rem !important
	}

	.posl-sm-82 {
		left: 5.125rem !important
	}

	.posmt-sm-82 {
		top: -5.125rem !important
	}

	.posmr-sm-82 {
		right: -5.125rem !important
	}

	.posmb-sm-82 {
		bottom: -5.125rem !important
	}

	.posml-sm-82 {
		left: -5.125rem !important
	}

	.pos-sm-83 {
		top: 5.1875rem !important;
		bottom: 5.1875rem !important
	}

	.pos-sm-83,
	.posx-sm-83 {
		right: 5.1875rem !important;
		left: 5.1875rem !important
	}

	.posy-sm-83 {
		bottom: 5.1875rem !important
	}

	.post-sm-83,
	.posy-sm-83 {
		top: 5.1875rem !important
	}

	.posr-sm-83 {
		right: 5.1875rem !important
	}

	.posb-sm-83 {
		bottom: 5.1875rem !important
	}

	.posl-sm-83 {
		left: 5.1875rem !important
	}

	.posmt-sm-83 {
		top: -5.1875rem !important
	}

	.posmr-sm-83 {
		right: -5.1875rem !important
	}

	.posmb-sm-83 {
		bottom: -5.1875rem !important
	}

	.posml-sm-83 {
		left: -5.1875rem !important
	}

	.pos-sm-84 {
		top: 5.25rem !important;
		bottom: 5.25rem !important
	}

	.pos-sm-84,
	.posx-sm-84 {
		right: 5.25rem !important;
		left: 5.25rem !important
	}

	.posy-sm-84 {
		bottom: 5.25rem !important
	}

	.post-sm-84,
	.posy-sm-84 {
		top: 5.25rem !important
	}

	.posr-sm-84 {
		right: 5.25rem !important
	}

	.posb-sm-84 {
		bottom: 5.25rem !important
	}

	.posl-sm-84 {
		left: 5.25rem !important
	}

	.posmt-sm-84 {
		top: -5.25rem !important
	}

	.posmr-sm-84 {
		right: -5.25rem !important
	}

	.posmb-sm-84 {
		bottom: -5.25rem !important
	}

	.posml-sm-84 {
		left: -5.25rem !important
	}

	.pos-sm-85 {
		top: 5.3125rem !important;
		bottom: 5.3125rem !important
	}

	.pos-sm-85,
	.posx-sm-85 {
		right: 5.3125rem !important;
		left: 5.3125rem !important
	}

	.posy-sm-85 {
		bottom: 5.3125rem !important
	}

	.post-sm-85,
	.posy-sm-85 {
		top: 5.3125rem !important
	}

	.posr-sm-85 {
		right: 5.3125rem !important
	}

	.posb-sm-85 {
		bottom: 5.3125rem !important
	}

	.posl-sm-85 {
		left: 5.3125rem !important
	}

	.posmt-sm-85 {
		top: -5.3125rem !important
	}

	.posmr-sm-85 {
		right: -5.3125rem !important
	}

	.posmb-sm-85 {
		bottom: -5.3125rem !important
	}

	.posml-sm-85 {
		left: -5.3125rem !important
	}

	.pos-sm-86 {
		top: 5.375rem !important;
		bottom: 5.375rem !important
	}

	.pos-sm-86,
	.posx-sm-86 {
		right: 5.375rem !important;
		left: 5.375rem !important
	}

	.posy-sm-86 {
		bottom: 5.375rem !important
	}

	.post-sm-86,
	.posy-sm-86 {
		top: 5.375rem !important
	}

	.posr-sm-86 {
		right: 5.375rem !important
	}

	.posb-sm-86 {
		bottom: 5.375rem !important
	}

	.posl-sm-86 {
		left: 5.375rem !important
	}

	.posmt-sm-86 {
		top: -5.375rem !important
	}

	.posmr-sm-86 {
		right: -5.375rem !important
	}

	.posmb-sm-86 {
		bottom: -5.375rem !important
	}

	.posml-sm-86 {
		left: -5.375rem !important
	}

	.pos-sm-87 {
		top: 5.4375rem !important;
		bottom: 5.4375rem !important
	}

	.pos-sm-87,
	.posx-sm-87 {
		right: 5.4375rem !important;
		left: 5.4375rem !important
	}

	.posy-sm-87 {
		bottom: 5.4375rem !important
	}

	.post-sm-87,
	.posy-sm-87 {
		top: 5.4375rem !important
	}

	.posr-sm-87 {
		right: 5.4375rem !important
	}

	.posb-sm-87 {
		bottom: 5.4375rem !important
	}

	.posl-sm-87 {
		left: 5.4375rem !important
	}

	.posmt-sm-87 {
		top: -5.4375rem !important
	}

	.posmr-sm-87 {
		right: -5.4375rem !important
	}

	.posmb-sm-87 {
		bottom: -5.4375rem !important
	}

	.posml-sm-87 {
		left: -5.4375rem !important
	}

	.pos-sm-88 {
		top: 5.5rem !important;
		bottom: 5.5rem !important
	}

	.pos-sm-88,
	.posx-sm-88 {
		right: 5.5rem !important;
		left: 5.5rem !important
	}

	.posy-sm-88 {
		bottom: 5.5rem !important
	}

	.post-sm-88,
	.posy-sm-88 {
		top: 5.5rem !important
	}

	.posr-sm-88 {
		right: 5.5rem !important
	}

	.posb-sm-88 {
		bottom: 5.5rem !important
	}

	.posl-sm-88 {
		left: 5.5rem !important
	}

	.posmt-sm-88 {
		top: -5.5rem !important
	}

	.posmr-sm-88 {
		right: -5.5rem !important
	}

	.posmb-sm-88 {
		bottom: -5.5rem !important
	}

	.posml-sm-88 {
		left: -5.5rem !important
	}

	.pos-sm-89 {
		top: 5.5625rem !important;
		bottom: 5.5625rem !important
	}

	.pos-sm-89,
	.posx-sm-89 {
		right: 5.5625rem !important;
		left: 5.5625rem !important
	}

	.posy-sm-89 {
		bottom: 5.5625rem !important
	}

	.post-sm-89,
	.posy-sm-89 {
		top: 5.5625rem !important
	}

	.posr-sm-89 {
		right: 5.5625rem !important
	}

	.posb-sm-89 {
		bottom: 5.5625rem !important
	}

	.posl-sm-89 {
		left: 5.5625rem !important
	}

	.posmt-sm-89 {
		top: -5.5625rem !important
	}

	.posmr-sm-89 {
		right: -5.5625rem !important
	}

	.posmb-sm-89 {
		bottom: -5.5625rem !important
	}

	.posml-sm-89 {
		left: -5.5625rem !important
	}

	.pos-sm-90 {
		top: 5.625rem !important;
		bottom: 5.625rem !important
	}

	.pos-sm-90,
	.posx-sm-90 {
		right: 5.625rem !important;
		left: 5.625rem !important
	}

	.posy-sm-90 {
		bottom: 5.625rem !important
	}

	.post-sm-90,
	.posy-sm-90 {
		top: 5.625rem !important
	}

	.posr-sm-90 {
		right: 5.625rem !important
	}

	.posb-sm-90 {
		bottom: 5.625rem !important
	}

	.posl-sm-90 {
		left: 5.625rem !important
	}

	.posmt-sm-90 {
		top: -5.625rem !important
	}

	.posmr-sm-90 {
		right: -5.625rem !important
	}

	.posmb-sm-90 {
		bottom: -5.625rem !important
	}

	.posml-sm-90 {
		left: -5.625rem !important
	}

	.pos-sm-91 {
		top: 5.6875rem !important;
		bottom: 5.6875rem !important
	}

	.pos-sm-91,
	.posx-sm-91 {
		right: 5.6875rem !important;
		left: 5.6875rem !important
	}

	.posy-sm-91 {
		bottom: 5.6875rem !important
	}

	.post-sm-91,
	.posy-sm-91 {
		top: 5.6875rem !important
	}

	.posr-sm-91 {
		right: 5.6875rem !important
	}

	.posb-sm-91 {
		bottom: 5.6875rem !important
	}

	.posl-sm-91 {
		left: 5.6875rem !important
	}

	.posmt-sm-91 {
		top: -5.6875rem !important
	}

	.posmr-sm-91 {
		right: -5.6875rem !important
	}

	.posmb-sm-91 {
		bottom: -5.6875rem !important
	}

	.posml-sm-91 {
		left: -5.6875rem !important
	}

	.pos-sm-92 {
		top: 5.75rem !important;
		bottom: 5.75rem !important
	}

	.pos-sm-92,
	.posx-sm-92 {
		right: 5.75rem !important;
		left: 5.75rem !important
	}

	.posy-sm-92 {
		bottom: 5.75rem !important
	}

	.post-sm-92,
	.posy-sm-92 {
		top: 5.75rem !important
	}

	.posr-sm-92 {
		right: 5.75rem !important
	}

	.posb-sm-92 {
		bottom: 5.75rem !important
	}

	.posl-sm-92 {
		left: 5.75rem !important
	}

	.posmt-sm-92 {
		top: -5.75rem !important
	}

	.posmr-sm-92 {
		right: -5.75rem !important
	}

	.posmb-sm-92 {
		bottom: -5.75rem !important
	}

	.posml-sm-92 {
		left: -5.75rem !important
	}

	.pos-sm-93 {
		top: 5.8125rem !important;
		bottom: 5.8125rem !important
	}

	.pos-sm-93,
	.posx-sm-93 {
		right: 5.8125rem !important;
		left: 5.8125rem !important
	}

	.posy-sm-93 {
		bottom: 5.8125rem !important
	}

	.post-sm-93,
	.posy-sm-93 {
		top: 5.8125rem !important
	}

	.posr-sm-93 {
		right: 5.8125rem !important
	}

	.posb-sm-93 {
		bottom: 5.8125rem !important
	}

	.posl-sm-93 {
		left: 5.8125rem !important
	}

	.posmt-sm-93 {
		top: -5.8125rem !important
	}

	.posmr-sm-93 {
		right: -5.8125rem !important
	}

	.posmb-sm-93 {
		bottom: -5.8125rem !important
	}

	.posml-sm-93 {
		left: -5.8125rem !important
	}

	.pos-sm-94 {
		top: 5.875rem !important;
		bottom: 5.875rem !important
	}

	.pos-sm-94,
	.posx-sm-94 {
		right: 5.875rem !important;
		left: 5.875rem !important
	}

	.posy-sm-94 {
		bottom: 5.875rem !important
	}

	.post-sm-94,
	.posy-sm-94 {
		top: 5.875rem !important
	}

	.posr-sm-94 {
		right: 5.875rem !important
	}

	.posb-sm-94 {
		bottom: 5.875rem !important
	}

	.posl-sm-94 {
		left: 5.875rem !important
	}

	.posmt-sm-94 {
		top: -5.875rem !important
	}

	.posmr-sm-94 {
		right: -5.875rem !important
	}

	.posmb-sm-94 {
		bottom: -5.875rem !important
	}

	.posml-sm-94 {
		left: -5.875rem !important
	}

	.pos-sm-95 {
		top: 5.9375rem !important;
		bottom: 5.9375rem !important
	}

	.pos-sm-95,
	.posx-sm-95 {
		right: 5.9375rem !important;
		left: 5.9375rem !important
	}

	.posy-sm-95 {
		bottom: 5.9375rem !important
	}

	.post-sm-95,
	.posy-sm-95 {
		top: 5.9375rem !important
	}

	.posr-sm-95 {
		right: 5.9375rem !important
	}

	.posb-sm-95 {
		bottom: 5.9375rem !important
	}

	.posl-sm-95 {
		left: 5.9375rem !important
	}

	.posmt-sm-95 {
		top: -5.9375rem !important
	}

	.posmr-sm-95 {
		right: -5.9375rem !important
	}

	.posmb-sm-95 {
		bottom: -5.9375rem !important
	}

	.posml-sm-95 {
		left: -5.9375rem !important
	}

	.pos-sm-96 {
		top: 6rem !important;
		bottom: 6rem !important
	}

	.pos-sm-96,
	.posx-sm-96 {
		right: 6rem !important;
		left: 6rem !important
	}

	.posy-sm-96 {
		bottom: 6rem !important
	}

	.post-sm-96,
	.posy-sm-96 {
		top: 6rem !important
	}

	.posr-sm-96 {
		right: 6rem !important
	}

	.posb-sm-96 {
		bottom: 6rem !important
	}

	.posl-sm-96 {
		left: 6rem !important
	}

	.posmt-sm-96 {
		top: -6rem !important
	}

	.posmr-sm-96 {
		right: -6rem !important
	}

	.posmb-sm-96 {
		bottom: -6rem !important
	}

	.posml-sm-96 {
		left: -6rem !important
	}

	.pos-sm-97 {
		top: 6.0625rem !important;
		bottom: 6.0625rem !important
	}

	.pos-sm-97,
	.posx-sm-97 {
		right: 6.0625rem !important;
		left: 6.0625rem !important
	}

	.posy-sm-97 {
		bottom: 6.0625rem !important
	}

	.post-sm-97,
	.posy-sm-97 {
		top: 6.0625rem !important
	}

	.posr-sm-97 {
		right: 6.0625rem !important
	}

	.posb-sm-97 {
		bottom: 6.0625rem !important
	}

	.posl-sm-97 {
		left: 6.0625rem !important
	}

	.posmt-sm-97 {
		top: -6.0625rem !important
	}

	.posmr-sm-97 {
		right: -6.0625rem !important
	}

	.posmb-sm-97 {
		bottom: -6.0625rem !important
	}

	.posml-sm-97 {
		left: -6.0625rem !important
	}

	.pos-sm-98 {
		top: 6.125rem !important;
		bottom: 6.125rem !important
	}

	.pos-sm-98,
	.posx-sm-98 {
		right: 6.125rem !important;
		left: 6.125rem !important
	}

	.posy-sm-98 {
		bottom: 6.125rem !important
	}

	.post-sm-98,
	.posy-sm-98 {
		top: 6.125rem !important
	}

	.posr-sm-98 {
		right: 6.125rem !important
	}

	.posb-sm-98 {
		bottom: 6.125rem !important
	}

	.posl-sm-98 {
		left: 6.125rem !important
	}

	.posmt-sm-98 {
		top: -6.125rem !important
	}

	.posmr-sm-98 {
		right: -6.125rem !important
	}

	.posmb-sm-98 {
		bottom: -6.125rem !important
	}

	.posml-sm-98 {
		left: -6.125rem !important
	}

	.pos-sm-99 {
		top: 6.1875rem !important;
		bottom: 6.1875rem !important
	}

	.pos-sm-99,
	.posx-sm-99 {
		right: 6.1875rem !important;
		left: 6.1875rem !important
	}

	.posy-sm-99 {
		bottom: 6.1875rem !important
	}

	.post-sm-99,
	.posy-sm-99 {
		top: 6.1875rem !important
	}

	.posr-sm-99 {
		right: 6.1875rem !important
	}

	.posb-sm-99 {
		bottom: 6.1875rem !important
	}

	.posl-sm-99 {
		left: 6.1875rem !important
	}

	.posmt-sm-99 {
		top: -6.1875rem !important
	}

	.posmr-sm-99 {
		right: -6.1875rem !important
	}

	.posmb-sm-99 {
		bottom: -6.1875rem !important
	}

	.posml-sm-99 {
		left: -6.1875rem !important
	}

	.pos-sm-100 {
		top: 6.25rem !important;
		bottom: 6.25rem !important
	}

	.pos-sm-100,
	.posx-sm-100 {
		right: 6.25rem !important;
		left: 6.25rem !important
	}

	.posy-sm-100 {
		bottom: 6.25rem !important
	}

	.post-sm-100,
	.posy-sm-100 {
		top: 6.25rem !important
	}

	.posr-sm-100 {
		right: 6.25rem !important
	}

	.posb-sm-100 {
		bottom: 6.25rem !important
	}

	.posl-sm-100 {
		left: 6.25rem !important
	}

	.posmt-sm-100 {
		top: -6.25rem !important
	}

	.posmr-sm-100 {
		right: -6.25rem !important
	}

	.posmb-sm-100 {
		bottom: -6.25rem !important
	}

	.posml-sm-100 {
		left: -6.25rem !important
	}

	.pos-sm-101 {
		top: 6.3125rem !important;
		bottom: 6.3125rem !important
	}

	.pos-sm-101,
	.posx-sm-101 {
		right: 6.3125rem !important;
		left: 6.3125rem !important
	}

	.posy-sm-101 {
		bottom: 6.3125rem !important
	}

	.post-sm-101,
	.posy-sm-101 {
		top: 6.3125rem !important
	}

	.posr-sm-101 {
		right: 6.3125rem !important
	}

	.posb-sm-101 {
		bottom: 6.3125rem !important
	}

	.posl-sm-101 {
		left: 6.3125rem !important
	}

	.posmt-sm-101 {
		top: -6.3125rem !important
	}

	.posmr-sm-101 {
		right: -6.3125rem !important
	}

	.posmb-sm-101 {
		bottom: -6.3125rem !important
	}

	.posml-sm-101 {
		left: -6.3125rem !important
	}

	.pos-sm-102 {
		top: 6.375rem !important;
		bottom: 6.375rem !important
	}

	.pos-sm-102,
	.posx-sm-102 {
		right: 6.375rem !important;
		left: 6.375rem !important
	}

	.posy-sm-102 {
		bottom: 6.375rem !important
	}

	.post-sm-102,
	.posy-sm-102 {
		top: 6.375rem !important
	}

	.posr-sm-102 {
		right: 6.375rem !important
	}

	.posb-sm-102 {
		bottom: 6.375rem !important
	}

	.posl-sm-102 {
		left: 6.375rem !important
	}

	.posmt-sm-102 {
		top: -6.375rem !important
	}

	.posmr-sm-102 {
		right: -6.375rem !important
	}

	.posmb-sm-102 {
		bottom: -6.375rem !important
	}

	.posml-sm-102 {
		left: -6.375rem !important
	}

	.pos-sm-103 {
		top: 6.4375rem !important;
		bottom: 6.4375rem !important
	}

	.pos-sm-103,
	.posx-sm-103 {
		right: 6.4375rem !important;
		left: 6.4375rem !important
	}

	.posy-sm-103 {
		bottom: 6.4375rem !important
	}

	.post-sm-103,
	.posy-sm-103 {
		top: 6.4375rem !important
	}

	.posr-sm-103 {
		right: 6.4375rem !important
	}

	.posb-sm-103 {
		bottom: 6.4375rem !important
	}

	.posl-sm-103 {
		left: 6.4375rem !important
	}

	.posmt-sm-103 {
		top: -6.4375rem !important
	}

	.posmr-sm-103 {
		right: -6.4375rem !important
	}

	.posmb-sm-103 {
		bottom: -6.4375rem !important
	}

	.posml-sm-103 {
		left: -6.4375rem !important
	}

	.pos-sm-104 {
		top: 6.5rem !important;
		bottom: 6.5rem !important
	}

	.pos-sm-104,
	.posx-sm-104 {
		right: 6.5rem !important;
		left: 6.5rem !important
	}

	.posy-sm-104 {
		bottom: 6.5rem !important
	}

	.post-sm-104,
	.posy-sm-104 {
		top: 6.5rem !important
	}

	.posr-sm-104 {
		right: 6.5rem !important
	}

	.posb-sm-104 {
		bottom: 6.5rem !important
	}

	.posl-sm-104 {
		left: 6.5rem !important
	}

	.posmt-sm-104 {
		top: -6.5rem !important
	}

	.posmr-sm-104 {
		right: -6.5rem !important
	}

	.posmb-sm-104 {
		bottom: -6.5rem !important
	}

	.posml-sm-104 {
		left: -6.5rem !important
	}

	.pos-sm-105 {
		top: 6.5625rem !important;
		bottom: 6.5625rem !important
	}

	.pos-sm-105,
	.posx-sm-105 {
		right: 6.5625rem !important;
		left: 6.5625rem !important
	}

	.posy-sm-105 {
		bottom: 6.5625rem !important
	}

	.post-sm-105,
	.posy-sm-105 {
		top: 6.5625rem !important
	}

	.posr-sm-105 {
		right: 6.5625rem !important
	}

	.posb-sm-105 {
		bottom: 6.5625rem !important
	}

	.posl-sm-105 {
		left: 6.5625rem !important
	}

	.posmt-sm-105 {
		top: -6.5625rem !important
	}

	.posmr-sm-105 {
		right: -6.5625rem !important
	}

	.posmb-sm-105 {
		bottom: -6.5625rem !important
	}

	.posml-sm-105 {
		left: -6.5625rem !important
	}

	.pos-sm-106 {
		top: 6.625rem !important;
		bottom: 6.625rem !important
	}

	.pos-sm-106,
	.posx-sm-106 {
		right: 6.625rem !important;
		left: 6.625rem !important
	}

	.posy-sm-106 {
		bottom: 6.625rem !important
	}

	.post-sm-106,
	.posy-sm-106 {
		top: 6.625rem !important
	}

	.posr-sm-106 {
		right: 6.625rem !important
	}

	.posb-sm-106 {
		bottom: 6.625rem !important
	}

	.posl-sm-106 {
		left: 6.625rem !important
	}

	.posmt-sm-106 {
		top: -6.625rem !important
	}

	.posmr-sm-106 {
		right: -6.625rem !important
	}

	.posmb-sm-106 {
		bottom: -6.625rem !important
	}

	.posml-sm-106 {
		left: -6.625rem !important
	}

	.pos-sm-107 {
		top: 6.6875rem !important;
		bottom: 6.6875rem !important
	}

	.pos-sm-107,
	.posx-sm-107 {
		right: 6.6875rem !important;
		left: 6.6875rem !important
	}

	.posy-sm-107 {
		bottom: 6.6875rem !important
	}

	.post-sm-107,
	.posy-sm-107 {
		top: 6.6875rem !important
	}

	.posr-sm-107 {
		right: 6.6875rem !important
	}

	.posb-sm-107 {
		bottom: 6.6875rem !important
	}

	.posl-sm-107 {
		left: 6.6875rem !important
	}

	.posmt-sm-107 {
		top: -6.6875rem !important
	}

	.posmr-sm-107 {
		right: -6.6875rem !important
	}

	.posmb-sm-107 {
		bottom: -6.6875rem !important
	}

	.posml-sm-107 {
		left: -6.6875rem !important
	}

	.pos-sm-108 {
		top: 6.75rem !important;
		bottom: 6.75rem !important
	}

	.pos-sm-108,
	.posx-sm-108 {
		right: 6.75rem !important;
		left: 6.75rem !important
	}

	.posy-sm-108 {
		bottom: 6.75rem !important
	}

	.post-sm-108,
	.posy-sm-108 {
		top: 6.75rem !important
	}

	.posr-sm-108 {
		right: 6.75rem !important
	}

	.posb-sm-108 {
		bottom: 6.75rem !important
	}

	.posl-sm-108 {
		left: 6.75rem !important
	}

	.posmt-sm-108 {
		top: -6.75rem !important
	}

	.posmr-sm-108 {
		right: -6.75rem !important
	}

	.posmb-sm-108 {
		bottom: -6.75rem !important
	}

	.posml-sm-108 {
		left: -6.75rem !important
	}

	.pos-sm-109 {
		top: 6.8125rem !important;
		bottom: 6.8125rem !important
	}

	.pos-sm-109,
	.posx-sm-109 {
		right: 6.8125rem !important;
		left: 6.8125rem !important
	}

	.posy-sm-109 {
		bottom: 6.8125rem !important
	}

	.post-sm-109,
	.posy-sm-109 {
		top: 6.8125rem !important
	}

	.posr-sm-109 {
		right: 6.8125rem !important
	}

	.posb-sm-109 {
		bottom: 6.8125rem !important
	}

	.posl-sm-109 {
		left: 6.8125rem !important
	}

	.posmt-sm-109 {
		top: -6.8125rem !important
	}

	.posmr-sm-109 {
		right: -6.8125rem !important
	}

	.posmb-sm-109 {
		bottom: -6.8125rem !important
	}

	.posml-sm-109 {
		left: -6.8125rem !important
	}

	.pos-sm-110 {
		top: 6.875rem !important;
		bottom: 6.875rem !important
	}

	.pos-sm-110,
	.posx-sm-110 {
		right: 6.875rem !important;
		left: 6.875rem !important
	}

	.posy-sm-110 {
		bottom: 6.875rem !important
	}

	.post-sm-110,
	.posy-sm-110 {
		top: 6.875rem !important
	}

	.posr-sm-110 {
		right: 6.875rem !important
	}

	.posb-sm-110 {
		bottom: 6.875rem !important
	}

	.posl-sm-110 {
		left: 6.875rem !important
	}

	.posmt-sm-110 {
		top: -6.875rem !important
	}

	.posmr-sm-110 {
		right: -6.875rem !important
	}

	.posmb-sm-110 {
		bottom: -6.875rem !important
	}

	.posml-sm-110 {
		left: -6.875rem !important
	}

	.pos-sm-111 {
		top: 6.9375rem !important;
		bottom: 6.9375rem !important
	}

	.pos-sm-111,
	.posx-sm-111 {
		right: 6.9375rem !important;
		left: 6.9375rem !important
	}

	.posy-sm-111 {
		bottom: 6.9375rem !important
	}

	.post-sm-111,
	.posy-sm-111 {
		top: 6.9375rem !important
	}

	.posr-sm-111 {
		right: 6.9375rem !important
	}

	.posb-sm-111 {
		bottom: 6.9375rem !important
	}

	.posl-sm-111 {
		left: 6.9375rem !important
	}

	.posmt-sm-111 {
		top: -6.9375rem !important
	}

	.posmr-sm-111 {
		right: -6.9375rem !important
	}

	.posmb-sm-111 {
		bottom: -6.9375rem !important
	}

	.posml-sm-111 {
		left: -6.9375rem !important
	}

	.pos-sm-112 {
		top: 7rem !important;
		bottom: 7rem !important
	}

	.pos-sm-112,
	.posx-sm-112 {
		right: 7rem !important;
		left: 7rem !important
	}

	.posy-sm-112 {
		bottom: 7rem !important
	}

	.post-sm-112,
	.posy-sm-112 {
		top: 7rem !important
	}

	.posr-sm-112 {
		right: 7rem !important
	}

	.posb-sm-112 {
		bottom: 7rem !important
	}

	.posl-sm-112 {
		left: 7rem !important
	}

	.posmt-sm-112 {
		top: -7rem !important
	}

	.posmr-sm-112 {
		right: -7rem !important
	}

	.posmb-sm-112 {
		bottom: -7rem !important
	}

	.posml-sm-112 {
		left: -7rem !important
	}

	.pos-sm-113 {
		top: 7.0625rem !important;
		bottom: 7.0625rem !important
	}

	.pos-sm-113,
	.posx-sm-113 {
		right: 7.0625rem !important;
		left: 7.0625rem !important
	}

	.posy-sm-113 {
		bottom: 7.0625rem !important
	}

	.post-sm-113,
	.posy-sm-113 {
		top: 7.0625rem !important
	}

	.posr-sm-113 {
		right: 7.0625rem !important
	}

	.posb-sm-113 {
		bottom: 7.0625rem !important
	}

	.posl-sm-113 {
		left: 7.0625rem !important
	}

	.posmt-sm-113 {
		top: -7.0625rem !important
	}

	.posmr-sm-113 {
		right: -7.0625rem !important
	}

	.posmb-sm-113 {
		bottom: -7.0625rem !important
	}

	.posml-sm-113 {
		left: -7.0625rem !important
	}

	.pos-sm-114 {
		top: 7.125rem !important;
		bottom: 7.125rem !important
	}

	.pos-sm-114,
	.posx-sm-114 {
		right: 7.125rem !important;
		left: 7.125rem !important
	}

	.posy-sm-114 {
		bottom: 7.125rem !important
	}

	.post-sm-114,
	.posy-sm-114 {
		top: 7.125rem !important
	}

	.posr-sm-114 {
		right: 7.125rem !important
	}

	.posb-sm-114 {
		bottom: 7.125rem !important
	}

	.posl-sm-114 {
		left: 7.125rem !important
	}

	.posmt-sm-114 {
		top: -7.125rem !important
	}

	.posmr-sm-114 {
		right: -7.125rem !important
	}

	.posmb-sm-114 {
		bottom: -7.125rem !important
	}

	.posml-sm-114 {
		left: -7.125rem !important
	}

	.pos-sm-115 {
		top: 7.1875rem !important;
		bottom: 7.1875rem !important
	}

	.pos-sm-115,
	.posx-sm-115 {
		right: 7.1875rem !important;
		left: 7.1875rem !important
	}

	.posy-sm-115 {
		bottom: 7.1875rem !important
	}

	.post-sm-115,
	.posy-sm-115 {
		top: 7.1875rem !important
	}

	.posr-sm-115 {
		right: 7.1875rem !important
	}

	.posb-sm-115 {
		bottom: 7.1875rem !important
	}

	.posl-sm-115 {
		left: 7.1875rem !important
	}

	.posmt-sm-115 {
		top: -7.1875rem !important
	}

	.posmr-sm-115 {
		right: -7.1875rem !important
	}

	.posmb-sm-115 {
		bottom: -7.1875rem !important
	}

	.posml-sm-115 {
		left: -7.1875rem !important
	}

	.pos-sm-116 {
		top: 7.25rem !important;
		bottom: 7.25rem !important
	}

	.pos-sm-116,
	.posx-sm-116 {
		right: 7.25rem !important;
		left: 7.25rem !important
	}

	.posy-sm-116 {
		bottom: 7.25rem !important
	}

	.post-sm-116,
	.posy-sm-116 {
		top: 7.25rem !important
	}

	.posr-sm-116 {
		right: 7.25rem !important
	}

	.posb-sm-116 {
		bottom: 7.25rem !important
	}

	.posl-sm-116 {
		left: 7.25rem !important
	}

	.posmt-sm-116 {
		top: -7.25rem !important
	}

	.posmr-sm-116 {
		right: -7.25rem !important
	}

	.posmb-sm-116 {
		bottom: -7.25rem !important
	}

	.posml-sm-116 {
		left: -7.25rem !important
	}

	.pos-sm-117 {
		top: 7.3125rem !important;
		bottom: 7.3125rem !important
	}

	.pos-sm-117,
	.posx-sm-117 {
		right: 7.3125rem !important;
		left: 7.3125rem !important
	}

	.posy-sm-117 {
		bottom: 7.3125rem !important
	}

	.post-sm-117,
	.posy-sm-117 {
		top: 7.3125rem !important
	}

	.posr-sm-117 {
		right: 7.3125rem !important
	}

	.posb-sm-117 {
		bottom: 7.3125rem !important
	}

	.posl-sm-117 {
		left: 7.3125rem !important
	}

	.posmt-sm-117 {
		top: -7.3125rem !important
	}

	.posmr-sm-117 {
		right: -7.3125rem !important
	}

	.posmb-sm-117 {
		bottom: -7.3125rem !important
	}

	.posml-sm-117 {
		left: -7.3125rem !important
	}

	.pos-sm-118 {
		top: 7.375rem !important;
		bottom: 7.375rem !important
	}

	.pos-sm-118,
	.posx-sm-118 {
		right: 7.375rem !important;
		left: 7.375rem !important
	}

	.posy-sm-118 {
		bottom: 7.375rem !important
	}

	.post-sm-118,
	.posy-sm-118 {
		top: 7.375rem !important
	}

	.posr-sm-118 {
		right: 7.375rem !important
	}

	.posb-sm-118 {
		bottom: 7.375rem !important
	}

	.posl-sm-118 {
		left: 7.375rem !important
	}

	.posmt-sm-118 {
		top: -7.375rem !important
	}

	.posmr-sm-118 {
		right: -7.375rem !important
	}

	.posmb-sm-118 {
		bottom: -7.375rem !important
	}

	.posml-sm-118 {
		left: -7.375rem !important
	}

	.pos-sm-119 {
		top: 7.4375rem !important;
		bottom: 7.4375rem !important
	}

	.pos-sm-119,
	.posx-sm-119 {
		right: 7.4375rem !important;
		left: 7.4375rem !important
	}

	.posy-sm-119 {
		bottom: 7.4375rem !important
	}

	.post-sm-119,
	.posy-sm-119 {
		top: 7.4375rem !important
	}

	.posr-sm-119 {
		right: 7.4375rem !important
	}

	.posb-sm-119 {
		bottom: 7.4375rem !important
	}

	.posl-sm-119 {
		left: 7.4375rem !important
	}

	.posmt-sm-119 {
		top: -7.4375rem !important
	}

	.posmr-sm-119 {
		right: -7.4375rem !important
	}

	.posmb-sm-119 {
		bottom: -7.4375rem !important
	}

	.posml-sm-119 {
		left: -7.4375rem !important
	}

	.pos-sm-120 {
		top: 7.5rem !important;
		bottom: 7.5rem !important
	}

	.pos-sm-120,
	.posx-sm-120 {
		right: 7.5rem !important;
		left: 7.5rem !important
	}

	.posy-sm-120 {
		bottom: 7.5rem !important
	}

	.post-sm-120,
	.posy-sm-120 {
		top: 7.5rem !important
	}

	.posr-sm-120 {
		right: 7.5rem !important
	}

	.posb-sm-120 {
		bottom: 7.5rem !important
	}

	.posl-sm-120 {
		left: 7.5rem !important
	}

	.posmt-sm-120 {
		top: -7.5rem !important
	}

	.posmr-sm-120 {
		right: -7.5rem !important
	}

	.posmb-sm-120 {
		bottom: -7.5rem !important
	}

	.posml-sm-120 {
		left: -7.5rem !important
	}

	.pos-sm-121 {
		top: 7.5625rem !important;
		bottom: 7.5625rem !important
	}

	.pos-sm-121,
	.posx-sm-121 {
		right: 7.5625rem !important;
		left: 7.5625rem !important
	}

	.posy-sm-121 {
		bottom: 7.5625rem !important
	}

	.post-sm-121,
	.posy-sm-121 {
		top: 7.5625rem !important
	}

	.posr-sm-121 {
		right: 7.5625rem !important
	}

	.posb-sm-121 {
		bottom: 7.5625rem !important
	}

	.posl-sm-121 {
		left: 7.5625rem !important
	}

	.posmt-sm-121 {
		top: -7.5625rem !important
	}

	.posmr-sm-121 {
		right: -7.5625rem !important
	}

	.posmb-sm-121 {
		bottom: -7.5625rem !important
	}

	.posml-sm-121 {
		left: -7.5625rem !important
	}

	.pos-sm-122 {
		top: 7.625rem !important;
		bottom: 7.625rem !important
	}

	.pos-sm-122,
	.posx-sm-122 {
		right: 7.625rem !important;
		left: 7.625rem !important
	}

	.posy-sm-122 {
		bottom: 7.625rem !important
	}

	.post-sm-122,
	.posy-sm-122 {
		top: 7.625rem !important
	}

	.posr-sm-122 {
		right: 7.625rem !important
	}

	.posb-sm-122 {
		bottom: 7.625rem !important
	}

	.posl-sm-122 {
		left: 7.625rem !important
	}

	.posmt-sm-122 {
		top: -7.625rem !important
	}

	.posmr-sm-122 {
		right: -7.625rem !important
	}

	.posmb-sm-122 {
		bottom: -7.625rem !important
	}

	.posml-sm-122 {
		left: -7.625rem !important
	}

	.pos-sm-123 {
		top: 7.6875rem !important;
		bottom: 7.6875rem !important
	}

	.pos-sm-123,
	.posx-sm-123 {
		right: 7.6875rem !important;
		left: 7.6875rem !important
	}

	.posy-sm-123 {
		bottom: 7.6875rem !important
	}

	.post-sm-123,
	.posy-sm-123 {
		top: 7.6875rem !important
	}

	.posr-sm-123 {
		right: 7.6875rem !important
	}

	.posb-sm-123 {
		bottom: 7.6875rem !important
	}

	.posl-sm-123 {
		left: 7.6875rem !important
	}

	.posmt-sm-123 {
		top: -7.6875rem !important
	}

	.posmr-sm-123 {
		right: -7.6875rem !important
	}

	.posmb-sm-123 {
		bottom: -7.6875rem !important
	}

	.posml-sm-123 {
		left: -7.6875rem !important
	}

	.pos-sm-124 {
		top: 7.75rem !important;
		bottom: 7.75rem !important
	}

	.pos-sm-124,
	.posx-sm-124 {
		right: 7.75rem !important;
		left: 7.75rem !important
	}

	.posy-sm-124 {
		bottom: 7.75rem !important
	}

	.post-sm-124,
	.posy-sm-124 {
		top: 7.75rem !important
	}

	.posr-sm-124 {
		right: 7.75rem !important
	}

	.posb-sm-124 {
		bottom: 7.75rem !important
	}

	.posl-sm-124 {
		left: 7.75rem !important
	}

	.posmt-sm-124 {
		top: -7.75rem !important
	}

	.posmr-sm-124 {
		right: -7.75rem !important
	}

	.posmb-sm-124 {
		bottom: -7.75rem !important
	}

	.posml-sm-124 {
		left: -7.75rem !important
	}

	.pos-sm-125 {
		top: 7.8125rem !important;
		bottom: 7.8125rem !important
	}

	.pos-sm-125,
	.posx-sm-125 {
		right: 7.8125rem !important;
		left: 7.8125rem !important
	}

	.posy-sm-125 {
		bottom: 7.8125rem !important
	}

	.post-sm-125,
	.posy-sm-125 {
		top: 7.8125rem !important
	}

	.posr-sm-125 {
		right: 7.8125rem !important
	}

	.posb-sm-125 {
		bottom: 7.8125rem !important
	}

	.posl-sm-125 {
		left: 7.8125rem !important
	}

	.posmt-sm-125 {
		top: -7.8125rem !important
	}

	.posmr-sm-125 {
		right: -7.8125rem !important
	}

	.posmb-sm-125 {
		bottom: -7.8125rem !important
	}

	.posml-sm-125 {
		left: -7.8125rem !important
	}

	.pos-sm-126 {
		top: 7.875rem !important;
		bottom: 7.875rem !important
	}

	.pos-sm-126,
	.posx-sm-126 {
		right: 7.875rem !important;
		left: 7.875rem !important
	}

	.posy-sm-126 {
		bottom: 7.875rem !important
	}

	.post-sm-126,
	.posy-sm-126 {
		top: 7.875rem !important
	}

	.posr-sm-126 {
		right: 7.875rem !important
	}

	.posb-sm-126 {
		bottom: 7.875rem !important
	}

	.posl-sm-126 {
		left: 7.875rem !important
	}

	.posmt-sm-126 {
		top: -7.875rem !important
	}

	.posmr-sm-126 {
		right: -7.875rem !important
	}

	.posmb-sm-126 {
		bottom: -7.875rem !important
	}

	.posml-sm-126 {
		left: -7.875rem !important
	}

	.pos-sm-127 {
		top: 7.9375rem !important;
		bottom: 7.9375rem !important
	}

	.pos-sm-127,
	.posx-sm-127 {
		right: 7.9375rem !important;
		left: 7.9375rem !important
	}

	.posy-sm-127 {
		bottom: 7.9375rem !important
	}

	.post-sm-127,
	.posy-sm-127 {
		top: 7.9375rem !important
	}

	.posr-sm-127 {
		right: 7.9375rem !important
	}

	.posb-sm-127 {
		bottom: 7.9375rem !important
	}

	.posl-sm-127 {
		left: 7.9375rem !important
	}

	.posmt-sm-127 {
		top: -7.9375rem !important
	}

	.posmr-sm-127 {
		right: -7.9375rem !important
	}

	.posmb-sm-127 {
		bottom: -7.9375rem !important
	}

	.posml-sm-127 {
		left: -7.9375rem !important
	}

	.pos-sm-128 {
		top: 8rem !important;
		bottom: 8rem !important
	}

	.pos-sm-128,
	.posx-sm-128 {
		right: 8rem !important;
		left: 8rem !important
	}

	.posy-sm-128 {
		bottom: 8rem !important
	}

	.post-sm-128,
	.posy-sm-128 {
		top: 8rem !important
	}

	.posr-sm-128 {
		right: 8rem !important
	}

	.posb-sm-128 {
		bottom: 8rem !important
	}

	.posl-sm-128 {
		left: 8rem !important
	}

	.posmt-sm-128 {
		top: -8rem !important
	}

	.posmr-sm-128 {
		right: -8rem !important
	}

	.posmb-sm-128 {
		bottom: -8rem !important
	}

	.posml-sm-128 {
		left: -8rem !important
	}

	.pos-sm-129 {
		top: 8.0625rem !important;
		bottom: 8.0625rem !important
	}

	.pos-sm-129,
	.posx-sm-129 {
		right: 8.0625rem !important;
		left: 8.0625rem !important
	}

	.posy-sm-129 {
		bottom: 8.0625rem !important
	}

	.post-sm-129,
	.posy-sm-129 {
		top: 8.0625rem !important
	}

	.posr-sm-129 {
		right: 8.0625rem !important
	}

	.posb-sm-129 {
		bottom: 8.0625rem !important
	}

	.posl-sm-129 {
		left: 8.0625rem !important
	}

	.posmt-sm-129 {
		top: -8.0625rem !important
	}

	.posmr-sm-129 {
		right: -8.0625rem !important
	}

	.posmb-sm-129 {
		bottom: -8.0625rem !important
	}

	.posml-sm-129 {
		left: -8.0625rem !important
	}

	.pos-sm-130 {
		top: 8.125rem !important;
		bottom: 8.125rem !important
	}

	.pos-sm-130,
	.posx-sm-130 {
		right: 8.125rem !important;
		left: 8.125rem !important
	}

	.posy-sm-130 {
		bottom: 8.125rem !important
	}

	.post-sm-130,
	.posy-sm-130 {
		top: 8.125rem !important
	}

	.posr-sm-130 {
		right: 8.125rem !important
	}

	.posb-sm-130 {
		bottom: 8.125rem !important
	}

	.posl-sm-130 {
		left: 8.125rem !important
	}

	.posmt-sm-130 {
		top: -8.125rem !important
	}

	.posmr-sm-130 {
		right: -8.125rem !important
	}

	.posmb-sm-130 {
		bottom: -8.125rem !important
	}

	.posml-sm-130 {
		left: -8.125rem !important
	}

	.pos-sm-131 {
		top: 8.1875rem !important;
		bottom: 8.1875rem !important
	}

	.pos-sm-131,
	.posx-sm-131 {
		right: 8.1875rem !important;
		left: 8.1875rem !important
	}

	.posy-sm-131 {
		bottom: 8.1875rem !important
	}

	.post-sm-131,
	.posy-sm-131 {
		top: 8.1875rem !important
	}

	.posr-sm-131 {
		right: 8.1875rem !important
	}

	.posb-sm-131 {
		bottom: 8.1875rem !important
	}

	.posl-sm-131 {
		left: 8.1875rem !important
	}

	.posmt-sm-131 {
		top: -8.1875rem !important
	}

	.posmr-sm-131 {
		right: -8.1875rem !important
	}

	.posmb-sm-131 {
		bottom: -8.1875rem !important
	}

	.posml-sm-131 {
		left: -8.1875rem !important
	}

	.pos-sm-132 {
		top: 8.25rem !important;
		bottom: 8.25rem !important
	}

	.pos-sm-132,
	.posx-sm-132 {
		right: 8.25rem !important;
		left: 8.25rem !important
	}

	.posy-sm-132 {
		bottom: 8.25rem !important
	}

	.post-sm-132,
	.posy-sm-132 {
		top: 8.25rem !important
	}

	.posr-sm-132 {
		right: 8.25rem !important
	}

	.posb-sm-132 {
		bottom: 8.25rem !important
	}

	.posl-sm-132 {
		left: 8.25rem !important
	}

	.posmt-sm-132 {
		top: -8.25rem !important
	}

	.posmr-sm-132 {
		right: -8.25rem !important
	}

	.posmb-sm-132 {
		bottom: -8.25rem !important
	}

	.posml-sm-132 {
		left: -8.25rem !important
	}

	.pos-sm-133 {
		top: 8.3125rem !important;
		bottom: 8.3125rem !important
	}

	.pos-sm-133,
	.posx-sm-133 {
		right: 8.3125rem !important;
		left: 8.3125rem !important
	}

	.posy-sm-133 {
		bottom: 8.3125rem !important
	}

	.post-sm-133,
	.posy-sm-133 {
		top: 8.3125rem !important
	}

	.posr-sm-133 {
		right: 8.3125rem !important
	}

	.posb-sm-133 {
		bottom: 8.3125rem !important
	}

	.posl-sm-133 {
		left: 8.3125rem !important
	}

	.posmt-sm-133 {
		top: -8.3125rem !important
	}

	.posmr-sm-133 {
		right: -8.3125rem !important
	}

	.posmb-sm-133 {
		bottom: -8.3125rem !important
	}

	.posml-sm-133 {
		left: -8.3125rem !important
	}

	.pos-sm-134 {
		top: 8.375rem !important;
		bottom: 8.375rem !important
	}

	.pos-sm-134,
	.posx-sm-134 {
		right: 8.375rem !important;
		left: 8.375rem !important
	}

	.posy-sm-134 {
		bottom: 8.375rem !important
	}

	.post-sm-134,
	.posy-sm-134 {
		top: 8.375rem !important
	}

	.posr-sm-134 {
		right: 8.375rem !important
	}

	.posb-sm-134 {
		bottom: 8.375rem !important
	}

	.posl-sm-134 {
		left: 8.375rem !important
	}

	.posmt-sm-134 {
		top: -8.375rem !important
	}

	.posmr-sm-134 {
		right: -8.375rem !important
	}

	.posmb-sm-134 {
		bottom: -8.375rem !important
	}

	.posml-sm-134 {
		left: -8.375rem !important
	}

	.pos-sm-135 {
		top: 8.4375rem !important;
		bottom: 8.4375rem !important
	}

	.pos-sm-135,
	.posx-sm-135 {
		right: 8.4375rem !important;
		left: 8.4375rem !important
	}

	.posy-sm-135 {
		bottom: 8.4375rem !important
	}

	.post-sm-135,
	.posy-sm-135 {
		top: 8.4375rem !important
	}

	.posr-sm-135 {
		right: 8.4375rem !important
	}

	.posb-sm-135 {
		bottom: 8.4375rem !important
	}

	.posl-sm-135 {
		left: 8.4375rem !important
	}

	.posmt-sm-135 {
		top: -8.4375rem !important
	}

	.posmr-sm-135 {
		right: -8.4375rem !important
	}

	.posmb-sm-135 {
		bottom: -8.4375rem !important
	}

	.posml-sm-135 {
		left: -8.4375rem !important
	}

	.pos-sm-136 {
		top: 8.5rem !important;
		bottom: 8.5rem !important
	}

	.pos-sm-136,
	.posx-sm-136 {
		right: 8.5rem !important;
		left: 8.5rem !important
	}

	.posy-sm-136 {
		bottom: 8.5rem !important
	}

	.post-sm-136,
	.posy-sm-136 {
		top: 8.5rem !important
	}

	.posr-sm-136 {
		right: 8.5rem !important
	}

	.posb-sm-136 {
		bottom: 8.5rem !important
	}

	.posl-sm-136 {
		left: 8.5rem !important
	}

	.posmt-sm-136 {
		top: -8.5rem !important
	}

	.posmr-sm-136 {
		right: -8.5rem !important
	}

	.posmb-sm-136 {
		bottom: -8.5rem !important
	}

	.posml-sm-136 {
		left: -8.5rem !important
	}

	.pos-sm-137 {
		top: 8.5625rem !important;
		bottom: 8.5625rem !important
	}

	.pos-sm-137,
	.posx-sm-137 {
		right: 8.5625rem !important;
		left: 8.5625rem !important
	}

	.posy-sm-137 {
		bottom: 8.5625rem !important
	}

	.post-sm-137,
	.posy-sm-137 {
		top: 8.5625rem !important
	}

	.posr-sm-137 {
		right: 8.5625rem !important
	}

	.posb-sm-137 {
		bottom: 8.5625rem !important
	}

	.posl-sm-137 {
		left: 8.5625rem !important
	}

	.posmt-sm-137 {
		top: -8.5625rem !important
	}

	.posmr-sm-137 {
		right: -8.5625rem !important
	}

	.posmb-sm-137 {
		bottom: -8.5625rem !important
	}

	.posml-sm-137 {
		left: -8.5625rem !important
	}

	.pos-sm-138 {
		top: 8.625rem !important;
		bottom: 8.625rem !important
	}

	.pos-sm-138,
	.posx-sm-138 {
		right: 8.625rem !important;
		left: 8.625rem !important
	}

	.posy-sm-138 {
		bottom: 8.625rem !important
	}

	.post-sm-138,
	.posy-sm-138 {
		top: 8.625rem !important
	}

	.posr-sm-138 {
		right: 8.625rem !important
	}

	.posb-sm-138 {
		bottom: 8.625rem !important
	}

	.posl-sm-138 {
		left: 8.625rem !important
	}

	.posmt-sm-138 {
		top: -8.625rem !important
	}

	.posmr-sm-138 {
		right: -8.625rem !important
	}

	.posmb-sm-138 {
		bottom: -8.625rem !important
	}

	.posml-sm-138 {
		left: -8.625rem !important
	}

	.pos-sm-139 {
		top: 8.6875rem !important;
		bottom: 8.6875rem !important
	}

	.pos-sm-139,
	.posx-sm-139 {
		right: 8.6875rem !important;
		left: 8.6875rem !important
	}

	.posy-sm-139 {
		bottom: 8.6875rem !important
	}

	.post-sm-139,
	.posy-sm-139 {
		top: 8.6875rem !important
	}

	.posr-sm-139 {
		right: 8.6875rem !important
	}

	.posb-sm-139 {
		bottom: 8.6875rem !important
	}

	.posl-sm-139 {
		left: 8.6875rem !important
	}

	.posmt-sm-139 {
		top: -8.6875rem !important
	}

	.posmr-sm-139 {
		right: -8.6875rem !important
	}

	.posmb-sm-139 {
		bottom: -8.6875rem !important
	}

	.posml-sm-139 {
		left: -8.6875rem !important
	}

	.pos-sm-140 {
		top: 8.75rem !important;
		bottom: 8.75rem !important
	}

	.pos-sm-140,
	.posx-sm-140 {
		right: 8.75rem !important;
		left: 8.75rem !important
	}

	.posy-sm-140 {
		bottom: 8.75rem !important
	}

	.post-sm-140,
	.posy-sm-140 {
		top: 8.75rem !important
	}

	.posr-sm-140 {
		right: 8.75rem !important
	}

	.posb-sm-140 {
		bottom: 8.75rem !important
	}

	.posl-sm-140 {
		left: 8.75rem !important
	}

	.posmt-sm-140 {
		top: -8.75rem !important
	}

	.posmr-sm-140 {
		right: -8.75rem !important
	}

	.posmb-sm-140 {
		bottom: -8.75rem !important
	}

	.posml-sm-140 {
		left: -8.75rem !important
	}

	.pos-sm-141 {
		top: 8.8125rem !important;
		bottom: 8.8125rem !important
	}

	.pos-sm-141,
	.posx-sm-141 {
		right: 8.8125rem !important;
		left: 8.8125rem !important
	}

	.posy-sm-141 {
		bottom: 8.8125rem !important
	}

	.post-sm-141,
	.posy-sm-141 {
		top: 8.8125rem !important
	}

	.posr-sm-141 {
		right: 8.8125rem !important
	}

	.posb-sm-141 {
		bottom: 8.8125rem !important
	}

	.posl-sm-141 {
		left: 8.8125rem !important
	}

	.posmt-sm-141 {
		top: -8.8125rem !important
	}

	.posmr-sm-141 {
		right: -8.8125rem !important
	}

	.posmb-sm-141 {
		bottom: -8.8125rem !important
	}

	.posml-sm-141 {
		left: -8.8125rem !important
	}

	.pos-sm-142 {
		top: 8.875rem !important;
		bottom: 8.875rem !important
	}

	.pos-sm-142,
	.posx-sm-142 {
		right: 8.875rem !important;
		left: 8.875rem !important
	}

	.posy-sm-142 {
		bottom: 8.875rem !important
	}

	.post-sm-142,
	.posy-sm-142 {
		top: 8.875rem !important
	}

	.posr-sm-142 {
		right: 8.875rem !important
	}

	.posb-sm-142 {
		bottom: 8.875rem !important
	}

	.posl-sm-142 {
		left: 8.875rem !important
	}

	.posmt-sm-142 {
		top: -8.875rem !important
	}

	.posmr-sm-142 {
		right: -8.875rem !important
	}

	.posmb-sm-142 {
		bottom: -8.875rem !important
	}

	.posml-sm-142 {
		left: -8.875rem !important
	}

	.pos-sm-143 {
		top: 8.9375rem !important;
		bottom: 8.9375rem !important
	}

	.pos-sm-143,
	.posx-sm-143 {
		right: 8.9375rem !important;
		left: 8.9375rem !important
	}

	.posy-sm-143 {
		bottom: 8.9375rem !important
	}

	.post-sm-143,
	.posy-sm-143 {
		top: 8.9375rem !important
	}

	.posr-sm-143 {
		right: 8.9375rem !important
	}

	.posb-sm-143 {
		bottom: 8.9375rem !important
	}

	.posl-sm-143 {
		left: 8.9375rem !important
	}

	.posmt-sm-143 {
		top: -8.9375rem !important
	}

	.posmr-sm-143 {
		right: -8.9375rem !important
	}

	.posmb-sm-143 {
		bottom: -8.9375rem !important
	}

	.posml-sm-143 {
		left: -8.9375rem !important
	}

	.pos-sm-144 {
		top: 9rem !important;
		bottom: 9rem !important
	}

	.pos-sm-144,
	.posx-sm-144 {
		right: 9rem !important;
		left: 9rem !important
	}

	.posy-sm-144 {
		bottom: 9rem !important
	}

	.post-sm-144,
	.posy-sm-144 {
		top: 9rem !important
	}

	.posr-sm-144 {
		right: 9rem !important
	}

	.posb-sm-144 {
		bottom: 9rem !important
	}

	.posl-sm-144 {
		left: 9rem !important
	}

	.posmt-sm-144 {
		top: -9rem !important
	}

	.posmr-sm-144 {
		right: -9rem !important
	}

	.posmb-sm-144 {
		bottom: -9rem !important
	}

	.posml-sm-144 {
		left: -9rem !important
	}

	.pos-sm-145 {
		top: 9.0625rem !important;
		bottom: 9.0625rem !important
	}

	.pos-sm-145,
	.posx-sm-145 {
		right: 9.0625rem !important;
		left: 9.0625rem !important
	}

	.posy-sm-145 {
		bottom: 9.0625rem !important
	}

	.post-sm-145,
	.posy-sm-145 {
		top: 9.0625rem !important
	}

	.posr-sm-145 {
		right: 9.0625rem !important
	}

	.posb-sm-145 {
		bottom: 9.0625rem !important
	}

	.posl-sm-145 {
		left: 9.0625rem !important
	}

	.posmt-sm-145 {
		top: -9.0625rem !important
	}

	.posmr-sm-145 {
		right: -9.0625rem !important
	}

	.posmb-sm-145 {
		bottom: -9.0625rem !important
	}

	.posml-sm-145 {
		left: -9.0625rem !important
	}

	.pos-sm-146 {
		top: 9.125rem !important;
		bottom: 9.125rem !important
	}

	.pos-sm-146,
	.posx-sm-146 {
		right: 9.125rem !important;
		left: 9.125rem !important
	}

	.posy-sm-146 {
		bottom: 9.125rem !important
	}

	.post-sm-146,
	.posy-sm-146 {
		top: 9.125rem !important
	}

	.posr-sm-146 {
		right: 9.125rem !important
	}

	.posb-sm-146 {
		bottom: 9.125rem !important
	}

	.posl-sm-146 {
		left: 9.125rem !important
	}

	.posmt-sm-146 {
		top: -9.125rem !important
	}

	.posmr-sm-146 {
		right: -9.125rem !important
	}

	.posmb-sm-146 {
		bottom: -9.125rem !important
	}

	.posml-sm-146 {
		left: -9.125rem !important
	}

	.pos-sm-147 {
		top: 9.1875rem !important;
		bottom: 9.1875rem !important
	}

	.pos-sm-147,
	.posx-sm-147 {
		right: 9.1875rem !important;
		left: 9.1875rem !important
	}

	.posy-sm-147 {
		bottom: 9.1875rem !important
	}

	.post-sm-147,
	.posy-sm-147 {
		top: 9.1875rem !important
	}

	.posr-sm-147 {
		right: 9.1875rem !important
	}

	.posb-sm-147 {
		bottom: 9.1875rem !important
	}

	.posl-sm-147 {
		left: 9.1875rem !important
	}

	.posmt-sm-147 {
		top: -9.1875rem !important
	}

	.posmr-sm-147 {
		right: -9.1875rem !important
	}

	.posmb-sm-147 {
		bottom: -9.1875rem !important
	}

	.posml-sm-147 {
		left: -9.1875rem !important
	}

	.pos-sm-148 {
		top: 9.25rem !important;
		bottom: 9.25rem !important
	}

	.pos-sm-148,
	.posx-sm-148 {
		right: 9.25rem !important;
		left: 9.25rem !important
	}

	.posy-sm-148 {
		bottom: 9.25rem !important
	}

	.post-sm-148,
	.posy-sm-148 {
		top: 9.25rem !important
	}

	.posr-sm-148 {
		right: 9.25rem !important
	}

	.posb-sm-148 {
		bottom: 9.25rem !important
	}

	.posl-sm-148 {
		left: 9.25rem !important
	}

	.posmt-sm-148 {
		top: -9.25rem !important
	}

	.posmr-sm-148 {
		right: -9.25rem !important
	}

	.posmb-sm-148 {
		bottom: -9.25rem !important
	}

	.posml-sm-148 {
		left: -9.25rem !important
	}

	.pos-sm-149 {
		top: 9.3125rem !important;
		bottom: 9.3125rem !important
	}

	.pos-sm-149,
	.posx-sm-149 {
		right: 9.3125rem !important;
		left: 9.3125rem !important
	}

	.posy-sm-149 {
		bottom: 9.3125rem !important
	}

	.post-sm-149,
	.posy-sm-149 {
		top: 9.3125rem !important
	}

	.posr-sm-149 {
		right: 9.3125rem !important
	}

	.posb-sm-149 {
		bottom: 9.3125rem !important
	}

	.posl-sm-149 {
		left: 9.3125rem !important
	}

	.posmt-sm-149 {
		top: -9.3125rem !important
	}

	.posmr-sm-149 {
		right: -9.3125rem !important
	}

	.posmb-sm-149 {
		bottom: -9.3125rem !important
	}

	.posml-sm-149 {
		left: -9.3125rem !important
	}

	.pos-sm-150 {
		top: 9.375rem !important;
		bottom: 9.375rem !important
	}

	.pos-sm-150,
	.posx-sm-150 {
		right: 9.375rem !important;
		left: 9.375rem !important
	}

	.posy-sm-150 {
		bottom: 9.375rem !important
	}

	.post-sm-150,
	.posy-sm-150 {
		top: 9.375rem !important
	}

	.posr-sm-150 {
		right: 9.375rem !important
	}

	.posb-sm-150 {
		bottom: 9.375rem !important
	}

	.posl-sm-150 {
		left: 9.375rem !important
	}

	.posmt-sm-150 {
		top: -9.375rem !important
	}

	.posmr-sm-150 {
		right: -9.375rem !important
	}

	.posmb-sm-150 {
		bottom: -9.375rem !important
	}

	.posml-sm-150 {
		left: -9.375rem !important
	}

	.pos-sm-151 {
		top: 9.4375rem !important;
		bottom: 9.4375rem !important
	}

	.pos-sm-151,
	.posx-sm-151 {
		right: 9.4375rem !important;
		left: 9.4375rem !important
	}

	.posy-sm-151 {
		bottom: 9.4375rem !important
	}

	.post-sm-151,
	.posy-sm-151 {
		top: 9.4375rem !important
	}

	.posr-sm-151 {
		right: 9.4375rem !important
	}

	.posb-sm-151 {
		bottom: 9.4375rem !important
	}

	.posl-sm-151 {
		left: 9.4375rem !important
	}

	.posmt-sm-151 {
		top: -9.4375rem !important
	}

	.posmr-sm-151 {
		right: -9.4375rem !important
	}

	.posmb-sm-151 {
		bottom: -9.4375rem !important
	}

	.posml-sm-151 {
		left: -9.4375rem !important
	}

	.pos-sm-152 {
		top: 9.5rem !important;
		bottom: 9.5rem !important
	}

	.pos-sm-152,
	.posx-sm-152 {
		right: 9.5rem !important;
		left: 9.5rem !important
	}

	.posy-sm-152 {
		bottom: 9.5rem !important
	}

	.post-sm-152,
	.posy-sm-152 {
		top: 9.5rem !important
	}

	.posr-sm-152 {
		right: 9.5rem !important
	}

	.posb-sm-152 {
		bottom: 9.5rem !important
	}

	.posl-sm-152 {
		left: 9.5rem !important
	}

	.posmt-sm-152 {
		top: -9.5rem !important
	}

	.posmr-sm-152 {
		right: -9.5rem !important
	}

	.posmb-sm-152 {
		bottom: -9.5rem !important
	}

	.posml-sm-152 {
		left: -9.5rem !important
	}

	.pos-sm-153 {
		top: 9.5625rem !important;
		bottom: 9.5625rem !important
	}

	.pos-sm-153,
	.posx-sm-153 {
		right: 9.5625rem !important;
		left: 9.5625rem !important
	}

	.posy-sm-153 {
		bottom: 9.5625rem !important
	}

	.post-sm-153,
	.posy-sm-153 {
		top: 9.5625rem !important
	}

	.posr-sm-153 {
		right: 9.5625rem !important
	}

	.posb-sm-153 {
		bottom: 9.5625rem !important
	}

	.posl-sm-153 {
		left: 9.5625rem !important
	}

	.posmt-sm-153 {
		top: -9.5625rem !important
	}

	.posmr-sm-153 {
		right: -9.5625rem !important
	}

	.posmb-sm-153 {
		bottom: -9.5625rem !important
	}

	.posml-sm-153 {
		left: -9.5625rem !important
	}

	.pos-sm-154 {
		top: 9.625rem !important;
		bottom: 9.625rem !important
	}

	.pos-sm-154,
	.posx-sm-154 {
		right: 9.625rem !important;
		left: 9.625rem !important
	}

	.posy-sm-154 {
		bottom: 9.625rem !important
	}

	.post-sm-154,
	.posy-sm-154 {
		top: 9.625rem !important
	}

	.posr-sm-154 {
		right: 9.625rem !important
	}

	.posb-sm-154 {
		bottom: 9.625rem !important
	}

	.posl-sm-154 {
		left: 9.625rem !important
	}

	.posmt-sm-154 {
		top: -9.625rem !important
	}

	.posmr-sm-154 {
		right: -9.625rem !important
	}

	.posmb-sm-154 {
		bottom: -9.625rem !important
	}

	.posml-sm-154 {
		left: -9.625rem !important
	}

	.pos-sm-155 {
		top: 9.6875rem !important;
		bottom: 9.6875rem !important
	}

	.pos-sm-155,
	.posx-sm-155 {
		right: 9.6875rem !important;
		left: 9.6875rem !important
	}

	.posy-sm-155 {
		bottom: 9.6875rem !important
	}

	.post-sm-155,
	.posy-sm-155 {
		top: 9.6875rem !important
	}

	.posr-sm-155 {
		right: 9.6875rem !important
	}

	.posb-sm-155 {
		bottom: 9.6875rem !important
	}

	.posl-sm-155 {
		left: 9.6875rem !important
	}

	.posmt-sm-155 {
		top: -9.6875rem !important
	}

	.posmr-sm-155 {
		right: -9.6875rem !important
	}

	.posmb-sm-155 {
		bottom: -9.6875rem !important
	}

	.posml-sm-155 {
		left: -9.6875rem !important
	}

	.pos-sm-156 {
		top: 9.75rem !important;
		bottom: 9.75rem !important
	}

	.pos-sm-156,
	.posx-sm-156 {
		right: 9.75rem !important;
		left: 9.75rem !important
	}

	.posy-sm-156 {
		bottom: 9.75rem !important
	}

	.post-sm-156,
	.posy-sm-156 {
		top: 9.75rem !important
	}

	.posr-sm-156 {
		right: 9.75rem !important
	}

	.posb-sm-156 {
		bottom: 9.75rem !important
	}

	.posl-sm-156 {
		left: 9.75rem !important
	}

	.posmt-sm-156 {
		top: -9.75rem !important
	}

	.posmr-sm-156 {
		right: -9.75rem !important
	}

	.posmb-sm-156 {
		bottom: -9.75rem !important
	}

	.posml-sm-156 {
		left: -9.75rem !important
	}

	.pos-sm-157 {
		top: 9.8125rem !important;
		bottom: 9.8125rem !important
	}

	.pos-sm-157,
	.posx-sm-157 {
		right: 9.8125rem !important;
		left: 9.8125rem !important
	}

	.posy-sm-157 {
		bottom: 9.8125rem !important
	}

	.post-sm-157,
	.posy-sm-157 {
		top: 9.8125rem !important
	}

	.posr-sm-157 {
		right: 9.8125rem !important
	}

	.posb-sm-157 {
		bottom: 9.8125rem !important
	}

	.posl-sm-157 {
		left: 9.8125rem !important
	}

	.posmt-sm-157 {
		top: -9.8125rem !important
	}

	.posmr-sm-157 {
		right: -9.8125rem !important
	}

	.posmb-sm-157 {
		bottom: -9.8125rem !important
	}

	.posml-sm-157 {
		left: -9.8125rem !important
	}

	.pos-sm-158 {
		top: 9.875rem !important;
		bottom: 9.875rem !important
	}

	.pos-sm-158,
	.posx-sm-158 {
		right: 9.875rem !important;
		left: 9.875rem !important
	}

	.posy-sm-158 {
		bottom: 9.875rem !important
	}

	.post-sm-158,
	.posy-sm-158 {
		top: 9.875rem !important
	}

	.posr-sm-158 {
		right: 9.875rem !important
	}

	.posb-sm-158 {
		bottom: 9.875rem !important
	}

	.posl-sm-158 {
		left: 9.875rem !important
	}

	.posmt-sm-158 {
		top: -9.875rem !important
	}

	.posmr-sm-158 {
		right: -9.875rem !important
	}

	.posmb-sm-158 {
		bottom: -9.875rem !important
	}

	.posml-sm-158 {
		left: -9.875rem !important
	}

	.pos-sm-159 {
		top: 9.9375rem !important;
		bottom: 9.9375rem !important
	}

	.pos-sm-159,
	.posx-sm-159 {
		right: 9.9375rem !important;
		left: 9.9375rem !important
	}

	.posy-sm-159 {
		bottom: 9.9375rem !important
	}

	.post-sm-159,
	.posy-sm-159 {
		top: 9.9375rem !important
	}

	.posr-sm-159 {
		right: 9.9375rem !important
	}

	.posb-sm-159 {
		bottom: 9.9375rem !important
	}

	.posl-sm-159 {
		left: 9.9375rem !important
	}

	.posmt-sm-159 {
		top: -9.9375rem !important
	}

	.posmr-sm-159 {
		right: -9.9375rem !important
	}

	.posmb-sm-159 {
		bottom: -9.9375rem !important
	}

	.posml-sm-159 {
		left: -9.9375rem !important
	}

	.pos-sm-160 {
		top: 10rem !important;
		bottom: 10rem !important
	}

	.pos-sm-160,
	.posx-sm-160 {
		right: 10rem !important;
		left: 10rem !important
	}

	.posy-sm-160 {
		bottom: 10rem !important
	}

	.post-sm-160,
	.posy-sm-160 {
		top: 10rem !important
	}

	.posr-sm-160 {
		right: 10rem !important
	}

	.posb-sm-160 {
		bottom: 10rem !important
	}

	.posl-sm-160 {
		left: 10rem !important
	}

	.posmt-sm-160 {
		top: -10rem !important
	}

	.posmr-sm-160 {
		right: -10rem !important
	}

	.posmb-sm-160 {
		bottom: -10rem !important
	}

	.posml-sm-160 {
		left: -10rem !important
	}

	.pos-sm-161 {
		top: 10.0625rem !important;
		bottom: 10.0625rem !important
	}

	.pos-sm-161,
	.posx-sm-161 {
		right: 10.0625rem !important;
		left: 10.0625rem !important
	}

	.posy-sm-161 {
		bottom: 10.0625rem !important
	}

	.post-sm-161,
	.posy-sm-161 {
		top: 10.0625rem !important
	}

	.posr-sm-161 {
		right: 10.0625rem !important
	}

	.posb-sm-161 {
		bottom: 10.0625rem !important
	}

	.posl-sm-161 {
		left: 10.0625rem !important
	}

	.posmt-sm-161 {
		top: -10.0625rem !important
	}

	.posmr-sm-161 {
		right: -10.0625rem !important
	}

	.posmb-sm-161 {
		bottom: -10.0625rem !important
	}

	.posml-sm-161 {
		left: -10.0625rem !important
	}

	.pos-sm-162 {
		top: 10.125rem !important;
		bottom: 10.125rem !important
	}

	.pos-sm-162,
	.posx-sm-162 {
		right: 10.125rem !important;
		left: 10.125rem !important
	}

	.posy-sm-162 {
		bottom: 10.125rem !important
	}

	.post-sm-162,
	.posy-sm-162 {
		top: 10.125rem !important
	}

	.posr-sm-162 {
		right: 10.125rem !important
	}

	.posb-sm-162 {
		bottom: 10.125rem !important
	}

	.posl-sm-162 {
		left: 10.125rem !important
	}

	.posmt-sm-162 {
		top: -10.125rem !important
	}

	.posmr-sm-162 {
		right: -10.125rem !important
	}

	.posmb-sm-162 {
		bottom: -10.125rem !important
	}

	.posml-sm-162 {
		left: -10.125rem !important
	}

	.pos-sm-163 {
		top: 10.1875rem !important;
		bottom: 10.1875rem !important
	}

	.pos-sm-163,
	.posx-sm-163 {
		right: 10.1875rem !important;
		left: 10.1875rem !important
	}

	.posy-sm-163 {
		bottom: 10.1875rem !important
	}

	.post-sm-163,
	.posy-sm-163 {
		top: 10.1875rem !important
	}

	.posr-sm-163 {
		right: 10.1875rem !important
	}

	.posb-sm-163 {
		bottom: 10.1875rem !important
	}

	.posl-sm-163 {
		left: 10.1875rem !important
	}

	.posmt-sm-163 {
		top: -10.1875rem !important
	}

	.posmr-sm-163 {
		right: -10.1875rem !important
	}

	.posmb-sm-163 {
		bottom: -10.1875rem !important
	}

	.posml-sm-163 {
		left: -10.1875rem !important
	}

	.pos-sm-164 {
		top: 10.25rem !important;
		bottom: 10.25rem !important
	}

	.pos-sm-164,
	.posx-sm-164 {
		right: 10.25rem !important;
		left: 10.25rem !important
	}

	.posy-sm-164 {
		bottom: 10.25rem !important
	}

	.post-sm-164,
	.posy-sm-164 {
		top: 10.25rem !important
	}

	.posr-sm-164 {
		right: 10.25rem !important
	}

	.posb-sm-164 {
		bottom: 10.25rem !important
	}

	.posl-sm-164 {
		left: 10.25rem !important
	}

	.posmt-sm-164 {
		top: -10.25rem !important
	}

	.posmr-sm-164 {
		right: -10.25rem !important
	}

	.posmb-sm-164 {
		bottom: -10.25rem !important
	}

	.posml-sm-164 {
		left: -10.25rem !important
	}

	.pos-sm-165 {
		top: 10.3125rem !important;
		bottom: 10.3125rem !important
	}

	.pos-sm-165,
	.posx-sm-165 {
		right: 10.3125rem !important;
		left: 10.3125rem !important
	}

	.posy-sm-165 {
		bottom: 10.3125rem !important
	}

	.post-sm-165,
	.posy-sm-165 {
		top: 10.3125rem !important
	}

	.posr-sm-165 {
		right: 10.3125rem !important
	}

	.posb-sm-165 {
		bottom: 10.3125rem !important
	}

	.posl-sm-165 {
		left: 10.3125rem !important
	}

	.posmt-sm-165 {
		top: -10.3125rem !important
	}

	.posmr-sm-165 {
		right: -10.3125rem !important
	}

	.posmb-sm-165 {
		bottom: -10.3125rem !important
	}

	.posml-sm-165 {
		left: -10.3125rem !important
	}

	.pos-sm-166 {
		top: 10.375rem !important;
		bottom: 10.375rem !important
	}

	.pos-sm-166,
	.posx-sm-166 {
		right: 10.375rem !important;
		left: 10.375rem !important
	}

	.posy-sm-166 {
		bottom: 10.375rem !important
	}

	.post-sm-166,
	.posy-sm-166 {
		top: 10.375rem !important
	}

	.posr-sm-166 {
		right: 10.375rem !important
	}

	.posb-sm-166 {
		bottom: 10.375rem !important
	}

	.posl-sm-166 {
		left: 10.375rem !important
	}

	.posmt-sm-166 {
		top: -10.375rem !important
	}

	.posmr-sm-166 {
		right: -10.375rem !important
	}

	.posmb-sm-166 {
		bottom: -10.375rem !important
	}

	.posml-sm-166 {
		left: -10.375rem !important
	}

	.pos-sm-167 {
		top: 10.4375rem !important;
		bottom: 10.4375rem !important
	}

	.pos-sm-167,
	.posx-sm-167 {
		right: 10.4375rem !important;
		left: 10.4375rem !important
	}

	.posy-sm-167 {
		bottom: 10.4375rem !important
	}

	.post-sm-167,
	.posy-sm-167 {
		top: 10.4375rem !important
	}

	.posr-sm-167 {
		right: 10.4375rem !important
	}

	.posb-sm-167 {
		bottom: 10.4375rem !important
	}

	.posl-sm-167 {
		left: 10.4375rem !important
	}

	.posmt-sm-167 {
		top: -10.4375rem !important
	}

	.posmr-sm-167 {
		right: -10.4375rem !important
	}

	.posmb-sm-167 {
		bottom: -10.4375rem !important
	}

	.posml-sm-167 {
		left: -10.4375rem !important
	}

	.pos-sm-168 {
		top: 10.5rem !important;
		bottom: 10.5rem !important
	}

	.pos-sm-168,
	.posx-sm-168 {
		right: 10.5rem !important;
		left: 10.5rem !important
	}

	.posy-sm-168 {
		bottom: 10.5rem !important
	}

	.post-sm-168,
	.posy-sm-168 {
		top: 10.5rem !important
	}

	.posr-sm-168 {
		right: 10.5rem !important
	}

	.posb-sm-168 {
		bottom: 10.5rem !important
	}

	.posl-sm-168 {
		left: 10.5rem !important
	}

	.posmt-sm-168 {
		top: -10.5rem !important
	}

	.posmr-sm-168 {
		right: -10.5rem !important
	}

	.posmb-sm-168 {
		bottom: -10.5rem !important
	}

	.posml-sm-168 {
		left: -10.5rem !important
	}

	.pos-sm-169 {
		top: 10.5625rem !important;
		bottom: 10.5625rem !important
	}

	.pos-sm-169,
	.posx-sm-169 {
		right: 10.5625rem !important;
		left: 10.5625rem !important
	}

	.posy-sm-169 {
		bottom: 10.5625rem !important
	}

	.post-sm-169,
	.posy-sm-169 {
		top: 10.5625rem !important
	}

	.posr-sm-169 {
		right: 10.5625rem !important
	}

	.posb-sm-169 {
		bottom: 10.5625rem !important
	}

	.posl-sm-169 {
		left: 10.5625rem !important
	}

	.posmt-sm-169 {
		top: -10.5625rem !important
	}

	.posmr-sm-169 {
		right: -10.5625rem !important
	}

	.posmb-sm-169 {
		bottom: -10.5625rem !important
	}

	.posml-sm-169 {
		left: -10.5625rem !important
	}

	.pos-sm-170 {
		top: 10.625rem !important;
		bottom: 10.625rem !important
	}

	.pos-sm-170,
	.posx-sm-170 {
		right: 10.625rem !important;
		left: 10.625rem !important
	}

	.posy-sm-170 {
		bottom: 10.625rem !important
	}

	.post-sm-170,
	.posy-sm-170 {
		top: 10.625rem !important
	}

	.posr-sm-170 {
		right: 10.625rem !important
	}

	.posb-sm-170 {
		bottom: 10.625rem !important
	}

	.posl-sm-170 {
		left: 10.625rem !important
	}

	.posmt-sm-170 {
		top: -10.625rem !important
	}

	.posmr-sm-170 {
		right: -10.625rem !important
	}

	.posmb-sm-170 {
		bottom: -10.625rem !important
	}

	.posml-sm-170 {
		left: -10.625rem !important
	}

	.pos-sm-171 {
		top: 10.6875rem !important;
		bottom: 10.6875rem !important
	}

	.pos-sm-171,
	.posx-sm-171 {
		right: 10.6875rem !important;
		left: 10.6875rem !important
	}

	.posy-sm-171 {
		bottom: 10.6875rem !important
	}

	.post-sm-171,
	.posy-sm-171 {
		top: 10.6875rem !important
	}

	.posr-sm-171 {
		right: 10.6875rem !important
	}

	.posb-sm-171 {
		bottom: 10.6875rem !important
	}

	.posl-sm-171 {
		left: 10.6875rem !important
	}

	.posmt-sm-171 {
		top: -10.6875rem !important
	}

	.posmr-sm-171 {
		right: -10.6875rem !important
	}

	.posmb-sm-171 {
		bottom: -10.6875rem !important
	}

	.posml-sm-171 {
		left: -10.6875rem !important
	}

	.pos-sm-172 {
		top: 10.75rem !important;
		bottom: 10.75rem !important
	}

	.pos-sm-172,
	.posx-sm-172 {
		right: 10.75rem !important;
		left: 10.75rem !important
	}

	.posy-sm-172 {
		bottom: 10.75rem !important
	}

	.post-sm-172,
	.posy-sm-172 {
		top: 10.75rem !important
	}

	.posr-sm-172 {
		right: 10.75rem !important
	}

	.posb-sm-172 {
		bottom: 10.75rem !important
	}

	.posl-sm-172 {
		left: 10.75rem !important
	}

	.posmt-sm-172 {
		top: -10.75rem !important
	}

	.posmr-sm-172 {
		right: -10.75rem !important
	}

	.posmb-sm-172 {
		bottom: -10.75rem !important
	}

	.posml-sm-172 {
		left: -10.75rem !important
	}

	.pos-sm-173 {
		top: 10.8125rem !important;
		bottom: 10.8125rem !important
	}

	.pos-sm-173,
	.posx-sm-173 {
		right: 10.8125rem !important;
		left: 10.8125rem !important
	}

	.posy-sm-173 {
		bottom: 10.8125rem !important
	}

	.post-sm-173,
	.posy-sm-173 {
		top: 10.8125rem !important
	}

	.posr-sm-173 {
		right: 10.8125rem !important
	}

	.posb-sm-173 {
		bottom: 10.8125rem !important
	}

	.posl-sm-173 {
		left: 10.8125rem !important
	}

	.posmt-sm-173 {
		top: -10.8125rem !important
	}

	.posmr-sm-173 {
		right: -10.8125rem !important
	}

	.posmb-sm-173 {
		bottom: -10.8125rem !important
	}

	.posml-sm-173 {
		left: -10.8125rem !important
	}

	.pos-sm-174 {
		top: 10.875rem !important;
		bottom: 10.875rem !important
	}

	.pos-sm-174,
	.posx-sm-174 {
		right: 10.875rem !important;
		left: 10.875rem !important
	}

	.posy-sm-174 {
		bottom: 10.875rem !important
	}

	.post-sm-174,
	.posy-sm-174 {
		top: 10.875rem !important
	}

	.posr-sm-174 {
		right: 10.875rem !important
	}

	.posb-sm-174 {
		bottom: 10.875rem !important
	}

	.posl-sm-174 {
		left: 10.875rem !important
	}

	.posmt-sm-174 {
		top: -10.875rem !important
	}

	.posmr-sm-174 {
		right: -10.875rem !important
	}

	.posmb-sm-174 {
		bottom: -10.875rem !important
	}

	.posml-sm-174 {
		left: -10.875rem !important
	}

	.pos-sm-175 {
		top: 10.9375rem !important;
		bottom: 10.9375rem !important
	}

	.pos-sm-175,
	.posx-sm-175 {
		right: 10.9375rem !important;
		left: 10.9375rem !important
	}

	.posy-sm-175 {
		bottom: 10.9375rem !important
	}

	.post-sm-175,
	.posy-sm-175 {
		top: 10.9375rem !important
	}

	.posr-sm-175 {
		right: 10.9375rem !important
	}

	.posb-sm-175 {
		bottom: 10.9375rem !important
	}

	.posl-sm-175 {
		left: 10.9375rem !important
	}

	.posmt-sm-175 {
		top: -10.9375rem !important
	}

	.posmr-sm-175 {
		right: -10.9375rem !important
	}

	.posmb-sm-175 {
		bottom: -10.9375rem !important
	}

	.posml-sm-175 {
		left: -10.9375rem !important
	}

	.pos-sm-176 {
		top: 11rem !important;
		bottom: 11rem !important
	}

	.pos-sm-176,
	.posx-sm-176 {
		right: 11rem !important;
		left: 11rem !important
	}

	.posy-sm-176 {
		bottom: 11rem !important
	}

	.post-sm-176,
	.posy-sm-176 {
		top: 11rem !important
	}

	.posr-sm-176 {
		right: 11rem !important
	}

	.posb-sm-176 {
		bottom: 11rem !important
	}

	.posl-sm-176 {
		left: 11rem !important
	}

	.posmt-sm-176 {
		top: -11rem !important
	}

	.posmr-sm-176 {
		right: -11rem !important
	}

	.posmb-sm-176 {
		bottom: -11rem !important
	}

	.posml-sm-176 {
		left: -11rem !important
	}

	.pos-sm-177 {
		top: 11.0625rem !important;
		bottom: 11.0625rem !important
	}

	.pos-sm-177,
	.posx-sm-177 {
		right: 11.0625rem !important;
		left: 11.0625rem !important
	}

	.posy-sm-177 {
		bottom: 11.0625rem !important
	}

	.post-sm-177,
	.posy-sm-177 {
		top: 11.0625rem !important
	}

	.posr-sm-177 {
		right: 11.0625rem !important
	}

	.posb-sm-177 {
		bottom: 11.0625rem !important
	}

	.posl-sm-177 {
		left: 11.0625rem !important
	}

	.posmt-sm-177 {
		top: -11.0625rem !important
	}

	.posmr-sm-177 {
		right: -11.0625rem !important
	}

	.posmb-sm-177 {
		bottom: -11.0625rem !important
	}

	.posml-sm-177 {
		left: -11.0625rem !important
	}

	.pos-sm-178 {
		top: 11.125rem !important;
		bottom: 11.125rem !important
	}

	.pos-sm-178,
	.posx-sm-178 {
		right: 11.125rem !important;
		left: 11.125rem !important
	}

	.posy-sm-178 {
		bottom: 11.125rem !important
	}

	.post-sm-178,
	.posy-sm-178 {
		top: 11.125rem !important
	}

	.posr-sm-178 {
		right: 11.125rem !important
	}

	.posb-sm-178 {
		bottom: 11.125rem !important
	}

	.posl-sm-178 {
		left: 11.125rem !important
	}

	.posmt-sm-178 {
		top: -11.125rem !important
	}

	.posmr-sm-178 {
		right: -11.125rem !important
	}

	.posmb-sm-178 {
		bottom: -11.125rem !important
	}

	.posml-sm-178 {
		left: -11.125rem !important
	}

	.pos-sm-179 {
		top: 11.1875rem !important;
		bottom: 11.1875rem !important
	}

	.pos-sm-179,
	.posx-sm-179 {
		right: 11.1875rem !important;
		left: 11.1875rem !important
	}

	.posy-sm-179 {
		bottom: 11.1875rem !important
	}

	.post-sm-179,
	.posy-sm-179 {
		top: 11.1875rem !important
	}

	.posr-sm-179 {
		right: 11.1875rem !important
	}

	.posb-sm-179 {
		bottom: 11.1875rem !important
	}

	.posl-sm-179 {
		left: 11.1875rem !important
	}

	.posmt-sm-179 {
		top: -11.1875rem !important
	}

	.posmr-sm-179 {
		right: -11.1875rem !important
	}

	.posmb-sm-179 {
		bottom: -11.1875rem !important
	}

	.posml-sm-179 {
		left: -11.1875rem !important
	}

	.pos-sm-180 {
		top: 11.25rem !important;
		bottom: 11.25rem !important
	}

	.pos-sm-180,
	.posx-sm-180 {
		right: 11.25rem !important;
		left: 11.25rem !important
	}

	.posy-sm-180 {
		bottom: 11.25rem !important
	}

	.post-sm-180,
	.posy-sm-180 {
		top: 11.25rem !important
	}

	.posr-sm-180 {
		right: 11.25rem !important
	}

	.posb-sm-180 {
		bottom: 11.25rem !important
	}

	.posl-sm-180 {
		left: 11.25rem !important
	}

	.posmt-sm-180 {
		top: -11.25rem !important
	}

	.posmr-sm-180 {
		right: -11.25rem !important
	}

	.posmb-sm-180 {
		bottom: -11.25rem !important
	}

	.posml-sm-180 {
		left: -11.25rem !important
	}

	.pos-sm-181 {
		top: 11.3125rem !important;
		bottom: 11.3125rem !important
	}

	.pos-sm-181,
	.posx-sm-181 {
		right: 11.3125rem !important;
		left: 11.3125rem !important
	}

	.posy-sm-181 {
		bottom: 11.3125rem !important
	}

	.post-sm-181,
	.posy-sm-181 {
		top: 11.3125rem !important
	}

	.posr-sm-181 {
		right: 11.3125rem !important
	}

	.posb-sm-181 {
		bottom: 11.3125rem !important
	}

	.posl-sm-181 {
		left: 11.3125rem !important
	}

	.posmt-sm-181 {
		top: -11.3125rem !important
	}

	.posmr-sm-181 {
		right: -11.3125rem !important
	}

	.posmb-sm-181 {
		bottom: -11.3125rem !important
	}

	.posml-sm-181 {
		left: -11.3125rem !important
	}

	.pos-sm-182 {
		top: 11.375rem !important;
		bottom: 11.375rem !important
	}

	.pos-sm-182,
	.posx-sm-182 {
		right: 11.375rem !important;
		left: 11.375rem !important
	}

	.posy-sm-182 {
		bottom: 11.375rem !important
	}

	.post-sm-182,
	.posy-sm-182 {
		top: 11.375rem !important
	}

	.posr-sm-182 {
		right: 11.375rem !important
	}

	.posb-sm-182 {
		bottom: 11.375rem !important
	}

	.posl-sm-182 {
		left: 11.375rem !important
	}

	.posmt-sm-182 {
		top: -11.375rem !important
	}

	.posmr-sm-182 {
		right: -11.375rem !important
	}

	.posmb-sm-182 {
		bottom: -11.375rem !important
	}

	.posml-sm-182 {
		left: -11.375rem !important
	}

	.pos-sm-183 {
		top: 11.4375rem !important;
		bottom: 11.4375rem !important
	}

	.pos-sm-183,
	.posx-sm-183 {
		right: 11.4375rem !important;
		left: 11.4375rem !important
	}

	.posy-sm-183 {
		bottom: 11.4375rem !important
	}

	.post-sm-183,
	.posy-sm-183 {
		top: 11.4375rem !important
	}

	.posr-sm-183 {
		right: 11.4375rem !important
	}

	.posb-sm-183 {
		bottom: 11.4375rem !important
	}

	.posl-sm-183 {
		left: 11.4375rem !important
	}

	.posmt-sm-183 {
		top: -11.4375rem !important
	}

	.posmr-sm-183 {
		right: -11.4375rem !important
	}

	.posmb-sm-183 {
		bottom: -11.4375rem !important
	}

	.posml-sm-183 {
		left: -11.4375rem !important
	}

	.pos-sm-184 {
		top: 11.5rem !important;
		bottom: 11.5rem !important
	}

	.pos-sm-184,
	.posx-sm-184 {
		right: 11.5rem !important;
		left: 11.5rem !important
	}

	.posy-sm-184 {
		bottom: 11.5rem !important
	}

	.post-sm-184,
	.posy-sm-184 {
		top: 11.5rem !important
	}

	.posr-sm-184 {
		right: 11.5rem !important
	}

	.posb-sm-184 {
		bottom: 11.5rem !important
	}

	.posl-sm-184 {
		left: 11.5rem !important
	}

	.posmt-sm-184 {
		top: -11.5rem !important
	}

	.posmr-sm-184 {
		right: -11.5rem !important
	}

	.posmb-sm-184 {
		bottom: -11.5rem !important
	}

	.posml-sm-184 {
		left: -11.5rem !important
	}

	.pos-sm-185 {
		top: 11.5625rem !important;
		bottom: 11.5625rem !important
	}

	.pos-sm-185,
	.posx-sm-185 {
		right: 11.5625rem !important;
		left: 11.5625rem !important
	}

	.posy-sm-185 {
		bottom: 11.5625rem !important
	}

	.post-sm-185,
	.posy-sm-185 {
		top: 11.5625rem !important
	}

	.posr-sm-185 {
		right: 11.5625rem !important
	}

	.posb-sm-185 {
		bottom: 11.5625rem !important
	}

	.posl-sm-185 {
		left: 11.5625rem !important
	}

	.posmt-sm-185 {
		top: -11.5625rem !important
	}

	.posmr-sm-185 {
		right: -11.5625rem !important
	}

	.posmb-sm-185 {
		bottom: -11.5625rem !important
	}

	.posml-sm-185 {
		left: -11.5625rem !important
	}

	.pos-sm-186 {
		top: 11.625rem !important;
		bottom: 11.625rem !important
	}

	.pos-sm-186,
	.posx-sm-186 {
		right: 11.625rem !important;
		left: 11.625rem !important
	}

	.posy-sm-186 {
		bottom: 11.625rem !important
	}

	.post-sm-186,
	.posy-sm-186 {
		top: 11.625rem !important
	}

	.posr-sm-186 {
		right: 11.625rem !important
	}

	.posb-sm-186 {
		bottom: 11.625rem !important
	}

	.posl-sm-186 {
		left: 11.625rem !important
	}

	.posmt-sm-186 {
		top: -11.625rem !important
	}

	.posmr-sm-186 {
		right: -11.625rem !important
	}

	.posmb-sm-186 {
		bottom: -11.625rem !important
	}

	.posml-sm-186 {
		left: -11.625rem !important
	}

	.pos-sm-187 {
		top: 11.6875rem !important;
		bottom: 11.6875rem !important
	}

	.pos-sm-187,
	.posx-sm-187 {
		right: 11.6875rem !important;
		left: 11.6875rem !important
	}

	.posy-sm-187 {
		bottom: 11.6875rem !important
	}

	.post-sm-187,
	.posy-sm-187 {
		top: 11.6875rem !important
	}

	.posr-sm-187 {
		right: 11.6875rem !important
	}

	.posb-sm-187 {
		bottom: 11.6875rem !important
	}

	.posl-sm-187 {
		left: 11.6875rem !important
	}

	.posmt-sm-187 {
		top: -11.6875rem !important
	}

	.posmr-sm-187 {
		right: -11.6875rem !important
	}

	.posmb-sm-187 {
		bottom: -11.6875rem !important
	}

	.posml-sm-187 {
		left: -11.6875rem !important
	}

	.pos-sm-188 {
		top: 11.75rem !important;
		bottom: 11.75rem !important
	}

	.pos-sm-188,
	.posx-sm-188 {
		right: 11.75rem !important;
		left: 11.75rem !important
	}

	.posy-sm-188 {
		bottom: 11.75rem !important
	}

	.post-sm-188,
	.posy-sm-188 {
		top: 11.75rem !important
	}

	.posr-sm-188 {
		right: 11.75rem !important
	}

	.posb-sm-188 {
		bottom: 11.75rem !important
	}

	.posl-sm-188 {
		left: 11.75rem !important
	}

	.posmt-sm-188 {
		top: -11.75rem !important
	}

	.posmr-sm-188 {
		right: -11.75rem !important
	}

	.posmb-sm-188 {
		bottom: -11.75rem !important
	}

	.posml-sm-188 {
		left: -11.75rem !important
	}

	.pos-sm-189 {
		top: 11.8125rem !important;
		bottom: 11.8125rem !important
	}

	.pos-sm-189,
	.posx-sm-189 {
		right: 11.8125rem !important;
		left: 11.8125rem !important
	}

	.posy-sm-189 {
		bottom: 11.8125rem !important
	}

	.post-sm-189,
	.posy-sm-189 {
		top: 11.8125rem !important
	}

	.posr-sm-189 {
		right: 11.8125rem !important
	}

	.posb-sm-189 {
		bottom: 11.8125rem !important
	}

	.posl-sm-189 {
		left: 11.8125rem !important
	}

	.posmt-sm-189 {
		top: -11.8125rem !important
	}

	.posmr-sm-189 {
		right: -11.8125rem !important
	}

	.posmb-sm-189 {
		bottom: -11.8125rem !important
	}

	.posml-sm-189 {
		left: -11.8125rem !important
	}

	.pos-sm-190 {
		top: 11.875rem !important;
		bottom: 11.875rem !important
	}

	.pos-sm-190,
	.posx-sm-190 {
		right: 11.875rem !important;
		left: 11.875rem !important
	}

	.posy-sm-190 {
		bottom: 11.875rem !important
	}

	.post-sm-190,
	.posy-sm-190 {
		top: 11.875rem !important
	}

	.posr-sm-190 {
		right: 11.875rem !important
	}

	.posb-sm-190 {
		bottom: 11.875rem !important
	}

	.posl-sm-190 {
		left: 11.875rem !important
	}

	.posmt-sm-190 {
		top: -11.875rem !important
	}

	.posmr-sm-190 {
		right: -11.875rem !important
	}

	.posmb-sm-190 {
		bottom: -11.875rem !important
	}

	.posml-sm-190 {
		left: -11.875rem !important
	}

	.pos-sm-191 {
		top: 11.9375rem !important;
		bottom: 11.9375rem !important
	}

	.pos-sm-191,
	.posx-sm-191 {
		right: 11.9375rem !important;
		left: 11.9375rem !important
	}

	.posy-sm-191 {
		bottom: 11.9375rem !important
	}

	.post-sm-191,
	.posy-sm-191 {
		top: 11.9375rem !important
	}

	.posr-sm-191 {
		right: 11.9375rem !important
	}

	.posb-sm-191 {
		bottom: 11.9375rem !important
	}

	.posl-sm-191 {
		left: 11.9375rem !important
	}

	.posmt-sm-191 {
		top: -11.9375rem !important
	}

	.posmr-sm-191 {
		right: -11.9375rem !important
	}

	.posmb-sm-191 {
		bottom: -11.9375rem !important
	}

	.posml-sm-191 {
		left: -11.9375rem !important
	}

	.pos-sm-192 {
		top: 12rem !important;
		bottom: 12rem !important
	}

	.pos-sm-192,
	.posx-sm-192 {
		right: 12rem !important;
		left: 12rem !important
	}

	.posy-sm-192 {
		bottom: 12rem !important
	}

	.post-sm-192,
	.posy-sm-192 {
		top: 12rem !important
	}

	.posr-sm-192 {
		right: 12rem !important
	}

	.posb-sm-192 {
		bottom: 12rem !important
	}

	.posl-sm-192 {
		left: 12rem !important
	}

	.posmt-sm-192 {
		top: -12rem !important
	}

	.posmr-sm-192 {
		right: -12rem !important
	}

	.posmb-sm-192 {
		bottom: -12rem !important
	}

	.posml-sm-192 {
		left: -12rem !important
	}

	.pos-sm-193 {
		top: 12.0625rem !important;
		bottom: 12.0625rem !important
	}

	.pos-sm-193,
	.posx-sm-193 {
		right: 12.0625rem !important;
		left: 12.0625rem !important
	}

	.posy-sm-193 {
		bottom: 12.0625rem !important
	}

	.post-sm-193,
	.posy-sm-193 {
		top: 12.0625rem !important
	}

	.posr-sm-193 {
		right: 12.0625rem !important
	}

	.posb-sm-193 {
		bottom: 12.0625rem !important
	}

	.posl-sm-193 {
		left: 12.0625rem !important
	}

	.posmt-sm-193 {
		top: -12.0625rem !important
	}

	.posmr-sm-193 {
		right: -12.0625rem !important
	}

	.posmb-sm-193 {
		bottom: -12.0625rem !important
	}

	.posml-sm-193 {
		left: -12.0625rem !important
	}

	.pos-sm-194 {
		top: 12.125rem !important;
		bottom: 12.125rem !important
	}

	.pos-sm-194,
	.posx-sm-194 {
		right: 12.125rem !important;
		left: 12.125rem !important
	}

	.posy-sm-194 {
		bottom: 12.125rem !important
	}

	.post-sm-194,
	.posy-sm-194 {
		top: 12.125rem !important
	}

	.posr-sm-194 {
		right: 12.125rem !important
	}

	.posb-sm-194 {
		bottom: 12.125rem !important
	}

	.posl-sm-194 {
		left: 12.125rem !important
	}

	.posmt-sm-194 {
		top: -12.125rem !important
	}

	.posmr-sm-194 {
		right: -12.125rem !important
	}

	.posmb-sm-194 {
		bottom: -12.125rem !important
	}

	.posml-sm-194 {
		left: -12.125rem !important
	}

	.pos-sm-195 {
		top: 12.1875rem !important;
		bottom: 12.1875rem !important
	}

	.pos-sm-195,
	.posx-sm-195 {
		right: 12.1875rem !important;
		left: 12.1875rem !important
	}

	.posy-sm-195 {
		bottom: 12.1875rem !important
	}

	.post-sm-195,
	.posy-sm-195 {
		top: 12.1875rem !important
	}

	.posr-sm-195 {
		right: 12.1875rem !important
	}

	.posb-sm-195 {
		bottom: 12.1875rem !important
	}

	.posl-sm-195 {
		left: 12.1875rem !important
	}

	.posmt-sm-195 {
		top: -12.1875rem !important
	}

	.posmr-sm-195 {
		right: -12.1875rem !important
	}

	.posmb-sm-195 {
		bottom: -12.1875rem !important
	}

	.posml-sm-195 {
		left: -12.1875rem !important
	}

	.pos-sm-196 {
		top: 12.25rem !important;
		bottom: 12.25rem !important
	}

	.pos-sm-196,
	.posx-sm-196 {
		right: 12.25rem !important;
		left: 12.25rem !important
	}

	.posy-sm-196 {
		bottom: 12.25rem !important
	}

	.post-sm-196,
	.posy-sm-196 {
		top: 12.25rem !important
	}

	.posr-sm-196 {
		right: 12.25rem !important
	}

	.posb-sm-196 {
		bottom: 12.25rem !important
	}

	.posl-sm-196 {
		left: 12.25rem !important
	}

	.posmt-sm-196 {
		top: -12.25rem !important
	}

	.posmr-sm-196 {
		right: -12.25rem !important
	}

	.posmb-sm-196 {
		bottom: -12.25rem !important
	}

	.posml-sm-196 {
		left: -12.25rem !important
	}

	.pos-sm-197 {
		top: 12.3125rem !important;
		bottom: 12.3125rem !important
	}

	.pos-sm-197,
	.posx-sm-197 {
		right: 12.3125rem !important;
		left: 12.3125rem !important
	}

	.posy-sm-197 {
		bottom: 12.3125rem !important
	}

	.post-sm-197,
	.posy-sm-197 {
		top: 12.3125rem !important
	}

	.posr-sm-197 {
		right: 12.3125rem !important
	}

	.posb-sm-197 {
		bottom: 12.3125rem !important
	}

	.posl-sm-197 {
		left: 12.3125rem !important
	}

	.posmt-sm-197 {
		top: -12.3125rem !important
	}

	.posmr-sm-197 {
		right: -12.3125rem !important
	}

	.posmb-sm-197 {
		bottom: -12.3125rem !important
	}

	.posml-sm-197 {
		left: -12.3125rem !important
	}

	.pos-sm-198 {
		top: 12.375rem !important;
		bottom: 12.375rem !important
	}

	.pos-sm-198,
	.posx-sm-198 {
		right: 12.375rem !important;
		left: 12.375rem !important
	}

	.posy-sm-198 {
		bottom: 12.375rem !important
	}

	.post-sm-198,
	.posy-sm-198 {
		top: 12.375rem !important
	}

	.posr-sm-198 {
		right: 12.375rem !important
	}

	.posb-sm-198 {
		bottom: 12.375rem !important
	}

	.posl-sm-198 {
		left: 12.375rem !important
	}

	.posmt-sm-198 {
		top: -12.375rem !important
	}

	.posmr-sm-198 {
		right: -12.375rem !important
	}

	.posmb-sm-198 {
		bottom: -12.375rem !important
	}

	.posml-sm-198 {
		left: -12.375rem !important
	}

	.pos-sm-199 {
		top: 12.4375rem !important;
		bottom: 12.4375rem !important
	}

	.pos-sm-199,
	.posx-sm-199 {
		right: 12.4375rem !important;
		left: 12.4375rem !important
	}

	.posy-sm-199 {
		bottom: 12.4375rem !important
	}

	.post-sm-199,
	.posy-sm-199 {
		top: 12.4375rem !important
	}

	.posr-sm-199 {
		right: 12.4375rem !important
	}

	.posb-sm-199 {
		bottom: 12.4375rem !important
	}

	.posl-sm-199 {
		left: 12.4375rem !important
	}

	.posmt-sm-199 {
		top: -12.4375rem !important
	}

	.posmr-sm-199 {
		right: -12.4375rem !important
	}

	.posmb-sm-199 {
		bottom: -12.4375rem !important
	}

	.posml-sm-199 {
		left: -12.4375rem !important
	}

	.pos-sm-200 {
		top: 12.5rem !important;
		bottom: 12.5rem !important
	}

	.pos-sm-200,
	.posx-sm-200 {
		right: 12.5rem !important;
		left: 12.5rem !important
	}

	.posy-sm-200 {
		bottom: 12.5rem !important
	}

	.post-sm-200,
	.posy-sm-200 {
		top: 12.5rem !important
	}

	.posr-sm-200 {
		right: 12.5rem !important
	}

	.posb-sm-200 {
		bottom: 12.5rem !important
	}

	.posl-sm-200 {
		left: 12.5rem !important
	}

	.posmt-sm-200 {
		top: -12.5rem !important
	}

	.posmr-sm-200 {
		right: -12.5rem !important
	}

	.posmb-sm-200 {
		bottom: -12.5rem !important
	}

	.posml-sm-200 {
		left: -12.5rem !important
	}

	.pos-sm-auto {
		top: auto !important;
		bottom: auto !important
	}

	.pos-sm-auto,
	.posx-sm-auto {
		right: auto !important;
		left: auto !important
	}

	.posy-sm-auto {
		bottom: auto !important
	}

	.post-sm-auto,
	.posy-sm-auto {
		top: auto !important
	}

	.posr-sm-auto {
		right: auto !important
	}

	.posb-sm-auto {
		bottom: auto !important
	}

	.posl-sm-auto {
		left: auto !important
	}

	.posmt-sm-auto {
		top: -auto !important
	}

	.posmr-sm-auto {
		right: -auto !important
	}

	.posmb-sm-auto {
		bottom: -auto !important
	}

	.posml-sm-auto {
		left: -auto !important
	}
}

@media (min-width:768px) {
	.pos-md-0 {
		top: 0 !important;
		bottom: 0 !important
	}

	.pos-md-0,
	.posx-md-0 {
		right: 0 !important;
		left: 0 !important
	}

	.posy-md-0 {
		bottom: 0 !important
	}

	.post-md-0,
	.posy-md-0 {
		top: 0 !important
	}

	.posr-md-0 {
		right: 0 !important
	}

	.posb-md-0 {
		bottom: 0 !important
	}

	.posl-md-0 {
		left: 0 !important
	}

	.posmt-md-0 {
		top: 0 !important
	}

	.posmr-md-0 {
		right: 0 !important
	}

	.posmb-md-0 {
		bottom: 0 !important
	}

	.posml-md-0 {
		left: 0 !important
	}

	.pos-md-1 {
		top: .0625rem !important;
		bottom: .0625rem !important
	}

	.pos-md-1,
	.posx-md-1 {
		right: .0625rem !important;
		left: .0625rem !important
	}

	.posy-md-1 {
		bottom: .0625rem !important
	}

	.post-md-1,
	.posy-md-1 {
		top: .0625rem !important
	}

	.posr-md-1 {
		right: .0625rem !important
	}

	.posb-md-1 {
		bottom: .0625rem !important
	}

	.posl-md-1 {
		left: .0625rem !important
	}

	.posmt-md-1 {
		top: -.0625rem !important
	}

	.posmr-md-1 {
		right: -.0625rem !important
	}

	.posmb-md-1 {
		bottom: -.0625rem !important
	}

	.posml-md-1 {
		left: -.0625rem !important
	}

	.pos-md-2 {
		top: .125rem !important;
		bottom: .125rem !important
	}

	.pos-md-2,
	.posx-md-2 {
		right: .125rem !important;
		left: .125rem !important
	}

	.posy-md-2 {
		bottom: .125rem !important
	}

	.post-md-2,
	.posy-md-2 {
		top: .125rem !important
	}

	.posr-md-2 {
		right: .125rem !important
	}

	.posb-md-2 {
		bottom: .125rem !important
	}

	.posl-md-2 {
		left: .125rem !important
	}

	.posmt-md-2 {
		top: -.125rem !important
	}

	.posmr-md-2 {
		right: -.125rem !important
	}

	.posmb-md-2 {
		bottom: -.125rem !important
	}

	.posml-md-2 {
		left: -.125rem !important
	}

	.pos-md-3 {
		top: .1875rem !important;
		bottom: .1875rem !important
	}

	.pos-md-3,
	.posx-md-3 {
		right: .1875rem !important;
		left: .1875rem !important
	}

	.posy-md-3 {
		bottom: .1875rem !important
	}

	.post-md-3,
	.posy-md-3 {
		top: .1875rem !important
	}

	.posr-md-3 {
		right: .1875rem !important
	}

	.posb-md-3 {
		bottom: .1875rem !important
	}

	.posl-md-3 {
		left: .1875rem !important
	}

	.posmt-md-3 {
		top: -.1875rem !important
	}

	.posmr-md-3 {
		right: -.1875rem !important
	}

	.posmb-md-3 {
		bottom: -.1875rem !important
	}

	.posml-md-3 {
		left: -.1875rem !important
	}

	.pos-md-4 {
		top: .25rem !important;
		bottom: .25rem !important
	}

	.pos-md-4,
	.posx-md-4 {
		right: .25rem !important;
		left: .25rem !important
	}

	.posy-md-4 {
		bottom: .25rem !important
	}

	.post-md-4,
	.posy-md-4 {
		top: .25rem !important
	}

	.posr-md-4 {
		right: .25rem !important
	}

	.posb-md-4 {
		bottom: .25rem !important
	}

	.posl-md-4 {
		left: .25rem !important
	}

	.posmt-md-4 {
		top: -.25rem !important
	}

	.posmr-md-4 {
		right: -.25rem !important
	}

	.posmb-md-4 {
		bottom: -.25rem !important
	}

	.posml-md-4 {
		left: -.25rem !important
	}

	.pos-md-5 {
		top: .3125rem !important;
		bottom: .3125rem !important
	}

	.pos-md-5,
	.posx-md-5 {
		right: .3125rem !important;
		left: .3125rem !important
	}

	.posy-md-5 {
		bottom: .3125rem !important
	}

	.post-md-5,
	.posy-md-5 {
		top: .3125rem !important
	}

	.posr-md-5 {
		right: .3125rem !important
	}

	.posb-md-5 {
		bottom: .3125rem !important
	}

	.posl-md-5 {
		left: .3125rem !important
	}

	.posmt-md-5 {
		top: -.3125rem !important
	}

	.posmr-md-5 {
		right: -.3125rem !important
	}

	.posmb-md-5 {
		bottom: -.3125rem !important
	}

	.posml-md-5 {
		left: -.3125rem !important
	}

	.pos-md-6 {
		top: .375rem !important;
		bottom: .375rem !important
	}

	.pos-md-6,
	.posx-md-6 {
		right: .375rem !important;
		left: .375rem !important
	}

	.posy-md-6 {
		bottom: .375rem !important
	}

	.post-md-6,
	.posy-md-6 {
		top: .375rem !important
	}

	.posr-md-6 {
		right: .375rem !important
	}

	.posb-md-6 {
		bottom: .375rem !important
	}

	.posl-md-6 {
		left: .375rem !important
	}

	.posmt-md-6 {
		top: -.375rem !important
	}

	.posmr-md-6 {
		right: -.375rem !important
	}

	.posmb-md-6 {
		bottom: -.375rem !important
	}

	.posml-md-6 {
		left: -.375rem !important
	}

	.pos-md-7 {
		top: .4375rem !important;
		bottom: .4375rem !important
	}

	.pos-md-7,
	.posx-md-7 {
		right: .4375rem !important;
		left: .4375rem !important
	}

	.posy-md-7 {
		bottom: .4375rem !important
	}

	.post-md-7,
	.posy-md-7 {
		top: .4375rem !important
	}

	.posr-md-7 {
		right: .4375rem !important
	}

	.posb-md-7 {
		bottom: .4375rem !important
	}

	.posl-md-7 {
		left: .4375rem !important
	}

	.posmt-md-7 {
		top: -.4375rem !important
	}

	.posmr-md-7 {
		right: -.4375rem !important
	}

	.posmb-md-7 {
		bottom: -.4375rem !important
	}

	.posml-md-7 {
		left: -.4375rem !important
	}

	.pos-md-8 {
		top: .5rem !important;
		bottom: .5rem !important
	}

	.pos-md-8,
	.posx-md-8 {
		right: .5rem !important;
		left: .5rem !important
	}

	.posy-md-8 {
		bottom: .5rem !important
	}

	.post-md-8,
	.posy-md-8 {
		top: .5rem !important
	}

	.posr-md-8 {
		right: .5rem !important
	}

	.posb-md-8 {
		bottom: .5rem !important
	}

	.posl-md-8 {
		left: .5rem !important
	}

	.posmt-md-8 {
		top: -.5rem !important
	}

	.posmr-md-8 {
		right: -.5rem !important
	}

	.posmb-md-8 {
		bottom: -.5rem !important
	}

	.posml-md-8 {
		left: -.5rem !important
	}

	.pos-md-9 {
		top: .5625rem !important;
		bottom: .5625rem !important
	}

	.pos-md-9,
	.posx-md-9 {
		right: .5625rem !important;
		left: .5625rem !important
	}

	.posy-md-9 {
		bottom: .5625rem !important
	}

	.post-md-9,
	.posy-md-9 {
		top: .5625rem !important
	}

	.posr-md-9 {
		right: .5625rem !important
	}

	.posb-md-9 {
		bottom: .5625rem !important
	}

	.posl-md-9 {
		left: .5625rem !important
	}

	.posmt-md-9 {
		top: -.5625rem !important
	}

	.posmr-md-9 {
		right: -.5625rem !important
	}

	.posmb-md-9 {
		bottom: -.5625rem !important
	}

	.posml-md-9 {
		left: -.5625rem !important
	}

	.pos-md-10 {
		top: .625rem !important;
		bottom: .625rem !important
	}

	.pos-md-10,
	.posx-md-10 {
		right: .625rem !important;
		left: .625rem !important
	}

	.posy-md-10 {
		bottom: .625rem !important
	}

	.post-md-10,
	.posy-md-10 {
		top: .625rem !important
	}

	.posr-md-10 {
		right: .625rem !important
	}

	.posb-md-10 {
		bottom: .625rem !important
	}

	.posl-md-10 {
		left: .625rem !important
	}

	.posmt-md-10 {
		top: -.625rem !important
	}

	.posmr-md-10 {
		right: -.625rem !important
	}

	.posmb-md-10 {
		bottom: -.625rem !important
	}

	.posml-md-10 {
		left: -.625rem !important
	}

	.pos-md-11 {
		top: .6875rem !important;
		bottom: .6875rem !important
	}

	.pos-md-11,
	.posx-md-11 {
		right: .6875rem !important;
		left: .6875rem !important
	}

	.posy-md-11 {
		bottom: .6875rem !important
	}

	.post-md-11,
	.posy-md-11 {
		top: .6875rem !important
	}

	.posr-md-11 {
		right: .6875rem !important
	}

	.posb-md-11 {
		bottom: .6875rem !important
	}

	.posl-md-11 {
		left: .6875rem !important
	}

	.posmt-md-11 {
		top: -.6875rem !important
	}

	.posmr-md-11 {
		right: -.6875rem !important
	}

	.posmb-md-11 {
		bottom: -.6875rem !important
	}

	.posml-md-11 {
		left: -.6875rem !important
	}

	.pos-md-12 {
		top: .75rem !important;
		bottom: .75rem !important
	}

	.pos-md-12,
	.posx-md-12 {
		right: .75rem !important;
		left: .75rem !important
	}

	.posy-md-12 {
		bottom: .75rem !important
	}

	.post-md-12,
	.posy-md-12 {
		top: .75rem !important
	}

	.posr-md-12 {
		right: .75rem !important
	}

	.posb-md-12 {
		bottom: .75rem !important
	}

	.posl-md-12 {
		left: .75rem !important
	}

	.posmt-md-12 {
		top: -.75rem !important
	}

	.posmr-md-12 {
		right: -.75rem !important
	}

	.posmb-md-12 {
		bottom: -.75rem !important
	}

	.posml-md-12 {
		left: -.75rem !important
	}

	.pos-md-13 {
		top: .8125rem !important;
		bottom: .8125rem !important
	}

	.pos-md-13,
	.posx-md-13 {
		right: .8125rem !important;
		left: .8125rem !important
	}

	.posy-md-13 {
		bottom: .8125rem !important
	}

	.post-md-13,
	.posy-md-13 {
		top: .8125rem !important
	}

	.posr-md-13 {
		right: .8125rem !important
	}

	.posb-md-13 {
		bottom: .8125rem !important
	}

	.posl-md-13 {
		left: .8125rem !important
	}

	.posmt-md-13 {
		top: -.8125rem !important
	}

	.posmr-md-13 {
		right: -.8125rem !important
	}

	.posmb-md-13 {
		bottom: -.8125rem !important
	}

	.posml-md-13 {
		left: -.8125rem !important
	}

	.pos-md-14 {
		top: .875rem !important;
		bottom: .875rem !important
	}

	.pos-md-14,
	.posx-md-14 {
		right: .875rem !important;
		left: .875rem !important
	}

	.posy-md-14 {
		bottom: .875rem !important
	}

	.post-md-14,
	.posy-md-14 {
		top: .875rem !important
	}

	.posr-md-14 {
		right: .875rem !important
	}

	.posb-md-14 {
		bottom: .875rem !important
	}

	.posl-md-14 {
		left: .875rem !important
	}

	.posmt-md-14 {
		top: -.875rem !important
	}

	.posmr-md-14 {
		right: -.875rem !important
	}

	.posmb-md-14 {
		bottom: -.875rem !important
	}

	.posml-md-14 {
		left: -.875rem !important
	}

	.pos-md-15 {
		top: .9375rem !important;
		bottom: .9375rem !important
	}

	.pos-md-15,
	.posx-md-15 {
		right: .9375rem !important;
		left: .9375rem !important
	}

	.posy-md-15 {
		bottom: .9375rem !important
	}

	.post-md-15,
	.posy-md-15 {
		top: .9375rem !important
	}

	.posr-md-15 {
		right: .9375rem !important
	}

	.posb-md-15 {
		bottom: .9375rem !important
	}

	.posl-md-15 {
		left: .9375rem !important
	}

	.posmt-md-15 {
		top: -.9375rem !important
	}

	.posmr-md-15 {
		right: -.9375rem !important
	}

	.posmb-md-15 {
		bottom: -.9375rem !important
	}

	.posml-md-15 {
		left: -.9375rem !important
	}

	.pos-md-16 {
		top: 1rem !important;
		bottom: 1rem !important
	}

	.pos-md-16,
	.posx-md-16 {
		right: 1rem !important;
		left: 1rem !important
	}

	.posy-md-16 {
		bottom: 1rem !important
	}

	.post-md-16,
	.posy-md-16 {
		top: 1rem !important
	}

	.posr-md-16 {
		right: 1rem !important
	}

	.posb-md-16 {
		bottom: 1rem !important
	}

	.posl-md-16 {
		left: 1rem !important
	}

	.posmt-md-16 {
		top: -1rem !important
	}

	.posmr-md-16 {
		right: -1rem !important
	}

	.posmb-md-16 {
		bottom: -1rem !important
	}

	.posml-md-16 {
		left: -1rem !important
	}

	.pos-md-17 {
		top: 1.0625rem !important;
		bottom: 1.0625rem !important
	}

	.pos-md-17,
	.posx-md-17 {
		right: 1.0625rem !important;
		left: 1.0625rem !important
	}

	.posy-md-17 {
		bottom: 1.0625rem !important
	}

	.post-md-17,
	.posy-md-17 {
		top: 1.0625rem !important
	}

	.posr-md-17 {
		right: 1.0625rem !important
	}

	.posb-md-17 {
		bottom: 1.0625rem !important
	}

	.posl-md-17 {
		left: 1.0625rem !important
	}

	.posmt-md-17 {
		top: -1.0625rem !important
	}

	.posmr-md-17 {
		right: -1.0625rem !important
	}

	.posmb-md-17 {
		bottom: -1.0625rem !important
	}

	.posml-md-17 {
		left: -1.0625rem !important
	}

	.pos-md-18 {
		top: 1.125rem !important;
		bottom: 1.125rem !important
	}

	.pos-md-18,
	.posx-md-18 {
		right: 1.125rem !important;
		left: 1.125rem !important
	}

	.posy-md-18 {
		bottom: 1.125rem !important
	}

	.post-md-18,
	.posy-md-18 {
		top: 1.125rem !important
	}

	.posr-md-18 {
		right: 1.125rem !important
	}

	.posb-md-18 {
		bottom: 1.125rem !important
	}

	.posl-md-18 {
		left: 1.125rem !important
	}

	.posmt-md-18 {
		top: -1.125rem !important
	}

	.posmr-md-18 {
		right: -1.125rem !important
	}

	.posmb-md-18 {
		bottom: -1.125rem !important
	}

	.posml-md-18 {
		left: -1.125rem !important
	}

	.pos-md-19 {
		top: 1.1875rem !important;
		bottom: 1.1875rem !important
	}

	.pos-md-19,
	.posx-md-19 {
		right: 1.1875rem !important;
		left: 1.1875rem !important
	}

	.posy-md-19 {
		bottom: 1.1875rem !important
	}

	.post-md-19,
	.posy-md-19 {
		top: 1.1875rem !important
	}

	.posr-md-19 {
		right: 1.1875rem !important
	}

	.posb-md-19 {
		bottom: 1.1875rem !important
	}

	.posl-md-19 {
		left: 1.1875rem !important
	}

	.posmt-md-19 {
		top: -1.1875rem !important
	}

	.posmr-md-19 {
		right: -1.1875rem !important
	}

	.posmb-md-19 {
		bottom: -1.1875rem !important
	}

	.posml-md-19 {
		left: -1.1875rem !important
	}

	.pos-md-20 {
		top: 1.25rem !important;
		bottom: 1.25rem !important
	}

	.pos-md-20,
	.posx-md-20 {
		right: 1.25rem !important;
		left: 1.25rem !important
	}

	.posy-md-20 {
		bottom: 1.25rem !important
	}

	.post-md-20,
	.posy-md-20 {
		top: 1.25rem !important
	}

	.posr-md-20 {
		right: 1.25rem !important
	}

	.posb-md-20 {
		bottom: 1.25rem !important
	}

	.posl-md-20 {
		left: 1.25rem !important
	}

	.posmt-md-20 {
		top: -1.25rem !important
	}

	.posmr-md-20 {
		right: -1.25rem !important
	}

	.posmb-md-20 {
		bottom: -1.25rem !important
	}

	.posml-md-20 {
		left: -1.25rem !important
	}

	.pos-md-21 {
		top: 1.3125rem !important;
		bottom: 1.3125rem !important
	}

	.pos-md-21,
	.posx-md-21 {
		right: 1.3125rem !important;
		left: 1.3125rem !important
	}

	.posy-md-21 {
		bottom: 1.3125rem !important
	}

	.post-md-21,
	.posy-md-21 {
		top: 1.3125rem !important
	}

	.posr-md-21 {
		right: 1.3125rem !important
	}

	.posb-md-21 {
		bottom: 1.3125rem !important
	}

	.posl-md-21 {
		left: 1.3125rem !important
	}

	.posmt-md-21 {
		top: -1.3125rem !important
	}

	.posmr-md-21 {
		right: -1.3125rem !important
	}

	.posmb-md-21 {
		bottom: -1.3125rem !important
	}

	.posml-md-21 {
		left: -1.3125rem !important
	}

	.pos-md-22 {
		top: 1.375rem !important;
		bottom: 1.375rem !important
	}

	.pos-md-22,
	.posx-md-22 {
		right: 1.375rem !important;
		left: 1.375rem !important
	}

	.posy-md-22 {
		bottom: 1.375rem !important
	}

	.post-md-22,
	.posy-md-22 {
		top: 1.375rem !important
	}

	.posr-md-22 {
		right: 1.375rem !important
	}

	.posb-md-22 {
		bottom: 1.375rem !important
	}

	.posl-md-22 {
		left: 1.375rem !important
	}

	.posmt-md-22 {
		top: -1.375rem !important
	}

	.posmr-md-22 {
		right: -1.375rem !important
	}

	.posmb-md-22 {
		bottom: -1.375rem !important
	}

	.posml-md-22 {
		left: -1.375rem !important
	}

	.pos-md-23 {
		top: 1.4375rem !important;
		bottom: 1.4375rem !important
	}

	.pos-md-23,
	.posx-md-23 {
		right: 1.4375rem !important;
		left: 1.4375rem !important
	}

	.posy-md-23 {
		bottom: 1.4375rem !important
	}

	.post-md-23,
	.posy-md-23 {
		top: 1.4375rem !important
	}

	.posr-md-23 {
		right: 1.4375rem !important
	}

	.posb-md-23 {
		bottom: 1.4375rem !important
	}

	.posl-md-23 {
		left: 1.4375rem !important
	}

	.posmt-md-23 {
		top: -1.4375rem !important
	}

	.posmr-md-23 {
		right: -1.4375rem !important
	}

	.posmb-md-23 {
		bottom: -1.4375rem !important
	}

	.posml-md-23 {
		left: -1.4375rem !important
	}

	.pos-md-24 {
		top: 1.5rem !important;
		bottom: 1.5rem !important
	}

	.pos-md-24,
	.posx-md-24 {
		right: 1.5rem !important;
		left: 1.5rem !important
	}

	.posy-md-24 {
		bottom: 1.5rem !important
	}

	.post-md-24,
	.posy-md-24 {
		top: 1.5rem !important
	}

	.posr-md-24 {
		right: 1.5rem !important
	}

	.posb-md-24 {
		bottom: 1.5rem !important
	}

	.posl-md-24 {
		left: 1.5rem !important
	}

	.posmt-md-24 {
		top: -1.5rem !important
	}

	.posmr-md-24 {
		right: -1.5rem !important
	}

	.posmb-md-24 {
		bottom: -1.5rem !important
	}

	.posml-md-24 {
		left: -1.5rem !important
	}

	.pos-md-25 {
		top: 1.5625rem !important;
		bottom: 1.5625rem !important
	}

	.pos-md-25,
	.posx-md-25 {
		right: 1.5625rem !important;
		left: 1.5625rem !important
	}

	.posy-md-25 {
		bottom: 1.5625rem !important
	}

	.post-md-25,
	.posy-md-25 {
		top: 1.5625rem !important
	}

	.posr-md-25 {
		right: 1.5625rem !important
	}

	.posb-md-25 {
		bottom: 1.5625rem !important
	}

	.posl-md-25 {
		left: 1.5625rem !important
	}

	.posmt-md-25 {
		top: -1.5625rem !important
	}

	.posmr-md-25 {
		right: -1.5625rem !important
	}

	.posmb-md-25 {
		bottom: -1.5625rem !important
	}

	.posml-md-25 {
		left: -1.5625rem !important
	}

	.pos-md-26 {
		top: 1.625rem !important;
		bottom: 1.625rem !important
	}

	.pos-md-26,
	.posx-md-26 {
		right: 1.625rem !important;
		left: 1.625rem !important
	}

	.posy-md-26 {
		bottom: 1.625rem !important
	}

	.post-md-26,
	.posy-md-26 {
		top: 1.625rem !important
	}

	.posr-md-26 {
		right: 1.625rem !important
	}

	.posb-md-26 {
		bottom: 1.625rem !important
	}

	.posl-md-26 {
		left: 1.625rem !important
	}

	.posmt-md-26 {
		top: -1.625rem !important
	}

	.posmr-md-26 {
		right: -1.625rem !important
	}

	.posmb-md-26 {
		bottom: -1.625rem !important
	}

	.posml-md-26 {
		left: -1.625rem !important
	}

	.pos-md-27 {
		top: 1.6875rem !important;
		bottom: 1.6875rem !important
	}

	.pos-md-27,
	.posx-md-27 {
		right: 1.6875rem !important;
		left: 1.6875rem !important
	}

	.posy-md-27 {
		bottom: 1.6875rem !important
	}

	.post-md-27,
	.posy-md-27 {
		top: 1.6875rem !important
	}

	.posr-md-27 {
		right: 1.6875rem !important
	}

	.posb-md-27 {
		bottom: 1.6875rem !important
	}

	.posl-md-27 {
		left: 1.6875rem !important
	}

	.posmt-md-27 {
		top: -1.6875rem !important
	}

	.posmr-md-27 {
		right: -1.6875rem !important
	}

	.posmb-md-27 {
		bottom: -1.6875rem !important
	}

	.posml-md-27 {
		left: -1.6875rem !important
	}

	.pos-md-28 {
		top: 1.75rem !important;
		bottom: 1.75rem !important
	}

	.pos-md-28,
	.posx-md-28 {
		right: 1.75rem !important;
		left: 1.75rem !important
	}

	.posy-md-28 {
		bottom: 1.75rem !important
	}

	.post-md-28,
	.posy-md-28 {
		top: 1.75rem !important
	}

	.posr-md-28 {
		right: 1.75rem !important
	}

	.posb-md-28 {
		bottom: 1.75rem !important
	}

	.posl-md-28 {
		left: 1.75rem !important
	}

	.posmt-md-28 {
		top: -1.75rem !important
	}

	.posmr-md-28 {
		right: -1.75rem !important
	}

	.posmb-md-28 {
		bottom: -1.75rem !important
	}

	.posml-md-28 {
		left: -1.75rem !important
	}

	.pos-md-29 {
		top: 1.8125rem !important;
		bottom: 1.8125rem !important
	}

	.pos-md-29,
	.posx-md-29 {
		right: 1.8125rem !important;
		left: 1.8125rem !important
	}

	.posy-md-29 {
		bottom: 1.8125rem !important
	}

	.post-md-29,
	.posy-md-29 {
		top: 1.8125rem !important
	}

	.posr-md-29 {
		right: 1.8125rem !important
	}

	.posb-md-29 {
		bottom: 1.8125rem !important
	}

	.posl-md-29 {
		left: 1.8125rem !important
	}

	.posmt-md-29 {
		top: -1.8125rem !important
	}

	.posmr-md-29 {
		right: -1.8125rem !important
	}

	.posmb-md-29 {
		bottom: -1.8125rem !important
	}

	.posml-md-29 {
		left: -1.8125rem !important
	}

	.pos-md-30 {
		top: 1.875rem !important;
		bottom: 1.875rem !important
	}

	.pos-md-30,
	.posx-md-30 {
		right: 1.875rem !important;
		left: 1.875rem !important
	}

	.posy-md-30 {
		bottom: 1.875rem !important
	}

	.post-md-30,
	.posy-md-30 {
		top: 1.875rem !important
	}

	.posr-md-30 {
		right: 1.875rem !important
	}

	.posb-md-30 {
		bottom: 1.875rem !important
	}

	.posl-md-30 {
		left: 1.875rem !important
	}

	.posmt-md-30 {
		top: -1.875rem !important
	}

	.posmr-md-30 {
		right: -1.875rem !important
	}

	.posmb-md-30 {
		bottom: -1.875rem !important
	}

	.posml-md-30 {
		left: -1.875rem !important
	}

	.pos-md-31 {
		top: 1.9375rem !important;
		bottom: 1.9375rem !important
	}

	.pos-md-31,
	.posx-md-31 {
		right: 1.9375rem !important;
		left: 1.9375rem !important
	}

	.posy-md-31 {
		bottom: 1.9375rem !important
	}

	.post-md-31,
	.posy-md-31 {
		top: 1.9375rem !important
	}

	.posr-md-31 {
		right: 1.9375rem !important
	}

	.posb-md-31 {
		bottom: 1.9375rem !important
	}

	.posl-md-31 {
		left: 1.9375rem !important
	}

	.posmt-md-31 {
		top: -1.9375rem !important
	}

	.posmr-md-31 {
		right: -1.9375rem !important
	}

	.posmb-md-31 {
		bottom: -1.9375rem !important
	}

	.posml-md-31 {
		left: -1.9375rem !important
	}

	.pos-md-32 {
		top: 2rem !important;
		bottom: 2rem !important
	}

	.pos-md-32,
	.posx-md-32 {
		right: 2rem !important;
		left: 2rem !important
	}

	.posy-md-32 {
		bottom: 2rem !important
	}

	.post-md-32,
	.posy-md-32 {
		top: 2rem !important
	}

	.posr-md-32 {
		right: 2rem !important
	}

	.posb-md-32 {
		bottom: 2rem !important
	}

	.posl-md-32 {
		left: 2rem !important
	}

	.posmt-md-32 {
		top: -2rem !important
	}

	.posmr-md-32 {
		right: -2rem !important
	}

	.posmb-md-32 {
		bottom: -2rem !important
	}

	.posml-md-32 {
		left: -2rem !important
	}

	.pos-md-33 {
		top: 2.0625rem !important;
		bottom: 2.0625rem !important
	}

	.pos-md-33,
	.posx-md-33 {
		right: 2.0625rem !important;
		left: 2.0625rem !important
	}

	.posy-md-33 {
		bottom: 2.0625rem !important
	}

	.post-md-33,
	.posy-md-33 {
		top: 2.0625rem !important
	}

	.posr-md-33 {
		right: 2.0625rem !important
	}

	.posb-md-33 {
		bottom: 2.0625rem !important
	}

	.posl-md-33 {
		left: 2.0625rem !important
	}

	.posmt-md-33 {
		top: -2.0625rem !important
	}

	.posmr-md-33 {
		right: -2.0625rem !important
	}

	.posmb-md-33 {
		bottom: -2.0625rem !important
	}

	.posml-md-33 {
		left: -2.0625rem !important
	}

	.pos-md-34 {
		top: 2.125rem !important;
		bottom: 2.125rem !important
	}

	.pos-md-34,
	.posx-md-34 {
		right: 2.125rem !important;
		left: 2.125rem !important
	}

	.posy-md-34 {
		bottom: 2.125rem !important
	}

	.post-md-34,
	.posy-md-34 {
		top: 2.125rem !important
	}

	.posr-md-34 {
		right: 2.125rem !important
	}

	.posb-md-34 {
		bottom: 2.125rem !important
	}

	.posl-md-34 {
		left: 2.125rem !important
	}

	.posmt-md-34 {
		top: -2.125rem !important
	}

	.posmr-md-34 {
		right: -2.125rem !important
	}

	.posmb-md-34 {
		bottom: -2.125rem !important
	}

	.posml-md-34 {
		left: -2.125rem !important
	}

	.pos-md-35 {
		top: 2.1875rem !important;
		bottom: 2.1875rem !important
	}

	.pos-md-35,
	.posx-md-35 {
		right: 2.1875rem !important;
		left: 2.1875rem !important
	}

	.posy-md-35 {
		bottom: 2.1875rem !important
	}

	.post-md-35,
	.posy-md-35 {
		top: 2.1875rem !important
	}

	.posr-md-35 {
		right: 2.1875rem !important
	}

	.posb-md-35 {
		bottom: 2.1875rem !important
	}

	.posl-md-35 {
		left: 2.1875rem !important
	}

	.posmt-md-35 {
		top: -2.1875rem !important
	}

	.posmr-md-35 {
		right: -2.1875rem !important
	}

	.posmb-md-35 {
		bottom: -2.1875rem !important
	}

	.posml-md-35 {
		left: -2.1875rem !important
	}

	.pos-md-36 {
		top: 2.25rem !important;
		bottom: 2.25rem !important
	}

	.pos-md-36,
	.posx-md-36 {
		right: 2.25rem !important;
		left: 2.25rem !important
	}

	.posy-md-36 {
		bottom: 2.25rem !important
	}

	.post-md-36,
	.posy-md-36 {
		top: 2.25rem !important
	}

	.posr-md-36 {
		right: 2.25rem !important
	}

	.posb-md-36 {
		bottom: 2.25rem !important
	}

	.posl-md-36 {
		left: 2.25rem !important
	}

	.posmt-md-36 {
		top: -2.25rem !important
	}

	.posmr-md-36 {
		right: -2.25rem !important
	}

	.posmb-md-36 {
		bottom: -2.25rem !important
	}

	.posml-md-36 {
		left: -2.25rem !important
	}

	.pos-md-37 {
		top: 2.3125rem !important;
		bottom: 2.3125rem !important
	}

	.pos-md-37,
	.posx-md-37 {
		right: 2.3125rem !important;
		left: 2.3125rem !important
	}

	.posy-md-37 {
		bottom: 2.3125rem !important
	}

	.post-md-37,
	.posy-md-37 {
		top: 2.3125rem !important
	}

	.posr-md-37 {
		right: 2.3125rem !important
	}

	.posb-md-37 {
		bottom: 2.3125rem !important
	}

	.posl-md-37 {
		left: 2.3125rem !important
	}

	.posmt-md-37 {
		top: -2.3125rem !important
	}

	.posmr-md-37 {
		right: -2.3125rem !important
	}

	.posmb-md-37 {
		bottom: -2.3125rem !important
	}

	.posml-md-37 {
		left: -2.3125rem !important
	}

	.pos-md-38 {
		top: 2.375rem !important;
		bottom: 2.375rem !important
	}

	.pos-md-38,
	.posx-md-38 {
		right: 2.375rem !important;
		left: 2.375rem !important
	}

	.posy-md-38 {
		bottom: 2.375rem !important
	}

	.post-md-38,
	.posy-md-38 {
		top: 2.375rem !important
	}

	.posr-md-38 {
		right: 2.375rem !important
	}

	.posb-md-38 {
		bottom: 2.375rem !important
	}

	.posl-md-38 {
		left: 2.375rem !important
	}

	.posmt-md-38 {
		top: -2.375rem !important
	}

	.posmr-md-38 {
		right: -2.375rem !important
	}

	.posmb-md-38 {
		bottom: -2.375rem !important
	}

	.posml-md-38 {
		left: -2.375rem !important
	}

	.pos-md-39 {
		top: 2.4375rem !important;
		bottom: 2.4375rem !important
	}

	.pos-md-39,
	.posx-md-39 {
		right: 2.4375rem !important;
		left: 2.4375rem !important
	}

	.posy-md-39 {
		bottom: 2.4375rem !important
	}

	.post-md-39,
	.posy-md-39 {
		top: 2.4375rem !important
	}

	.posr-md-39 {
		right: 2.4375rem !important
	}

	.posb-md-39 {
		bottom: 2.4375rem !important
	}

	.posl-md-39 {
		left: 2.4375rem !important
	}

	.posmt-md-39 {
		top: -2.4375rem !important
	}

	.posmr-md-39 {
		right: -2.4375rem !important
	}

	.posmb-md-39 {
		bottom: -2.4375rem !important
	}

	.posml-md-39 {
		left: -2.4375rem !important
	}

	.pos-md-40 {
		top: 2.5rem !important;
		bottom: 2.5rem !important
	}

	.pos-md-40,
	.posx-md-40 {
		right: 2.5rem !important;
		left: 2.5rem !important
	}

	.posy-md-40 {
		bottom: 2.5rem !important
	}

	.post-md-40,
	.posy-md-40 {
		top: 2.5rem !important
	}

	.posr-md-40 {
		right: 2.5rem !important
	}

	.posb-md-40 {
		bottom: 2.5rem !important
	}

	.posl-md-40 {
		left: 2.5rem !important
	}

	.posmt-md-40 {
		top: -2.5rem !important
	}

	.posmr-md-40 {
		right: -2.5rem !important
	}

	.posmb-md-40 {
		bottom: -2.5rem !important
	}

	.posml-md-40 {
		left: -2.5rem !important
	}

	.pos-md-41 {
		top: 2.5625rem !important;
		bottom: 2.5625rem !important
	}

	.pos-md-41,
	.posx-md-41 {
		right: 2.5625rem !important;
		left: 2.5625rem !important
	}

	.posy-md-41 {
		bottom: 2.5625rem !important
	}

	.post-md-41,
	.posy-md-41 {
		top: 2.5625rem !important
	}

	.posr-md-41 {
		right: 2.5625rem !important
	}

	.posb-md-41 {
		bottom: 2.5625rem !important
	}

	.posl-md-41 {
		left: 2.5625rem !important
	}

	.posmt-md-41 {
		top: -2.5625rem !important
	}

	.posmr-md-41 {
		right: -2.5625rem !important
	}

	.posmb-md-41 {
		bottom: -2.5625rem !important
	}

	.posml-md-41 {
		left: -2.5625rem !important
	}

	.pos-md-42 {
		top: 2.625rem !important;
		bottom: 2.625rem !important
	}

	.pos-md-42,
	.posx-md-42 {
		right: 2.625rem !important;
		left: 2.625rem !important
	}

	.posy-md-42 {
		bottom: 2.625rem !important
	}

	.post-md-42,
	.posy-md-42 {
		top: 2.625rem !important
	}

	.posr-md-42 {
		right: 2.625rem !important
	}

	.posb-md-42 {
		bottom: 2.625rem !important
	}

	.posl-md-42 {
		left: 2.625rem !important
	}

	.posmt-md-42 {
		top: -2.625rem !important
	}

	.posmr-md-42 {
		right: -2.625rem !important
	}

	.posmb-md-42 {
		bottom: -2.625rem !important
	}

	.posml-md-42 {
		left: -2.625rem !important
	}

	.pos-md-43 {
		top: 2.6875rem !important;
		bottom: 2.6875rem !important
	}

	.pos-md-43,
	.posx-md-43 {
		right: 2.6875rem !important;
		left: 2.6875rem !important
	}

	.posy-md-43 {
		bottom: 2.6875rem !important
	}

	.post-md-43,
	.posy-md-43 {
		top: 2.6875rem !important
	}

	.posr-md-43 {
		right: 2.6875rem !important
	}

	.posb-md-43 {
		bottom: 2.6875rem !important
	}

	.posl-md-43 {
		left: 2.6875rem !important
	}

	.posmt-md-43 {
		top: -2.6875rem !important
	}

	.posmr-md-43 {
		right: -2.6875rem !important
	}

	.posmb-md-43 {
		bottom: -2.6875rem !important
	}

	.posml-md-43 {
		left: -2.6875rem !important
	}

	.pos-md-44 {
		top: 2.75rem !important;
		bottom: 2.75rem !important
	}

	.pos-md-44,
	.posx-md-44 {
		right: 2.75rem !important;
		left: 2.75rem !important
	}

	.posy-md-44 {
		bottom: 2.75rem !important
	}

	.post-md-44,
	.posy-md-44 {
		top: 2.75rem !important
	}

	.posr-md-44 {
		right: 2.75rem !important
	}

	.posb-md-44 {
		bottom: 2.75rem !important
	}

	.posl-md-44 {
		left: 2.75rem !important
	}

	.posmt-md-44 {
		top: -2.75rem !important
	}

	.posmr-md-44 {
		right: -2.75rem !important
	}

	.posmb-md-44 {
		bottom: -2.75rem !important
	}

	.posml-md-44 {
		left: -2.75rem !important
	}

	.pos-md-45 {
		top: 2.8125rem !important;
		bottom: 2.8125rem !important
	}

	.pos-md-45,
	.posx-md-45 {
		right: 2.8125rem !important;
		left: 2.8125rem !important
	}

	.posy-md-45 {
		bottom: 2.8125rem !important
	}

	.post-md-45,
	.posy-md-45 {
		top: 2.8125rem !important
	}

	.posr-md-45 {
		right: 2.8125rem !important
	}

	.posb-md-45 {
		bottom: 2.8125rem !important
	}

	.posl-md-45 {
		left: 2.8125rem !important
	}

	.posmt-md-45 {
		top: -2.8125rem !important
	}

	.posmr-md-45 {
		right: -2.8125rem !important
	}

	.posmb-md-45 {
		bottom: -2.8125rem !important
	}

	.posml-md-45 {
		left: -2.8125rem !important
	}

	.pos-md-46 {
		top: 2.875rem !important;
		bottom: 2.875rem !important
	}

	.pos-md-46,
	.posx-md-46 {
		right: 2.875rem !important;
		left: 2.875rem !important
	}

	.posy-md-46 {
		bottom: 2.875rem !important
	}

	.post-md-46,
	.posy-md-46 {
		top: 2.875rem !important
	}

	.posr-md-46 {
		right: 2.875rem !important
	}

	.posb-md-46 {
		bottom: 2.875rem !important
	}

	.posl-md-46 {
		left: 2.875rem !important
	}

	.posmt-md-46 {
		top: -2.875rem !important
	}

	.posmr-md-46 {
		right: -2.875rem !important
	}

	.posmb-md-46 {
		bottom: -2.875rem !important
	}

	.posml-md-46 {
		left: -2.875rem !important
	}

	.pos-md-47 {
		top: 2.9375rem !important;
		bottom: 2.9375rem !important
	}

	.pos-md-47,
	.posx-md-47 {
		right: 2.9375rem !important;
		left: 2.9375rem !important
	}

	.posy-md-47 {
		bottom: 2.9375rem !important
	}

	.post-md-47,
	.posy-md-47 {
		top: 2.9375rem !important
	}

	.posr-md-47 {
		right: 2.9375rem !important
	}

	.posb-md-47 {
		bottom: 2.9375rem !important
	}

	.posl-md-47 {
		left: 2.9375rem !important
	}

	.posmt-md-47 {
		top: -2.9375rem !important
	}

	.posmr-md-47 {
		right: -2.9375rem !important
	}

	.posmb-md-47 {
		bottom: -2.9375rem !important
	}

	.posml-md-47 {
		left: -2.9375rem !important
	}

	.pos-md-48 {
		top: 3rem !important;
		bottom: 3rem !important
	}

	.pos-md-48,
	.posx-md-48 {
		right: 3rem !important;
		left: 3rem !important
	}

	.posy-md-48 {
		bottom: 3rem !important
	}

	.post-md-48,
	.posy-md-48 {
		top: 3rem !important
	}

	.posr-md-48 {
		right: 3rem !important
	}

	.posb-md-48 {
		bottom: 3rem !important
	}

	.posl-md-48 {
		left: 3rem !important
	}

	.posmt-md-48 {
		top: -3rem !important
	}

	.posmr-md-48 {
		right: -3rem !important
	}

	.posmb-md-48 {
		bottom: -3rem !important
	}

	.posml-md-48 {
		left: -3rem !important
	}

	.pos-md-49 {
		top: 3.0625rem !important;
		bottom: 3.0625rem !important
	}

	.pos-md-49,
	.posx-md-49 {
		right: 3.0625rem !important;
		left: 3.0625rem !important
	}

	.posy-md-49 {
		bottom: 3.0625rem !important
	}

	.post-md-49,
	.posy-md-49 {
		top: 3.0625rem !important
	}

	.posr-md-49 {
		right: 3.0625rem !important
	}

	.posb-md-49 {
		bottom: 3.0625rem !important
	}

	.posl-md-49 {
		left: 3.0625rem !important
	}

	.posmt-md-49 {
		top: -3.0625rem !important
	}

	.posmr-md-49 {
		right: -3.0625rem !important
	}

	.posmb-md-49 {
		bottom: -3.0625rem !important
	}

	.posml-md-49 {
		left: -3.0625rem !important
	}

	.pos-md-50 {
		top: 3.125rem !important;
		bottom: 3.125rem !important
	}

	.pos-md-50,
	.posx-md-50 {
		right: 3.125rem !important;
		left: 3.125rem !important
	}

	.posy-md-50 {
		bottom: 3.125rem !important
	}

	.post-md-50,
	.posy-md-50 {
		top: 3.125rem !important
	}

	.posr-md-50 {
		right: 3.125rem !important
	}

	.posb-md-50 {
		bottom: 3.125rem !important
	}

	.posl-md-50 {
		left: 3.125rem !important
	}

	.posmt-md-50 {
		top: -3.125rem !important
	}

	.posmr-md-50 {
		right: -3.125rem !important
	}

	.posmb-md-50 {
		bottom: -3.125rem !important
	}

	.posml-md-50 {
		left: -3.125rem !important
	}

	.pos-md-51 {
		top: 3.1875rem !important;
		bottom: 3.1875rem !important
	}

	.pos-md-51,
	.posx-md-51 {
		right: 3.1875rem !important;
		left: 3.1875rem !important
	}

	.posy-md-51 {
		bottom: 3.1875rem !important
	}

	.post-md-51,
	.posy-md-51 {
		top: 3.1875rem !important
	}

	.posr-md-51 {
		right: 3.1875rem !important
	}

	.posb-md-51 {
		bottom: 3.1875rem !important
	}

	.posl-md-51 {
		left: 3.1875rem !important
	}

	.posmt-md-51 {
		top: -3.1875rem !important
	}

	.posmr-md-51 {
		right: -3.1875rem !important
	}

	.posmb-md-51 {
		bottom: -3.1875rem !important
	}

	.posml-md-51 {
		left: -3.1875rem !important
	}

	.pos-md-52 {
		top: 3.25rem !important;
		bottom: 3.25rem !important
	}

	.pos-md-52,
	.posx-md-52 {
		right: 3.25rem !important;
		left: 3.25rem !important
	}

	.posy-md-52 {
		bottom: 3.25rem !important
	}

	.post-md-52,
	.posy-md-52 {
		top: 3.25rem !important
	}

	.posr-md-52 {
		right: 3.25rem !important
	}

	.posb-md-52 {
		bottom: 3.25rem !important
	}

	.posl-md-52 {
		left: 3.25rem !important
	}

	.posmt-md-52 {
		top: -3.25rem !important
	}

	.posmr-md-52 {
		right: -3.25rem !important
	}

	.posmb-md-52 {
		bottom: -3.25rem !important
	}

	.posml-md-52 {
		left: -3.25rem !important
	}

	.pos-md-53 {
		top: 3.3125rem !important;
		bottom: 3.3125rem !important
	}

	.pos-md-53,
	.posx-md-53 {
		right: 3.3125rem !important;
		left: 3.3125rem !important
	}

	.posy-md-53 {
		bottom: 3.3125rem !important
	}

	.post-md-53,
	.posy-md-53 {
		top: 3.3125rem !important
	}

	.posr-md-53 {
		right: 3.3125rem !important
	}

	.posb-md-53 {
		bottom: 3.3125rem !important
	}

	.posl-md-53 {
		left: 3.3125rem !important
	}

	.posmt-md-53 {
		top: -3.3125rem !important
	}

	.posmr-md-53 {
		right: -3.3125rem !important
	}

	.posmb-md-53 {
		bottom: -3.3125rem !important
	}

	.posml-md-53 {
		left: -3.3125rem !important
	}

	.pos-md-54 {
		top: 3.375rem !important;
		bottom: 3.375rem !important
	}

	.pos-md-54,
	.posx-md-54 {
		right: 3.375rem !important;
		left: 3.375rem !important
	}

	.posy-md-54 {
		bottom: 3.375rem !important
	}

	.post-md-54,
	.posy-md-54 {
		top: 3.375rem !important
	}

	.posr-md-54 {
		right: 3.375rem !important
	}

	.posb-md-54 {
		bottom: 3.375rem !important
	}

	.posl-md-54 {
		left: 3.375rem !important
	}

	.posmt-md-54 {
		top: -3.375rem !important
	}

	.posmr-md-54 {
		right: -3.375rem !important
	}

	.posmb-md-54 {
		bottom: -3.375rem !important
	}

	.posml-md-54 {
		left: -3.375rem !important
	}

	.pos-md-55 {
		top: 3.4375rem !important;
		bottom: 3.4375rem !important
	}

	.pos-md-55,
	.posx-md-55 {
		right: 3.4375rem !important;
		left: 3.4375rem !important
	}

	.posy-md-55 {
		bottom: 3.4375rem !important
	}

	.post-md-55,
	.posy-md-55 {
		top: 3.4375rem !important
	}

	.posr-md-55 {
		right: 3.4375rem !important
	}

	.posb-md-55 {
		bottom: 3.4375rem !important
	}

	.posl-md-55 {
		left: 3.4375rem !important
	}

	.posmt-md-55 {
		top: -3.4375rem !important
	}

	.posmr-md-55 {
		right: -3.4375rem !important
	}

	.posmb-md-55 {
		bottom: -3.4375rem !important
	}

	.posml-md-55 {
		left: -3.4375rem !important
	}

	.pos-md-56 {
		top: 3.5rem !important;
		bottom: 3.5rem !important
	}

	.pos-md-56,
	.posx-md-56 {
		right: 3.5rem !important;
		left: 3.5rem !important
	}

	.posy-md-56 {
		bottom: 3.5rem !important
	}

	.post-md-56,
	.posy-md-56 {
		top: 3.5rem !important
	}

	.posr-md-56 {
		right: 3.5rem !important
	}

	.posb-md-56 {
		bottom: 3.5rem !important
	}

	.posl-md-56 {
		left: 3.5rem !important
	}

	.posmt-md-56 {
		top: -3.5rem !important
	}

	.posmr-md-56 {
		right: -3.5rem !important
	}

	.posmb-md-56 {
		bottom: -3.5rem !important
	}

	.posml-md-56 {
		left: -3.5rem !important
	}

	.pos-md-57 {
		top: 3.5625rem !important;
		bottom: 3.5625rem !important
	}

	.pos-md-57,
	.posx-md-57 {
		right: 3.5625rem !important;
		left: 3.5625rem !important
	}

	.posy-md-57 {
		bottom: 3.5625rem !important
	}

	.post-md-57,
	.posy-md-57 {
		top: 3.5625rem !important
	}

	.posr-md-57 {
		right: 3.5625rem !important
	}

	.posb-md-57 {
		bottom: 3.5625rem !important
	}

	.posl-md-57 {
		left: 3.5625rem !important
	}

	.posmt-md-57 {
		top: -3.5625rem !important
	}

	.posmr-md-57 {
		right: -3.5625rem !important
	}

	.posmb-md-57 {
		bottom: -3.5625rem !important
	}

	.posml-md-57 {
		left: -3.5625rem !important
	}

	.pos-md-58 {
		top: 3.625rem !important;
		bottom: 3.625rem !important
	}

	.pos-md-58,
	.posx-md-58 {
		right: 3.625rem !important;
		left: 3.625rem !important
	}

	.posy-md-58 {
		bottom: 3.625rem !important
	}

	.post-md-58,
	.posy-md-58 {
		top: 3.625rem !important
	}

	.posr-md-58 {
		right: 3.625rem !important
	}

	.posb-md-58 {
		bottom: 3.625rem !important
	}

	.posl-md-58 {
		left: 3.625rem !important
	}

	.posmt-md-58 {
		top: -3.625rem !important
	}

	.posmr-md-58 {
		right: -3.625rem !important
	}

	.posmb-md-58 {
		bottom: -3.625rem !important
	}

	.posml-md-58 {
		left: -3.625rem !important
	}

	.pos-md-59 {
		top: 3.6875rem !important;
		bottom: 3.6875rem !important
	}

	.pos-md-59,
	.posx-md-59 {
		right: 3.6875rem !important;
		left: 3.6875rem !important
	}

	.posy-md-59 {
		bottom: 3.6875rem !important
	}

	.post-md-59,
	.posy-md-59 {
		top: 3.6875rem !important
	}

	.posr-md-59 {
		right: 3.6875rem !important
	}

	.posb-md-59 {
		bottom: 3.6875rem !important
	}

	.posl-md-59 {
		left: 3.6875rem !important
	}

	.posmt-md-59 {
		top: -3.6875rem !important
	}

	.posmr-md-59 {
		right: -3.6875rem !important
	}

	.posmb-md-59 {
		bottom: -3.6875rem !important
	}

	.posml-md-59 {
		left: -3.6875rem !important
	}

	.pos-md-60 {
		top: 3.75rem !important;
		bottom: 3.75rem !important
	}

	.pos-md-60,
	.posx-md-60 {
		right: 3.75rem !important;
		left: 3.75rem !important
	}

	.posy-md-60 {
		bottom: 3.75rem !important
	}

	.post-md-60,
	.posy-md-60 {
		top: 3.75rem !important
	}

	.posr-md-60 {
		right: 3.75rem !important
	}

	.posb-md-60 {
		bottom: 3.75rem !important
	}

	.posl-md-60 {
		left: 3.75rem !important
	}

	.posmt-md-60 {
		top: -3.75rem !important
	}

	.posmr-md-60 {
		right: -3.75rem !important
	}

	.posmb-md-60 {
		bottom: -3.75rem !important
	}

	.posml-md-60 {
		left: -3.75rem !important
	}

	.pos-md-61 {
		top: 3.8125rem !important;
		bottom: 3.8125rem !important
	}

	.pos-md-61,
	.posx-md-61 {
		right: 3.8125rem !important;
		left: 3.8125rem !important
	}

	.posy-md-61 {
		bottom: 3.8125rem !important
	}

	.post-md-61,
	.posy-md-61 {
		top: 3.8125rem !important
	}

	.posr-md-61 {
		right: 3.8125rem !important
	}

	.posb-md-61 {
		bottom: 3.8125rem !important
	}

	.posl-md-61 {
		left: 3.8125rem !important
	}

	.posmt-md-61 {
		top: -3.8125rem !important
	}

	.posmr-md-61 {
		right: -3.8125rem !important
	}

	.posmb-md-61 {
		bottom: -3.8125rem !important
	}

	.posml-md-61 {
		left: -3.8125rem !important
	}

	.pos-md-62 {
		top: 3.875rem !important;
		bottom: 3.875rem !important
	}

	.pos-md-62,
	.posx-md-62 {
		right: 3.875rem !important;
		left: 3.875rem !important
	}

	.posy-md-62 {
		bottom: 3.875rem !important
	}

	.post-md-62,
	.posy-md-62 {
		top: 3.875rem !important
	}

	.posr-md-62 {
		right: 3.875rem !important
	}

	.posb-md-62 {
		bottom: 3.875rem !important
	}

	.posl-md-62 {
		left: 3.875rem !important
	}

	.posmt-md-62 {
		top: -3.875rem !important
	}

	.posmr-md-62 {
		right: -3.875rem !important
	}

	.posmb-md-62 {
		bottom: -3.875rem !important
	}

	.posml-md-62 {
		left: -3.875rem !important
	}

	.pos-md-63 {
		top: 3.9375rem !important;
		bottom: 3.9375rem !important
	}

	.pos-md-63,
	.posx-md-63 {
		right: 3.9375rem !important;
		left: 3.9375rem !important
	}

	.posy-md-63 {
		bottom: 3.9375rem !important
	}

	.post-md-63,
	.posy-md-63 {
		top: 3.9375rem !important
	}

	.posr-md-63 {
		right: 3.9375rem !important
	}

	.posb-md-63 {
		bottom: 3.9375rem !important
	}

	.posl-md-63 {
		left: 3.9375rem !important
	}

	.posmt-md-63 {
		top: -3.9375rem !important
	}

	.posmr-md-63 {
		right: -3.9375rem !important
	}

	.posmb-md-63 {
		bottom: -3.9375rem !important
	}

	.posml-md-63 {
		left: -3.9375rem !important
	}

	.pos-md-64 {
		top: 4rem !important;
		bottom: 4rem !important
	}

	.pos-md-64,
	.posx-md-64 {
		right: 4rem !important;
		left: 4rem !important
	}

	.posy-md-64 {
		bottom: 4rem !important
	}

	.post-md-64,
	.posy-md-64 {
		top: 4rem !important
	}

	.posr-md-64 {
		right: 4rem !important
	}

	.posb-md-64 {
		bottom: 4rem !important
	}

	.posl-md-64 {
		left: 4rem !important
	}

	.posmt-md-64 {
		top: -4rem !important
	}

	.posmr-md-64 {
		right: -4rem !important
	}

	.posmb-md-64 {
		bottom: -4rem !important
	}

	.posml-md-64 {
		left: -4rem !important
	}

	.pos-md-65 {
		top: 4.0625rem !important;
		bottom: 4.0625rem !important
	}

	.pos-md-65,
	.posx-md-65 {
		right: 4.0625rem !important;
		left: 4.0625rem !important
	}

	.posy-md-65 {
		bottom: 4.0625rem !important
	}

	.post-md-65,
	.posy-md-65 {
		top: 4.0625rem !important
	}

	.posr-md-65 {
		right: 4.0625rem !important
	}

	.posb-md-65 {
		bottom: 4.0625rem !important
	}

	.posl-md-65 {
		left: 4.0625rem !important
	}

	.posmt-md-65 {
		top: -4.0625rem !important
	}

	.posmr-md-65 {
		right: -4.0625rem !important
	}

	.posmb-md-65 {
		bottom: -4.0625rem !important
	}

	.posml-md-65 {
		left: -4.0625rem !important
	}

	.pos-md-66 {
		top: 4.125rem !important;
		bottom: 4.125rem !important
	}

	.pos-md-66,
	.posx-md-66 {
		right: 4.125rem !important;
		left: 4.125rem !important
	}

	.posy-md-66 {
		bottom: 4.125rem !important
	}

	.post-md-66,
	.posy-md-66 {
		top: 4.125rem !important
	}

	.posr-md-66 {
		right: 4.125rem !important
	}

	.posb-md-66 {
		bottom: 4.125rem !important
	}

	.posl-md-66 {
		left: 4.125rem !important
	}

	.posmt-md-66 {
		top: -4.125rem !important
	}

	.posmr-md-66 {
		right: -4.125rem !important
	}

	.posmb-md-66 {
		bottom: -4.125rem !important
	}

	.posml-md-66 {
		left: -4.125rem !important
	}

	.pos-md-67 {
		top: 4.1875rem !important;
		bottom: 4.1875rem !important
	}

	.pos-md-67,
	.posx-md-67 {
		right: 4.1875rem !important;
		left: 4.1875rem !important
	}

	.posy-md-67 {
		bottom: 4.1875rem !important
	}

	.post-md-67,
	.posy-md-67 {
		top: 4.1875rem !important
	}

	.posr-md-67 {
		right: 4.1875rem !important
	}

	.posb-md-67 {
		bottom: 4.1875rem !important
	}

	.posl-md-67 {
		left: 4.1875rem !important
	}

	.posmt-md-67 {
		top: -4.1875rem !important
	}

	.posmr-md-67 {
		right: -4.1875rem !important
	}

	.posmb-md-67 {
		bottom: -4.1875rem !important
	}

	.posml-md-67 {
		left: -4.1875rem !important
	}

	.pos-md-68 {
		top: 4.25rem !important;
		bottom: 4.25rem !important
	}

	.pos-md-68,
	.posx-md-68 {
		right: 4.25rem !important;
		left: 4.25rem !important
	}

	.posy-md-68 {
		bottom: 4.25rem !important
	}

	.post-md-68,
	.posy-md-68 {
		top: 4.25rem !important
	}

	.posr-md-68 {
		right: 4.25rem !important
	}

	.posb-md-68 {
		bottom: 4.25rem !important
	}

	.posl-md-68 {
		left: 4.25rem !important
	}

	.posmt-md-68 {
		top: -4.25rem !important
	}

	.posmr-md-68 {
		right: -4.25rem !important
	}

	.posmb-md-68 {
		bottom: -4.25rem !important
	}

	.posml-md-68 {
		left: -4.25rem !important
	}

	.pos-md-69 {
		top: 4.3125rem !important;
		bottom: 4.3125rem !important
	}

	.pos-md-69,
	.posx-md-69 {
		right: 4.3125rem !important;
		left: 4.3125rem !important
	}

	.posy-md-69 {
		bottom: 4.3125rem !important
	}

	.post-md-69,
	.posy-md-69 {
		top: 4.3125rem !important
	}

	.posr-md-69 {
		right: 4.3125rem !important
	}

	.posb-md-69 {
		bottom: 4.3125rem !important
	}

	.posl-md-69 {
		left: 4.3125rem !important
	}

	.posmt-md-69 {
		top: -4.3125rem !important
	}

	.posmr-md-69 {
		right: -4.3125rem !important
	}

	.posmb-md-69 {
		bottom: -4.3125rem !important
	}

	.posml-md-69 {
		left: -4.3125rem !important
	}

	.pos-md-70 {
		top: 4.375rem !important;
		bottom: 4.375rem !important
	}

	.pos-md-70,
	.posx-md-70 {
		right: 4.375rem !important;
		left: 4.375rem !important
	}

	.posy-md-70 {
		bottom: 4.375rem !important
	}

	.post-md-70,
	.posy-md-70 {
		top: 4.375rem !important
	}

	.posr-md-70 {
		right: 4.375rem !important
	}

	.posb-md-70 {
		bottom: 4.375rem !important
	}

	.posl-md-70 {
		left: 4.375rem !important
	}

	.posmt-md-70 {
		top: -4.375rem !important
	}

	.posmr-md-70 {
		right: -4.375rem !important
	}

	.posmb-md-70 {
		bottom: -4.375rem !important
	}

	.posml-md-70 {
		left: -4.375rem !important
	}

	.pos-md-71 {
		top: 4.4375rem !important;
		bottom: 4.4375rem !important
	}

	.pos-md-71,
	.posx-md-71 {
		right: 4.4375rem !important;
		left: 4.4375rem !important
	}

	.posy-md-71 {
		bottom: 4.4375rem !important
	}

	.post-md-71,
	.posy-md-71 {
		top: 4.4375rem !important
	}

	.posr-md-71 {
		right: 4.4375rem !important
	}

	.posb-md-71 {
		bottom: 4.4375rem !important
	}

	.posl-md-71 {
		left: 4.4375rem !important
	}

	.posmt-md-71 {
		top: -4.4375rem !important
	}

	.posmr-md-71 {
		right: -4.4375rem !important
	}

	.posmb-md-71 {
		bottom: -4.4375rem !important
	}

	.posml-md-71 {
		left: -4.4375rem !important
	}

	.pos-md-72 {
		top: 4.5rem !important;
		bottom: 4.5rem !important
	}

	.pos-md-72,
	.posx-md-72 {
		right: 4.5rem !important;
		left: 4.5rem !important
	}

	.posy-md-72 {
		bottom: 4.5rem !important
	}

	.post-md-72,
	.posy-md-72 {
		top: 4.5rem !important
	}

	.posr-md-72 {
		right: 4.5rem !important
	}

	.posb-md-72 {
		bottom: 4.5rem !important
	}

	.posl-md-72 {
		left: 4.5rem !important
	}

	.posmt-md-72 {
		top: -4.5rem !important
	}

	.posmr-md-72 {
		right: -4.5rem !important
	}

	.posmb-md-72 {
		bottom: -4.5rem !important
	}

	.posml-md-72 {
		left: -4.5rem !important
	}

	.pos-md-73 {
		top: 4.5625rem !important;
		bottom: 4.5625rem !important
	}

	.pos-md-73,
	.posx-md-73 {
		right: 4.5625rem !important;
		left: 4.5625rem !important
	}

	.posy-md-73 {
		bottom: 4.5625rem !important
	}

	.post-md-73,
	.posy-md-73 {
		top: 4.5625rem !important
	}

	.posr-md-73 {
		right: 4.5625rem !important
	}

	.posb-md-73 {
		bottom: 4.5625rem !important
	}

	.posl-md-73 {
		left: 4.5625rem !important
	}

	.posmt-md-73 {
		top: -4.5625rem !important
	}

	.posmr-md-73 {
		right: -4.5625rem !important
	}

	.posmb-md-73 {
		bottom: -4.5625rem !important
	}

	.posml-md-73 {
		left: -4.5625rem !important
	}

	.pos-md-74 {
		top: 4.625rem !important;
		bottom: 4.625rem !important
	}

	.pos-md-74,
	.posx-md-74 {
		right: 4.625rem !important;
		left: 4.625rem !important
	}

	.posy-md-74 {
		bottom: 4.625rem !important
	}

	.post-md-74,
	.posy-md-74 {
		top: 4.625rem !important
	}

	.posr-md-74 {
		right: 4.625rem !important
	}

	.posb-md-74 {
		bottom: 4.625rem !important
	}

	.posl-md-74 {
		left: 4.625rem !important
	}

	.posmt-md-74 {
		top: -4.625rem !important
	}

	.posmr-md-74 {
		right: -4.625rem !important
	}

	.posmb-md-74 {
		bottom: -4.625rem !important
	}

	.posml-md-74 {
		left: -4.625rem !important
	}

	.pos-md-75 {
		top: 4.6875rem !important;
		bottom: 4.6875rem !important
	}

	.pos-md-75,
	.posx-md-75 {
		right: 4.6875rem !important;
		left: 4.6875rem !important
	}

	.posy-md-75 {
		bottom: 4.6875rem !important
	}

	.post-md-75,
	.posy-md-75 {
		top: 4.6875rem !important
	}

	.posr-md-75 {
		right: 4.6875rem !important
	}

	.posb-md-75 {
		bottom: 4.6875rem !important
	}

	.posl-md-75 {
		left: 4.6875rem !important
	}

	.posmt-md-75 {
		top: -4.6875rem !important
	}

	.posmr-md-75 {
		right: -4.6875rem !important
	}

	.posmb-md-75 {
		bottom: -4.6875rem !important
	}

	.posml-md-75 {
		left: -4.6875rem !important
	}

	.pos-md-76 {
		top: 4.75rem !important;
		bottom: 4.75rem !important
	}

	.pos-md-76,
	.posx-md-76 {
		right: 4.75rem !important;
		left: 4.75rem !important
	}

	.posy-md-76 {
		bottom: 4.75rem !important
	}

	.post-md-76,
	.posy-md-76 {
		top: 4.75rem !important
	}

	.posr-md-76 {
		right: 4.75rem !important
	}

	.posb-md-76 {
		bottom: 4.75rem !important
	}

	.posl-md-76 {
		left: 4.75rem !important
	}

	.posmt-md-76 {
		top: -4.75rem !important
	}

	.posmr-md-76 {
		right: -4.75rem !important
	}

	.posmb-md-76 {
		bottom: -4.75rem !important
	}

	.posml-md-76 {
		left: -4.75rem !important
	}

	.pos-md-77 {
		top: 4.8125rem !important;
		bottom: 4.8125rem !important
	}

	.pos-md-77,
	.posx-md-77 {
		right: 4.8125rem !important;
		left: 4.8125rem !important
	}

	.posy-md-77 {
		bottom: 4.8125rem !important
	}

	.post-md-77,
	.posy-md-77 {
		top: 4.8125rem !important
	}

	.posr-md-77 {
		right: 4.8125rem !important
	}

	.posb-md-77 {
		bottom: 4.8125rem !important
	}

	.posl-md-77 {
		left: 4.8125rem !important
	}

	.posmt-md-77 {
		top: -4.8125rem !important
	}

	.posmr-md-77 {
		right: -4.8125rem !important
	}

	.posmb-md-77 {
		bottom: -4.8125rem !important
	}

	.posml-md-77 {
		left: -4.8125rem !important
	}

	.pos-md-78 {
		top: 4.875rem !important;
		bottom: 4.875rem !important
	}

	.pos-md-78,
	.posx-md-78 {
		right: 4.875rem !important;
		left: 4.875rem !important
	}

	.posy-md-78 {
		bottom: 4.875rem !important
	}

	.post-md-78,
	.posy-md-78 {
		top: 4.875rem !important
	}

	.posr-md-78 {
		right: 4.875rem !important
	}

	.posb-md-78 {
		bottom: 4.875rem !important
	}

	.posl-md-78 {
		left: 4.875rem !important
	}

	.posmt-md-78 {
		top: -4.875rem !important
	}

	.posmr-md-78 {
		right: -4.875rem !important
	}

	.posmb-md-78 {
		bottom: -4.875rem !important
	}

	.posml-md-78 {
		left: -4.875rem !important
	}

	.pos-md-79 {
		top: 4.9375rem !important;
		bottom: 4.9375rem !important
	}

	.pos-md-79,
	.posx-md-79 {
		right: 4.9375rem !important;
		left: 4.9375rem !important
	}

	.posy-md-79 {
		bottom: 4.9375rem !important
	}

	.post-md-79,
	.posy-md-79 {
		top: 4.9375rem !important
	}

	.posr-md-79 {
		right: 4.9375rem !important
	}

	.posb-md-79 {
		bottom: 4.9375rem !important
	}

	.posl-md-79 {
		left: 4.9375rem !important
	}

	.posmt-md-79 {
		top: -4.9375rem !important
	}

	.posmr-md-79 {
		right: -4.9375rem !important
	}

	.posmb-md-79 {
		bottom: -4.9375rem !important
	}

	.posml-md-79 {
		left: -4.9375rem !important
	}

	.pos-md-80 {
		top: 5rem !important;
		bottom: 5rem !important
	}

	.pos-md-80,
	.posx-md-80 {
		right: 5rem !important;
		left: 5rem !important
	}

	.posy-md-80 {
		bottom: 5rem !important
	}

	.post-md-80,
	.posy-md-80 {
		top: 5rem !important
	}

	.posr-md-80 {
		right: 5rem !important
	}

	.posb-md-80 {
		bottom: 5rem !important
	}

	.posl-md-80 {
		left: 5rem !important
	}

	.posmt-md-80 {
		top: -5rem !important
	}

	.posmr-md-80 {
		right: -5rem !important
	}

	.posmb-md-80 {
		bottom: -5rem !important
	}

	.posml-md-80 {
		left: -5rem !important
	}

	.pos-md-81 {
		top: 5.0625rem !important;
		bottom: 5.0625rem !important
	}

	.pos-md-81,
	.posx-md-81 {
		right: 5.0625rem !important;
		left: 5.0625rem !important
	}

	.posy-md-81 {
		bottom: 5.0625rem !important
	}

	.post-md-81,
	.posy-md-81 {
		top: 5.0625rem !important
	}

	.posr-md-81 {
		right: 5.0625rem !important
	}

	.posb-md-81 {
		bottom: 5.0625rem !important
	}

	.posl-md-81 {
		left: 5.0625rem !important
	}

	.posmt-md-81 {
		top: -5.0625rem !important
	}

	.posmr-md-81 {
		right: -5.0625rem !important
	}

	.posmb-md-81 {
		bottom: -5.0625rem !important
	}

	.posml-md-81 {
		left: -5.0625rem !important
	}

	.pos-md-82 {
		top: 5.125rem !important;
		bottom: 5.125rem !important
	}

	.pos-md-82,
	.posx-md-82 {
		right: 5.125rem !important;
		left: 5.125rem !important
	}

	.posy-md-82 {
		bottom: 5.125rem !important
	}

	.post-md-82,
	.posy-md-82 {
		top: 5.125rem !important
	}

	.posr-md-82 {
		right: 5.125rem !important
	}

	.posb-md-82 {
		bottom: 5.125rem !important
	}

	.posl-md-82 {
		left: 5.125rem !important
	}

	.posmt-md-82 {
		top: -5.125rem !important
	}

	.posmr-md-82 {
		right: -5.125rem !important
	}

	.posmb-md-82 {
		bottom: -5.125rem !important
	}

	.posml-md-82 {
		left: -5.125rem !important
	}

	.pos-md-83 {
		top: 5.1875rem !important;
		bottom: 5.1875rem !important
	}

	.pos-md-83,
	.posx-md-83 {
		right: 5.1875rem !important;
		left: 5.1875rem !important
	}

	.posy-md-83 {
		bottom: 5.1875rem !important
	}

	.post-md-83,
	.posy-md-83 {
		top: 5.1875rem !important
	}

	.posr-md-83 {
		right: 5.1875rem !important
	}

	.posb-md-83 {
		bottom: 5.1875rem !important
	}

	.posl-md-83 {
		left: 5.1875rem !important
	}

	.posmt-md-83 {
		top: -5.1875rem !important
	}

	.posmr-md-83 {
		right: -5.1875rem !important
	}

	.posmb-md-83 {
		bottom: -5.1875rem !important
	}

	.posml-md-83 {
		left: -5.1875rem !important
	}

	.pos-md-84 {
		top: 5.25rem !important;
		bottom: 5.25rem !important
	}

	.pos-md-84,
	.posx-md-84 {
		right: 5.25rem !important;
		left: 5.25rem !important
	}

	.posy-md-84 {
		bottom: 5.25rem !important
	}

	.post-md-84,
	.posy-md-84 {
		top: 5.25rem !important
	}

	.posr-md-84 {
		right: 5.25rem !important
	}

	.posb-md-84 {
		bottom: 5.25rem !important
	}

	.posl-md-84 {
		left: 5.25rem !important
	}

	.posmt-md-84 {
		top: -5.25rem !important
	}

	.posmr-md-84 {
		right: -5.25rem !important
	}

	.posmb-md-84 {
		bottom: -5.25rem !important
	}

	.posml-md-84 {
		left: -5.25rem !important
	}

	.pos-md-85 {
		top: 5.3125rem !important;
		bottom: 5.3125rem !important
	}

	.pos-md-85,
	.posx-md-85 {
		right: 5.3125rem !important;
		left: 5.3125rem !important
	}

	.posy-md-85 {
		bottom: 5.3125rem !important
	}

	.post-md-85,
	.posy-md-85 {
		top: 5.3125rem !important
	}

	.posr-md-85 {
		right: 5.3125rem !important
	}

	.posb-md-85 {
		bottom: 5.3125rem !important
	}

	.posl-md-85 {
		left: 5.3125rem !important
	}

	.posmt-md-85 {
		top: -5.3125rem !important
	}

	.posmr-md-85 {
		right: -5.3125rem !important
	}

	.posmb-md-85 {
		bottom: -5.3125rem !important
	}

	.posml-md-85 {
		left: -5.3125rem !important
	}

	.pos-md-86 {
		top: 5.375rem !important;
		bottom: 5.375rem !important
	}

	.pos-md-86,
	.posx-md-86 {
		right: 5.375rem !important;
		left: 5.375rem !important
	}

	.posy-md-86 {
		bottom: 5.375rem !important
	}

	.post-md-86,
	.posy-md-86 {
		top: 5.375rem !important
	}

	.posr-md-86 {
		right: 5.375rem !important
	}

	.posb-md-86 {
		bottom: 5.375rem !important
	}

	.posl-md-86 {
		left: 5.375rem !important
	}

	.posmt-md-86 {
		top: -5.375rem !important
	}

	.posmr-md-86 {
		right: -5.375rem !important
	}

	.posmb-md-86 {
		bottom: -5.375rem !important
	}

	.posml-md-86 {
		left: -5.375rem !important
	}

	.pos-md-87 {
		top: 5.4375rem !important;
		bottom: 5.4375rem !important
	}

	.pos-md-87,
	.posx-md-87 {
		right: 5.4375rem !important;
		left: 5.4375rem !important
	}

	.posy-md-87 {
		bottom: 5.4375rem !important
	}

	.post-md-87,
	.posy-md-87 {
		top: 5.4375rem !important
	}

	.posr-md-87 {
		right: 5.4375rem !important
	}

	.posb-md-87 {
		bottom: 5.4375rem !important
	}

	.posl-md-87 {
		left: 5.4375rem !important
	}

	.posmt-md-87 {
		top: -5.4375rem !important
	}

	.posmr-md-87 {
		right: -5.4375rem !important
	}

	.posmb-md-87 {
		bottom: -5.4375rem !important
	}

	.posml-md-87 {
		left: -5.4375rem !important
	}

	.pos-md-88 {
		top: 5.5rem !important;
		bottom: 5.5rem !important
	}

	.pos-md-88,
	.posx-md-88 {
		right: 5.5rem !important;
		left: 5.5rem !important
	}

	.posy-md-88 {
		bottom: 5.5rem !important
	}

	.post-md-88,
	.posy-md-88 {
		top: 5.5rem !important
	}

	.posr-md-88 {
		right: 5.5rem !important
	}

	.posb-md-88 {
		bottom: 5.5rem !important
	}

	.posl-md-88 {
		left: 5.5rem !important
	}

	.posmt-md-88 {
		top: -5.5rem !important
	}

	.posmr-md-88 {
		right: -5.5rem !important
	}

	.posmb-md-88 {
		bottom: -5.5rem !important
	}

	.posml-md-88 {
		left: -5.5rem !important
	}

	.pos-md-89 {
		top: 5.5625rem !important;
		bottom: 5.5625rem !important
	}

	.pos-md-89,
	.posx-md-89 {
		right: 5.5625rem !important;
		left: 5.5625rem !important
	}

	.posy-md-89 {
		bottom: 5.5625rem !important
	}

	.post-md-89,
	.posy-md-89 {
		top: 5.5625rem !important
	}

	.posr-md-89 {
		right: 5.5625rem !important
	}

	.posb-md-89 {
		bottom: 5.5625rem !important
	}

	.posl-md-89 {
		left: 5.5625rem !important
	}

	.posmt-md-89 {
		top: -5.5625rem !important
	}

	.posmr-md-89 {
		right: -5.5625rem !important
	}

	.posmb-md-89 {
		bottom: -5.5625rem !important
	}

	.posml-md-89 {
		left: -5.5625rem !important
	}

	.pos-md-90 {
		top: 5.625rem !important;
		bottom: 5.625rem !important
	}

	.pos-md-90,
	.posx-md-90 {
		right: 5.625rem !important;
		left: 5.625rem !important
	}

	.posy-md-90 {
		bottom: 5.625rem !important
	}

	.post-md-90,
	.posy-md-90 {
		top: 5.625rem !important
	}

	.posr-md-90 {
		right: 5.625rem !important
	}

	.posb-md-90 {
		bottom: 5.625rem !important
	}

	.posl-md-90 {
		left: 5.625rem !important
	}

	.posmt-md-90 {
		top: -5.625rem !important
	}

	.posmr-md-90 {
		right: -5.625rem !important
	}

	.posmb-md-90 {
		bottom: -5.625rem !important
	}

	.posml-md-90 {
		left: -5.625rem !important
	}

	.pos-md-91 {
		top: 5.6875rem !important;
		bottom: 5.6875rem !important
	}

	.pos-md-91,
	.posx-md-91 {
		right: 5.6875rem !important;
		left: 5.6875rem !important
	}

	.posy-md-91 {
		bottom: 5.6875rem !important
	}

	.post-md-91,
	.posy-md-91 {
		top: 5.6875rem !important
	}

	.posr-md-91 {
		right: 5.6875rem !important
	}

	.posb-md-91 {
		bottom: 5.6875rem !important
	}

	.posl-md-91 {
		left: 5.6875rem !important
	}

	.posmt-md-91 {
		top: -5.6875rem !important
	}

	.posmr-md-91 {
		right: -5.6875rem !important
	}

	.posmb-md-91 {
		bottom: -5.6875rem !important
	}

	.posml-md-91 {
		left: -5.6875rem !important
	}

	.pos-md-92 {
		top: 5.75rem !important;
		bottom: 5.75rem !important
	}

	.pos-md-92,
	.posx-md-92 {
		right: 5.75rem !important;
		left: 5.75rem !important
	}

	.posy-md-92 {
		bottom: 5.75rem !important
	}

	.post-md-92,
	.posy-md-92 {
		top: 5.75rem !important
	}

	.posr-md-92 {
		right: 5.75rem !important
	}

	.posb-md-92 {
		bottom: 5.75rem !important
	}

	.posl-md-92 {
		left: 5.75rem !important
	}

	.posmt-md-92 {
		top: -5.75rem !important
	}

	.posmr-md-92 {
		right: -5.75rem !important
	}

	.posmb-md-92 {
		bottom: -5.75rem !important
	}

	.posml-md-92 {
		left: -5.75rem !important
	}

	.pos-md-93 {
		top: 5.8125rem !important;
		bottom: 5.8125rem !important
	}

	.pos-md-93,
	.posx-md-93 {
		right: 5.8125rem !important;
		left: 5.8125rem !important
	}

	.posy-md-93 {
		bottom: 5.8125rem !important
	}

	.post-md-93,
	.posy-md-93 {
		top: 5.8125rem !important
	}

	.posr-md-93 {
		right: 5.8125rem !important
	}

	.posb-md-93 {
		bottom: 5.8125rem !important
	}

	.posl-md-93 {
		left: 5.8125rem !important
	}

	.posmt-md-93 {
		top: -5.8125rem !important
	}

	.posmr-md-93 {
		right: -5.8125rem !important
	}

	.posmb-md-93 {
		bottom: -5.8125rem !important
	}

	.posml-md-93 {
		left: -5.8125rem !important
	}

	.pos-md-94 {
		top: 5.875rem !important;
		bottom: 5.875rem !important
	}

	.pos-md-94,
	.posx-md-94 {
		right: 5.875rem !important;
		left: 5.875rem !important
	}

	.posy-md-94 {
		bottom: 5.875rem !important
	}

	.post-md-94,
	.posy-md-94 {
		top: 5.875rem !important
	}

	.posr-md-94 {
		right: 5.875rem !important
	}

	.posb-md-94 {
		bottom: 5.875rem !important
	}

	.posl-md-94 {
		left: 5.875rem !important
	}

	.posmt-md-94 {
		top: -5.875rem !important
	}

	.posmr-md-94 {
		right: -5.875rem !important
	}

	.posmb-md-94 {
		bottom: -5.875rem !important
	}

	.posml-md-94 {
		left: -5.875rem !important
	}

	.pos-md-95 {
		top: 5.9375rem !important;
		bottom: 5.9375rem !important
	}

	.pos-md-95,
	.posx-md-95 {
		right: 5.9375rem !important;
		left: 5.9375rem !important
	}

	.posy-md-95 {
		bottom: 5.9375rem !important
	}

	.post-md-95,
	.posy-md-95 {
		top: 5.9375rem !important
	}

	.posr-md-95 {
		right: 5.9375rem !important
	}

	.posb-md-95 {
		bottom: 5.9375rem !important
	}

	.posl-md-95 {
		left: 5.9375rem !important
	}

	.posmt-md-95 {
		top: -5.9375rem !important
	}

	.posmr-md-95 {
		right: -5.9375rem !important
	}

	.posmb-md-95 {
		bottom: -5.9375rem !important
	}

	.posml-md-95 {
		left: -5.9375rem !important
	}

	.pos-md-96 {
		top: 6rem !important;
		bottom: 6rem !important
	}

	.pos-md-96,
	.posx-md-96 {
		right: 6rem !important;
		left: 6rem !important
	}

	.posy-md-96 {
		bottom: 6rem !important
	}

	.post-md-96,
	.posy-md-96 {
		top: 6rem !important
	}

	.posr-md-96 {
		right: 6rem !important
	}

	.posb-md-96 {
		bottom: 6rem !important
	}

	.posl-md-96 {
		left: 6rem !important
	}

	.posmt-md-96 {
		top: -6rem !important
	}

	.posmr-md-96 {
		right: -6rem !important
	}

	.posmb-md-96 {
		bottom: -6rem !important
	}

	.posml-md-96 {
		left: -6rem !important
	}

	.pos-md-97 {
		top: 6.0625rem !important;
		bottom: 6.0625rem !important
	}

	.pos-md-97,
	.posx-md-97 {
		right: 6.0625rem !important;
		left: 6.0625rem !important
	}

	.posy-md-97 {
		bottom: 6.0625rem !important
	}

	.post-md-97,
	.posy-md-97 {
		top: 6.0625rem !important
	}

	.posr-md-97 {
		right: 6.0625rem !important
	}

	.posb-md-97 {
		bottom: 6.0625rem !important
	}

	.posl-md-97 {
		left: 6.0625rem !important
	}

	.posmt-md-97 {
		top: -6.0625rem !important
	}

	.posmr-md-97 {
		right: -6.0625rem !important
	}

	.posmb-md-97 {
		bottom: -6.0625rem !important
	}

	.posml-md-97 {
		left: -6.0625rem !important
	}

	.pos-md-98 {
		top: 6.125rem !important;
		bottom: 6.125rem !important
	}

	.pos-md-98,
	.posx-md-98 {
		right: 6.125rem !important;
		left: 6.125rem !important
	}

	.posy-md-98 {
		bottom: 6.125rem !important
	}

	.post-md-98,
	.posy-md-98 {
		top: 6.125rem !important
	}

	.posr-md-98 {
		right: 6.125rem !important
	}

	.posb-md-98 {
		bottom: 6.125rem !important
	}

	.posl-md-98 {
		left: 6.125rem !important
	}

	.posmt-md-98 {
		top: -6.125rem !important
	}

	.posmr-md-98 {
		right: -6.125rem !important
	}

	.posmb-md-98 {
		bottom: -6.125rem !important
	}

	.posml-md-98 {
		left: -6.125rem !important
	}

	.pos-md-99 {
		top: 6.1875rem !important;
		bottom: 6.1875rem !important
	}

	.pos-md-99,
	.posx-md-99 {
		right: 6.1875rem !important;
		left: 6.1875rem !important
	}

	.posy-md-99 {
		bottom: 6.1875rem !important
	}

	.post-md-99,
	.posy-md-99 {
		top: 6.1875rem !important
	}

	.posr-md-99 {
		right: 6.1875rem !important
	}

	.posb-md-99 {
		bottom: 6.1875rem !important
	}

	.posl-md-99 {
		left: 6.1875rem !important
	}

	.posmt-md-99 {
		top: -6.1875rem !important
	}

	.posmr-md-99 {
		right: -6.1875rem !important
	}

	.posmb-md-99 {
		bottom: -6.1875rem !important
	}

	.posml-md-99 {
		left: -6.1875rem !important
	}

	.pos-md-100 {
		top: 6.25rem !important;
		bottom: 6.25rem !important
	}

	.pos-md-100,
	.posx-md-100 {
		right: 6.25rem !important;
		left: 6.25rem !important
	}

	.posy-md-100 {
		bottom: 6.25rem !important
	}

	.post-md-100,
	.posy-md-100 {
		top: 6.25rem !important
	}

	.posr-md-100 {
		right: 6.25rem !important
	}

	.posb-md-100 {
		bottom: 6.25rem !important
	}

	.posl-md-100 {
		left: 6.25rem !important
	}

	.posmt-md-100 {
		top: -6.25rem !important
	}

	.posmr-md-100 {
		right: -6.25rem !important
	}

	.posmb-md-100 {
		bottom: -6.25rem !important
	}

	.posml-md-100 {
		left: -6.25rem !important
	}

	.pos-md-101 {
		top: 6.3125rem !important;
		bottom: 6.3125rem !important
	}

	.pos-md-101,
	.posx-md-101 {
		right: 6.3125rem !important;
		left: 6.3125rem !important
	}

	.posy-md-101 {
		bottom: 6.3125rem !important
	}

	.post-md-101,
	.posy-md-101 {
		top: 6.3125rem !important
	}

	.posr-md-101 {
		right: 6.3125rem !important
	}

	.posb-md-101 {
		bottom: 6.3125rem !important
	}

	.posl-md-101 {
		left: 6.3125rem !important
	}

	.posmt-md-101 {
		top: -6.3125rem !important
	}

	.posmr-md-101 {
		right: -6.3125rem !important
	}

	.posmb-md-101 {
		bottom: -6.3125rem !important
	}

	.posml-md-101 {
		left: -6.3125rem !important
	}

	.pos-md-102 {
		top: 6.375rem !important;
		bottom: 6.375rem !important
	}

	.pos-md-102,
	.posx-md-102 {
		right: 6.375rem !important;
		left: 6.375rem !important
	}

	.posy-md-102 {
		bottom: 6.375rem !important
	}

	.post-md-102,
	.posy-md-102 {
		top: 6.375rem !important
	}

	.posr-md-102 {
		right: 6.375rem !important
	}

	.posb-md-102 {
		bottom: 6.375rem !important
	}

	.posl-md-102 {
		left: 6.375rem !important
	}

	.posmt-md-102 {
		top: -6.375rem !important
	}

	.posmr-md-102 {
		right: -6.375rem !important
	}

	.posmb-md-102 {
		bottom: -6.375rem !important
	}

	.posml-md-102 {
		left: -6.375rem !important
	}

	.pos-md-103 {
		top: 6.4375rem !important;
		bottom: 6.4375rem !important
	}

	.pos-md-103,
	.posx-md-103 {
		right: 6.4375rem !important;
		left: 6.4375rem !important
	}

	.posy-md-103 {
		bottom: 6.4375rem !important
	}

	.post-md-103,
	.posy-md-103 {
		top: 6.4375rem !important
	}

	.posr-md-103 {
		right: 6.4375rem !important
	}

	.posb-md-103 {
		bottom: 6.4375rem !important
	}

	.posl-md-103 {
		left: 6.4375rem !important
	}

	.posmt-md-103 {
		top: -6.4375rem !important
	}

	.posmr-md-103 {
		right: -6.4375rem !important
	}

	.posmb-md-103 {
		bottom: -6.4375rem !important
	}

	.posml-md-103 {
		left: -6.4375rem !important
	}

	.pos-md-104 {
		top: 6.5rem !important;
		bottom: 6.5rem !important
	}

	.pos-md-104,
	.posx-md-104 {
		right: 6.5rem !important;
		left: 6.5rem !important
	}

	.posy-md-104 {
		bottom: 6.5rem !important
	}

	.post-md-104,
	.posy-md-104 {
		top: 6.5rem !important
	}

	.posr-md-104 {
		right: 6.5rem !important
	}

	.posb-md-104 {
		bottom: 6.5rem !important
	}

	.posl-md-104 {
		left: 6.5rem !important
	}

	.posmt-md-104 {
		top: -6.5rem !important
	}

	.posmr-md-104 {
		right: -6.5rem !important
	}

	.posmb-md-104 {
		bottom: -6.5rem !important
	}

	.posml-md-104 {
		left: -6.5rem !important
	}

	.pos-md-105 {
		top: 6.5625rem !important;
		bottom: 6.5625rem !important
	}

	.pos-md-105,
	.posx-md-105 {
		right: 6.5625rem !important;
		left: 6.5625rem !important
	}

	.posy-md-105 {
		bottom: 6.5625rem !important
	}

	.post-md-105,
	.posy-md-105 {
		top: 6.5625rem !important
	}

	.posr-md-105 {
		right: 6.5625rem !important
	}

	.posb-md-105 {
		bottom: 6.5625rem !important
	}

	.posl-md-105 {
		left: 6.5625rem !important
	}

	.posmt-md-105 {
		top: -6.5625rem !important
	}

	.posmr-md-105 {
		right: -6.5625rem !important
	}

	.posmb-md-105 {
		bottom: -6.5625rem !important
	}

	.posml-md-105 {
		left: -6.5625rem !important
	}

	.pos-md-106 {
		top: 6.625rem !important;
		bottom: 6.625rem !important
	}

	.pos-md-106,
	.posx-md-106 {
		right: 6.625rem !important;
		left: 6.625rem !important
	}

	.posy-md-106 {
		bottom: 6.625rem !important
	}

	.post-md-106,
	.posy-md-106 {
		top: 6.625rem !important
	}

	.posr-md-106 {
		right: 6.625rem !important
	}

	.posb-md-106 {
		bottom: 6.625rem !important
	}

	.posl-md-106 {
		left: 6.625rem !important
	}

	.posmt-md-106 {
		top: -6.625rem !important
	}

	.posmr-md-106 {
		right: -6.625rem !important
	}

	.posmb-md-106 {
		bottom: -6.625rem !important
	}

	.posml-md-106 {
		left: -6.625rem !important
	}

	.pos-md-107 {
		top: 6.6875rem !important;
		bottom: 6.6875rem !important
	}

	.pos-md-107,
	.posx-md-107 {
		right: 6.6875rem !important;
		left: 6.6875rem !important
	}

	.posy-md-107 {
		bottom: 6.6875rem !important
	}

	.post-md-107,
	.posy-md-107 {
		top: 6.6875rem !important
	}

	.posr-md-107 {
		right: 6.6875rem !important
	}

	.posb-md-107 {
		bottom: 6.6875rem !important
	}

	.posl-md-107 {
		left: 6.6875rem !important
	}

	.posmt-md-107 {
		top: -6.6875rem !important
	}

	.posmr-md-107 {
		right: -6.6875rem !important
	}

	.posmb-md-107 {
		bottom: -6.6875rem !important
	}

	.posml-md-107 {
		left: -6.6875rem !important
	}

	.pos-md-108 {
		top: 6.75rem !important;
		bottom: 6.75rem !important
	}

	.pos-md-108,
	.posx-md-108 {
		right: 6.75rem !important;
		left: 6.75rem !important
	}

	.posy-md-108 {
		bottom: 6.75rem !important
	}

	.post-md-108,
	.posy-md-108 {
		top: 6.75rem !important
	}

	.posr-md-108 {
		right: 6.75rem !important
	}

	.posb-md-108 {
		bottom: 6.75rem !important
	}

	.posl-md-108 {
		left: 6.75rem !important
	}

	.posmt-md-108 {
		top: -6.75rem !important
	}

	.posmr-md-108 {
		right: -6.75rem !important
	}

	.posmb-md-108 {
		bottom: -6.75rem !important
	}

	.posml-md-108 {
		left: -6.75rem !important
	}

	.pos-md-109 {
		top: 6.8125rem !important;
		bottom: 6.8125rem !important
	}

	.pos-md-109,
	.posx-md-109 {
		right: 6.8125rem !important;
		left: 6.8125rem !important
	}

	.posy-md-109 {
		bottom: 6.8125rem !important
	}

	.post-md-109,
	.posy-md-109 {
		top: 6.8125rem !important
	}

	.posr-md-109 {
		right: 6.8125rem !important
	}

	.posb-md-109 {
		bottom: 6.8125rem !important
	}

	.posl-md-109 {
		left: 6.8125rem !important
	}

	.posmt-md-109 {
		top: -6.8125rem !important
	}

	.posmr-md-109 {
		right: -6.8125rem !important
	}

	.posmb-md-109 {
		bottom: -6.8125rem !important
	}

	.posml-md-109 {
		left: -6.8125rem !important
	}

	.pos-md-110 {
		top: 6.875rem !important;
		bottom: 6.875rem !important
	}

	.pos-md-110,
	.posx-md-110 {
		right: 6.875rem !important;
		left: 6.875rem !important
	}

	.posy-md-110 {
		bottom: 6.875rem !important
	}

	.post-md-110,
	.posy-md-110 {
		top: 6.875rem !important
	}

	.posr-md-110 {
		right: 6.875rem !important
	}

	.posb-md-110 {
		bottom: 6.875rem !important
	}

	.posl-md-110 {
		left: 6.875rem !important
	}

	.posmt-md-110 {
		top: -6.875rem !important
	}

	.posmr-md-110 {
		right: -6.875rem !important
	}

	.posmb-md-110 {
		bottom: -6.875rem !important
	}

	.posml-md-110 {
		left: -6.875rem !important
	}

	.pos-md-111 {
		top: 6.9375rem !important;
		bottom: 6.9375rem !important
	}

	.pos-md-111,
	.posx-md-111 {
		right: 6.9375rem !important;
		left: 6.9375rem !important
	}

	.posy-md-111 {
		bottom: 6.9375rem !important
	}

	.post-md-111,
	.posy-md-111 {
		top: 6.9375rem !important
	}

	.posr-md-111 {
		right: 6.9375rem !important
	}

	.posb-md-111 {
		bottom: 6.9375rem !important
	}

	.posl-md-111 {
		left: 6.9375rem !important
	}

	.posmt-md-111 {
		top: -6.9375rem !important
	}

	.posmr-md-111 {
		right: -6.9375rem !important
	}

	.posmb-md-111 {
		bottom: -6.9375rem !important
	}

	.posml-md-111 {
		left: -6.9375rem !important
	}

	.pos-md-112 {
		top: 7rem !important;
		bottom: 7rem !important
	}

	.pos-md-112,
	.posx-md-112 {
		right: 7rem !important;
		left: 7rem !important
	}

	.posy-md-112 {
		bottom: 7rem !important
	}

	.post-md-112,
	.posy-md-112 {
		top: 7rem !important
	}

	.posr-md-112 {
		right: 7rem !important
	}

	.posb-md-112 {
		bottom: 7rem !important
	}

	.posl-md-112 {
		left: 7rem !important
	}

	.posmt-md-112 {
		top: -7rem !important
	}

	.posmr-md-112 {
		right: -7rem !important
	}

	.posmb-md-112 {
		bottom: -7rem !important
	}

	.posml-md-112 {
		left: -7rem !important
	}

	.pos-md-113 {
		top: 7.0625rem !important;
		bottom: 7.0625rem !important
	}

	.pos-md-113,
	.posx-md-113 {
		right: 7.0625rem !important;
		left: 7.0625rem !important
	}

	.posy-md-113 {
		bottom: 7.0625rem !important
	}

	.post-md-113,
	.posy-md-113 {
		top: 7.0625rem !important
	}

	.posr-md-113 {
		right: 7.0625rem !important
	}

	.posb-md-113 {
		bottom: 7.0625rem !important
	}

	.posl-md-113 {
		left: 7.0625rem !important
	}

	.posmt-md-113 {
		top: -7.0625rem !important
	}

	.posmr-md-113 {
		right: -7.0625rem !important
	}

	.posmb-md-113 {
		bottom: -7.0625rem !important
	}

	.posml-md-113 {
		left: -7.0625rem !important
	}

	.pos-md-114 {
		top: 7.125rem !important;
		bottom: 7.125rem !important
	}

	.pos-md-114,
	.posx-md-114 {
		right: 7.125rem !important;
		left: 7.125rem !important
	}

	.posy-md-114 {
		bottom: 7.125rem !important
	}

	.post-md-114,
	.posy-md-114 {
		top: 7.125rem !important
	}

	.posr-md-114 {
		right: 7.125rem !important
	}

	.posb-md-114 {
		bottom: 7.125rem !important
	}

	.posl-md-114 {
		left: 7.125rem !important
	}

	.posmt-md-114 {
		top: -7.125rem !important
	}

	.posmr-md-114 {
		right: -7.125rem !important
	}

	.posmb-md-114 {
		bottom: -7.125rem !important
	}

	.posml-md-114 {
		left: -7.125rem !important
	}

	.pos-md-115 {
		top: 7.1875rem !important;
		bottom: 7.1875rem !important
	}

	.pos-md-115,
	.posx-md-115 {
		right: 7.1875rem !important;
		left: 7.1875rem !important
	}

	.posy-md-115 {
		bottom: 7.1875rem !important
	}

	.post-md-115,
	.posy-md-115 {
		top: 7.1875rem !important
	}

	.posr-md-115 {
		right: 7.1875rem !important
	}

	.posb-md-115 {
		bottom: 7.1875rem !important
	}

	.posl-md-115 {
		left: 7.1875rem !important
	}

	.posmt-md-115 {
		top: -7.1875rem !important
	}

	.posmr-md-115 {
		right: -7.1875rem !important
	}

	.posmb-md-115 {
		bottom: -7.1875rem !important
	}

	.posml-md-115 {
		left: -7.1875rem !important
	}

	.pos-md-116 {
		top: 7.25rem !important;
		bottom: 7.25rem !important
	}

	.pos-md-116,
	.posx-md-116 {
		right: 7.25rem !important;
		left: 7.25rem !important
	}

	.posy-md-116 {
		bottom: 7.25rem !important
	}

	.post-md-116,
	.posy-md-116 {
		top: 7.25rem !important
	}

	.posr-md-116 {
		right: 7.25rem !important
	}

	.posb-md-116 {
		bottom: 7.25rem !important
	}

	.posl-md-116 {
		left: 7.25rem !important
	}

	.posmt-md-116 {
		top: -7.25rem !important
	}

	.posmr-md-116 {
		right: -7.25rem !important
	}

	.posmb-md-116 {
		bottom: -7.25rem !important
	}

	.posml-md-116 {
		left: -7.25rem !important
	}

	.pos-md-117 {
		top: 7.3125rem !important;
		bottom: 7.3125rem !important
	}

	.pos-md-117,
	.posx-md-117 {
		right: 7.3125rem !important;
		left: 7.3125rem !important
	}

	.posy-md-117 {
		bottom: 7.3125rem !important
	}

	.post-md-117,
	.posy-md-117 {
		top: 7.3125rem !important
	}

	.posr-md-117 {
		right: 7.3125rem !important
	}

	.posb-md-117 {
		bottom: 7.3125rem !important
	}

	.posl-md-117 {
		left: 7.3125rem !important
	}

	.posmt-md-117 {
		top: -7.3125rem !important
	}

	.posmr-md-117 {
		right: -7.3125rem !important
	}

	.posmb-md-117 {
		bottom: -7.3125rem !important
	}

	.posml-md-117 {
		left: -7.3125rem !important
	}

	.pos-md-118 {
		top: 7.375rem !important;
		bottom: 7.375rem !important
	}

	.pos-md-118,
	.posx-md-118 {
		right: 7.375rem !important;
		left: 7.375rem !important
	}

	.posy-md-118 {
		bottom: 7.375rem !important
	}

	.post-md-118,
	.posy-md-118 {
		top: 7.375rem !important
	}

	.posr-md-118 {
		right: 7.375rem !important
	}

	.posb-md-118 {
		bottom: 7.375rem !important
	}

	.posl-md-118 {
		left: 7.375rem !important
	}

	.posmt-md-118 {
		top: -7.375rem !important
	}

	.posmr-md-118 {
		right: -7.375rem !important
	}

	.posmb-md-118 {
		bottom: -7.375rem !important
	}

	.posml-md-118 {
		left: -7.375rem !important
	}

	.pos-md-119 {
		top: 7.4375rem !important;
		bottom: 7.4375rem !important
	}

	.pos-md-119,
	.posx-md-119 {
		right: 7.4375rem !important;
		left: 7.4375rem !important
	}

	.posy-md-119 {
		bottom: 7.4375rem !important
	}

	.post-md-119,
	.posy-md-119 {
		top: 7.4375rem !important
	}

	.posr-md-119 {
		right: 7.4375rem !important
	}

	.posb-md-119 {
		bottom: 7.4375rem !important
	}

	.posl-md-119 {
		left: 7.4375rem !important
	}

	.posmt-md-119 {
		top: -7.4375rem !important
	}

	.posmr-md-119 {
		right: -7.4375rem !important
	}

	.posmb-md-119 {
		bottom: -7.4375rem !important
	}

	.posml-md-119 {
		left: -7.4375rem !important
	}

	.pos-md-120 {
		top: 7.5rem !important;
		bottom: 7.5rem !important
	}

	.pos-md-120,
	.posx-md-120 {
		right: 7.5rem !important;
		left: 7.5rem !important
	}

	.posy-md-120 {
		bottom: 7.5rem !important
	}

	.post-md-120,
	.posy-md-120 {
		top: 7.5rem !important
	}

	.posr-md-120 {
		right: 7.5rem !important
	}

	.posb-md-120 {
		bottom: 7.5rem !important
	}

	.posl-md-120 {
		left: 7.5rem !important
	}

	.posmt-md-120 {
		top: -7.5rem !important
	}

	.posmr-md-120 {
		right: -7.5rem !important
	}

	.posmb-md-120 {
		bottom: -7.5rem !important
	}

	.posml-md-120 {
		left: -7.5rem !important
	}

	.pos-md-121 {
		top: 7.5625rem !important;
		bottom: 7.5625rem !important
	}

	.pos-md-121,
	.posx-md-121 {
		right: 7.5625rem !important;
		left: 7.5625rem !important
	}

	.posy-md-121 {
		bottom: 7.5625rem !important
	}

	.post-md-121,
	.posy-md-121 {
		top: 7.5625rem !important
	}

	.posr-md-121 {
		right: 7.5625rem !important
	}

	.posb-md-121 {
		bottom: 7.5625rem !important
	}

	.posl-md-121 {
		left: 7.5625rem !important
	}

	.posmt-md-121 {
		top: -7.5625rem !important
	}

	.posmr-md-121 {
		right: -7.5625rem !important
	}

	.posmb-md-121 {
		bottom: -7.5625rem !important
	}

	.posml-md-121 {
		left: -7.5625rem !important
	}

	.pos-md-122 {
		top: 7.625rem !important;
		bottom: 7.625rem !important
	}

	.pos-md-122,
	.posx-md-122 {
		right: 7.625rem !important;
		left: 7.625rem !important
	}

	.posy-md-122 {
		bottom: 7.625rem !important
	}

	.post-md-122,
	.posy-md-122 {
		top: 7.625rem !important
	}

	.posr-md-122 {
		right: 7.625rem !important
	}

	.posb-md-122 {
		bottom: 7.625rem !important
	}

	.posl-md-122 {
		left: 7.625rem !important
	}

	.posmt-md-122 {
		top: -7.625rem !important
	}

	.posmr-md-122 {
		right: -7.625rem !important
	}

	.posmb-md-122 {
		bottom: -7.625rem !important
	}

	.posml-md-122 {
		left: -7.625rem !important
	}

	.pos-md-123 {
		top: 7.6875rem !important;
		bottom: 7.6875rem !important
	}

	.pos-md-123,
	.posx-md-123 {
		right: 7.6875rem !important;
		left: 7.6875rem !important
	}

	.posy-md-123 {
		bottom: 7.6875rem !important
	}

	.post-md-123,
	.posy-md-123 {
		top: 7.6875rem !important
	}

	.posr-md-123 {
		right: 7.6875rem !important
	}

	.posb-md-123 {
		bottom: 7.6875rem !important
	}

	.posl-md-123 {
		left: 7.6875rem !important
	}

	.posmt-md-123 {
		top: -7.6875rem !important
	}

	.posmr-md-123 {
		right: -7.6875rem !important
	}

	.posmb-md-123 {
		bottom: -7.6875rem !important
	}

	.posml-md-123 {
		left: -7.6875rem !important
	}

	.pos-md-124 {
		top: 7.75rem !important;
		bottom: 7.75rem !important
	}

	.pos-md-124,
	.posx-md-124 {
		right: 7.75rem !important;
		left: 7.75rem !important
	}

	.posy-md-124 {
		bottom: 7.75rem !important
	}

	.post-md-124,
	.posy-md-124 {
		top: 7.75rem !important
	}

	.posr-md-124 {
		right: 7.75rem !important
	}

	.posb-md-124 {
		bottom: 7.75rem !important
	}

	.posl-md-124 {
		left: 7.75rem !important
	}

	.posmt-md-124 {
		top: -7.75rem !important
	}

	.posmr-md-124 {
		right: -7.75rem !important
	}

	.posmb-md-124 {
		bottom: -7.75rem !important
	}

	.posml-md-124 {
		left: -7.75rem !important
	}

	.pos-md-125 {
		top: 7.8125rem !important;
		bottom: 7.8125rem !important
	}

	.pos-md-125,
	.posx-md-125 {
		right: 7.8125rem !important;
		left: 7.8125rem !important
	}

	.posy-md-125 {
		bottom: 7.8125rem !important
	}

	.post-md-125,
	.posy-md-125 {
		top: 7.8125rem !important
	}

	.posr-md-125 {
		right: 7.8125rem !important
	}

	.posb-md-125 {
		bottom: 7.8125rem !important
	}

	.posl-md-125 {
		left: 7.8125rem !important
	}

	.posmt-md-125 {
		top: -7.8125rem !important
	}

	.posmr-md-125 {
		right: -7.8125rem !important
	}

	.posmb-md-125 {
		bottom: -7.8125rem !important
	}

	.posml-md-125 {
		left: -7.8125rem !important
	}

	.pos-md-126 {
		top: 7.875rem !important;
		bottom: 7.875rem !important
	}

	.pos-md-126,
	.posx-md-126 {
		right: 7.875rem !important;
		left: 7.875rem !important
	}

	.posy-md-126 {
		bottom: 7.875rem !important
	}

	.post-md-126,
	.posy-md-126 {
		top: 7.875rem !important
	}

	.posr-md-126 {
		right: 7.875rem !important
	}

	.posb-md-126 {
		bottom: 7.875rem !important
	}

	.posl-md-126 {
		left: 7.875rem !important
	}

	.posmt-md-126 {
		top: -7.875rem !important
	}

	.posmr-md-126 {
		right: -7.875rem !important
	}

	.posmb-md-126 {
		bottom: -7.875rem !important
	}

	.posml-md-126 {
		left: -7.875rem !important
	}

	.pos-md-127 {
		top: 7.9375rem !important;
		bottom: 7.9375rem !important
	}

	.pos-md-127,
	.posx-md-127 {
		right: 7.9375rem !important;
		left: 7.9375rem !important
	}

	.posy-md-127 {
		bottom: 7.9375rem !important
	}

	.post-md-127,
	.posy-md-127 {
		top: 7.9375rem !important
	}

	.posr-md-127 {
		right: 7.9375rem !important
	}

	.posb-md-127 {
		bottom: 7.9375rem !important
	}

	.posl-md-127 {
		left: 7.9375rem !important
	}

	.posmt-md-127 {
		top: -7.9375rem !important
	}

	.posmr-md-127 {
		right: -7.9375rem !important
	}

	.posmb-md-127 {
		bottom: -7.9375rem !important
	}

	.posml-md-127 {
		left: -7.9375rem !important
	}

	.pos-md-128 {
		top: 8rem !important;
		bottom: 8rem !important
	}

	.pos-md-128,
	.posx-md-128 {
		right: 8rem !important;
		left: 8rem !important
	}

	.posy-md-128 {
		bottom: 8rem !important
	}

	.post-md-128,
	.posy-md-128 {
		top: 8rem !important
	}

	.posr-md-128 {
		right: 8rem !important
	}

	.posb-md-128 {
		bottom: 8rem !important
	}

	.posl-md-128 {
		left: 8rem !important
	}

	.posmt-md-128 {
		top: -8rem !important
	}

	.posmr-md-128 {
		right: -8rem !important
	}

	.posmb-md-128 {
		bottom: -8rem !important
	}

	.posml-md-128 {
		left: -8rem !important
	}

	.pos-md-129 {
		top: 8.0625rem !important;
		bottom: 8.0625rem !important
	}

	.pos-md-129,
	.posx-md-129 {
		right: 8.0625rem !important;
		left: 8.0625rem !important
	}

	.posy-md-129 {
		bottom: 8.0625rem !important
	}

	.post-md-129,
	.posy-md-129 {
		top: 8.0625rem !important
	}

	.posr-md-129 {
		right: 8.0625rem !important
	}

	.posb-md-129 {
		bottom: 8.0625rem !important
	}

	.posl-md-129 {
		left: 8.0625rem !important
	}

	.posmt-md-129 {
		top: -8.0625rem !important
	}

	.posmr-md-129 {
		right: -8.0625rem !important
	}

	.posmb-md-129 {
		bottom: -8.0625rem !important
	}

	.posml-md-129 {
		left: -8.0625rem !important
	}

	.pos-md-130 {
		top: 8.125rem !important;
		bottom: 8.125rem !important
	}

	.pos-md-130,
	.posx-md-130 {
		right: 8.125rem !important;
		left: 8.125rem !important
	}

	.posy-md-130 {
		bottom: 8.125rem !important
	}

	.post-md-130,
	.posy-md-130 {
		top: 8.125rem !important
	}

	.posr-md-130 {
		right: 8.125rem !important
	}

	.posb-md-130 {
		bottom: 8.125rem !important
	}

	.posl-md-130 {
		left: 8.125rem !important
	}

	.posmt-md-130 {
		top: -8.125rem !important
	}

	.posmr-md-130 {
		right: -8.125rem !important
	}

	.posmb-md-130 {
		bottom: -8.125rem !important
	}

	.posml-md-130 {
		left: -8.125rem !important
	}

	.pos-md-131 {
		top: 8.1875rem !important;
		bottom: 8.1875rem !important
	}

	.pos-md-131,
	.posx-md-131 {
		right: 8.1875rem !important;
		left: 8.1875rem !important
	}

	.posy-md-131 {
		bottom: 8.1875rem !important
	}

	.post-md-131,
	.posy-md-131 {
		top: 8.1875rem !important
	}

	.posr-md-131 {
		right: 8.1875rem !important
	}

	.posb-md-131 {
		bottom: 8.1875rem !important
	}

	.posl-md-131 {
		left: 8.1875rem !important
	}

	.posmt-md-131 {
		top: -8.1875rem !important
	}

	.posmr-md-131 {
		right: -8.1875rem !important
	}

	.posmb-md-131 {
		bottom: -8.1875rem !important
	}

	.posml-md-131 {
		left: -8.1875rem !important
	}

	.pos-md-132 {
		top: 8.25rem !important;
		bottom: 8.25rem !important
	}

	.pos-md-132,
	.posx-md-132 {
		right: 8.25rem !important;
		left: 8.25rem !important
	}

	.posy-md-132 {
		bottom: 8.25rem !important
	}

	.post-md-132,
	.posy-md-132 {
		top: 8.25rem !important
	}

	.posr-md-132 {
		right: 8.25rem !important
	}

	.posb-md-132 {
		bottom: 8.25rem !important
	}

	.posl-md-132 {
		left: 8.25rem !important
	}

	.posmt-md-132 {
		top: -8.25rem !important
	}

	.posmr-md-132 {
		right: -8.25rem !important
	}

	.posmb-md-132 {
		bottom: -8.25rem !important
	}

	.posml-md-132 {
		left: -8.25rem !important
	}

	.pos-md-133 {
		top: 8.3125rem !important;
		bottom: 8.3125rem !important
	}

	.pos-md-133,
	.posx-md-133 {
		right: 8.3125rem !important;
		left: 8.3125rem !important
	}

	.posy-md-133 {
		bottom: 8.3125rem !important
	}

	.post-md-133,
	.posy-md-133 {
		top: 8.3125rem !important
	}

	.posr-md-133 {
		right: 8.3125rem !important
	}

	.posb-md-133 {
		bottom: 8.3125rem !important
	}

	.posl-md-133 {
		left: 8.3125rem !important
	}

	.posmt-md-133 {
		top: -8.3125rem !important
	}

	.posmr-md-133 {
		right: -8.3125rem !important
	}

	.posmb-md-133 {
		bottom: -8.3125rem !important
	}

	.posml-md-133 {
		left: -8.3125rem !important
	}

	.pos-md-134 {
		top: 8.375rem !important;
		bottom: 8.375rem !important
	}

	.pos-md-134,
	.posx-md-134 {
		right: 8.375rem !important;
		left: 8.375rem !important
	}

	.posy-md-134 {
		bottom: 8.375rem !important
	}

	.post-md-134,
	.posy-md-134 {
		top: 8.375rem !important
	}

	.posr-md-134 {
		right: 8.375rem !important
	}

	.posb-md-134 {
		bottom: 8.375rem !important
	}

	.posl-md-134 {
		left: 8.375rem !important
	}

	.posmt-md-134 {
		top: -8.375rem !important
	}

	.posmr-md-134 {
		right: -8.375rem !important
	}

	.posmb-md-134 {
		bottom: -8.375rem !important
	}

	.posml-md-134 {
		left: -8.375rem !important
	}

	.pos-md-135 {
		top: 8.4375rem !important;
		bottom: 8.4375rem !important
	}

	.pos-md-135,
	.posx-md-135 {
		right: 8.4375rem !important;
		left: 8.4375rem !important
	}

	.posy-md-135 {
		bottom: 8.4375rem !important
	}

	.post-md-135,
	.posy-md-135 {
		top: 8.4375rem !important
	}

	.posr-md-135 {
		right: 8.4375rem !important
	}

	.posb-md-135 {
		bottom: 8.4375rem !important
	}

	.posl-md-135 {
		left: 8.4375rem !important
	}

	.posmt-md-135 {
		top: -8.4375rem !important
	}

	.posmr-md-135 {
		right: -8.4375rem !important
	}

	.posmb-md-135 {
		bottom: -8.4375rem !important
	}

	.posml-md-135 {
		left: -8.4375rem !important
	}

	.pos-md-136 {
		top: 8.5rem !important;
		bottom: 8.5rem !important
	}

	.pos-md-136,
	.posx-md-136 {
		right: 8.5rem !important;
		left: 8.5rem !important
	}

	.posy-md-136 {
		bottom: 8.5rem !important
	}

	.post-md-136,
	.posy-md-136 {
		top: 8.5rem !important
	}

	.posr-md-136 {
		right: 8.5rem !important
	}

	.posb-md-136 {
		bottom: 8.5rem !important
	}

	.posl-md-136 {
		left: 8.5rem !important
	}

	.posmt-md-136 {
		top: -8.5rem !important
	}

	.posmr-md-136 {
		right: -8.5rem !important
	}

	.posmb-md-136 {
		bottom: -8.5rem !important
	}

	.posml-md-136 {
		left: -8.5rem !important
	}

	.pos-md-137 {
		top: 8.5625rem !important;
		bottom: 8.5625rem !important
	}

	.pos-md-137,
	.posx-md-137 {
		right: 8.5625rem !important;
		left: 8.5625rem !important
	}

	.posy-md-137 {
		bottom: 8.5625rem !important
	}

	.post-md-137,
	.posy-md-137 {
		top: 8.5625rem !important
	}

	.posr-md-137 {
		right: 8.5625rem !important
	}

	.posb-md-137 {
		bottom: 8.5625rem !important
	}

	.posl-md-137 {
		left: 8.5625rem !important
	}

	.posmt-md-137 {
		top: -8.5625rem !important
	}

	.posmr-md-137 {
		right: -8.5625rem !important
	}

	.posmb-md-137 {
		bottom: -8.5625rem !important
	}

	.posml-md-137 {
		left: -8.5625rem !important
	}

	.pos-md-138 {
		top: 8.625rem !important;
		bottom: 8.625rem !important
	}

	.pos-md-138,
	.posx-md-138 {
		right: 8.625rem !important;
		left: 8.625rem !important
	}

	.posy-md-138 {
		bottom: 8.625rem !important
	}

	.post-md-138,
	.posy-md-138 {
		top: 8.625rem !important
	}

	.posr-md-138 {
		right: 8.625rem !important
	}

	.posb-md-138 {
		bottom: 8.625rem !important
	}

	.posl-md-138 {
		left: 8.625rem !important
	}

	.posmt-md-138 {
		top: -8.625rem !important
	}

	.posmr-md-138 {
		right: -8.625rem !important
	}

	.posmb-md-138 {
		bottom: -8.625rem !important
	}

	.posml-md-138 {
		left: -8.625rem !important
	}

	.pos-md-139 {
		top: 8.6875rem !important;
		bottom: 8.6875rem !important
	}

	.pos-md-139,
	.posx-md-139 {
		right: 8.6875rem !important;
		left: 8.6875rem !important
	}

	.posy-md-139 {
		bottom: 8.6875rem !important
	}

	.post-md-139,
	.posy-md-139 {
		top: 8.6875rem !important
	}

	.posr-md-139 {
		right: 8.6875rem !important
	}

	.posb-md-139 {
		bottom: 8.6875rem !important
	}

	.posl-md-139 {
		left: 8.6875rem !important
	}

	.posmt-md-139 {
		top: -8.6875rem !important
	}

	.posmr-md-139 {
		right: -8.6875rem !important
	}

	.posmb-md-139 {
		bottom: -8.6875rem !important
	}

	.posml-md-139 {
		left: -8.6875rem !important
	}

	.pos-md-140 {
		top: 8.75rem !important;
		bottom: 8.75rem !important
	}

	.pos-md-140,
	.posx-md-140 {
		right: 8.75rem !important;
		left: 8.75rem !important
	}

	.posy-md-140 {
		bottom: 8.75rem !important
	}

	.post-md-140,
	.posy-md-140 {
		top: 8.75rem !important
	}

	.posr-md-140 {
		right: 8.75rem !important
	}

	.posb-md-140 {
		bottom: 8.75rem !important
	}

	.posl-md-140 {
		left: 8.75rem !important
	}

	.posmt-md-140 {
		top: -8.75rem !important
	}

	.posmr-md-140 {
		right: -8.75rem !important
	}

	.posmb-md-140 {
		bottom: -8.75rem !important
	}

	.posml-md-140 {
		left: -8.75rem !important
	}

	.pos-md-141 {
		top: 8.8125rem !important;
		bottom: 8.8125rem !important
	}

	.pos-md-141,
	.posx-md-141 {
		right: 8.8125rem !important;
		left: 8.8125rem !important
	}

	.posy-md-141 {
		bottom: 8.8125rem !important
	}

	.post-md-141,
	.posy-md-141 {
		top: 8.8125rem !important
	}

	.posr-md-141 {
		right: 8.8125rem !important
	}

	.posb-md-141 {
		bottom: 8.8125rem !important
	}

	.posl-md-141 {
		left: 8.8125rem !important
	}

	.posmt-md-141 {
		top: -8.8125rem !important
	}

	.posmr-md-141 {
		right: -8.8125rem !important
	}

	.posmb-md-141 {
		bottom: -8.8125rem !important
	}

	.posml-md-141 {
		left: -8.8125rem !important
	}

	.pos-md-142 {
		top: 8.875rem !important;
		bottom: 8.875rem !important
	}

	.pos-md-142,
	.posx-md-142 {
		right: 8.875rem !important;
		left: 8.875rem !important
	}

	.posy-md-142 {
		bottom: 8.875rem !important
	}

	.post-md-142,
	.posy-md-142 {
		top: 8.875rem !important
	}

	.posr-md-142 {
		right: 8.875rem !important
	}

	.posb-md-142 {
		bottom: 8.875rem !important
	}

	.posl-md-142 {
		left: 8.875rem !important
	}

	.posmt-md-142 {
		top: -8.875rem !important
	}

	.posmr-md-142 {
		right: -8.875rem !important
	}

	.posmb-md-142 {
		bottom: -8.875rem !important
	}

	.posml-md-142 {
		left: -8.875rem !important
	}

	.pos-md-143 {
		top: 8.9375rem !important;
		bottom: 8.9375rem !important
	}

	.pos-md-143,
	.posx-md-143 {
		right: 8.9375rem !important;
		left: 8.9375rem !important
	}

	.posy-md-143 {
		bottom: 8.9375rem !important
	}

	.post-md-143,
	.posy-md-143 {
		top: 8.9375rem !important
	}

	.posr-md-143 {
		right: 8.9375rem !important
	}

	.posb-md-143 {
		bottom: 8.9375rem !important
	}

	.posl-md-143 {
		left: 8.9375rem !important
	}

	.posmt-md-143 {
		top: -8.9375rem !important
	}

	.posmr-md-143 {
		right: -8.9375rem !important
	}

	.posmb-md-143 {
		bottom: -8.9375rem !important
	}

	.posml-md-143 {
		left: -8.9375rem !important
	}

	.pos-md-144 {
		top: 9rem !important;
		bottom: 9rem !important
	}

	.pos-md-144,
	.posx-md-144 {
		right: 9rem !important;
		left: 9rem !important
	}

	.posy-md-144 {
		bottom: 9rem !important
	}

	.post-md-144,
	.posy-md-144 {
		top: 9rem !important
	}

	.posr-md-144 {
		right: 9rem !important
	}

	.posb-md-144 {
		bottom: 9rem !important
	}

	.posl-md-144 {
		left: 9rem !important
	}

	.posmt-md-144 {
		top: -9rem !important
	}

	.posmr-md-144 {
		right: -9rem !important
	}

	.posmb-md-144 {
		bottom: -9rem !important
	}

	.posml-md-144 {
		left: -9rem !important
	}

	.pos-md-145 {
		top: 9.0625rem !important;
		bottom: 9.0625rem !important
	}

	.pos-md-145,
	.posx-md-145 {
		right: 9.0625rem !important;
		left: 9.0625rem !important
	}

	.posy-md-145 {
		bottom: 9.0625rem !important
	}

	.post-md-145,
	.posy-md-145 {
		top: 9.0625rem !important
	}

	.posr-md-145 {
		right: 9.0625rem !important
	}

	.posb-md-145 {
		bottom: 9.0625rem !important
	}

	.posl-md-145 {
		left: 9.0625rem !important
	}

	.posmt-md-145 {
		top: -9.0625rem !important
	}

	.posmr-md-145 {
		right: -9.0625rem !important
	}

	.posmb-md-145 {
		bottom: -9.0625rem !important
	}

	.posml-md-145 {
		left: -9.0625rem !important
	}

	.pos-md-146 {
		top: 9.125rem !important;
		bottom: 9.125rem !important
	}

	.pos-md-146,
	.posx-md-146 {
		right: 9.125rem !important;
		left: 9.125rem !important
	}

	.posy-md-146 {
		bottom: 9.125rem !important
	}

	.post-md-146,
	.posy-md-146 {
		top: 9.125rem !important
	}

	.posr-md-146 {
		right: 9.125rem !important
	}

	.posb-md-146 {
		bottom: 9.125rem !important
	}

	.posl-md-146 {
		left: 9.125rem !important
	}

	.posmt-md-146 {
		top: -9.125rem !important
	}

	.posmr-md-146 {
		right: -9.125rem !important
	}

	.posmb-md-146 {
		bottom: -9.125rem !important
	}

	.posml-md-146 {
		left: -9.125rem !important
	}

	.pos-md-147 {
		top: 9.1875rem !important;
		bottom: 9.1875rem !important
	}

	.pos-md-147,
	.posx-md-147 {
		right: 9.1875rem !important;
		left: 9.1875rem !important
	}

	.posy-md-147 {
		bottom: 9.1875rem !important
	}

	.post-md-147,
	.posy-md-147 {
		top: 9.1875rem !important
	}

	.posr-md-147 {
		right: 9.1875rem !important
	}

	.posb-md-147 {
		bottom: 9.1875rem !important
	}

	.posl-md-147 {
		left: 9.1875rem !important
	}

	.posmt-md-147 {
		top: -9.1875rem !important
	}

	.posmr-md-147 {
		right: -9.1875rem !important
	}

	.posmb-md-147 {
		bottom: -9.1875rem !important
	}

	.posml-md-147 {
		left: -9.1875rem !important
	}

	.pos-md-148 {
		top: 9.25rem !important;
		bottom: 9.25rem !important
	}

	.pos-md-148,
	.posx-md-148 {
		right: 9.25rem !important;
		left: 9.25rem !important
	}

	.posy-md-148 {
		bottom: 9.25rem !important
	}

	.post-md-148,
	.posy-md-148 {
		top: 9.25rem !important
	}

	.posr-md-148 {
		right: 9.25rem !important
	}

	.posb-md-148 {
		bottom: 9.25rem !important
	}

	.posl-md-148 {
		left: 9.25rem !important
	}

	.posmt-md-148 {
		top: -9.25rem !important
	}

	.posmr-md-148 {
		right: -9.25rem !important
	}

	.posmb-md-148 {
		bottom: -9.25rem !important
	}

	.posml-md-148 {
		left: -9.25rem !important
	}

	.pos-md-149 {
		top: 9.3125rem !important;
		bottom: 9.3125rem !important
	}

	.pos-md-149,
	.posx-md-149 {
		right: 9.3125rem !important;
		left: 9.3125rem !important
	}

	.posy-md-149 {
		bottom: 9.3125rem !important
	}

	.post-md-149,
	.posy-md-149 {
		top: 9.3125rem !important
	}

	.posr-md-149 {
		right: 9.3125rem !important
	}

	.posb-md-149 {
		bottom: 9.3125rem !important
	}

	.posl-md-149 {
		left: 9.3125rem !important
	}

	.posmt-md-149 {
		top: -9.3125rem !important
	}

	.posmr-md-149 {
		right: -9.3125rem !important
	}

	.posmb-md-149 {
		bottom: -9.3125rem !important
	}

	.posml-md-149 {
		left: -9.3125rem !important
	}

	.pos-md-150 {
		top: 9.375rem !important;
		bottom: 9.375rem !important
	}

	.pos-md-150,
	.posx-md-150 {
		right: 9.375rem !important;
		left: 9.375rem !important
	}

	.posy-md-150 {
		bottom: 9.375rem !important
	}

	.post-md-150,
	.posy-md-150 {
		top: 9.375rem !important
	}

	.posr-md-150 {
		right: 9.375rem !important
	}

	.posb-md-150 {
		bottom: 9.375rem !important
	}

	.posl-md-150 {
		left: 9.375rem !important
	}

	.posmt-md-150 {
		top: -9.375rem !important
	}

	.posmr-md-150 {
		right: -9.375rem !important
	}

	.posmb-md-150 {
		bottom: -9.375rem !important
	}

	.posml-md-150 {
		left: -9.375rem !important
	}

	.pos-md-151 {
		top: 9.4375rem !important;
		bottom: 9.4375rem !important
	}

	.pos-md-151,
	.posx-md-151 {
		right: 9.4375rem !important;
		left: 9.4375rem !important
	}

	.posy-md-151 {
		bottom: 9.4375rem !important
	}

	.post-md-151,
	.posy-md-151 {
		top: 9.4375rem !important
	}

	.posr-md-151 {
		right: 9.4375rem !important
	}

	.posb-md-151 {
		bottom: 9.4375rem !important
	}

	.posl-md-151 {
		left: 9.4375rem !important
	}

	.posmt-md-151 {
		top: -9.4375rem !important
	}

	.posmr-md-151 {
		right: -9.4375rem !important
	}

	.posmb-md-151 {
		bottom: -9.4375rem !important
	}

	.posml-md-151 {
		left: -9.4375rem !important
	}

	.pos-md-152 {
		top: 9.5rem !important;
		bottom: 9.5rem !important
	}

	.pos-md-152,
	.posx-md-152 {
		right: 9.5rem !important;
		left: 9.5rem !important
	}

	.posy-md-152 {
		bottom: 9.5rem !important
	}

	.post-md-152,
	.posy-md-152 {
		top: 9.5rem !important
	}

	.posr-md-152 {
		right: 9.5rem !important
	}

	.posb-md-152 {
		bottom: 9.5rem !important
	}

	.posl-md-152 {
		left: 9.5rem !important
	}

	.posmt-md-152 {
		top: -9.5rem !important
	}

	.posmr-md-152 {
		right: -9.5rem !important
	}

	.posmb-md-152 {
		bottom: -9.5rem !important
	}

	.posml-md-152 {
		left: -9.5rem !important
	}

	.pos-md-153 {
		top: 9.5625rem !important;
		bottom: 9.5625rem !important
	}

	.pos-md-153,
	.posx-md-153 {
		right: 9.5625rem !important;
		left: 9.5625rem !important
	}

	.posy-md-153 {
		bottom: 9.5625rem !important
	}

	.post-md-153,
	.posy-md-153 {
		top: 9.5625rem !important
	}

	.posr-md-153 {
		right: 9.5625rem !important
	}

	.posb-md-153 {
		bottom: 9.5625rem !important
	}

	.posl-md-153 {
		left: 9.5625rem !important
	}

	.posmt-md-153 {
		top: -9.5625rem !important
	}

	.posmr-md-153 {
		right: -9.5625rem !important
	}

	.posmb-md-153 {
		bottom: -9.5625rem !important
	}

	.posml-md-153 {
		left: -9.5625rem !important
	}

	.pos-md-154 {
		top: 9.625rem !important;
		bottom: 9.625rem !important
	}

	.pos-md-154,
	.posx-md-154 {
		right: 9.625rem !important;
		left: 9.625rem !important
	}

	.posy-md-154 {
		bottom: 9.625rem !important
	}

	.post-md-154,
	.posy-md-154 {
		top: 9.625rem !important
	}

	.posr-md-154 {
		right: 9.625rem !important
	}

	.posb-md-154 {
		bottom: 9.625rem !important
	}

	.posl-md-154 {
		left: 9.625rem !important
	}

	.posmt-md-154 {
		top: -9.625rem !important
	}

	.posmr-md-154 {
		right: -9.625rem !important
	}

	.posmb-md-154 {
		bottom: -9.625rem !important
	}

	.posml-md-154 {
		left: -9.625rem !important
	}

	.pos-md-155 {
		top: 9.6875rem !important;
		bottom: 9.6875rem !important
	}

	.pos-md-155,
	.posx-md-155 {
		right: 9.6875rem !important;
		left: 9.6875rem !important
	}

	.posy-md-155 {
		bottom: 9.6875rem !important
	}

	.post-md-155,
	.posy-md-155 {
		top: 9.6875rem !important
	}

	.posr-md-155 {
		right: 9.6875rem !important
	}

	.posb-md-155 {
		bottom: 9.6875rem !important
	}

	.posl-md-155 {
		left: 9.6875rem !important
	}

	.posmt-md-155 {
		top: -9.6875rem !important
	}

	.posmr-md-155 {
		right: -9.6875rem !important
	}

	.posmb-md-155 {
		bottom: -9.6875rem !important
	}

	.posml-md-155 {
		left: -9.6875rem !important
	}

	.pos-md-156 {
		top: 9.75rem !important;
		bottom: 9.75rem !important
	}

	.pos-md-156,
	.posx-md-156 {
		right: 9.75rem !important;
		left: 9.75rem !important
	}

	.posy-md-156 {
		bottom: 9.75rem !important
	}

	.post-md-156,
	.posy-md-156 {
		top: 9.75rem !important
	}

	.posr-md-156 {
		right: 9.75rem !important
	}

	.posb-md-156 {
		bottom: 9.75rem !important
	}

	.posl-md-156 {
		left: 9.75rem !important
	}

	.posmt-md-156 {
		top: -9.75rem !important
	}

	.posmr-md-156 {
		right: -9.75rem !important
	}

	.posmb-md-156 {
		bottom: -9.75rem !important
	}

	.posml-md-156 {
		left: -9.75rem !important
	}

	.pos-md-157 {
		top: 9.8125rem !important;
		bottom: 9.8125rem !important
	}

	.pos-md-157,
	.posx-md-157 {
		right: 9.8125rem !important;
		left: 9.8125rem !important
	}

	.posy-md-157 {
		bottom: 9.8125rem !important
	}

	.post-md-157,
	.posy-md-157 {
		top: 9.8125rem !important
	}

	.posr-md-157 {
		right: 9.8125rem !important
	}

	.posb-md-157 {
		bottom: 9.8125rem !important
	}

	.posl-md-157 {
		left: 9.8125rem !important
	}

	.posmt-md-157 {
		top: -9.8125rem !important
	}

	.posmr-md-157 {
		right: -9.8125rem !important
	}

	.posmb-md-157 {
		bottom: -9.8125rem !important
	}

	.posml-md-157 {
		left: -9.8125rem !important
	}

	.pos-md-158 {
		top: 9.875rem !important;
		bottom: 9.875rem !important
	}

	.pos-md-158,
	.posx-md-158 {
		right: 9.875rem !important;
		left: 9.875rem !important
	}

	.posy-md-158 {
		bottom: 9.875rem !important
	}

	.post-md-158,
	.posy-md-158 {
		top: 9.875rem !important
	}

	.posr-md-158 {
		right: 9.875rem !important
	}

	.posb-md-158 {
		bottom: 9.875rem !important
	}

	.posl-md-158 {
		left: 9.875rem !important
	}

	.posmt-md-158 {
		top: -9.875rem !important
	}

	.posmr-md-158 {
		right: -9.875rem !important
	}

	.posmb-md-158 {
		bottom: -9.875rem !important
	}

	.posml-md-158 {
		left: -9.875rem !important
	}

	.pos-md-159 {
		top: 9.9375rem !important;
		bottom: 9.9375rem !important
	}

	.pos-md-159,
	.posx-md-159 {
		right: 9.9375rem !important;
		left: 9.9375rem !important
	}

	.posy-md-159 {
		bottom: 9.9375rem !important
	}

	.post-md-159,
	.posy-md-159 {
		top: 9.9375rem !important
	}

	.posr-md-159 {
		right: 9.9375rem !important
	}

	.posb-md-159 {
		bottom: 9.9375rem !important
	}

	.posl-md-159 {
		left: 9.9375rem !important
	}

	.posmt-md-159 {
		top: -9.9375rem !important
	}

	.posmr-md-159 {
		right: -9.9375rem !important
	}

	.posmb-md-159 {
		bottom: -9.9375rem !important
	}

	.posml-md-159 {
		left: -9.9375rem !important
	}

	.pos-md-160 {
		top: 10rem !important;
		bottom: 10rem !important
	}

	.pos-md-160,
	.posx-md-160 {
		right: 10rem !important;
		left: 10rem !important
	}

	.posy-md-160 {
		bottom: 10rem !important
	}

	.post-md-160,
	.posy-md-160 {
		top: 10rem !important
	}

	.posr-md-160 {
		right: 10rem !important
	}

	.posb-md-160 {
		bottom: 10rem !important
	}

	.posl-md-160 {
		left: 10rem !important
	}

	.posmt-md-160 {
		top: -10rem !important
	}

	.posmr-md-160 {
		right: -10rem !important
	}

	.posmb-md-160 {
		bottom: -10rem !important
	}

	.posml-md-160 {
		left: -10rem !important
	}

	.pos-md-161 {
		top: 10.0625rem !important;
		bottom: 10.0625rem !important
	}

	.pos-md-161,
	.posx-md-161 {
		right: 10.0625rem !important;
		left: 10.0625rem !important
	}

	.posy-md-161 {
		bottom: 10.0625rem !important
	}

	.post-md-161,
	.posy-md-161 {
		top: 10.0625rem !important
	}

	.posr-md-161 {
		right: 10.0625rem !important
	}

	.posb-md-161 {
		bottom: 10.0625rem !important
	}

	.posl-md-161 {
		left: 10.0625rem !important
	}

	.posmt-md-161 {
		top: -10.0625rem !important
	}

	.posmr-md-161 {
		right: -10.0625rem !important
	}

	.posmb-md-161 {
		bottom: -10.0625rem !important
	}

	.posml-md-161 {
		left: -10.0625rem !important
	}

	.pos-md-162 {
		top: 10.125rem !important;
		bottom: 10.125rem !important
	}

	.pos-md-162,
	.posx-md-162 {
		right: 10.125rem !important;
		left: 10.125rem !important
	}

	.posy-md-162 {
		bottom: 10.125rem !important
	}

	.post-md-162,
	.posy-md-162 {
		top: 10.125rem !important
	}

	.posr-md-162 {
		right: 10.125rem !important
	}

	.posb-md-162 {
		bottom: 10.125rem !important
	}

	.posl-md-162 {
		left: 10.125rem !important
	}

	.posmt-md-162 {
		top: -10.125rem !important
	}

	.posmr-md-162 {
		right: -10.125rem !important
	}

	.posmb-md-162 {
		bottom: -10.125rem !important
	}

	.posml-md-162 {
		left: -10.125rem !important
	}

	.pos-md-163 {
		top: 10.1875rem !important;
		bottom: 10.1875rem !important
	}

	.pos-md-163,
	.posx-md-163 {
		right: 10.1875rem !important;
		left: 10.1875rem !important
	}

	.posy-md-163 {
		bottom: 10.1875rem !important
	}

	.post-md-163,
	.posy-md-163 {
		top: 10.1875rem !important
	}

	.posr-md-163 {
		right: 10.1875rem !important
	}

	.posb-md-163 {
		bottom: 10.1875rem !important
	}

	.posl-md-163 {
		left: 10.1875rem !important
	}

	.posmt-md-163 {
		top: -10.1875rem !important
	}

	.posmr-md-163 {
		right: -10.1875rem !important
	}

	.posmb-md-163 {
		bottom: -10.1875rem !important
	}

	.posml-md-163 {
		left: -10.1875rem !important
	}

	.pos-md-164 {
		top: 10.25rem !important;
		bottom: 10.25rem !important
	}

	.pos-md-164,
	.posx-md-164 {
		right: 10.25rem !important;
		left: 10.25rem !important
	}

	.posy-md-164 {
		bottom: 10.25rem !important
	}

	.post-md-164,
	.posy-md-164 {
		top: 10.25rem !important
	}

	.posr-md-164 {
		right: 10.25rem !important
	}

	.posb-md-164 {
		bottom: 10.25rem !important
	}

	.posl-md-164 {
		left: 10.25rem !important
	}

	.posmt-md-164 {
		top: -10.25rem !important
	}

	.posmr-md-164 {
		right: -10.25rem !important
	}

	.posmb-md-164 {
		bottom: -10.25rem !important
	}

	.posml-md-164 {
		left: -10.25rem !important
	}

	.pos-md-165 {
		top: 10.3125rem !important;
		bottom: 10.3125rem !important
	}

	.pos-md-165,
	.posx-md-165 {
		right: 10.3125rem !important;
		left: 10.3125rem !important
	}

	.posy-md-165 {
		bottom: 10.3125rem !important
	}

	.post-md-165,
	.posy-md-165 {
		top: 10.3125rem !important
	}

	.posr-md-165 {
		right: 10.3125rem !important
	}

	.posb-md-165 {
		bottom: 10.3125rem !important
	}

	.posl-md-165 {
		left: 10.3125rem !important
	}

	.posmt-md-165 {
		top: -10.3125rem !important
	}

	.posmr-md-165 {
		right: -10.3125rem !important
	}

	.posmb-md-165 {
		bottom: -10.3125rem !important
	}

	.posml-md-165 {
		left: -10.3125rem !important
	}

	.pos-md-166 {
		top: 10.375rem !important;
		bottom: 10.375rem !important
	}

	.pos-md-166,
	.posx-md-166 {
		right: 10.375rem !important;
		left: 10.375rem !important
	}

	.posy-md-166 {
		bottom: 10.375rem !important
	}

	.post-md-166,
	.posy-md-166 {
		top: 10.375rem !important
	}

	.posr-md-166 {
		right: 10.375rem !important
	}

	.posb-md-166 {
		bottom: 10.375rem !important
	}

	.posl-md-166 {
		left: 10.375rem !important
	}

	.posmt-md-166 {
		top: -10.375rem !important
	}

	.posmr-md-166 {
		right: -10.375rem !important
	}

	.posmb-md-166 {
		bottom: -10.375rem !important
	}

	.posml-md-166 {
		left: -10.375rem !important
	}

	.pos-md-167 {
		top: 10.4375rem !important;
		bottom: 10.4375rem !important
	}

	.pos-md-167,
	.posx-md-167 {
		right: 10.4375rem !important;
		left: 10.4375rem !important
	}

	.posy-md-167 {
		bottom: 10.4375rem !important
	}

	.post-md-167,
	.posy-md-167 {
		top: 10.4375rem !important
	}

	.posr-md-167 {
		right: 10.4375rem !important
	}

	.posb-md-167 {
		bottom: 10.4375rem !important
	}

	.posl-md-167 {
		left: 10.4375rem !important
	}

	.posmt-md-167 {
		top: -10.4375rem !important
	}

	.posmr-md-167 {
		right: -10.4375rem !important
	}

	.posmb-md-167 {
		bottom: -10.4375rem !important
	}

	.posml-md-167 {
		left: -10.4375rem !important
	}

	.pos-md-168 {
		top: 10.5rem !important;
		bottom: 10.5rem !important
	}

	.pos-md-168,
	.posx-md-168 {
		right: 10.5rem !important;
		left: 10.5rem !important
	}

	.posy-md-168 {
		bottom: 10.5rem !important
	}

	.post-md-168,
	.posy-md-168 {
		top: 10.5rem !important
	}

	.posr-md-168 {
		right: 10.5rem !important
	}

	.posb-md-168 {
		bottom: 10.5rem !important
	}

	.posl-md-168 {
		left: 10.5rem !important
	}

	.posmt-md-168 {
		top: -10.5rem !important
	}

	.posmr-md-168 {
		right: -10.5rem !important
	}

	.posmb-md-168 {
		bottom: -10.5rem !important
	}

	.posml-md-168 {
		left: -10.5rem !important
	}

	.pos-md-169 {
		top: 10.5625rem !important;
		bottom: 10.5625rem !important
	}

	.pos-md-169,
	.posx-md-169 {
		right: 10.5625rem !important;
		left: 10.5625rem !important
	}

	.posy-md-169 {
		bottom: 10.5625rem !important
	}

	.post-md-169,
	.posy-md-169 {
		top: 10.5625rem !important
	}

	.posr-md-169 {
		right: 10.5625rem !important
	}

	.posb-md-169 {
		bottom: 10.5625rem !important
	}

	.posl-md-169 {
		left: 10.5625rem !important
	}

	.posmt-md-169 {
		top: -10.5625rem !important
	}

	.posmr-md-169 {
		right: -10.5625rem !important
	}

	.posmb-md-169 {
		bottom: -10.5625rem !important
	}

	.posml-md-169 {
		left: -10.5625rem !important
	}

	.pos-md-170 {
		top: 10.625rem !important;
		bottom: 10.625rem !important
	}

	.pos-md-170,
	.posx-md-170 {
		right: 10.625rem !important;
		left: 10.625rem !important
	}

	.posy-md-170 {
		bottom: 10.625rem !important
	}

	.post-md-170,
	.posy-md-170 {
		top: 10.625rem !important
	}

	.posr-md-170 {
		right: 10.625rem !important
	}

	.posb-md-170 {
		bottom: 10.625rem !important
	}

	.posl-md-170 {
		left: 10.625rem !important
	}

	.posmt-md-170 {
		top: -10.625rem !important
	}

	.posmr-md-170 {
		right: -10.625rem !important
	}

	.posmb-md-170 {
		bottom: -10.625rem !important
	}

	.posml-md-170 {
		left: -10.625rem !important
	}

	.pos-md-171 {
		top: 10.6875rem !important;
		bottom: 10.6875rem !important
	}

	.pos-md-171,
	.posx-md-171 {
		right: 10.6875rem !important;
		left: 10.6875rem !important
	}

	.posy-md-171 {
		bottom: 10.6875rem !important
	}

	.post-md-171,
	.posy-md-171 {
		top: 10.6875rem !important
	}

	.posr-md-171 {
		right: 10.6875rem !important
	}

	.posb-md-171 {
		bottom: 10.6875rem !important
	}

	.posl-md-171 {
		left: 10.6875rem !important
	}

	.posmt-md-171 {
		top: -10.6875rem !important
	}

	.posmr-md-171 {
		right: -10.6875rem !important
	}

	.posmb-md-171 {
		bottom: -10.6875rem !important
	}

	.posml-md-171 {
		left: -10.6875rem !important
	}

	.pos-md-172 {
		top: 10.75rem !important;
		bottom: 10.75rem !important
	}

	.pos-md-172,
	.posx-md-172 {
		right: 10.75rem !important;
		left: 10.75rem !important
	}

	.posy-md-172 {
		bottom: 10.75rem !important
	}

	.post-md-172,
	.posy-md-172 {
		top: 10.75rem !important
	}

	.posr-md-172 {
		right: 10.75rem !important
	}

	.posb-md-172 {
		bottom: 10.75rem !important
	}

	.posl-md-172 {
		left: 10.75rem !important
	}

	.posmt-md-172 {
		top: -10.75rem !important
	}

	.posmr-md-172 {
		right: -10.75rem !important
	}

	.posmb-md-172 {
		bottom: -10.75rem !important
	}

	.posml-md-172 {
		left: -10.75rem !important
	}

	.pos-md-173 {
		top: 10.8125rem !important;
		bottom: 10.8125rem !important
	}

	.pos-md-173,
	.posx-md-173 {
		right: 10.8125rem !important;
		left: 10.8125rem !important
	}

	.posy-md-173 {
		bottom: 10.8125rem !important
	}

	.post-md-173,
	.posy-md-173 {
		top: 10.8125rem !important
	}

	.posr-md-173 {
		right: 10.8125rem !important
	}

	.posb-md-173 {
		bottom: 10.8125rem !important
	}

	.posl-md-173 {
		left: 10.8125rem !important
	}

	.posmt-md-173 {
		top: -10.8125rem !important
	}

	.posmr-md-173 {
		right: -10.8125rem !important
	}

	.posmb-md-173 {
		bottom: -10.8125rem !important
	}

	.posml-md-173 {
		left: -10.8125rem !important
	}

	.pos-md-174 {
		top: 10.875rem !important;
		bottom: 10.875rem !important
	}

	.pos-md-174,
	.posx-md-174 {
		right: 10.875rem !important;
		left: 10.875rem !important
	}

	.posy-md-174 {
		bottom: 10.875rem !important
	}

	.post-md-174,
	.posy-md-174 {
		top: 10.875rem !important
	}

	.posr-md-174 {
		right: 10.875rem !important
	}

	.posb-md-174 {
		bottom: 10.875rem !important
	}

	.posl-md-174 {
		left: 10.875rem !important
	}

	.posmt-md-174 {
		top: -10.875rem !important
	}

	.posmr-md-174 {
		right: -10.875rem !important
	}

	.posmb-md-174 {
		bottom: -10.875rem !important
	}

	.posml-md-174 {
		left: -10.875rem !important
	}

	.pos-md-175 {
		top: 10.9375rem !important;
		bottom: 10.9375rem !important
	}

	.pos-md-175,
	.posx-md-175 {
		right: 10.9375rem !important;
		left: 10.9375rem !important
	}

	.posy-md-175 {
		bottom: 10.9375rem !important
	}

	.post-md-175,
	.posy-md-175 {
		top: 10.9375rem !important
	}

	.posr-md-175 {
		right: 10.9375rem !important
	}

	.posb-md-175 {
		bottom: 10.9375rem !important
	}

	.posl-md-175 {
		left: 10.9375rem !important
	}

	.posmt-md-175 {
		top: -10.9375rem !important
	}

	.posmr-md-175 {
		right: -10.9375rem !important
	}

	.posmb-md-175 {
		bottom: -10.9375rem !important
	}

	.posml-md-175 {
		left: -10.9375rem !important
	}

	.pos-md-176 {
		top: 11rem !important;
		bottom: 11rem !important
	}

	.pos-md-176,
	.posx-md-176 {
		right: 11rem !important;
		left: 11rem !important
	}

	.posy-md-176 {
		bottom: 11rem !important
	}

	.post-md-176,
	.posy-md-176 {
		top: 11rem !important
	}

	.posr-md-176 {
		right: 11rem !important
	}

	.posb-md-176 {
		bottom: 11rem !important
	}

	.posl-md-176 {
		left: 11rem !important
	}

	.posmt-md-176 {
		top: -11rem !important
	}

	.posmr-md-176 {
		right: -11rem !important
	}

	.posmb-md-176 {
		bottom: -11rem !important
	}

	.posml-md-176 {
		left: -11rem !important
	}

	.pos-md-177 {
		top: 11.0625rem !important;
		bottom: 11.0625rem !important
	}

	.pos-md-177,
	.posx-md-177 {
		right: 11.0625rem !important;
		left: 11.0625rem !important
	}

	.posy-md-177 {
		bottom: 11.0625rem !important
	}

	.post-md-177,
	.posy-md-177 {
		top: 11.0625rem !important
	}

	.posr-md-177 {
		right: 11.0625rem !important
	}

	.posb-md-177 {
		bottom: 11.0625rem !important
	}

	.posl-md-177 {
		left: 11.0625rem !important
	}

	.posmt-md-177 {
		top: -11.0625rem !important
	}

	.posmr-md-177 {
		right: -11.0625rem !important
	}

	.posmb-md-177 {
		bottom: -11.0625rem !important
	}

	.posml-md-177 {
		left: -11.0625rem !important
	}

	.pos-md-178 {
		top: 11.125rem !important;
		bottom: 11.125rem !important
	}

	.pos-md-178,
	.posx-md-178 {
		right: 11.125rem !important;
		left: 11.125rem !important
	}

	.posy-md-178 {
		bottom: 11.125rem !important
	}

	.post-md-178,
	.posy-md-178 {
		top: 11.125rem !important
	}

	.posr-md-178 {
		right: 11.125rem !important
	}

	.posb-md-178 {
		bottom: 11.125rem !important
	}

	.posl-md-178 {
		left: 11.125rem !important
	}

	.posmt-md-178 {
		top: -11.125rem !important
	}

	.posmr-md-178 {
		right: -11.125rem !important
	}

	.posmb-md-178 {
		bottom: -11.125rem !important
	}

	.posml-md-178 {
		left: -11.125rem !important
	}

	.pos-md-179 {
		top: 11.1875rem !important;
		bottom: 11.1875rem !important
	}

	.pos-md-179,
	.posx-md-179 {
		right: 11.1875rem !important;
		left: 11.1875rem !important
	}

	.posy-md-179 {
		bottom: 11.1875rem !important
	}

	.post-md-179,
	.posy-md-179 {
		top: 11.1875rem !important
	}

	.posr-md-179 {
		right: 11.1875rem !important
	}

	.posb-md-179 {
		bottom: 11.1875rem !important
	}

	.posl-md-179 {
		left: 11.1875rem !important
	}

	.posmt-md-179 {
		top: -11.1875rem !important
	}

	.posmr-md-179 {
		right: -11.1875rem !important
	}

	.posmb-md-179 {
		bottom: -11.1875rem !important
	}

	.posml-md-179 {
		left: -11.1875rem !important
	}

	.pos-md-180 {
		top: 11.25rem !important;
		bottom: 11.25rem !important
	}

	.pos-md-180,
	.posx-md-180 {
		right: 11.25rem !important;
		left: 11.25rem !important
	}

	.posy-md-180 {
		bottom: 11.25rem !important
	}

	.post-md-180,
	.posy-md-180 {
		top: 11.25rem !important
	}

	.posr-md-180 {
		right: 11.25rem !important
	}

	.posb-md-180 {
		bottom: 11.25rem !important
	}

	.posl-md-180 {
		left: 11.25rem !important
	}

	.posmt-md-180 {
		top: -11.25rem !important
	}

	.posmr-md-180 {
		right: -11.25rem !important
	}

	.posmb-md-180 {
		bottom: -11.25rem !important
	}

	.posml-md-180 {
		left: -11.25rem !important
	}

	.pos-md-181 {
		top: 11.3125rem !important;
		bottom: 11.3125rem !important
	}

	.pos-md-181,
	.posx-md-181 {
		right: 11.3125rem !important;
		left: 11.3125rem !important
	}

	.posy-md-181 {
		bottom: 11.3125rem !important
	}

	.post-md-181,
	.posy-md-181 {
		top: 11.3125rem !important
	}

	.posr-md-181 {
		right: 11.3125rem !important
	}

	.posb-md-181 {
		bottom: 11.3125rem !important
	}

	.posl-md-181 {
		left: 11.3125rem !important
	}

	.posmt-md-181 {
		top: -11.3125rem !important
	}

	.posmr-md-181 {
		right: -11.3125rem !important
	}

	.posmb-md-181 {
		bottom: -11.3125rem !important
	}

	.posml-md-181 {
		left: -11.3125rem !important
	}

	.pos-md-182 {
		top: 11.375rem !important;
		bottom: 11.375rem !important
	}

	.pos-md-182,
	.posx-md-182 {
		right: 11.375rem !important;
		left: 11.375rem !important
	}

	.posy-md-182 {
		bottom: 11.375rem !important
	}

	.post-md-182,
	.posy-md-182 {
		top: 11.375rem !important
	}

	.posr-md-182 {
		right: 11.375rem !important
	}

	.posb-md-182 {
		bottom: 11.375rem !important
	}

	.posl-md-182 {
		left: 11.375rem !important
	}

	.posmt-md-182 {
		top: -11.375rem !important
	}

	.posmr-md-182 {
		right: -11.375rem !important
	}

	.posmb-md-182 {
		bottom: -11.375rem !important
	}

	.posml-md-182 {
		left: -11.375rem !important
	}

	.pos-md-183 {
		top: 11.4375rem !important;
		bottom: 11.4375rem !important
	}

	.pos-md-183,
	.posx-md-183 {
		right: 11.4375rem !important;
		left: 11.4375rem !important
	}

	.posy-md-183 {
		bottom: 11.4375rem !important
	}

	.post-md-183,
	.posy-md-183 {
		top: 11.4375rem !important
	}

	.posr-md-183 {
		right: 11.4375rem !important
	}

	.posb-md-183 {
		bottom: 11.4375rem !important
	}

	.posl-md-183 {
		left: 11.4375rem !important
	}

	.posmt-md-183 {
		top: -11.4375rem !important
	}

	.posmr-md-183 {
		right: -11.4375rem !important
	}

	.posmb-md-183 {
		bottom: -11.4375rem !important
	}

	.posml-md-183 {
		left: -11.4375rem !important
	}

	.pos-md-184 {
		top: 11.5rem !important;
		bottom: 11.5rem !important
	}

	.pos-md-184,
	.posx-md-184 {
		right: 11.5rem !important;
		left: 11.5rem !important
	}

	.posy-md-184 {
		bottom: 11.5rem !important
	}

	.post-md-184,
	.posy-md-184 {
		top: 11.5rem !important
	}

	.posr-md-184 {
		right: 11.5rem !important
	}

	.posb-md-184 {
		bottom: 11.5rem !important
	}

	.posl-md-184 {
		left: 11.5rem !important
	}

	.posmt-md-184 {
		top: -11.5rem !important
	}

	.posmr-md-184 {
		right: -11.5rem !important
	}

	.posmb-md-184 {
		bottom: -11.5rem !important
	}

	.posml-md-184 {
		left: -11.5rem !important
	}

	.pos-md-185 {
		top: 11.5625rem !important;
		bottom: 11.5625rem !important
	}

	.pos-md-185,
	.posx-md-185 {
		right: 11.5625rem !important;
		left: 11.5625rem !important
	}

	.posy-md-185 {
		bottom: 11.5625rem !important
	}

	.post-md-185,
	.posy-md-185 {
		top: 11.5625rem !important
	}

	.posr-md-185 {
		right: 11.5625rem !important
	}

	.posb-md-185 {
		bottom: 11.5625rem !important
	}

	.posl-md-185 {
		left: 11.5625rem !important
	}

	.posmt-md-185 {
		top: -11.5625rem !important
	}

	.posmr-md-185 {
		right: -11.5625rem !important
	}

	.posmb-md-185 {
		bottom: -11.5625rem !important
	}

	.posml-md-185 {
		left: -11.5625rem !important
	}

	.pos-md-186 {
		top: 11.625rem !important;
		bottom: 11.625rem !important
	}

	.pos-md-186,
	.posx-md-186 {
		right: 11.625rem !important;
		left: 11.625rem !important
	}

	.posy-md-186 {
		bottom: 11.625rem !important
	}

	.post-md-186,
	.posy-md-186 {
		top: 11.625rem !important
	}

	.posr-md-186 {
		right: 11.625rem !important
	}

	.posb-md-186 {
		bottom: 11.625rem !important
	}

	.posl-md-186 {
		left: 11.625rem !important
	}

	.posmt-md-186 {
		top: -11.625rem !important
	}

	.posmr-md-186 {
		right: -11.625rem !important
	}

	.posmb-md-186 {
		bottom: -11.625rem !important
	}

	.posml-md-186 {
		left: -11.625rem !important
	}

	.pos-md-187 {
		top: 11.6875rem !important;
		bottom: 11.6875rem !important
	}

	.pos-md-187,
	.posx-md-187 {
		right: 11.6875rem !important;
		left: 11.6875rem !important
	}

	.posy-md-187 {
		bottom: 11.6875rem !important
	}

	.post-md-187,
	.posy-md-187 {
		top: 11.6875rem !important
	}

	.posr-md-187 {
		right: 11.6875rem !important
	}

	.posb-md-187 {
		bottom: 11.6875rem !important
	}

	.posl-md-187 {
		left: 11.6875rem !important
	}

	.posmt-md-187 {
		top: -11.6875rem !important
	}

	.posmr-md-187 {
		right: -11.6875rem !important
	}

	.posmb-md-187 {
		bottom: -11.6875rem !important
	}

	.posml-md-187 {
		left: -11.6875rem !important
	}

	.pos-md-188 {
		top: 11.75rem !important;
		bottom: 11.75rem !important
	}

	.pos-md-188,
	.posx-md-188 {
		right: 11.75rem !important;
		left: 11.75rem !important
	}

	.posy-md-188 {
		bottom: 11.75rem !important
	}

	.post-md-188,
	.posy-md-188 {
		top: 11.75rem !important
	}

	.posr-md-188 {
		right: 11.75rem !important
	}

	.posb-md-188 {
		bottom: 11.75rem !important
	}

	.posl-md-188 {
		left: 11.75rem !important
	}

	.posmt-md-188 {
		top: -11.75rem !important
	}

	.posmr-md-188 {
		right: -11.75rem !important
	}

	.posmb-md-188 {
		bottom: -11.75rem !important
	}

	.posml-md-188 {
		left: -11.75rem !important
	}

	.pos-md-189 {
		top: 11.8125rem !important;
		bottom: 11.8125rem !important
	}

	.pos-md-189,
	.posx-md-189 {
		right: 11.8125rem !important;
		left: 11.8125rem !important
	}

	.posy-md-189 {
		bottom: 11.8125rem !important
	}

	.post-md-189,
	.posy-md-189 {
		top: 11.8125rem !important
	}

	.posr-md-189 {
		right: 11.8125rem !important
	}

	.posb-md-189 {
		bottom: 11.8125rem !important
	}

	.posl-md-189 {
		left: 11.8125rem !important
	}

	.posmt-md-189 {
		top: -11.8125rem !important
	}

	.posmr-md-189 {
		right: -11.8125rem !important
	}

	.posmb-md-189 {
		bottom: -11.8125rem !important
	}

	.posml-md-189 {
		left: -11.8125rem !important
	}

	.pos-md-190 {
		top: 11.875rem !important;
		bottom: 11.875rem !important
	}

	.pos-md-190,
	.posx-md-190 {
		right: 11.875rem !important;
		left: 11.875rem !important
	}

	.posy-md-190 {
		bottom: 11.875rem !important
	}

	.post-md-190,
	.posy-md-190 {
		top: 11.875rem !important
	}

	.posr-md-190 {
		right: 11.875rem !important
	}

	.posb-md-190 {
		bottom: 11.875rem !important
	}

	.posl-md-190 {
		left: 11.875rem !important
	}

	.posmt-md-190 {
		top: -11.875rem !important
	}

	.posmr-md-190 {
		right: -11.875rem !important
	}

	.posmb-md-190 {
		bottom: -11.875rem !important
	}

	.posml-md-190 {
		left: -11.875rem !important
	}

	.pos-md-191 {
		top: 11.9375rem !important;
		bottom: 11.9375rem !important
	}

	.pos-md-191,
	.posx-md-191 {
		right: 11.9375rem !important;
		left: 11.9375rem !important
	}

	.posy-md-191 {
		bottom: 11.9375rem !important
	}

	.post-md-191,
	.posy-md-191 {
		top: 11.9375rem !important
	}

	.posr-md-191 {
		right: 11.9375rem !important
	}

	.posb-md-191 {
		bottom: 11.9375rem !important
	}

	.posl-md-191 {
		left: 11.9375rem !important
	}

	.posmt-md-191 {
		top: -11.9375rem !important
	}

	.posmr-md-191 {
		right: -11.9375rem !important
	}

	.posmb-md-191 {
		bottom: -11.9375rem !important
	}

	.posml-md-191 {
		left: -11.9375rem !important
	}

	.pos-md-192 {
		top: 12rem !important;
		bottom: 12rem !important
	}

	.pos-md-192,
	.posx-md-192 {
		right: 12rem !important;
		left: 12rem !important
	}

	.posy-md-192 {
		bottom: 12rem !important
	}

	.post-md-192,
	.posy-md-192 {
		top: 12rem !important
	}

	.posr-md-192 {
		right: 12rem !important
	}

	.posb-md-192 {
		bottom: 12rem !important
	}

	.posl-md-192 {
		left: 12rem !important
	}

	.posmt-md-192 {
		top: -12rem !important
	}

	.posmr-md-192 {
		right: -12rem !important
	}

	.posmb-md-192 {
		bottom: -12rem !important
	}

	.posml-md-192 {
		left: -12rem !important
	}

	.pos-md-193 {
		top: 12.0625rem !important;
		bottom: 12.0625rem !important
	}

	.pos-md-193,
	.posx-md-193 {
		right: 12.0625rem !important;
		left: 12.0625rem !important
	}

	.posy-md-193 {
		bottom: 12.0625rem !important
	}

	.post-md-193,
	.posy-md-193 {
		top: 12.0625rem !important
	}

	.posr-md-193 {
		right: 12.0625rem !important
	}

	.posb-md-193 {
		bottom: 12.0625rem !important
	}

	.posl-md-193 {
		left: 12.0625rem !important
	}

	.posmt-md-193 {
		top: -12.0625rem !important
	}

	.posmr-md-193 {
		right: -12.0625rem !important
	}

	.posmb-md-193 {
		bottom: -12.0625rem !important
	}

	.posml-md-193 {
		left: -12.0625rem !important
	}

	.pos-md-194 {
		top: 12.125rem !important;
		bottom: 12.125rem !important
	}

	.pos-md-194,
	.posx-md-194 {
		right: 12.125rem !important;
		left: 12.125rem !important
	}

	.posy-md-194 {
		bottom: 12.125rem !important
	}

	.post-md-194,
	.posy-md-194 {
		top: 12.125rem !important
	}

	.posr-md-194 {
		right: 12.125rem !important
	}

	.posb-md-194 {
		bottom: 12.125rem !important
	}

	.posl-md-194 {
		left: 12.125rem !important
	}

	.posmt-md-194 {
		top: -12.125rem !important
	}

	.posmr-md-194 {
		right: -12.125rem !important
	}

	.posmb-md-194 {
		bottom: -12.125rem !important
	}

	.posml-md-194 {
		left: -12.125rem !important
	}

	.pos-md-195 {
		top: 12.1875rem !important;
		bottom: 12.1875rem !important
	}

	.pos-md-195,
	.posx-md-195 {
		right: 12.1875rem !important;
		left: 12.1875rem !important
	}

	.posy-md-195 {
		bottom: 12.1875rem !important
	}

	.post-md-195,
	.posy-md-195 {
		top: 12.1875rem !important
	}

	.posr-md-195 {
		right: 12.1875rem !important
	}

	.posb-md-195 {
		bottom: 12.1875rem !important
	}

	.posl-md-195 {
		left: 12.1875rem !important
	}

	.posmt-md-195 {
		top: -12.1875rem !important
	}

	.posmr-md-195 {
		right: -12.1875rem !important
	}

	.posmb-md-195 {
		bottom: -12.1875rem !important
	}

	.posml-md-195 {
		left: -12.1875rem !important
	}

	.pos-md-196 {
		top: 12.25rem !important;
		bottom: 12.25rem !important
	}

	.pos-md-196,
	.posx-md-196 {
		right: 12.25rem !important;
		left: 12.25rem !important
	}

	.posy-md-196 {
		bottom: 12.25rem !important
	}

	.post-md-196,
	.posy-md-196 {
		top: 12.25rem !important
	}

	.posr-md-196 {
		right: 12.25rem !important
	}

	.posb-md-196 {
		bottom: 12.25rem !important
	}

	.posl-md-196 {
		left: 12.25rem !important
	}

	.posmt-md-196 {
		top: -12.25rem !important
	}

	.posmr-md-196 {
		right: -12.25rem !important
	}

	.posmb-md-196 {
		bottom: -12.25rem !important
	}

	.posml-md-196 {
		left: -12.25rem !important
	}

	.pos-md-197 {
		top: 12.3125rem !important;
		bottom: 12.3125rem !important
	}

	.pos-md-197,
	.posx-md-197 {
		right: 12.3125rem !important;
		left: 12.3125rem !important
	}

	.posy-md-197 {
		bottom: 12.3125rem !important
	}

	.post-md-197,
	.posy-md-197 {
		top: 12.3125rem !important
	}

	.posr-md-197 {
		right: 12.3125rem !important
	}

	.posb-md-197 {
		bottom: 12.3125rem !important
	}

	.posl-md-197 {
		left: 12.3125rem !important
	}

	.posmt-md-197 {
		top: -12.3125rem !important
	}

	.posmr-md-197 {
		right: -12.3125rem !important
	}

	.posmb-md-197 {
		bottom: -12.3125rem !important
	}

	.posml-md-197 {
		left: -12.3125rem !important
	}

	.pos-md-198 {
		top: 12.375rem !important;
		bottom: 12.375rem !important
	}

	.pos-md-198,
	.posx-md-198 {
		right: 12.375rem !important;
		left: 12.375rem !important
	}

	.posy-md-198 {
		bottom: 12.375rem !important
	}

	.post-md-198,
	.posy-md-198 {
		top: 12.375rem !important
	}

	.posr-md-198 {
		right: 12.375rem !important
	}

	.posb-md-198 {
		bottom: 12.375rem !important
	}

	.posl-md-198 {
		left: 12.375rem !important
	}

	.posmt-md-198 {
		top: -12.375rem !important
	}

	.posmr-md-198 {
		right: -12.375rem !important
	}

	.posmb-md-198 {
		bottom: -12.375rem !important
	}

	.posml-md-198 {
		left: -12.375rem !important
	}

	.pos-md-199 {
		top: 12.4375rem !important;
		bottom: 12.4375rem !important
	}

	.pos-md-199,
	.posx-md-199 {
		right: 12.4375rem !important;
		left: 12.4375rem !important
	}

	.posy-md-199 {
		bottom: 12.4375rem !important
	}

	.post-md-199,
	.posy-md-199 {
		top: 12.4375rem !important
	}

	.posr-md-199 {
		right: 12.4375rem !important
	}

	.posb-md-199 {
		bottom: 12.4375rem !important
	}

	.posl-md-199 {
		left: 12.4375rem !important
	}

	.posmt-md-199 {
		top: -12.4375rem !important
	}

	.posmr-md-199 {
		right: -12.4375rem !important
	}

	.posmb-md-199 {
		bottom: -12.4375rem !important
	}

	.posml-md-199 {
		left: -12.4375rem !important
	}

	.pos-md-200 {
		top: 12.5rem !important;
		bottom: 12.5rem !important
	}

	.pos-md-200,
	.posx-md-200 {
		right: 12.5rem !important;
		left: 12.5rem !important
	}

	.posy-md-200 {
		bottom: 12.5rem !important
	}

	.post-md-200,
	.posy-md-200 {
		top: 12.5rem !important
	}

	.posr-md-200 {
		right: 12.5rem !important
	}

	.posb-md-200 {
		bottom: 12.5rem !important
	}

	.posl-md-200 {
		left: 12.5rem !important
	}

	.posmt-md-200 {
		top: -12.5rem !important
	}

	.posmr-md-200 {
		right: -12.5rem !important
	}

	.posmb-md-200 {
		bottom: -12.5rem !important
	}

	.posml-md-200 {
		left: -12.5rem !important
	}

	.pos-md-auto {
		top: auto !important;
		bottom: auto !important
	}

	.pos-md-auto,
	.posx-md-auto {
		right: auto !important;
		left: auto !important
	}

	.posy-md-auto {
		bottom: auto !important
	}

	.post-md-auto,
	.posy-md-auto {
		top: auto !important
	}

	.posr-md-auto {
		right: auto !important
	}

	.posb-md-auto {
		bottom: auto !important
	}

	.posl-md-auto {
		left: auto !important
	}

	.posmt-md-auto {
		top: -auto !important
	}

	.posmr-md-auto {
		right: -auto !important
	}

	.posmb-md-auto {
		bottom: -auto !important
	}

	.posml-md-auto {
		left: -auto !important
	}
}

@media (min-width:992px) {
	.pos-lg-0 {
		top: 0 !important;
		bottom: 0 !important
	}

	.pos-lg-0,
	.posx-lg-0 {
		right: 0 !important;
		left: 0 !important
	}

	.posy-lg-0 {
		bottom: 0 !important
	}

	.post-lg-0,
	.posy-lg-0 {
		top: 0 !important
	}

	.posr-lg-0 {
		right: 0 !important
	}

	.posb-lg-0 {
		bottom: 0 !important
	}

	.posl-lg-0 {
		left: 0 !important
	}

	.posmt-lg-0 {
		top: 0 !important
	}

	.posmr-lg-0 {
		right: 0 !important
	}

	.posmb-lg-0 {
		bottom: 0 !important
	}

	.posml-lg-0 {
		left: 0 !important
	}

	.pos-lg-1 {
		top: .0625rem !important;
		bottom: .0625rem !important
	}

	.pos-lg-1,
	.posx-lg-1 {
		right: .0625rem !important;
		left: .0625rem !important
	}

	.posy-lg-1 {
		bottom: .0625rem !important
	}

	.post-lg-1,
	.posy-lg-1 {
		top: .0625rem !important
	}

	.posr-lg-1 {
		right: .0625rem !important
	}

	.posb-lg-1 {
		bottom: .0625rem !important
	}

	.posl-lg-1 {
		left: .0625rem !important
	}

	.posmt-lg-1 {
		top: -.0625rem !important
	}

	.posmr-lg-1 {
		right: -.0625rem !important
	}

	.posmb-lg-1 {
		bottom: -.0625rem !important
	}

	.posml-lg-1 {
		left: -.0625rem !important
	}

	.pos-lg-2 {
		top: .125rem !important;
		bottom: .125rem !important
	}

	.pos-lg-2,
	.posx-lg-2 {
		right: .125rem !important;
		left: .125rem !important
	}

	.posy-lg-2 {
		bottom: .125rem !important
	}

	.post-lg-2,
	.posy-lg-2 {
		top: .125rem !important
	}

	.posr-lg-2 {
		right: .125rem !important
	}

	.posb-lg-2 {
		bottom: .125rem !important
	}

	.posl-lg-2 {
		left: .125rem !important
	}

	.posmt-lg-2 {
		top: -.125rem !important
	}

	.posmr-lg-2 {
		right: -.125rem !important
	}

	.posmb-lg-2 {
		bottom: -.125rem !important
	}

	.posml-lg-2 {
		left: -.125rem !important
	}

	.pos-lg-3 {
		top: .1875rem !important;
		bottom: .1875rem !important
	}

	.pos-lg-3,
	.posx-lg-3 {
		right: .1875rem !important;
		left: .1875rem !important
	}

	.posy-lg-3 {
		bottom: .1875rem !important
	}

	.post-lg-3,
	.posy-lg-3 {
		top: .1875rem !important
	}

	.posr-lg-3 {
		right: .1875rem !important
	}

	.posb-lg-3 {
		bottom: .1875rem !important
	}

	.posl-lg-3 {
		left: .1875rem !important
	}

	.posmt-lg-3 {
		top: -.1875rem !important
	}

	.posmr-lg-3 {
		right: -.1875rem !important
	}

	.posmb-lg-3 {
		bottom: -.1875rem !important
	}

	.posml-lg-3 {
		left: -.1875rem !important
	}

	.pos-lg-4 {
		top: .25rem !important;
		bottom: .25rem !important
	}

	.pos-lg-4,
	.posx-lg-4 {
		right: .25rem !important;
		left: .25rem !important
	}

	.posy-lg-4 {
		bottom: .25rem !important
	}

	.post-lg-4,
	.posy-lg-4 {
		top: .25rem !important
	}

	.posr-lg-4 {
		right: .25rem !important
	}

	.posb-lg-4 {
		bottom: .25rem !important
	}

	.posl-lg-4 {
		left: .25rem !important
	}

	.posmt-lg-4 {
		top: -.25rem !important
	}

	.posmr-lg-4 {
		right: -.25rem !important
	}

	.posmb-lg-4 {
		bottom: -.25rem !important
	}

	.posml-lg-4 {
		left: -.25rem !important
	}

	.pos-lg-5 {
		top: .3125rem !important;
		bottom: .3125rem !important
	}

	.pos-lg-5,
	.posx-lg-5 {
		right: .3125rem !important;
		left: .3125rem !important
	}

	.posy-lg-5 {
		bottom: .3125rem !important
	}

	.post-lg-5,
	.posy-lg-5 {
		top: .3125rem !important
	}

	.posr-lg-5 {
		right: .3125rem !important
	}

	.posb-lg-5 {
		bottom: .3125rem !important
	}

	.posl-lg-5 {
		left: .3125rem !important
	}

	.posmt-lg-5 {
		top: -.3125rem !important
	}

	.posmr-lg-5 {
		right: -.3125rem !important
	}

	.posmb-lg-5 {
		bottom: -.3125rem !important
	}

	.posml-lg-5 {
		left: -.3125rem !important
	}

	.pos-lg-6 {
		top: .375rem !important;
		bottom: .375rem !important
	}

	.pos-lg-6,
	.posx-lg-6 {
		right: .375rem !important;
		left: .375rem !important
	}

	.posy-lg-6 {
		bottom: .375rem !important
	}

	.post-lg-6,
	.posy-lg-6 {
		top: .375rem !important
	}

	.posr-lg-6 {
		right: .375rem !important
	}

	.posb-lg-6 {
		bottom: .375rem !important
	}

	.posl-lg-6 {
		left: .375rem !important
	}

	.posmt-lg-6 {
		top: -.375rem !important
	}

	.posmr-lg-6 {
		right: -.375rem !important
	}

	.posmb-lg-6 {
		bottom: -.375rem !important
	}

	.posml-lg-6 {
		left: -.375rem !important
	}

	.pos-lg-7 {
		top: .4375rem !important;
		bottom: .4375rem !important
	}

	.pos-lg-7,
	.posx-lg-7 {
		right: .4375rem !important;
		left: .4375rem !important
	}

	.posy-lg-7 {
		bottom: .4375rem !important
	}

	.post-lg-7,
	.posy-lg-7 {
		top: .4375rem !important
	}

	.posr-lg-7 {
		right: .4375rem !important
	}

	.posb-lg-7 {
		bottom: .4375rem !important
	}

	.posl-lg-7 {
		left: .4375rem !important
	}

	.posmt-lg-7 {
		top: -.4375rem !important
	}

	.posmr-lg-7 {
		right: -.4375rem !important
	}

	.posmb-lg-7 {
		bottom: -.4375rem !important
	}

	.posml-lg-7 {
		left: -.4375rem !important
	}

	.pos-lg-8 {
		top: .5rem !important;
		bottom: .5rem !important
	}

	.pos-lg-8,
	.posx-lg-8 {
		right: .5rem !important;
		left: .5rem !important
	}

	.posy-lg-8 {
		bottom: .5rem !important
	}

	.post-lg-8,
	.posy-lg-8 {
		top: .5rem !important
	}

	.posr-lg-8 {
		right: .5rem !important
	}

	.posb-lg-8 {
		bottom: .5rem !important
	}

	.posl-lg-8 {
		left: .5rem !important
	}

	.posmt-lg-8 {
		top: -.5rem !important
	}

	.posmr-lg-8 {
		right: -.5rem !important
	}

	.posmb-lg-8 {
		bottom: -.5rem !important
	}

	.posml-lg-8 {
		left: -.5rem !important
	}

	.pos-lg-9 {
		top: .5625rem !important;
		bottom: .5625rem !important
	}

	.pos-lg-9,
	.posx-lg-9 {
		right: .5625rem !important;
		left: .5625rem !important
	}

	.posy-lg-9 {
		bottom: .5625rem !important
	}

	.post-lg-9,
	.posy-lg-9 {
		top: .5625rem !important
	}

	.posr-lg-9 {
		right: .5625rem !important
	}

	.posb-lg-9 {
		bottom: .5625rem !important
	}

	.posl-lg-9 {
		left: .5625rem !important
	}

	.posmt-lg-9 {
		top: -.5625rem !important
	}

	.posmr-lg-9 {
		right: -.5625rem !important
	}

	.posmb-lg-9 {
		bottom: -.5625rem !important
	}

	.posml-lg-9 {
		left: -.5625rem !important
	}

	.pos-lg-10 {
		top: .625rem !important;
		bottom: .625rem !important
	}

	.pos-lg-10,
	.posx-lg-10 {
		right: .625rem !important;
		left: .625rem !important
	}

	.posy-lg-10 {
		bottom: .625rem !important
	}

	.post-lg-10,
	.posy-lg-10 {
		top: .625rem !important
	}

	.posr-lg-10 {
		right: .625rem !important
	}

	.posb-lg-10 {
		bottom: .625rem !important
	}

	.posl-lg-10 {
		left: .625rem !important
	}

	.posmt-lg-10 {
		top: -.625rem !important
	}

	.posmr-lg-10 {
		right: -.625rem !important
	}

	.posmb-lg-10 {
		bottom: -.625rem !important
	}

	.posml-lg-10 {
		left: -.625rem !important
	}

	.pos-lg-11 {
		top: .6875rem !important;
		bottom: .6875rem !important
	}

	.pos-lg-11,
	.posx-lg-11 {
		right: .6875rem !important;
		left: .6875rem !important
	}

	.posy-lg-11 {
		bottom: .6875rem !important
	}

	.post-lg-11,
	.posy-lg-11 {
		top: .6875rem !important
	}

	.posr-lg-11 {
		right: .6875rem !important
	}

	.posb-lg-11 {
		bottom: .6875rem !important
	}

	.posl-lg-11 {
		left: .6875rem !important
	}

	.posmt-lg-11 {
		top: -.6875rem !important
	}

	.posmr-lg-11 {
		right: -.6875rem !important
	}

	.posmb-lg-11 {
		bottom: -.6875rem !important
	}

	.posml-lg-11 {
		left: -.6875rem !important
	}

	.pos-lg-12 {
		top: .75rem !important;
		bottom: .75rem !important
	}

	.pos-lg-12,
	.posx-lg-12 {
		right: .75rem !important;
		left: .75rem !important
	}

	.posy-lg-12 {
		bottom: .75rem !important
	}

	.post-lg-12,
	.posy-lg-12 {
		top: .75rem !important
	}

	.posr-lg-12 {
		right: .75rem !important
	}

	.posb-lg-12 {
		bottom: .75rem !important
	}

	.posl-lg-12 {
		left: .75rem !important
	}

	.posmt-lg-12 {
		top: -.75rem !important
	}

	.posmr-lg-12 {
		right: -.75rem !important
	}

	.posmb-lg-12 {
		bottom: -.75rem !important
	}

	.posml-lg-12 {
		left: -.75rem !important
	}

	.pos-lg-13 {
		top: .8125rem !important;
		bottom: .8125rem !important
	}

	.pos-lg-13,
	.posx-lg-13 {
		right: .8125rem !important;
		left: .8125rem !important
	}

	.posy-lg-13 {
		bottom: .8125rem !important
	}

	.post-lg-13,
	.posy-lg-13 {
		top: .8125rem !important
	}

	.posr-lg-13 {
		right: .8125rem !important
	}

	.posb-lg-13 {
		bottom: .8125rem !important
	}

	.posl-lg-13 {
		left: .8125rem !important
	}

	.posmt-lg-13 {
		top: -.8125rem !important
	}

	.posmr-lg-13 {
		right: -.8125rem !important
	}

	.posmb-lg-13 {
		bottom: -.8125rem !important
	}

	.posml-lg-13 {
		left: -.8125rem !important
	}

	.pos-lg-14 {
		top: .875rem !important;
		bottom: .875rem !important
	}

	.pos-lg-14,
	.posx-lg-14 {
		right: .875rem !important;
		left: .875rem !important
	}

	.posy-lg-14 {
		bottom: .875rem !important
	}

	.post-lg-14,
	.posy-lg-14 {
		top: .875rem !important
	}

	.posr-lg-14 {
		right: .875rem !important
	}

	.posb-lg-14 {
		bottom: .875rem !important
	}

	.posl-lg-14 {
		left: .875rem !important
	}

	.posmt-lg-14 {
		top: -.875rem !important
	}

	.posmr-lg-14 {
		right: -.875rem !important
	}

	.posmb-lg-14 {
		bottom: -.875rem !important
	}

	.posml-lg-14 {
		left: -.875rem !important
	}

	.pos-lg-15 {
		top: .9375rem !important;
		bottom: .9375rem !important
	}

	.pos-lg-15,
	.posx-lg-15 {
		right: .9375rem !important;
		left: .9375rem !important
	}

	.posy-lg-15 {
		bottom: .9375rem !important
	}

	.post-lg-15,
	.posy-lg-15 {
		top: .9375rem !important
	}

	.posr-lg-15 {
		right: .9375rem !important
	}

	.posb-lg-15 {
		bottom: .9375rem !important
	}

	.posl-lg-15 {
		left: .9375rem !important
	}

	.posmt-lg-15 {
		top: -.9375rem !important
	}

	.posmr-lg-15 {
		right: -.9375rem !important
	}

	.posmb-lg-15 {
		bottom: -.9375rem !important
	}

	.posml-lg-15 {
		left: -.9375rem !important
	}

	.pos-lg-16 {
		top: 1rem !important;
		bottom: 1rem !important
	}

	.pos-lg-16,
	.posx-lg-16 {
		right: 1rem !important;
		left: 1rem !important
	}

	.posy-lg-16 {
		bottom: 1rem !important
	}

	.post-lg-16,
	.posy-lg-16 {
		top: 1rem !important
	}

	.posr-lg-16 {
		right: 1rem !important
	}

	.posb-lg-16 {
		bottom: 1rem !important
	}

	.posl-lg-16 {
		left: 1rem !important
	}

	.posmt-lg-16 {
		top: -1rem !important
	}

	.posmr-lg-16 {
		right: -1rem !important
	}

	.posmb-lg-16 {
		bottom: -1rem !important
	}

	.posml-lg-16 {
		left: -1rem !important
	}

	.pos-lg-17 {
		top: 1.0625rem !important;
		bottom: 1.0625rem !important
	}

	.pos-lg-17,
	.posx-lg-17 {
		right: 1.0625rem !important;
		left: 1.0625rem !important
	}

	.posy-lg-17 {
		bottom: 1.0625rem !important
	}

	.post-lg-17,
	.posy-lg-17 {
		top: 1.0625rem !important
	}

	.posr-lg-17 {
		right: 1.0625rem !important
	}

	.posb-lg-17 {
		bottom: 1.0625rem !important
	}

	.posl-lg-17 {
		left: 1.0625rem !important
	}

	.posmt-lg-17 {
		top: -1.0625rem !important
	}

	.posmr-lg-17 {
		right: -1.0625rem !important
	}

	.posmb-lg-17 {
		bottom: -1.0625rem !important
	}

	.posml-lg-17 {
		left: -1.0625rem !important
	}

	.pos-lg-18 {
		top: 1.125rem !important;
		bottom: 1.125rem !important
	}

	.pos-lg-18,
	.posx-lg-18 {
		right: 1.125rem !important;
		left: 1.125rem !important
	}

	.posy-lg-18 {
		bottom: 1.125rem !important
	}

	.post-lg-18,
	.posy-lg-18 {
		top: 1.125rem !important
	}

	.posr-lg-18 {
		right: 1.125rem !important
	}

	.posb-lg-18 {
		bottom: 1.125rem !important
	}

	.posl-lg-18 {
		left: 1.125rem !important
	}

	.posmt-lg-18 {
		top: -1.125rem !important
	}

	.posmr-lg-18 {
		right: -1.125rem !important
	}

	.posmb-lg-18 {
		bottom: -1.125rem !important
	}

	.posml-lg-18 {
		left: -1.125rem !important
	}

	.pos-lg-19 {
		top: 1.1875rem !important;
		bottom: 1.1875rem !important
	}

	.pos-lg-19,
	.posx-lg-19 {
		right: 1.1875rem !important;
		left: 1.1875rem !important
	}

	.posy-lg-19 {
		bottom: 1.1875rem !important
	}

	.post-lg-19,
	.posy-lg-19 {
		top: 1.1875rem !important
	}

	.posr-lg-19 {
		right: 1.1875rem !important
	}

	.posb-lg-19 {
		bottom: 1.1875rem !important
	}

	.posl-lg-19 {
		left: 1.1875rem !important
	}

	.posmt-lg-19 {
		top: -1.1875rem !important
	}

	.posmr-lg-19 {
		right: -1.1875rem !important
	}

	.posmb-lg-19 {
		bottom: -1.1875rem !important
	}

	.posml-lg-19 {
		left: -1.1875rem !important
	}

	.pos-lg-20 {
		top: 1.25rem !important;
		bottom: 1.25rem !important
	}

	.pos-lg-20,
	.posx-lg-20 {
		right: 1.25rem !important;
		left: 1.25rem !important
	}

	.posy-lg-20 {
		bottom: 1.25rem !important
	}

	.post-lg-20,
	.posy-lg-20 {
		top: 1.25rem !important
	}

	.posr-lg-20 {
		right: 1.25rem !important
	}

	.posb-lg-20 {
		bottom: 1.25rem !important
	}

	.posl-lg-20 {
		left: 1.25rem !important
	}

	.posmt-lg-20 {
		top: -1.25rem !important
	}

	.posmr-lg-20 {
		right: -1.25rem !important
	}

	.posmb-lg-20 {
		bottom: -1.25rem !important
	}

	.posml-lg-20 {
		left: -1.25rem !important
	}

	.pos-lg-21 {
		top: 1.3125rem !important;
		bottom: 1.3125rem !important
	}

	.pos-lg-21,
	.posx-lg-21 {
		right: 1.3125rem !important;
		left: 1.3125rem !important
	}

	.posy-lg-21 {
		bottom: 1.3125rem !important
	}

	.post-lg-21,
	.posy-lg-21 {
		top: 1.3125rem !important
	}

	.posr-lg-21 {
		right: 1.3125rem !important
	}

	.posb-lg-21 {
		bottom: 1.3125rem !important
	}

	.posl-lg-21 {
		left: 1.3125rem !important
	}

	.posmt-lg-21 {
		top: -1.3125rem !important
	}

	.posmr-lg-21 {
		right: -1.3125rem !important
	}

	.posmb-lg-21 {
		bottom: -1.3125rem !important
	}

	.posml-lg-21 {
		left: -1.3125rem !important
	}

	.pos-lg-22 {
		top: 1.375rem !important;
		bottom: 1.375rem !important
	}

	.pos-lg-22,
	.posx-lg-22 {
		right: 1.375rem !important;
		left: 1.375rem !important
	}

	.posy-lg-22 {
		bottom: 1.375rem !important
	}

	.post-lg-22,
	.posy-lg-22 {
		top: 1.375rem !important
	}

	.posr-lg-22 {
		right: 1.375rem !important
	}

	.posb-lg-22 {
		bottom: 1.375rem !important
	}

	.posl-lg-22 {
		left: 1.375rem !important
	}

	.posmt-lg-22 {
		top: -1.375rem !important
	}

	.posmr-lg-22 {
		right: -1.375rem !important
	}

	.posmb-lg-22 {
		bottom: -1.375rem !important
	}

	.posml-lg-22 {
		left: -1.375rem !important
	}

	.pos-lg-23 {
		top: 1.4375rem !important;
		bottom: 1.4375rem !important
	}

	.pos-lg-23,
	.posx-lg-23 {
		right: 1.4375rem !important;
		left: 1.4375rem !important
	}

	.posy-lg-23 {
		bottom: 1.4375rem !important
	}

	.post-lg-23,
	.posy-lg-23 {
		top: 1.4375rem !important
	}

	.posr-lg-23 {
		right: 1.4375rem !important
	}

	.posb-lg-23 {
		bottom: 1.4375rem !important
	}

	.posl-lg-23 {
		left: 1.4375rem !important
	}

	.posmt-lg-23 {
		top: -1.4375rem !important
	}

	.posmr-lg-23 {
		right: -1.4375rem !important
	}

	.posmb-lg-23 {
		bottom: -1.4375rem !important
	}

	.posml-lg-23 {
		left: -1.4375rem !important
	}

	.pos-lg-24 {
		top: 1.5rem !important;
		bottom: 1.5rem !important
	}

	.pos-lg-24,
	.posx-lg-24 {
		right: 1.5rem !important;
		left: 1.5rem !important
	}

	.posy-lg-24 {
		bottom: 1.5rem !important
	}

	.post-lg-24,
	.posy-lg-24 {
		top: 1.5rem !important
	}

	.posr-lg-24 {
		right: 1.5rem !important
	}

	.posb-lg-24 {
		bottom: 1.5rem !important
	}

	.posl-lg-24 {
		left: 1.5rem !important
	}

	.posmt-lg-24 {
		top: -1.5rem !important
	}

	.posmr-lg-24 {
		right: -1.5rem !important
	}

	.posmb-lg-24 {
		bottom: -1.5rem !important
	}

	.posml-lg-24 {
		left: -1.5rem !important
	}

	.pos-lg-25 {
		top: 1.5625rem !important;
		bottom: 1.5625rem !important
	}

	.pos-lg-25,
	.posx-lg-25 {
		right: 1.5625rem !important;
		left: 1.5625rem !important
	}

	.posy-lg-25 {
		bottom: 1.5625rem !important
	}

	.post-lg-25,
	.posy-lg-25 {
		top: 1.5625rem !important
	}

	.posr-lg-25 {
		right: 1.5625rem !important
	}

	.posb-lg-25 {
		bottom: 1.5625rem !important
	}

	.posl-lg-25 {
		left: 1.5625rem !important
	}

	.posmt-lg-25 {
		top: -1.5625rem !important
	}

	.posmr-lg-25 {
		right: -1.5625rem !important
	}

	.posmb-lg-25 {
		bottom: -1.5625rem !important
	}

	.posml-lg-25 {
		left: -1.5625rem !important
	}

	.pos-lg-26 {
		top: 1.625rem !important;
		bottom: 1.625rem !important
	}

	.pos-lg-26,
	.posx-lg-26 {
		right: 1.625rem !important;
		left: 1.625rem !important
	}

	.posy-lg-26 {
		bottom: 1.625rem !important
	}

	.post-lg-26,
	.posy-lg-26 {
		top: 1.625rem !important
	}

	.posr-lg-26 {
		right: 1.625rem !important
	}

	.posb-lg-26 {
		bottom: 1.625rem !important
	}

	.posl-lg-26 {
		left: 1.625rem !important
	}

	.posmt-lg-26 {
		top: -1.625rem !important
	}

	.posmr-lg-26 {
		right: -1.625rem !important
	}

	.posmb-lg-26 {
		bottom: -1.625rem !important
	}

	.posml-lg-26 {
		left: -1.625rem !important
	}

	.pos-lg-27 {
		top: 1.6875rem !important;
		bottom: 1.6875rem !important
	}

	.pos-lg-27,
	.posx-lg-27 {
		right: 1.6875rem !important;
		left: 1.6875rem !important
	}

	.posy-lg-27 {
		bottom: 1.6875rem !important
	}

	.post-lg-27,
	.posy-lg-27 {
		top: 1.6875rem !important
	}

	.posr-lg-27 {
		right: 1.6875rem !important
	}

	.posb-lg-27 {
		bottom: 1.6875rem !important
	}

	.posl-lg-27 {
		left: 1.6875rem !important
	}

	.posmt-lg-27 {
		top: -1.6875rem !important
	}

	.posmr-lg-27 {
		right: -1.6875rem !important
	}

	.posmb-lg-27 {
		bottom: -1.6875rem !important
	}

	.posml-lg-27 {
		left: -1.6875rem !important
	}

	.pos-lg-28 {
		top: 1.75rem !important;
		bottom: 1.75rem !important
	}

	.pos-lg-28,
	.posx-lg-28 {
		right: 1.75rem !important;
		left: 1.75rem !important
	}

	.posy-lg-28 {
		bottom: 1.75rem !important
	}

	.post-lg-28,
	.posy-lg-28 {
		top: 1.75rem !important
	}

	.posr-lg-28 {
		right: 1.75rem !important
	}

	.posb-lg-28 {
		bottom: 1.75rem !important
	}

	.posl-lg-28 {
		left: 1.75rem !important
	}

	.posmt-lg-28 {
		top: -1.75rem !important
	}

	.posmr-lg-28 {
		right: -1.75rem !important
	}

	.posmb-lg-28 {
		bottom: -1.75rem !important
	}

	.posml-lg-28 {
		left: -1.75rem !important
	}

	.pos-lg-29 {
		top: 1.8125rem !important;
		bottom: 1.8125rem !important
	}

	.pos-lg-29,
	.posx-lg-29 {
		right: 1.8125rem !important;
		left: 1.8125rem !important
	}

	.posy-lg-29 {
		bottom: 1.8125rem !important
	}

	.post-lg-29,
	.posy-lg-29 {
		top: 1.8125rem !important
	}

	.posr-lg-29 {
		right: 1.8125rem !important
	}

	.posb-lg-29 {
		bottom: 1.8125rem !important
	}

	.posl-lg-29 {
		left: 1.8125rem !important
	}

	.posmt-lg-29 {
		top: -1.8125rem !important
	}

	.posmr-lg-29 {
		right: -1.8125rem !important
	}

	.posmb-lg-29 {
		bottom: -1.8125rem !important
	}

	.posml-lg-29 {
		left: -1.8125rem !important
	}

	.pos-lg-30 {
		top: 1.875rem !important;
		bottom: 1.875rem !important
	}

	.pos-lg-30,
	.posx-lg-30 {
		right: 1.875rem !important;
		left: 1.875rem !important
	}

	.posy-lg-30 {
		bottom: 1.875rem !important
	}

	.post-lg-30,
	.posy-lg-30 {
		top: 1.875rem !important
	}

	.posr-lg-30 {
		right: 1.875rem !important
	}

	.posb-lg-30 {
		bottom: 1.875rem !important
	}

	.posl-lg-30 {
		left: 1.875rem !important
	}

	.posmt-lg-30 {
		top: -1.875rem !important
	}

	.posmr-lg-30 {
		right: -1.875rem !important
	}

	.posmb-lg-30 {
		bottom: -1.875rem !important
	}

	.posml-lg-30 {
		left: -1.875rem !important
	}

	.pos-lg-31 {
		top: 1.9375rem !important;
		bottom: 1.9375rem !important
	}

	.pos-lg-31,
	.posx-lg-31 {
		right: 1.9375rem !important;
		left: 1.9375rem !important
	}

	.posy-lg-31 {
		bottom: 1.9375rem !important
	}

	.post-lg-31,
	.posy-lg-31 {
		top: 1.9375rem !important
	}

	.posr-lg-31 {
		right: 1.9375rem !important
	}

	.posb-lg-31 {
		bottom: 1.9375rem !important
	}

	.posl-lg-31 {
		left: 1.9375rem !important
	}

	.posmt-lg-31 {
		top: -1.9375rem !important
	}

	.posmr-lg-31 {
		right: -1.9375rem !important
	}

	.posmb-lg-31 {
		bottom: -1.9375rem !important
	}

	.posml-lg-31 {
		left: -1.9375rem !important
	}

	.pos-lg-32 {
		top: 2rem !important;
		bottom: 2rem !important
	}

	.pos-lg-32,
	.posx-lg-32 {
		right: 2rem !important;
		left: 2rem !important
	}

	.posy-lg-32 {
		bottom: 2rem !important
	}

	.post-lg-32,
	.posy-lg-32 {
		top: 2rem !important
	}

	.posr-lg-32 {
		right: 2rem !important
	}

	.posb-lg-32 {
		bottom: 2rem !important
	}

	.posl-lg-32 {
		left: 2rem !important
	}

	.posmt-lg-32 {
		top: -2rem !important
	}

	.posmr-lg-32 {
		right: -2rem !important
	}

	.posmb-lg-32 {
		bottom: -2rem !important
	}

	.posml-lg-32 {
		left: -2rem !important
	}

	.pos-lg-33 {
		top: 2.0625rem !important;
		bottom: 2.0625rem !important
	}

	.pos-lg-33,
	.posx-lg-33 {
		right: 2.0625rem !important;
		left: 2.0625rem !important
	}

	.posy-lg-33 {
		bottom: 2.0625rem !important
	}

	.post-lg-33,
	.posy-lg-33 {
		top: 2.0625rem !important
	}

	.posr-lg-33 {
		right: 2.0625rem !important
	}

	.posb-lg-33 {
		bottom: 2.0625rem !important
	}

	.posl-lg-33 {
		left: 2.0625rem !important
	}

	.posmt-lg-33 {
		top: -2.0625rem !important
	}

	.posmr-lg-33 {
		right: -2.0625rem !important
	}

	.posmb-lg-33 {
		bottom: -2.0625rem !important
	}

	.posml-lg-33 {
		left: -2.0625rem !important
	}

	.pos-lg-34 {
		top: 2.125rem !important;
		bottom: 2.125rem !important
	}

	.pos-lg-34,
	.posx-lg-34 {
		right: 2.125rem !important;
		left: 2.125rem !important
	}

	.posy-lg-34 {
		bottom: 2.125rem !important
	}

	.post-lg-34,
	.posy-lg-34 {
		top: 2.125rem !important
	}

	.posr-lg-34 {
		right: 2.125rem !important
	}

	.posb-lg-34 {
		bottom: 2.125rem !important
	}

	.posl-lg-34 {
		left: 2.125rem !important
	}

	.posmt-lg-34 {
		top: -2.125rem !important
	}

	.posmr-lg-34 {
		right: -2.125rem !important
	}

	.posmb-lg-34 {
		bottom: -2.125rem !important
	}

	.posml-lg-34 {
		left: -2.125rem !important
	}

	.pos-lg-35 {
		top: 2.1875rem !important;
		bottom: 2.1875rem !important
	}

	.pos-lg-35,
	.posx-lg-35 {
		right: 2.1875rem !important;
		left: 2.1875rem !important
	}

	.posy-lg-35 {
		bottom: 2.1875rem !important
	}

	.post-lg-35,
	.posy-lg-35 {
		top: 2.1875rem !important
	}

	.posr-lg-35 {
		right: 2.1875rem !important
	}

	.posb-lg-35 {
		bottom: 2.1875rem !important
	}

	.posl-lg-35 {
		left: 2.1875rem !important
	}

	.posmt-lg-35 {
		top: -2.1875rem !important
	}

	.posmr-lg-35 {
		right: -2.1875rem !important
	}

	.posmb-lg-35 {
		bottom: -2.1875rem !important
	}

	.posml-lg-35 {
		left: -2.1875rem !important
	}

	.pos-lg-36 {
		top: 2.25rem !important;
		bottom: 2.25rem !important
	}

	.pos-lg-36,
	.posx-lg-36 {
		right: 2.25rem !important;
		left: 2.25rem !important
	}

	.posy-lg-36 {
		bottom: 2.25rem !important
	}

	.post-lg-36,
	.posy-lg-36 {
		top: 2.25rem !important
	}

	.posr-lg-36 {
		right: 2.25rem !important
	}

	.posb-lg-36 {
		bottom: 2.25rem !important
	}

	.posl-lg-36 {
		left: 2.25rem !important
	}

	.posmt-lg-36 {
		top: -2.25rem !important
	}

	.posmr-lg-36 {
		right: -2.25rem !important
	}

	.posmb-lg-36 {
		bottom: -2.25rem !important
	}

	.posml-lg-36 {
		left: -2.25rem !important
	}

	.pos-lg-37 {
		top: 2.3125rem !important;
		bottom: 2.3125rem !important
	}

	.pos-lg-37,
	.posx-lg-37 {
		right: 2.3125rem !important;
		left: 2.3125rem !important
	}

	.posy-lg-37 {
		bottom: 2.3125rem !important
	}

	.post-lg-37,
	.posy-lg-37 {
		top: 2.3125rem !important
	}

	.posr-lg-37 {
		right: 2.3125rem !important
	}

	.posb-lg-37 {
		bottom: 2.3125rem !important
	}

	.posl-lg-37 {
		left: 2.3125rem !important
	}

	.posmt-lg-37 {
		top: -2.3125rem !important
	}

	.posmr-lg-37 {
		right: -2.3125rem !important
	}

	.posmb-lg-37 {
		bottom: -2.3125rem !important
	}

	.posml-lg-37 {
		left: -2.3125rem !important
	}

	.pos-lg-38 {
		top: 2.375rem !important;
		bottom: 2.375rem !important
	}

	.pos-lg-38,
	.posx-lg-38 {
		right: 2.375rem !important;
		left: 2.375rem !important
	}

	.posy-lg-38 {
		bottom: 2.375rem !important
	}

	.post-lg-38,
	.posy-lg-38 {
		top: 2.375rem !important
	}

	.posr-lg-38 {
		right: 2.375rem !important
	}

	.posb-lg-38 {
		bottom: 2.375rem !important
	}

	.posl-lg-38 {
		left: 2.375rem !important
	}

	.posmt-lg-38 {
		top: -2.375rem !important
	}

	.posmr-lg-38 {
		right: -2.375rem !important
	}

	.posmb-lg-38 {
		bottom: -2.375rem !important
	}

	.posml-lg-38 {
		left: -2.375rem !important
	}

	.pos-lg-39 {
		top: 2.4375rem !important;
		bottom: 2.4375rem !important
	}

	.pos-lg-39,
	.posx-lg-39 {
		right: 2.4375rem !important;
		left: 2.4375rem !important
	}

	.posy-lg-39 {
		bottom: 2.4375rem !important
	}

	.post-lg-39,
	.posy-lg-39 {
		top: 2.4375rem !important
	}

	.posr-lg-39 {
		right: 2.4375rem !important
	}

	.posb-lg-39 {
		bottom: 2.4375rem !important
	}

	.posl-lg-39 {
		left: 2.4375rem !important
	}

	.posmt-lg-39 {
		top: -2.4375rem !important
	}

	.posmr-lg-39 {
		right: -2.4375rem !important
	}

	.posmb-lg-39 {
		bottom: -2.4375rem !important
	}

	.posml-lg-39 {
		left: -2.4375rem !important
	}

	.pos-lg-40 {
		top: 2.5rem !important;
		bottom: 2.5rem !important
	}

	.pos-lg-40,
	.posx-lg-40 {
		right: 2.5rem !important;
		left: 2.5rem !important
	}

	.posy-lg-40 {
		bottom: 2.5rem !important
	}

	.post-lg-40,
	.posy-lg-40 {
		top: 2.5rem !important
	}

	.posr-lg-40 {
		right: 2.5rem !important
	}

	.posb-lg-40 {
		bottom: 2.5rem !important
	}

	.posl-lg-40 {
		left: 2.5rem !important
	}

	.posmt-lg-40 {
		top: -2.5rem !important
	}

	.posmr-lg-40 {
		right: -2.5rem !important
	}

	.posmb-lg-40 {
		bottom: -2.5rem !important
	}

	.posml-lg-40 {
		left: -2.5rem !important
	}

	.pos-lg-41 {
		top: 2.5625rem !important;
		bottom: 2.5625rem !important
	}

	.pos-lg-41,
	.posx-lg-41 {
		right: 2.5625rem !important;
		left: 2.5625rem !important
	}

	.posy-lg-41 {
		bottom: 2.5625rem !important
	}

	.post-lg-41,
	.posy-lg-41 {
		top: 2.5625rem !important
	}

	.posr-lg-41 {
		right: 2.5625rem !important
	}

	.posb-lg-41 {
		bottom: 2.5625rem !important
	}

	.posl-lg-41 {
		left: 2.5625rem !important
	}

	.posmt-lg-41 {
		top: -2.5625rem !important
	}

	.posmr-lg-41 {
		right: -2.5625rem !important
	}

	.posmb-lg-41 {
		bottom: -2.5625rem !important
	}

	.posml-lg-41 {
		left: -2.5625rem !important
	}

	.pos-lg-42 {
		top: 2.625rem !important;
		bottom: 2.625rem !important
	}

	.pos-lg-42,
	.posx-lg-42 {
		right: 2.625rem !important;
		left: 2.625rem !important
	}

	.posy-lg-42 {
		bottom: 2.625rem !important
	}

	.post-lg-42,
	.posy-lg-42 {
		top: 2.625rem !important
	}

	.posr-lg-42 {
		right: 2.625rem !important
	}

	.posb-lg-42 {
		bottom: 2.625rem !important
	}

	.posl-lg-42 {
		left: 2.625rem !important
	}

	.posmt-lg-42 {
		top: -2.625rem !important
	}

	.posmr-lg-42 {
		right: -2.625rem !important
	}

	.posmb-lg-42 {
		bottom: -2.625rem !important
	}

	.posml-lg-42 {
		left: -2.625rem !important
	}

	.pos-lg-43 {
		top: 2.6875rem !important;
		bottom: 2.6875rem !important
	}

	.pos-lg-43,
	.posx-lg-43 {
		right: 2.6875rem !important;
		left: 2.6875rem !important
	}

	.posy-lg-43 {
		bottom: 2.6875rem !important
	}

	.post-lg-43,
	.posy-lg-43 {
		top: 2.6875rem !important
	}

	.posr-lg-43 {
		right: 2.6875rem !important
	}

	.posb-lg-43 {
		bottom: 2.6875rem !important
	}

	.posl-lg-43 {
		left: 2.6875rem !important
	}

	.posmt-lg-43 {
		top: -2.6875rem !important
	}

	.posmr-lg-43 {
		right: -2.6875rem !important
	}

	.posmb-lg-43 {
		bottom: -2.6875rem !important
	}

	.posml-lg-43 {
		left: -2.6875rem !important
	}

	.pos-lg-44 {
		top: 2.75rem !important;
		bottom: 2.75rem !important
	}

	.pos-lg-44,
	.posx-lg-44 {
		right: 2.75rem !important;
		left: 2.75rem !important
	}

	.posy-lg-44 {
		bottom: 2.75rem !important
	}

	.post-lg-44,
	.posy-lg-44 {
		top: 2.75rem !important
	}

	.posr-lg-44 {
		right: 2.75rem !important
	}

	.posb-lg-44 {
		bottom: 2.75rem !important
	}

	.posl-lg-44 {
		left: 2.75rem !important
	}

	.posmt-lg-44 {
		top: -2.75rem !important
	}

	.posmr-lg-44 {
		right: -2.75rem !important
	}

	.posmb-lg-44 {
		bottom: -2.75rem !important
	}

	.posml-lg-44 {
		left: -2.75rem !important
	}

	.pos-lg-45 {
		top: 2.8125rem !important;
		bottom: 2.8125rem !important
	}

	.pos-lg-45,
	.posx-lg-45 {
		right: 2.8125rem !important;
		left: 2.8125rem !important
	}

	.posy-lg-45 {
		bottom: 2.8125rem !important
	}

	.post-lg-45,
	.posy-lg-45 {
		top: 2.8125rem !important
	}

	.posr-lg-45 {
		right: 2.8125rem !important
	}

	.posb-lg-45 {
		bottom: 2.8125rem !important
	}

	.posl-lg-45 {
		left: 2.8125rem !important
	}

	.posmt-lg-45 {
		top: -2.8125rem !important
	}

	.posmr-lg-45 {
		right: -2.8125rem !important
	}

	.posmb-lg-45 {
		bottom: -2.8125rem !important
	}

	.posml-lg-45 {
		left: -2.8125rem !important
	}

	.pos-lg-46 {
		top: 2.875rem !important;
		bottom: 2.875rem !important
	}

	.pos-lg-46,
	.posx-lg-46 {
		right: 2.875rem !important;
		left: 2.875rem !important
	}

	.posy-lg-46 {
		bottom: 2.875rem !important
	}

	.post-lg-46,
	.posy-lg-46 {
		top: 2.875rem !important
	}

	.posr-lg-46 {
		right: 2.875rem !important
	}

	.posb-lg-46 {
		bottom: 2.875rem !important
	}

	.posl-lg-46 {
		left: 2.875rem !important
	}

	.posmt-lg-46 {
		top: -2.875rem !important
	}

	.posmr-lg-46 {
		right: -2.875rem !important
	}

	.posmb-lg-46 {
		bottom: -2.875rem !important
	}

	.posml-lg-46 {
		left: -2.875rem !important
	}

	.pos-lg-47 {
		top: 2.9375rem !important;
		bottom: 2.9375rem !important
	}

	.pos-lg-47,
	.posx-lg-47 {
		right: 2.9375rem !important;
		left: 2.9375rem !important
	}

	.posy-lg-47 {
		bottom: 2.9375rem !important
	}

	.post-lg-47,
	.posy-lg-47 {
		top: 2.9375rem !important
	}

	.posr-lg-47 {
		right: 2.9375rem !important
	}

	.posb-lg-47 {
		bottom: 2.9375rem !important
	}

	.posl-lg-47 {
		left: 2.9375rem !important
	}

	.posmt-lg-47 {
		top: -2.9375rem !important
	}

	.posmr-lg-47 {
		right: -2.9375rem !important
	}

	.posmb-lg-47 {
		bottom: -2.9375rem !important
	}

	.posml-lg-47 {
		left: -2.9375rem !important
	}

	.pos-lg-48 {
		top: 3rem !important;
		bottom: 3rem !important
	}

	.pos-lg-48,
	.posx-lg-48 {
		right: 3rem !important;
		left: 3rem !important
	}

	.posy-lg-48 {
		bottom: 3rem !important
	}

	.post-lg-48,
	.posy-lg-48 {
		top: 3rem !important
	}

	.posr-lg-48 {
		right: 3rem !important
	}

	.posb-lg-48 {
		bottom: 3rem !important
	}

	.posl-lg-48 {
		left: 3rem !important
	}

	.posmt-lg-48 {
		top: -3rem !important
	}

	.posmr-lg-48 {
		right: -3rem !important
	}

	.posmb-lg-48 {
		bottom: -3rem !important
	}

	.posml-lg-48 {
		left: -3rem !important
	}

	.pos-lg-49 {
		top: 3.0625rem !important;
		bottom: 3.0625rem !important
	}

	.pos-lg-49,
	.posx-lg-49 {
		right: 3.0625rem !important;
		left: 3.0625rem !important
	}

	.posy-lg-49 {
		bottom: 3.0625rem !important
	}

	.post-lg-49,
	.posy-lg-49 {
		top: 3.0625rem !important
	}

	.posr-lg-49 {
		right: 3.0625rem !important
	}

	.posb-lg-49 {
		bottom: 3.0625rem !important
	}

	.posl-lg-49 {
		left: 3.0625rem !important
	}

	.posmt-lg-49 {
		top: -3.0625rem !important
	}

	.posmr-lg-49 {
		right: -3.0625rem !important
	}

	.posmb-lg-49 {
		bottom: -3.0625rem !important
	}

	.posml-lg-49 {
		left: -3.0625rem !important
	}

	.pos-lg-50 {
		top: 3.125rem !important;
		bottom: 3.125rem !important
	}

	.pos-lg-50,
	.posx-lg-50 {
		right: 3.125rem !important;
		left: 3.125rem !important
	}

	.posy-lg-50 {
		bottom: 3.125rem !important
	}

	.post-lg-50,
	.posy-lg-50 {
		top: 3.125rem !important
	}

	.posr-lg-50 {
		right: 3.125rem !important
	}

	.posb-lg-50 {
		bottom: 3.125rem !important
	}

	.posl-lg-50 {
		left: 3.125rem !important
	}

	.posmt-lg-50 {
		top: -3.125rem !important
	}

	.posmr-lg-50 {
		right: -3.125rem !important
	}

	.posmb-lg-50 {
		bottom: -3.125rem !important
	}

	.posml-lg-50 {
		left: -3.125rem !important
	}

	.pos-lg-51 {
		top: 3.1875rem !important;
		bottom: 3.1875rem !important
	}

	.pos-lg-51,
	.posx-lg-51 {
		right: 3.1875rem !important;
		left: 3.1875rem !important
	}

	.posy-lg-51 {
		bottom: 3.1875rem !important
	}

	.post-lg-51,
	.posy-lg-51 {
		top: 3.1875rem !important
	}

	.posr-lg-51 {
		right: 3.1875rem !important
	}

	.posb-lg-51 {
		bottom: 3.1875rem !important
	}

	.posl-lg-51 {
		left: 3.1875rem !important
	}

	.posmt-lg-51 {
		top: -3.1875rem !important
	}

	.posmr-lg-51 {
		right: -3.1875rem !important
	}

	.posmb-lg-51 {
		bottom: -3.1875rem !important
	}

	.posml-lg-51 {
		left: -3.1875rem !important
	}

	.pos-lg-52 {
		top: 3.25rem !important;
		bottom: 3.25rem !important
	}

	.pos-lg-52,
	.posx-lg-52 {
		right: 3.25rem !important;
		left: 3.25rem !important
	}

	.posy-lg-52 {
		bottom: 3.25rem !important
	}

	.post-lg-52,
	.posy-lg-52 {
		top: 3.25rem !important
	}

	.posr-lg-52 {
		right: 3.25rem !important
	}

	.posb-lg-52 {
		bottom: 3.25rem !important
	}

	.posl-lg-52 {
		left: 3.25rem !important
	}

	.posmt-lg-52 {
		top: -3.25rem !important
	}

	.posmr-lg-52 {
		right: -3.25rem !important
	}

	.posmb-lg-52 {
		bottom: -3.25rem !important
	}

	.posml-lg-52 {
		left: -3.25rem !important
	}

	.pos-lg-53 {
		top: 3.3125rem !important;
		bottom: 3.3125rem !important
	}

	.pos-lg-53,
	.posx-lg-53 {
		right: 3.3125rem !important;
		left: 3.3125rem !important
	}

	.posy-lg-53 {
		bottom: 3.3125rem !important
	}

	.post-lg-53,
	.posy-lg-53 {
		top: 3.3125rem !important
	}

	.posr-lg-53 {
		right: 3.3125rem !important
	}

	.posb-lg-53 {
		bottom: 3.3125rem !important
	}

	.posl-lg-53 {
		left: 3.3125rem !important
	}

	.posmt-lg-53 {
		top: -3.3125rem !important
	}

	.posmr-lg-53 {
		right: -3.3125rem !important
	}

	.posmb-lg-53 {
		bottom: -3.3125rem !important
	}

	.posml-lg-53 {
		left: -3.3125rem !important
	}

	.pos-lg-54 {
		top: 3.375rem !important;
		bottom: 3.375rem !important
	}

	.pos-lg-54,
	.posx-lg-54 {
		right: 3.375rem !important;
		left: 3.375rem !important
	}

	.posy-lg-54 {
		bottom: 3.375rem !important
	}

	.post-lg-54,
	.posy-lg-54 {
		top: 3.375rem !important
	}

	.posr-lg-54 {
		right: 3.375rem !important
	}

	.posb-lg-54 {
		bottom: 3.375rem !important
	}

	.posl-lg-54 {
		left: 3.375rem !important
	}

	.posmt-lg-54 {
		top: -3.375rem !important
	}

	.posmr-lg-54 {
		right: -3.375rem !important
	}

	.posmb-lg-54 {
		bottom: -3.375rem !important
	}

	.posml-lg-54 {
		left: -3.375rem !important
	}

	.pos-lg-55 {
		top: 3.4375rem !important;
		bottom: 3.4375rem !important
	}

	.pos-lg-55,
	.posx-lg-55 {
		right: 3.4375rem !important;
		left: 3.4375rem !important
	}

	.posy-lg-55 {
		bottom: 3.4375rem !important
	}

	.post-lg-55,
	.posy-lg-55 {
		top: 3.4375rem !important
	}

	.posr-lg-55 {
		right: 3.4375rem !important
	}

	.posb-lg-55 {
		bottom: 3.4375rem !important
	}

	.posl-lg-55 {
		left: 3.4375rem !important
	}

	.posmt-lg-55 {
		top: -3.4375rem !important
	}

	.posmr-lg-55 {
		right: -3.4375rem !important
	}

	.posmb-lg-55 {
		bottom: -3.4375rem !important
	}

	.posml-lg-55 {
		left: -3.4375rem !important
	}

	.pos-lg-56 {
		top: 3.5rem !important;
		bottom: 3.5rem !important
	}

	.pos-lg-56,
	.posx-lg-56 {
		right: 3.5rem !important;
		left: 3.5rem !important
	}

	.posy-lg-56 {
		bottom: 3.5rem !important
	}

	.post-lg-56,
	.posy-lg-56 {
		top: 3.5rem !important
	}

	.posr-lg-56 {
		right: 3.5rem !important
	}

	.posb-lg-56 {
		bottom: 3.5rem !important
	}

	.posl-lg-56 {
		left: 3.5rem !important
	}

	.posmt-lg-56 {
		top: -3.5rem !important
	}

	.posmr-lg-56 {
		right: -3.5rem !important
	}

	.posmb-lg-56 {
		bottom: -3.5rem !important
	}

	.posml-lg-56 {
		left: -3.5rem !important
	}

	.pos-lg-57 {
		top: 3.5625rem !important;
		bottom: 3.5625rem !important
	}

	.pos-lg-57,
	.posx-lg-57 {
		right: 3.5625rem !important;
		left: 3.5625rem !important
	}

	.posy-lg-57 {
		bottom: 3.5625rem !important
	}

	.post-lg-57,
	.posy-lg-57 {
		top: 3.5625rem !important
	}

	.posr-lg-57 {
		right: 3.5625rem !important
	}

	.posb-lg-57 {
		bottom: 3.5625rem !important
	}

	.posl-lg-57 {
		left: 3.5625rem !important
	}

	.posmt-lg-57 {
		top: -3.5625rem !important
	}

	.posmr-lg-57 {
		right: -3.5625rem !important
	}

	.posmb-lg-57 {
		bottom: -3.5625rem !important
	}

	.posml-lg-57 {
		left: -3.5625rem !important
	}

	.pos-lg-58 {
		top: 3.625rem !important;
		bottom: 3.625rem !important
	}

	.pos-lg-58,
	.posx-lg-58 {
		right: 3.625rem !important;
		left: 3.625rem !important
	}

	.posy-lg-58 {
		bottom: 3.625rem !important
	}

	.post-lg-58,
	.posy-lg-58 {
		top: 3.625rem !important
	}

	.posr-lg-58 {
		right: 3.625rem !important
	}

	.posb-lg-58 {
		bottom: 3.625rem !important
	}

	.posl-lg-58 {
		left: 3.625rem !important
	}

	.posmt-lg-58 {
		top: -3.625rem !important
	}

	.posmr-lg-58 {
		right: -3.625rem !important
	}

	.posmb-lg-58 {
		bottom: -3.625rem !important
	}

	.posml-lg-58 {
		left: -3.625rem !important
	}

	.pos-lg-59 {
		top: 3.6875rem !important;
		bottom: 3.6875rem !important
	}

	.pos-lg-59,
	.posx-lg-59 {
		right: 3.6875rem !important;
		left: 3.6875rem !important
	}

	.posy-lg-59 {
		bottom: 3.6875rem !important
	}

	.post-lg-59,
	.posy-lg-59 {
		top: 3.6875rem !important
	}

	.posr-lg-59 {
		right: 3.6875rem !important
	}

	.posb-lg-59 {
		bottom: 3.6875rem !important
	}

	.posl-lg-59 {
		left: 3.6875rem !important
	}

	.posmt-lg-59 {
		top: -3.6875rem !important
	}

	.posmr-lg-59 {
		right: -3.6875rem !important
	}

	.posmb-lg-59 {
		bottom: -3.6875rem !important
	}

	.posml-lg-59 {
		left: -3.6875rem !important
	}

	.pos-lg-60 {
		top: 3.75rem !important;
		bottom: 3.75rem !important
	}

	.pos-lg-60,
	.posx-lg-60 {
		right: 3.75rem !important;
		left: 3.75rem !important
	}

	.posy-lg-60 {
		bottom: 3.75rem !important
	}

	.post-lg-60,
	.posy-lg-60 {
		top: 3.75rem !important
	}

	.posr-lg-60 {
		right: 3.75rem !important
	}

	.posb-lg-60 {
		bottom: 3.75rem !important
	}

	.posl-lg-60 {
		left: 3.75rem !important
	}

	.posmt-lg-60 {
		top: -3.75rem !important
	}

	.posmr-lg-60 {
		right: -3.75rem !important
	}

	.posmb-lg-60 {
		bottom: -3.75rem !important
	}

	.posml-lg-60 {
		left: -3.75rem !important
	}

	.pos-lg-61 {
		top: 3.8125rem !important;
		bottom: 3.8125rem !important
	}

	.pos-lg-61,
	.posx-lg-61 {
		right: 3.8125rem !important;
		left: 3.8125rem !important
	}

	.posy-lg-61 {
		bottom: 3.8125rem !important
	}

	.post-lg-61,
	.posy-lg-61 {
		top: 3.8125rem !important
	}

	.posr-lg-61 {
		right: 3.8125rem !important
	}

	.posb-lg-61 {
		bottom: 3.8125rem !important
	}

	.posl-lg-61 {
		left: 3.8125rem !important
	}

	.posmt-lg-61 {
		top: -3.8125rem !important
	}

	.posmr-lg-61 {
		right: -3.8125rem !important
	}

	.posmb-lg-61 {
		bottom: -3.8125rem !important
	}

	.posml-lg-61 {
		left: -3.8125rem !important
	}

	.pos-lg-62 {
		top: 3.875rem !important;
		bottom: 3.875rem !important
	}

	.pos-lg-62,
	.posx-lg-62 {
		right: 3.875rem !important;
		left: 3.875rem !important
	}

	.posy-lg-62 {
		bottom: 3.875rem !important
	}

	.post-lg-62,
	.posy-lg-62 {
		top: 3.875rem !important
	}

	.posr-lg-62 {
		right: 3.875rem !important
	}

	.posb-lg-62 {
		bottom: 3.875rem !important
	}

	.posl-lg-62 {
		left: 3.875rem !important
	}

	.posmt-lg-62 {
		top: -3.875rem !important
	}

	.posmr-lg-62 {
		right: -3.875rem !important
	}

	.posmb-lg-62 {
		bottom: -3.875rem !important
	}

	.posml-lg-62 {
		left: -3.875rem !important
	}

	.pos-lg-63 {
		top: 3.9375rem !important;
		bottom: 3.9375rem !important
	}

	.pos-lg-63,
	.posx-lg-63 {
		right: 3.9375rem !important;
		left: 3.9375rem !important
	}

	.posy-lg-63 {
		bottom: 3.9375rem !important
	}

	.post-lg-63,
	.posy-lg-63 {
		top: 3.9375rem !important
	}

	.posr-lg-63 {
		right: 3.9375rem !important
	}

	.posb-lg-63 {
		bottom: 3.9375rem !important
	}

	.posl-lg-63 {
		left: 3.9375rem !important
	}

	.posmt-lg-63 {
		top: -3.9375rem !important
	}

	.posmr-lg-63 {
		right: -3.9375rem !important
	}

	.posmb-lg-63 {
		bottom: -3.9375rem !important
	}

	.posml-lg-63 {
		left: -3.9375rem !important
	}

	.pos-lg-64 {
		top: 4rem !important;
		bottom: 4rem !important
	}

	.pos-lg-64,
	.posx-lg-64 {
		right: 4rem !important;
		left: 4rem !important
	}

	.posy-lg-64 {
		bottom: 4rem !important
	}

	.post-lg-64,
	.posy-lg-64 {
		top: 4rem !important
	}

	.posr-lg-64 {
		right: 4rem !important
	}

	.posb-lg-64 {
		bottom: 4rem !important
	}

	.posl-lg-64 {
		left: 4rem !important
	}

	.posmt-lg-64 {
		top: -4rem !important
	}

	.posmr-lg-64 {
		right: -4rem !important
	}

	.posmb-lg-64 {
		bottom: -4rem !important
	}

	.posml-lg-64 {
		left: -4rem !important
	}

	.pos-lg-65 {
		top: 4.0625rem !important;
		bottom: 4.0625rem !important
	}

	.pos-lg-65,
	.posx-lg-65 {
		right: 4.0625rem !important;
		left: 4.0625rem !important
	}

	.posy-lg-65 {
		bottom: 4.0625rem !important
	}

	.post-lg-65,
	.posy-lg-65 {
		top: 4.0625rem !important
	}

	.posr-lg-65 {
		right: 4.0625rem !important
	}

	.posb-lg-65 {
		bottom: 4.0625rem !important
	}

	.posl-lg-65 {
		left: 4.0625rem !important
	}

	.posmt-lg-65 {
		top: -4.0625rem !important
	}

	.posmr-lg-65 {
		right: -4.0625rem !important
	}

	.posmb-lg-65 {
		bottom: -4.0625rem !important
	}

	.posml-lg-65 {
		left: -4.0625rem !important
	}

	.pos-lg-66 {
		top: 4.125rem !important;
		bottom: 4.125rem !important
	}

	.pos-lg-66,
	.posx-lg-66 {
		right: 4.125rem !important;
		left: 4.125rem !important
	}

	.posy-lg-66 {
		bottom: 4.125rem !important
	}

	.post-lg-66,
	.posy-lg-66 {
		top: 4.125rem !important
	}

	.posr-lg-66 {
		right: 4.125rem !important
	}

	.posb-lg-66 {
		bottom: 4.125rem !important
	}

	.posl-lg-66 {
		left: 4.125rem !important
	}

	.posmt-lg-66 {
		top: -4.125rem !important
	}

	.posmr-lg-66 {
		right: -4.125rem !important
	}

	.posmb-lg-66 {
		bottom: -4.125rem !important
	}

	.posml-lg-66 {
		left: -4.125rem !important
	}

	.pos-lg-67 {
		top: 4.1875rem !important;
		bottom: 4.1875rem !important
	}

	.pos-lg-67,
	.posx-lg-67 {
		right: 4.1875rem !important;
		left: 4.1875rem !important
	}

	.posy-lg-67 {
		bottom: 4.1875rem !important
	}

	.post-lg-67,
	.posy-lg-67 {
		top: 4.1875rem !important
	}

	.posr-lg-67 {
		right: 4.1875rem !important
	}

	.posb-lg-67 {
		bottom: 4.1875rem !important
	}

	.posl-lg-67 {
		left: 4.1875rem !important
	}

	.posmt-lg-67 {
		top: -4.1875rem !important
	}

	.posmr-lg-67 {
		right: -4.1875rem !important
	}

	.posmb-lg-67 {
		bottom: -4.1875rem !important
	}

	.posml-lg-67 {
		left: -4.1875rem !important
	}

	.pos-lg-68 {
		top: 4.25rem !important;
		bottom: 4.25rem !important
	}

	.pos-lg-68,
	.posx-lg-68 {
		right: 4.25rem !important;
		left: 4.25rem !important
	}

	.posy-lg-68 {
		bottom: 4.25rem !important
	}

	.post-lg-68,
	.posy-lg-68 {
		top: 4.25rem !important
	}

	.posr-lg-68 {
		right: 4.25rem !important
	}

	.posb-lg-68 {
		bottom: 4.25rem !important
	}

	.posl-lg-68 {
		left: 4.25rem !important
	}

	.posmt-lg-68 {
		top: -4.25rem !important
	}

	.posmr-lg-68 {
		right: -4.25rem !important
	}

	.posmb-lg-68 {
		bottom: -4.25rem !important
	}

	.posml-lg-68 {
		left: -4.25rem !important
	}

	.pos-lg-69 {
		top: 4.3125rem !important;
		bottom: 4.3125rem !important
	}

	.pos-lg-69,
	.posx-lg-69 {
		right: 4.3125rem !important;
		left: 4.3125rem !important
	}

	.posy-lg-69 {
		bottom: 4.3125rem !important
	}

	.post-lg-69,
	.posy-lg-69 {
		top: 4.3125rem !important
	}

	.posr-lg-69 {
		right: 4.3125rem !important
	}

	.posb-lg-69 {
		bottom: 4.3125rem !important
	}

	.posl-lg-69 {
		left: 4.3125rem !important
	}

	.posmt-lg-69 {
		top: -4.3125rem !important
	}

	.posmr-lg-69 {
		right: -4.3125rem !important
	}

	.posmb-lg-69 {
		bottom: -4.3125rem !important
	}

	.posml-lg-69 {
		left: -4.3125rem !important
	}

	.pos-lg-70 {
		top: 4.375rem !important;
		bottom: 4.375rem !important
	}

	.pos-lg-70,
	.posx-lg-70 {
		right: 4.375rem !important;
		left: 4.375rem !important
	}

	.posy-lg-70 {
		bottom: 4.375rem !important
	}

	.post-lg-70,
	.posy-lg-70 {
		top: 4.375rem !important
	}

	.posr-lg-70 {
		right: 4.375rem !important
	}

	.posb-lg-70 {
		bottom: 4.375rem !important
	}

	.posl-lg-70 {
		left: 4.375rem !important
	}

	.posmt-lg-70 {
		top: -4.375rem !important
	}

	.posmr-lg-70 {
		right: -4.375rem !important
	}

	.posmb-lg-70 {
		bottom: -4.375rem !important
	}

	.posml-lg-70 {
		left: -4.375rem !important
	}

	.pos-lg-71 {
		top: 4.4375rem !important;
		bottom: 4.4375rem !important
	}

	.pos-lg-71,
	.posx-lg-71 {
		right: 4.4375rem !important;
		left: 4.4375rem !important
	}

	.posy-lg-71 {
		bottom: 4.4375rem !important
	}

	.post-lg-71,
	.posy-lg-71 {
		top: 4.4375rem !important
	}

	.posr-lg-71 {
		right: 4.4375rem !important
	}

	.posb-lg-71 {
		bottom: 4.4375rem !important
	}

	.posl-lg-71 {
		left: 4.4375rem !important
	}

	.posmt-lg-71 {
		top: -4.4375rem !important
	}

	.posmr-lg-71 {
		right: -4.4375rem !important
	}

	.posmb-lg-71 {
		bottom: -4.4375rem !important
	}

	.posml-lg-71 {
		left: -4.4375rem !important
	}

	.pos-lg-72 {
		top: 4.5rem !important;
		bottom: 4.5rem !important
	}

	.pos-lg-72,
	.posx-lg-72 {
		right: 4.5rem !important;
		left: 4.5rem !important
	}

	.posy-lg-72 {
		bottom: 4.5rem !important
	}

	.post-lg-72,
	.posy-lg-72 {
		top: 4.5rem !important
	}

	.posr-lg-72 {
		right: 4.5rem !important
	}

	.posb-lg-72 {
		bottom: 4.5rem !important
	}

	.posl-lg-72 {
		left: 4.5rem !important
	}

	.posmt-lg-72 {
		top: -4.5rem !important
	}

	.posmr-lg-72 {
		right: -4.5rem !important
	}

	.posmb-lg-72 {
		bottom: -4.5rem !important
	}

	.posml-lg-72 {
		left: -4.5rem !important
	}

	.pos-lg-73 {
		top: 4.5625rem !important;
		bottom: 4.5625rem !important
	}

	.pos-lg-73,
	.posx-lg-73 {
		right: 4.5625rem !important;
		left: 4.5625rem !important
	}

	.posy-lg-73 {
		bottom: 4.5625rem !important
	}

	.post-lg-73,
	.posy-lg-73 {
		top: 4.5625rem !important
	}

	.posr-lg-73 {
		right: 4.5625rem !important
	}

	.posb-lg-73 {
		bottom: 4.5625rem !important
	}

	.posl-lg-73 {
		left: 4.5625rem !important
	}

	.posmt-lg-73 {
		top: -4.5625rem !important
	}

	.posmr-lg-73 {
		right: -4.5625rem !important
	}

	.posmb-lg-73 {
		bottom: -4.5625rem !important
	}

	.posml-lg-73 {
		left: -4.5625rem !important
	}

	.pos-lg-74 {
		top: 4.625rem !important;
		bottom: 4.625rem !important
	}

	.pos-lg-74,
	.posx-lg-74 {
		right: 4.625rem !important;
		left: 4.625rem !important
	}

	.posy-lg-74 {
		bottom: 4.625rem !important
	}

	.post-lg-74,
	.posy-lg-74 {
		top: 4.625rem !important
	}

	.posr-lg-74 {
		right: 4.625rem !important
	}

	.posb-lg-74 {
		bottom: 4.625rem !important
	}

	.posl-lg-74 {
		left: 4.625rem !important
	}

	.posmt-lg-74 {
		top: -4.625rem !important
	}

	.posmr-lg-74 {
		right: -4.625rem !important
	}

	.posmb-lg-74 {
		bottom: -4.625rem !important
	}

	.posml-lg-74 {
		left: -4.625rem !important
	}

	.pos-lg-75 {
		top: 4.6875rem !important;
		bottom: 4.6875rem !important
	}

	.pos-lg-75,
	.posx-lg-75 {
		right: 4.6875rem !important;
		left: 4.6875rem !important
	}

	.posy-lg-75 {
		bottom: 4.6875rem !important
	}

	.post-lg-75,
	.posy-lg-75 {
		top: 4.6875rem !important
	}

	.posr-lg-75 {
		right: 4.6875rem !important
	}

	.posb-lg-75 {
		bottom: 4.6875rem !important
	}

	.posl-lg-75 {
		left: 4.6875rem !important
	}

	.posmt-lg-75 {
		top: -4.6875rem !important
	}

	.posmr-lg-75 {
		right: -4.6875rem !important
	}

	.posmb-lg-75 {
		bottom: -4.6875rem !important
	}

	.posml-lg-75 {
		left: -4.6875rem !important
	}

	.pos-lg-76 {
		top: 4.75rem !important;
		bottom: 4.75rem !important
	}

	.pos-lg-76,
	.posx-lg-76 {
		right: 4.75rem !important;
		left: 4.75rem !important
	}

	.posy-lg-76 {
		bottom: 4.75rem !important
	}

	.post-lg-76,
	.posy-lg-76 {
		top: 4.75rem !important
	}

	.posr-lg-76 {
		right: 4.75rem !important
	}

	.posb-lg-76 {
		bottom: 4.75rem !important
	}

	.posl-lg-76 {
		left: 4.75rem !important
	}

	.posmt-lg-76 {
		top: -4.75rem !important
	}

	.posmr-lg-76 {
		right: -4.75rem !important
	}

	.posmb-lg-76 {
		bottom: -4.75rem !important
	}

	.posml-lg-76 {
		left: -4.75rem !important
	}

	.pos-lg-77 {
		top: 4.8125rem !important;
		bottom: 4.8125rem !important
	}

	.pos-lg-77,
	.posx-lg-77 {
		right: 4.8125rem !important;
		left: 4.8125rem !important
	}

	.posy-lg-77 {
		bottom: 4.8125rem !important
	}

	.post-lg-77,
	.posy-lg-77 {
		top: 4.8125rem !important
	}

	.posr-lg-77 {
		right: 4.8125rem !important
	}

	.posb-lg-77 {
		bottom: 4.8125rem !important
	}

	.posl-lg-77 {
		left: 4.8125rem !important
	}

	.posmt-lg-77 {
		top: -4.8125rem !important
	}

	.posmr-lg-77 {
		right: -4.8125rem !important
	}

	.posmb-lg-77 {
		bottom: -4.8125rem !important
	}

	.posml-lg-77 {
		left: -4.8125rem !important
	}

	.pos-lg-78 {
		top: 4.875rem !important;
		bottom: 4.875rem !important
	}

	.pos-lg-78,
	.posx-lg-78 {
		right: 4.875rem !important;
		left: 4.875rem !important
	}

	.posy-lg-78 {
		bottom: 4.875rem !important
	}

	.post-lg-78,
	.posy-lg-78 {
		top: 4.875rem !important
	}

	.posr-lg-78 {
		right: 4.875rem !important
	}

	.posb-lg-78 {
		bottom: 4.875rem !important
	}

	.posl-lg-78 {
		left: 4.875rem !important
	}

	.posmt-lg-78 {
		top: -4.875rem !important
	}

	.posmr-lg-78 {
		right: -4.875rem !important
	}

	.posmb-lg-78 {
		bottom: -4.875rem !important
	}

	.posml-lg-78 {
		left: -4.875rem !important
	}

	.pos-lg-79 {
		top: 4.9375rem !important;
		bottom: 4.9375rem !important
	}

	.pos-lg-79,
	.posx-lg-79 {
		right: 4.9375rem !important;
		left: 4.9375rem !important
	}

	.posy-lg-79 {
		bottom: 4.9375rem !important
	}

	.post-lg-79,
	.posy-lg-79 {
		top: 4.9375rem !important
	}

	.posr-lg-79 {
		right: 4.9375rem !important
	}

	.posb-lg-79 {
		bottom: 4.9375rem !important
	}

	.posl-lg-79 {
		left: 4.9375rem !important
	}

	.posmt-lg-79 {
		top: -4.9375rem !important
	}

	.posmr-lg-79 {
		right: -4.9375rem !important
	}

	.posmb-lg-79 {
		bottom: -4.9375rem !important
	}

	.posml-lg-79 {
		left: -4.9375rem !important
	}

	.pos-lg-80 {
		top: 5rem !important;
		bottom: 5rem !important
	}

	.pos-lg-80,
	.posx-lg-80 {
		right: 5rem !important;
		left: 5rem !important
	}

	.posy-lg-80 {
		bottom: 5rem !important
	}

	.post-lg-80,
	.posy-lg-80 {
		top: 5rem !important
	}

	.posr-lg-80 {
		right: 5rem !important
	}

	.posb-lg-80 {
		bottom: 5rem !important
	}

	.posl-lg-80 {
		left: 5rem !important
	}

	.posmt-lg-80 {
		top: -5rem !important
	}

	.posmr-lg-80 {
		right: -5rem !important
	}

	.posmb-lg-80 {
		bottom: -5rem !important
	}

	.posml-lg-80 {
		left: -5rem !important
	}

	.pos-lg-81 {
		top: 5.0625rem !important;
		bottom: 5.0625rem !important
	}

	.pos-lg-81,
	.posx-lg-81 {
		right: 5.0625rem !important;
		left: 5.0625rem !important
	}

	.posy-lg-81 {
		bottom: 5.0625rem !important
	}

	.post-lg-81,
	.posy-lg-81 {
		top: 5.0625rem !important
	}

	.posr-lg-81 {
		right: 5.0625rem !important
	}

	.posb-lg-81 {
		bottom: 5.0625rem !important
	}

	.posl-lg-81 {
		left: 5.0625rem !important
	}

	.posmt-lg-81 {
		top: -5.0625rem !important
	}

	.posmr-lg-81 {
		right: -5.0625rem !important
	}

	.posmb-lg-81 {
		bottom: -5.0625rem !important
	}

	.posml-lg-81 {
		left: -5.0625rem !important
	}

	.pos-lg-82 {
		top: 5.125rem !important;
		bottom: 5.125rem !important
	}

	.pos-lg-82,
	.posx-lg-82 {
		right: 5.125rem !important;
		left: 5.125rem !important
	}

	.posy-lg-82 {
		bottom: 5.125rem !important
	}

	.post-lg-82,
	.posy-lg-82 {
		top: 5.125rem !important
	}

	.posr-lg-82 {
		right: 5.125rem !important
	}

	.posb-lg-82 {
		bottom: 5.125rem !important
	}

	.posl-lg-82 {
		left: 5.125rem !important
	}

	.posmt-lg-82 {
		top: -5.125rem !important
	}

	.posmr-lg-82 {
		right: -5.125rem !important
	}

	.posmb-lg-82 {
		bottom: -5.125rem !important
	}

	.posml-lg-82 {
		left: -5.125rem !important
	}

	.pos-lg-83 {
		top: 5.1875rem !important;
		bottom: 5.1875rem !important
	}

	.pos-lg-83,
	.posx-lg-83 {
		right: 5.1875rem !important;
		left: 5.1875rem !important
	}

	.posy-lg-83 {
		bottom: 5.1875rem !important
	}

	.post-lg-83,
	.posy-lg-83 {
		top: 5.1875rem !important
	}

	.posr-lg-83 {
		right: 5.1875rem !important
	}

	.posb-lg-83 {
		bottom: 5.1875rem !important
	}

	.posl-lg-83 {
		left: 5.1875rem !important
	}

	.posmt-lg-83 {
		top: -5.1875rem !important
	}

	.posmr-lg-83 {
		right: -5.1875rem !important
	}

	.posmb-lg-83 {
		bottom: -5.1875rem !important
	}

	.posml-lg-83 {
		left: -5.1875rem !important
	}

	.pos-lg-84 {
		top: 5.25rem !important;
		bottom: 5.25rem !important
	}

	.pos-lg-84,
	.posx-lg-84 {
		right: 5.25rem !important;
		left: 5.25rem !important
	}

	.posy-lg-84 {
		bottom: 5.25rem !important
	}

	.post-lg-84,
	.posy-lg-84 {
		top: 5.25rem !important
	}

	.posr-lg-84 {
		right: 5.25rem !important
	}

	.posb-lg-84 {
		bottom: 5.25rem !important
	}

	.posl-lg-84 {
		left: 5.25rem !important
	}

	.posmt-lg-84 {
		top: -5.25rem !important
	}

	.posmr-lg-84 {
		right: -5.25rem !important
	}

	.posmb-lg-84 {
		bottom: -5.25rem !important
	}

	.posml-lg-84 {
		left: -5.25rem !important
	}

	.pos-lg-85 {
		top: 5.3125rem !important;
		bottom: 5.3125rem !important
	}

	.pos-lg-85,
	.posx-lg-85 {
		right: 5.3125rem !important;
		left: 5.3125rem !important
	}

	.posy-lg-85 {
		bottom: 5.3125rem !important
	}

	.post-lg-85,
	.posy-lg-85 {
		top: 5.3125rem !important
	}

	.posr-lg-85 {
		right: 5.3125rem !important
	}

	.posb-lg-85 {
		bottom: 5.3125rem !important
	}

	.posl-lg-85 {
		left: 5.3125rem !important
	}

	.posmt-lg-85 {
		top: -5.3125rem !important
	}

	.posmr-lg-85 {
		right: -5.3125rem !important
	}

	.posmb-lg-85 {
		bottom: -5.3125rem !important
	}

	.posml-lg-85 {
		left: -5.3125rem !important
	}

	.pos-lg-86 {
		top: 5.375rem !important;
		bottom: 5.375rem !important
	}

	.pos-lg-86,
	.posx-lg-86 {
		right: 5.375rem !important;
		left: 5.375rem !important
	}

	.posy-lg-86 {
		bottom: 5.375rem !important
	}

	.post-lg-86,
	.posy-lg-86 {
		top: 5.375rem !important
	}

	.posr-lg-86 {
		right: 5.375rem !important
	}

	.posb-lg-86 {
		bottom: 5.375rem !important
	}

	.posl-lg-86 {
		left: 5.375rem !important
	}

	.posmt-lg-86 {
		top: -5.375rem !important
	}

	.posmr-lg-86 {
		right: -5.375rem !important
	}

	.posmb-lg-86 {
		bottom: -5.375rem !important
	}

	.posml-lg-86 {
		left: -5.375rem !important
	}

	.pos-lg-87 {
		top: 5.4375rem !important;
		bottom: 5.4375rem !important
	}

	.pos-lg-87,
	.posx-lg-87 {
		right: 5.4375rem !important;
		left: 5.4375rem !important
	}

	.posy-lg-87 {
		bottom: 5.4375rem !important
	}

	.post-lg-87,
	.posy-lg-87 {
		top: 5.4375rem !important
	}

	.posr-lg-87 {
		right: 5.4375rem !important
	}

	.posb-lg-87 {
		bottom: 5.4375rem !important
	}

	.posl-lg-87 {
		left: 5.4375rem !important
	}

	.posmt-lg-87 {
		top: -5.4375rem !important
	}

	.posmr-lg-87 {
		right: -5.4375rem !important
	}

	.posmb-lg-87 {
		bottom: -5.4375rem !important
	}

	.posml-lg-87 {
		left: -5.4375rem !important
	}

	.pos-lg-88 {
		top: 5.5rem !important;
		bottom: 5.5rem !important
	}

	.pos-lg-88,
	.posx-lg-88 {
		right: 5.5rem !important;
		left: 5.5rem !important
	}

	.posy-lg-88 {
		bottom: 5.5rem !important
	}

	.post-lg-88,
	.posy-lg-88 {
		top: 5.5rem !important
	}

	.posr-lg-88 {
		right: 5.5rem !important
	}

	.posb-lg-88 {
		bottom: 5.5rem !important
	}

	.posl-lg-88 {
		left: 5.5rem !important
	}

	.posmt-lg-88 {
		top: -5.5rem !important
	}

	.posmr-lg-88 {
		right: -5.5rem !important
	}

	.posmb-lg-88 {
		bottom: -5.5rem !important
	}

	.posml-lg-88 {
		left: -5.5rem !important
	}

	.pos-lg-89 {
		top: 5.5625rem !important;
		bottom: 5.5625rem !important
	}

	.pos-lg-89,
	.posx-lg-89 {
		right: 5.5625rem !important;
		left: 5.5625rem !important
	}

	.posy-lg-89 {
		bottom: 5.5625rem !important
	}

	.post-lg-89,
	.posy-lg-89 {
		top: 5.5625rem !important
	}

	.posr-lg-89 {
		right: 5.5625rem !important
	}

	.posb-lg-89 {
		bottom: 5.5625rem !important
	}

	.posl-lg-89 {
		left: 5.5625rem !important
	}

	.posmt-lg-89 {
		top: -5.5625rem !important
	}

	.posmr-lg-89 {
		right: -5.5625rem !important
	}

	.posmb-lg-89 {
		bottom: -5.5625rem !important
	}

	.posml-lg-89 {
		left: -5.5625rem !important
	}

	.pos-lg-90 {
		top: 5.625rem !important;
		bottom: 5.625rem !important
	}

	.pos-lg-90,
	.posx-lg-90 {
		right: 5.625rem !important;
		left: 5.625rem !important
	}

	.posy-lg-90 {
		bottom: 5.625rem !important
	}

	.post-lg-90,
	.posy-lg-90 {
		top: 5.625rem !important
	}

	.posr-lg-90 {
		right: 5.625rem !important
	}

	.posb-lg-90 {
		bottom: 5.625rem !important
	}

	.posl-lg-90 {
		left: 5.625rem !important
	}

	.posmt-lg-90 {
		top: -5.625rem !important
	}

	.posmr-lg-90 {
		right: -5.625rem !important
	}

	.posmb-lg-90 {
		bottom: -5.625rem !important
	}

	.posml-lg-90 {
		left: -5.625rem !important
	}

	.pos-lg-91 {
		top: 5.6875rem !important;
		bottom: 5.6875rem !important
	}

	.pos-lg-91,
	.posx-lg-91 {
		right: 5.6875rem !important;
		left: 5.6875rem !important
	}

	.posy-lg-91 {
		bottom: 5.6875rem !important
	}

	.post-lg-91,
	.posy-lg-91 {
		top: 5.6875rem !important
	}

	.posr-lg-91 {
		right: 5.6875rem !important
	}

	.posb-lg-91 {
		bottom: 5.6875rem !important
	}

	.posl-lg-91 {
		left: 5.6875rem !important
	}

	.posmt-lg-91 {
		top: -5.6875rem !important
	}

	.posmr-lg-91 {
		right: -5.6875rem !important
	}

	.posmb-lg-91 {
		bottom: -5.6875rem !important
	}

	.posml-lg-91 {
		left: -5.6875rem !important
	}

	.pos-lg-92 {
		top: 5.75rem !important;
		bottom: 5.75rem !important
	}

	.pos-lg-92,
	.posx-lg-92 {
		right: 5.75rem !important;
		left: 5.75rem !important
	}

	.posy-lg-92 {
		bottom: 5.75rem !important
	}

	.post-lg-92,
	.posy-lg-92 {
		top: 5.75rem !important
	}

	.posr-lg-92 {
		right: 5.75rem !important
	}

	.posb-lg-92 {
		bottom: 5.75rem !important
	}

	.posl-lg-92 {
		left: 5.75rem !important
	}

	.posmt-lg-92 {
		top: -5.75rem !important
	}

	.posmr-lg-92 {
		right: -5.75rem !important
	}

	.posmb-lg-92 {
		bottom: -5.75rem !important
	}

	.posml-lg-92 {
		left: -5.75rem !important
	}

	.pos-lg-93 {
		top: 5.8125rem !important;
		bottom: 5.8125rem !important
	}

	.pos-lg-93,
	.posx-lg-93 {
		right: 5.8125rem !important;
		left: 5.8125rem !important
	}

	.posy-lg-93 {
		bottom: 5.8125rem !important
	}

	.post-lg-93,
	.posy-lg-93 {
		top: 5.8125rem !important
	}

	.posr-lg-93 {
		right: 5.8125rem !important
	}

	.posb-lg-93 {
		bottom: 5.8125rem !important
	}

	.posl-lg-93 {
		left: 5.8125rem !important
	}

	.posmt-lg-93 {
		top: -5.8125rem !important
	}

	.posmr-lg-93 {
		right: -5.8125rem !important
	}

	.posmb-lg-93 {
		bottom: -5.8125rem !important
	}

	.posml-lg-93 {
		left: -5.8125rem !important
	}

	.pos-lg-94 {
		top: 5.875rem !important;
		bottom: 5.875rem !important
	}

	.pos-lg-94,
	.posx-lg-94 {
		right: 5.875rem !important;
		left: 5.875rem !important
	}

	.posy-lg-94 {
		bottom: 5.875rem !important
	}

	.post-lg-94,
	.posy-lg-94 {
		top: 5.875rem !important
	}

	.posr-lg-94 {
		right: 5.875rem !important
	}

	.posb-lg-94 {
		bottom: 5.875rem !important
	}

	.posl-lg-94 {
		left: 5.875rem !important
	}

	.posmt-lg-94 {
		top: -5.875rem !important
	}

	.posmr-lg-94 {
		right: -5.875rem !important
	}

	.posmb-lg-94 {
		bottom: -5.875rem !important
	}

	.posml-lg-94 {
		left: -5.875rem !important
	}

	.pos-lg-95 {
		top: 5.9375rem !important;
		bottom: 5.9375rem !important
	}

	.pos-lg-95,
	.posx-lg-95 {
		right: 5.9375rem !important;
		left: 5.9375rem !important
	}

	.posy-lg-95 {
		bottom: 5.9375rem !important
	}

	.post-lg-95,
	.posy-lg-95 {
		top: 5.9375rem !important
	}

	.posr-lg-95 {
		right: 5.9375rem !important
	}

	.posb-lg-95 {
		bottom: 5.9375rem !important
	}

	.posl-lg-95 {
		left: 5.9375rem !important
	}

	.posmt-lg-95 {
		top: -5.9375rem !important
	}

	.posmr-lg-95 {
		right: -5.9375rem !important
	}

	.posmb-lg-95 {
		bottom: -5.9375rem !important
	}

	.posml-lg-95 {
		left: -5.9375rem !important
	}

	.pos-lg-96 {
		top: 6rem !important;
		bottom: 6rem !important
	}

	.pos-lg-96,
	.posx-lg-96 {
		right: 6rem !important;
		left: 6rem !important
	}

	.posy-lg-96 {
		bottom: 6rem !important
	}

	.post-lg-96,
	.posy-lg-96 {
		top: 6rem !important
	}

	.posr-lg-96 {
		right: 6rem !important
	}

	.posb-lg-96 {
		bottom: 6rem !important
	}

	.posl-lg-96 {
		left: 6rem !important
	}

	.posmt-lg-96 {
		top: -6rem !important
	}

	.posmr-lg-96 {
		right: -6rem !important
	}

	.posmb-lg-96 {
		bottom: -6rem !important
	}

	.posml-lg-96 {
		left: -6rem !important
	}

	.pos-lg-97 {
		top: 6.0625rem !important;
		bottom: 6.0625rem !important
	}

	.pos-lg-97,
	.posx-lg-97 {
		right: 6.0625rem !important;
		left: 6.0625rem !important
	}

	.posy-lg-97 {
		bottom: 6.0625rem !important
	}

	.post-lg-97,
	.posy-lg-97 {
		top: 6.0625rem !important
	}

	.posr-lg-97 {
		right: 6.0625rem !important
	}

	.posb-lg-97 {
		bottom: 6.0625rem !important
	}

	.posl-lg-97 {
		left: 6.0625rem !important
	}

	.posmt-lg-97 {
		top: -6.0625rem !important
	}

	.posmr-lg-97 {
		right: -6.0625rem !important
	}

	.posmb-lg-97 {
		bottom: -6.0625rem !important
	}

	.posml-lg-97 {
		left: -6.0625rem !important
	}

	.pos-lg-98 {
		top: 6.125rem !important;
		bottom: 6.125rem !important
	}

	.pos-lg-98,
	.posx-lg-98 {
		right: 6.125rem !important;
		left: 6.125rem !important
	}

	.posy-lg-98 {
		bottom: 6.125rem !important
	}

	.post-lg-98,
	.posy-lg-98 {
		top: 6.125rem !important
	}

	.posr-lg-98 {
		right: 6.125rem !important
	}

	.posb-lg-98 {
		bottom: 6.125rem !important
	}

	.posl-lg-98 {
		left: 6.125rem !important
	}

	.posmt-lg-98 {
		top: -6.125rem !important
	}

	.posmr-lg-98 {
		right: -6.125rem !important
	}

	.posmb-lg-98 {
		bottom: -6.125rem !important
	}

	.posml-lg-98 {
		left: -6.125rem !important
	}

	.pos-lg-99 {
		top: 6.1875rem !important;
		bottom: 6.1875rem !important
	}

	.pos-lg-99,
	.posx-lg-99 {
		right: 6.1875rem !important;
		left: 6.1875rem !important
	}

	.posy-lg-99 {
		bottom: 6.1875rem !important
	}

	.post-lg-99,
	.posy-lg-99 {
		top: 6.1875rem !important
	}

	.posr-lg-99 {
		right: 6.1875rem !important
	}

	.posb-lg-99 {
		bottom: 6.1875rem !important
	}

	.posl-lg-99 {
		left: 6.1875rem !important
	}

	.posmt-lg-99 {
		top: -6.1875rem !important
	}

	.posmr-lg-99 {
		right: -6.1875rem !important
	}

	.posmb-lg-99 {
		bottom: -6.1875rem !important
	}

	.posml-lg-99 {
		left: -6.1875rem !important
	}

	.pos-lg-100 {
		top: 6.25rem !important;
		bottom: 6.25rem !important
	}

	.pos-lg-100,
	.posx-lg-100 {
		right: 6.25rem !important;
		left: 6.25rem !important
	}

	.posy-lg-100 {
		bottom: 6.25rem !important
	}

	.post-lg-100,
	.posy-lg-100 {
		top: 6.25rem !important
	}

	.posr-lg-100 {
		right: 6.25rem !important
	}

	.posb-lg-100 {
		bottom: 6.25rem !important
	}

	.posl-lg-100 {
		left: 6.25rem !important
	}

	.posmt-lg-100 {
		top: -6.25rem !important
	}

	.posmr-lg-100 {
		right: -6.25rem !important
	}

	.posmb-lg-100 {
		bottom: -6.25rem !important
	}

	.posml-lg-100 {
		left: -6.25rem !important
	}

	.pos-lg-101 {
		top: 6.3125rem !important;
		bottom: 6.3125rem !important
	}

	.pos-lg-101,
	.posx-lg-101 {
		right: 6.3125rem !important;
		left: 6.3125rem !important
	}

	.posy-lg-101 {
		bottom: 6.3125rem !important
	}

	.post-lg-101,
	.posy-lg-101 {
		top: 6.3125rem !important
	}

	.posr-lg-101 {
		right: 6.3125rem !important
	}

	.posb-lg-101 {
		bottom: 6.3125rem !important
	}

	.posl-lg-101 {
		left: 6.3125rem !important
	}

	.posmt-lg-101 {
		top: -6.3125rem !important
	}

	.posmr-lg-101 {
		right: -6.3125rem !important
	}

	.posmb-lg-101 {
		bottom: -6.3125rem !important
	}

	.posml-lg-101 {
		left: -6.3125rem !important
	}

	.pos-lg-102 {
		top: 6.375rem !important;
		bottom: 6.375rem !important
	}

	.pos-lg-102,
	.posx-lg-102 {
		right: 6.375rem !important;
		left: 6.375rem !important
	}

	.posy-lg-102 {
		bottom: 6.375rem !important
	}

	.post-lg-102,
	.posy-lg-102 {
		top: 6.375rem !important
	}

	.posr-lg-102 {
		right: 6.375rem !important
	}

	.posb-lg-102 {
		bottom: 6.375rem !important
	}

	.posl-lg-102 {
		left: 6.375rem !important
	}

	.posmt-lg-102 {
		top: -6.375rem !important
	}

	.posmr-lg-102 {
		right: -6.375rem !important
	}

	.posmb-lg-102 {
		bottom: -6.375rem !important
	}

	.posml-lg-102 {
		left: -6.375rem !important
	}

	.pos-lg-103 {
		top: 6.4375rem !important;
		bottom: 6.4375rem !important
	}

	.pos-lg-103,
	.posx-lg-103 {
		right: 6.4375rem !important;
		left: 6.4375rem !important
	}

	.posy-lg-103 {
		bottom: 6.4375rem !important
	}

	.post-lg-103,
	.posy-lg-103 {
		top: 6.4375rem !important
	}

	.posr-lg-103 {
		right: 6.4375rem !important
	}

	.posb-lg-103 {
		bottom: 6.4375rem !important
	}

	.posl-lg-103 {
		left: 6.4375rem !important
	}

	.posmt-lg-103 {
		top: -6.4375rem !important
	}

	.posmr-lg-103 {
		right: -6.4375rem !important
	}

	.posmb-lg-103 {
		bottom: -6.4375rem !important
	}

	.posml-lg-103 {
		left: -6.4375rem !important
	}

	.pos-lg-104 {
		top: 6.5rem !important;
		bottom: 6.5rem !important
	}

	.pos-lg-104,
	.posx-lg-104 {
		right: 6.5rem !important;
		left: 6.5rem !important
	}

	.posy-lg-104 {
		bottom: 6.5rem !important
	}

	.post-lg-104,
	.posy-lg-104 {
		top: 6.5rem !important
	}

	.posr-lg-104 {
		right: 6.5rem !important
	}

	.posb-lg-104 {
		bottom: 6.5rem !important
	}

	.posl-lg-104 {
		left: 6.5rem !important
	}

	.posmt-lg-104 {
		top: -6.5rem !important
	}

	.posmr-lg-104 {
		right: -6.5rem !important
	}

	.posmb-lg-104 {
		bottom: -6.5rem !important
	}

	.posml-lg-104 {
		left: -6.5rem !important
	}

	.pos-lg-105 {
		top: 6.5625rem !important;
		bottom: 6.5625rem !important
	}

	.pos-lg-105,
	.posx-lg-105 {
		right: 6.5625rem !important;
		left: 6.5625rem !important
	}

	.posy-lg-105 {
		bottom: 6.5625rem !important
	}

	.post-lg-105,
	.posy-lg-105 {
		top: 6.5625rem !important
	}

	.posr-lg-105 {
		right: 6.5625rem !important
	}

	.posb-lg-105 {
		bottom: 6.5625rem !important
	}

	.posl-lg-105 {
		left: 6.5625rem !important
	}

	.posmt-lg-105 {
		top: -6.5625rem !important
	}

	.posmr-lg-105 {
		right: -6.5625rem !important
	}

	.posmb-lg-105 {
		bottom: -6.5625rem !important
	}

	.posml-lg-105 {
		left: -6.5625rem !important
	}

	.pos-lg-106 {
		top: 6.625rem !important;
		bottom: 6.625rem !important
	}

	.pos-lg-106,
	.posx-lg-106 {
		right: 6.625rem !important;
		left: 6.625rem !important
	}

	.posy-lg-106 {
		bottom: 6.625rem !important
	}

	.post-lg-106,
	.posy-lg-106 {
		top: 6.625rem !important
	}

	.posr-lg-106 {
		right: 6.625rem !important
	}

	.posb-lg-106 {
		bottom: 6.625rem !important
	}

	.posl-lg-106 {
		left: 6.625rem !important
	}

	.posmt-lg-106 {
		top: -6.625rem !important
	}

	.posmr-lg-106 {
		right: -6.625rem !important
	}

	.posmb-lg-106 {
		bottom: -6.625rem !important
	}

	.posml-lg-106 {
		left: -6.625rem !important
	}

	.pos-lg-107 {
		top: 6.6875rem !important;
		bottom: 6.6875rem !important
	}

	.pos-lg-107,
	.posx-lg-107 {
		right: 6.6875rem !important;
		left: 6.6875rem !important
	}

	.posy-lg-107 {
		bottom: 6.6875rem !important
	}

	.post-lg-107,
	.posy-lg-107 {
		top: 6.6875rem !important
	}

	.posr-lg-107 {
		right: 6.6875rem !important
	}

	.posb-lg-107 {
		bottom: 6.6875rem !important
	}

	.posl-lg-107 {
		left: 6.6875rem !important
	}

	.posmt-lg-107 {
		top: -6.6875rem !important
	}

	.posmr-lg-107 {
		right: -6.6875rem !important
	}

	.posmb-lg-107 {
		bottom: -6.6875rem !important
	}

	.posml-lg-107 {
		left: -6.6875rem !important
	}

	.pos-lg-108 {
		top: 6.75rem !important;
		bottom: 6.75rem !important
	}

	.pos-lg-108,
	.posx-lg-108 {
		right: 6.75rem !important;
		left: 6.75rem !important
	}

	.posy-lg-108 {
		bottom: 6.75rem !important
	}

	.post-lg-108,
	.posy-lg-108 {
		top: 6.75rem !important
	}

	.posr-lg-108 {
		right: 6.75rem !important
	}

	.posb-lg-108 {
		bottom: 6.75rem !important
	}

	.posl-lg-108 {
		left: 6.75rem !important
	}

	.posmt-lg-108 {
		top: -6.75rem !important
	}

	.posmr-lg-108 {
		right: -6.75rem !important
	}

	.posmb-lg-108 {
		bottom: -6.75rem !important
	}

	.posml-lg-108 {
		left: -6.75rem !important
	}

	.pos-lg-109 {
		top: 6.8125rem !important;
		bottom: 6.8125rem !important
	}

	.pos-lg-109,
	.posx-lg-109 {
		right: 6.8125rem !important;
		left: 6.8125rem !important
	}

	.posy-lg-109 {
		bottom: 6.8125rem !important
	}

	.post-lg-109,
	.posy-lg-109 {
		top: 6.8125rem !important
	}

	.posr-lg-109 {
		right: 6.8125rem !important
	}

	.posb-lg-109 {
		bottom: 6.8125rem !important
	}

	.posl-lg-109 {
		left: 6.8125rem !important
	}

	.posmt-lg-109 {
		top: -6.8125rem !important
	}

	.posmr-lg-109 {
		right: -6.8125rem !important
	}

	.posmb-lg-109 {
		bottom: -6.8125rem !important
	}

	.posml-lg-109 {
		left: -6.8125rem !important
	}

	.pos-lg-110 {
		top: 6.875rem !important;
		bottom: 6.875rem !important
	}

	.pos-lg-110,
	.posx-lg-110 {
		right: 6.875rem !important;
		left: 6.875rem !important
	}

	.posy-lg-110 {
		bottom: 6.875rem !important
	}

	.post-lg-110,
	.posy-lg-110 {
		top: 6.875rem !important
	}

	.posr-lg-110 {
		right: 6.875rem !important
	}

	.posb-lg-110 {
		bottom: 6.875rem !important
	}

	.posl-lg-110 {
		left: 6.875rem !important
	}

	.posmt-lg-110 {
		top: -6.875rem !important
	}

	.posmr-lg-110 {
		right: -6.875rem !important
	}

	.posmb-lg-110 {
		bottom: -6.875rem !important
	}

	.posml-lg-110 {
		left: -6.875rem !important
	}

	.pos-lg-111 {
		top: 6.9375rem !important;
		bottom: 6.9375rem !important
	}

	.pos-lg-111,
	.posx-lg-111 {
		right: 6.9375rem !important;
		left: 6.9375rem !important
	}

	.posy-lg-111 {
		bottom: 6.9375rem !important
	}

	.post-lg-111,
	.posy-lg-111 {
		top: 6.9375rem !important
	}

	.posr-lg-111 {
		right: 6.9375rem !important
	}

	.posb-lg-111 {
		bottom: 6.9375rem !important
	}

	.posl-lg-111 {
		left: 6.9375rem !important
	}

	.posmt-lg-111 {
		top: -6.9375rem !important
	}

	.posmr-lg-111 {
		right: -6.9375rem !important
	}

	.posmb-lg-111 {
		bottom: -6.9375rem !important
	}

	.posml-lg-111 {
		left: -6.9375rem !important
	}

	.pos-lg-112 {
		top: 7rem !important;
		bottom: 7rem !important
	}

	.pos-lg-112,
	.posx-lg-112 {
		right: 7rem !important;
		left: 7rem !important
	}

	.posy-lg-112 {
		bottom: 7rem !important
	}

	.post-lg-112,
	.posy-lg-112 {
		top: 7rem !important
	}

	.posr-lg-112 {
		right: 7rem !important
	}

	.posb-lg-112 {
		bottom: 7rem !important
	}

	.posl-lg-112 {
		left: 7rem !important
	}

	.posmt-lg-112 {
		top: -7rem !important
	}

	.posmr-lg-112 {
		right: -7rem !important
	}

	.posmb-lg-112 {
		bottom: -7rem !important
	}

	.posml-lg-112 {
		left: -7rem !important
	}

	.pos-lg-113 {
		top: 7.0625rem !important;
		bottom: 7.0625rem !important
	}

	.pos-lg-113,
	.posx-lg-113 {
		right: 7.0625rem !important;
		left: 7.0625rem !important
	}

	.posy-lg-113 {
		bottom: 7.0625rem !important
	}

	.post-lg-113,
	.posy-lg-113 {
		top: 7.0625rem !important
	}

	.posr-lg-113 {
		right: 7.0625rem !important
	}

	.posb-lg-113 {
		bottom: 7.0625rem !important
	}

	.posl-lg-113 {
		left: 7.0625rem !important
	}

	.posmt-lg-113 {
		top: -7.0625rem !important
	}

	.posmr-lg-113 {
		right: -7.0625rem !important
	}

	.posmb-lg-113 {
		bottom: -7.0625rem !important
	}

	.posml-lg-113 {
		left: -7.0625rem !important
	}

	.pos-lg-114 {
		top: 7.125rem !important;
		bottom: 7.125rem !important
	}

	.pos-lg-114,
	.posx-lg-114 {
		right: 7.125rem !important;
		left: 7.125rem !important
	}

	.posy-lg-114 {
		bottom: 7.125rem !important
	}

	.post-lg-114,
	.posy-lg-114 {
		top: 7.125rem !important
	}

	.posr-lg-114 {
		right: 7.125rem !important
	}

	.posb-lg-114 {
		bottom: 7.125rem !important
	}

	.posl-lg-114 {
		left: 7.125rem !important
	}

	.posmt-lg-114 {
		top: -7.125rem !important
	}

	.posmr-lg-114 {
		right: -7.125rem !important
	}

	.posmb-lg-114 {
		bottom: -7.125rem !important
	}

	.posml-lg-114 {
		left: -7.125rem !important
	}

	.pos-lg-115 {
		top: 7.1875rem !important;
		bottom: 7.1875rem !important
	}

	.pos-lg-115,
	.posx-lg-115 {
		right: 7.1875rem !important;
		left: 7.1875rem !important
	}

	.posy-lg-115 {
		bottom: 7.1875rem !important
	}

	.post-lg-115,
	.posy-lg-115 {
		top: 7.1875rem !important
	}

	.posr-lg-115 {
		right: 7.1875rem !important
	}

	.posb-lg-115 {
		bottom: 7.1875rem !important
	}

	.posl-lg-115 {
		left: 7.1875rem !important
	}

	.posmt-lg-115 {
		top: -7.1875rem !important
	}

	.posmr-lg-115 {
		right: -7.1875rem !important
	}

	.posmb-lg-115 {
		bottom: -7.1875rem !important
	}

	.posml-lg-115 {
		left: -7.1875rem !important
	}

	.pos-lg-116 {
		top: 7.25rem !important;
		bottom: 7.25rem !important
	}

	.pos-lg-116,
	.posx-lg-116 {
		right: 7.25rem !important;
		left: 7.25rem !important
	}

	.posy-lg-116 {
		bottom: 7.25rem !important
	}

	.post-lg-116,
	.posy-lg-116 {
		top: 7.25rem !important
	}

	.posr-lg-116 {
		right: 7.25rem !important
	}

	.posb-lg-116 {
		bottom: 7.25rem !important
	}

	.posl-lg-116 {
		left: 7.25rem !important
	}

	.posmt-lg-116 {
		top: -7.25rem !important
	}

	.posmr-lg-116 {
		right: -7.25rem !important
	}

	.posmb-lg-116 {
		bottom: -7.25rem !important
	}

	.posml-lg-116 {
		left: -7.25rem !important
	}

	.pos-lg-117 {
		top: 7.3125rem !important;
		bottom: 7.3125rem !important
	}

	.pos-lg-117,
	.posx-lg-117 {
		right: 7.3125rem !important;
		left: 7.3125rem !important
	}

	.posy-lg-117 {
		bottom: 7.3125rem !important
	}

	.post-lg-117,
	.posy-lg-117 {
		top: 7.3125rem !important
	}

	.posr-lg-117 {
		right: 7.3125rem !important
	}

	.posb-lg-117 {
		bottom: 7.3125rem !important
	}

	.posl-lg-117 {
		left: 7.3125rem !important
	}

	.posmt-lg-117 {
		top: -7.3125rem !important
	}

	.posmr-lg-117 {
		right: -7.3125rem !important
	}

	.posmb-lg-117 {
		bottom: -7.3125rem !important
	}

	.posml-lg-117 {
		left: -7.3125rem !important
	}

	.pos-lg-118 {
		top: 7.375rem !important;
		bottom: 7.375rem !important
	}

	.pos-lg-118,
	.posx-lg-118 {
		right: 7.375rem !important;
		left: 7.375rem !important
	}

	.posy-lg-118 {
		bottom: 7.375rem !important
	}

	.post-lg-118,
	.posy-lg-118 {
		top: 7.375rem !important
	}

	.posr-lg-118 {
		right: 7.375rem !important
	}

	.posb-lg-118 {
		bottom: 7.375rem !important
	}

	.posl-lg-118 {
		left: 7.375rem !important
	}

	.posmt-lg-118 {
		top: -7.375rem !important
	}

	.posmr-lg-118 {
		right: -7.375rem !important
	}

	.posmb-lg-118 {
		bottom: -7.375rem !important
	}

	.posml-lg-118 {
		left: -7.375rem !important
	}

	.pos-lg-119 {
		top: 7.4375rem !important;
		bottom: 7.4375rem !important
	}

	.pos-lg-119,
	.posx-lg-119 {
		right: 7.4375rem !important;
		left: 7.4375rem !important
	}

	.posy-lg-119 {
		bottom: 7.4375rem !important
	}

	.post-lg-119,
	.posy-lg-119 {
		top: 7.4375rem !important
	}

	.posr-lg-119 {
		right: 7.4375rem !important
	}

	.posb-lg-119 {
		bottom: 7.4375rem !important
	}

	.posl-lg-119 {
		left: 7.4375rem !important
	}

	.posmt-lg-119 {
		top: -7.4375rem !important
	}

	.posmr-lg-119 {
		right: -7.4375rem !important
	}

	.posmb-lg-119 {
		bottom: -7.4375rem !important
	}

	.posml-lg-119 {
		left: -7.4375rem !important
	}

	.pos-lg-120 {
		top: 7.5rem !important;
		bottom: 7.5rem !important
	}

	.pos-lg-120,
	.posx-lg-120 {
		right: 7.5rem !important;
		left: 7.5rem !important
	}

	.posy-lg-120 {
		bottom: 7.5rem !important
	}

	.post-lg-120,
	.posy-lg-120 {
		top: 7.5rem !important
	}

	.posr-lg-120 {
		right: 7.5rem !important
	}

	.posb-lg-120 {
		bottom: 7.5rem !important
	}

	.posl-lg-120 {
		left: 7.5rem !important
	}

	.posmt-lg-120 {
		top: -7.5rem !important
	}

	.posmr-lg-120 {
		right: -7.5rem !important
	}

	.posmb-lg-120 {
		bottom: -7.5rem !important
	}

	.posml-lg-120 {
		left: -7.5rem !important
	}

	.pos-lg-121 {
		top: 7.5625rem !important;
		bottom: 7.5625rem !important
	}

	.pos-lg-121,
	.posx-lg-121 {
		right: 7.5625rem !important;
		left: 7.5625rem !important
	}

	.posy-lg-121 {
		bottom: 7.5625rem !important
	}

	.post-lg-121,
	.posy-lg-121 {
		top: 7.5625rem !important
	}

	.posr-lg-121 {
		right: 7.5625rem !important
	}

	.posb-lg-121 {
		bottom: 7.5625rem !important
	}

	.posl-lg-121 {
		left: 7.5625rem !important
	}

	.posmt-lg-121 {
		top: -7.5625rem !important
	}

	.posmr-lg-121 {
		right: -7.5625rem !important
	}

	.posmb-lg-121 {
		bottom: -7.5625rem !important
	}

	.posml-lg-121 {
		left: -7.5625rem !important
	}

	.pos-lg-122 {
		top: 7.625rem !important;
		bottom: 7.625rem !important
	}

	.pos-lg-122,
	.posx-lg-122 {
		right: 7.625rem !important;
		left: 7.625rem !important
	}

	.posy-lg-122 {
		bottom: 7.625rem !important
	}

	.post-lg-122,
	.posy-lg-122 {
		top: 7.625rem !important
	}

	.posr-lg-122 {
		right: 7.625rem !important
	}

	.posb-lg-122 {
		bottom: 7.625rem !important
	}

	.posl-lg-122 {
		left: 7.625rem !important
	}

	.posmt-lg-122 {
		top: -7.625rem !important
	}

	.posmr-lg-122 {
		right: -7.625rem !important
	}

	.posmb-lg-122 {
		bottom: -7.625rem !important
	}

	.posml-lg-122 {
		left: -7.625rem !important
	}

	.pos-lg-123 {
		top: 7.6875rem !important;
		bottom: 7.6875rem !important
	}

	.pos-lg-123,
	.posx-lg-123 {
		right: 7.6875rem !important;
		left: 7.6875rem !important
	}

	.posy-lg-123 {
		bottom: 7.6875rem !important
	}

	.post-lg-123,
	.posy-lg-123 {
		top: 7.6875rem !important
	}

	.posr-lg-123 {
		right: 7.6875rem !important
	}

	.posb-lg-123 {
		bottom: 7.6875rem !important
	}

	.posl-lg-123 {
		left: 7.6875rem !important
	}

	.posmt-lg-123 {
		top: -7.6875rem !important
	}

	.posmr-lg-123 {
		right: -7.6875rem !important
	}

	.posmb-lg-123 {
		bottom: -7.6875rem !important
	}

	.posml-lg-123 {
		left: -7.6875rem !important
	}

	.pos-lg-124 {
		top: 7.75rem !important;
		bottom: 7.75rem !important
	}

	.pos-lg-124,
	.posx-lg-124 {
		right: 7.75rem !important;
		left: 7.75rem !important
	}

	.posy-lg-124 {
		bottom: 7.75rem !important
	}

	.post-lg-124,
	.posy-lg-124 {
		top: 7.75rem !important
	}

	.posr-lg-124 {
		right: 7.75rem !important
	}

	.posb-lg-124 {
		bottom: 7.75rem !important
	}

	.posl-lg-124 {
		left: 7.75rem !important
	}

	.posmt-lg-124 {
		top: -7.75rem !important
	}

	.posmr-lg-124 {
		right: -7.75rem !important
	}

	.posmb-lg-124 {
		bottom: -7.75rem !important
	}

	.posml-lg-124 {
		left: -7.75rem !important
	}

	.pos-lg-125 {
		top: 7.8125rem !important;
		bottom: 7.8125rem !important
	}

	.pos-lg-125,
	.posx-lg-125 {
		right: 7.8125rem !important;
		left: 7.8125rem !important
	}

	.posy-lg-125 {
		bottom: 7.8125rem !important
	}

	.post-lg-125,
	.posy-lg-125 {
		top: 7.8125rem !important
	}

	.posr-lg-125 {
		right: 7.8125rem !important
	}

	.posb-lg-125 {
		bottom: 7.8125rem !important
	}

	.posl-lg-125 {
		left: 7.8125rem !important
	}

	.posmt-lg-125 {
		top: -7.8125rem !important
	}

	.posmr-lg-125 {
		right: -7.8125rem !important
	}

	.posmb-lg-125 {
		bottom: -7.8125rem !important
	}

	.posml-lg-125 {
		left: -7.8125rem !important
	}

	.pos-lg-126 {
		top: 7.875rem !important;
		bottom: 7.875rem !important
	}

	.pos-lg-126,
	.posx-lg-126 {
		right: 7.875rem !important;
		left: 7.875rem !important
	}

	.posy-lg-126 {
		bottom: 7.875rem !important
	}

	.post-lg-126,
	.posy-lg-126 {
		top: 7.875rem !important
	}

	.posr-lg-126 {
		right: 7.875rem !important
	}

	.posb-lg-126 {
		bottom: 7.875rem !important
	}

	.posl-lg-126 {
		left: 7.875rem !important
	}

	.posmt-lg-126 {
		top: -7.875rem !important
	}

	.posmr-lg-126 {
		right: -7.875rem !important
	}

	.posmb-lg-126 {
		bottom: -7.875rem !important
	}

	.posml-lg-126 {
		left: -7.875rem !important
	}

	.pos-lg-127 {
		top: 7.9375rem !important;
		bottom: 7.9375rem !important
	}

	.pos-lg-127,
	.posx-lg-127 {
		right: 7.9375rem !important;
		left: 7.9375rem !important
	}

	.posy-lg-127 {
		bottom: 7.9375rem !important
	}

	.post-lg-127,
	.posy-lg-127 {
		top: 7.9375rem !important
	}

	.posr-lg-127 {
		right: 7.9375rem !important
	}

	.posb-lg-127 {
		bottom: 7.9375rem !important
	}

	.posl-lg-127 {
		left: 7.9375rem !important
	}

	.posmt-lg-127 {
		top: -7.9375rem !important
	}

	.posmr-lg-127 {
		right: -7.9375rem !important
	}

	.posmb-lg-127 {
		bottom: -7.9375rem !important
	}

	.posml-lg-127 {
		left: -7.9375rem !important
	}

	.pos-lg-128 {
		top: 8rem !important;
		bottom: 8rem !important
	}

	.pos-lg-128,
	.posx-lg-128 {
		right: 8rem !important;
		left: 8rem !important
	}

	.posy-lg-128 {
		bottom: 8rem !important
	}

	.post-lg-128,
	.posy-lg-128 {
		top: 8rem !important
	}

	.posr-lg-128 {
		right: 8rem !important
	}

	.posb-lg-128 {
		bottom: 8rem !important
	}

	.posl-lg-128 {
		left: 8rem !important
	}

	.posmt-lg-128 {
		top: -8rem !important
	}

	.posmr-lg-128 {
		right: -8rem !important
	}

	.posmb-lg-128 {
		bottom: -8rem !important
	}

	.posml-lg-128 {
		left: -8rem !important
	}

	.pos-lg-129 {
		top: 8.0625rem !important;
		bottom: 8.0625rem !important
	}

	.pos-lg-129,
	.posx-lg-129 {
		right: 8.0625rem !important;
		left: 8.0625rem !important
	}

	.posy-lg-129 {
		bottom: 8.0625rem !important
	}

	.post-lg-129,
	.posy-lg-129 {
		top: 8.0625rem !important
	}

	.posr-lg-129 {
		right: 8.0625rem !important
	}

	.posb-lg-129 {
		bottom: 8.0625rem !important
	}

	.posl-lg-129 {
		left: 8.0625rem !important
	}

	.posmt-lg-129 {
		top: -8.0625rem !important
	}

	.posmr-lg-129 {
		right: -8.0625rem !important
	}

	.posmb-lg-129 {
		bottom: -8.0625rem !important
	}

	.posml-lg-129 {
		left: -8.0625rem !important
	}

	.pos-lg-130 {
		top: 8.125rem !important;
		bottom: 8.125rem !important
	}

	.pos-lg-130,
	.posx-lg-130 {
		right: 8.125rem !important;
		left: 8.125rem !important
	}

	.posy-lg-130 {
		bottom: 8.125rem !important
	}

	.post-lg-130,
	.posy-lg-130 {
		top: 8.125rem !important
	}

	.posr-lg-130 {
		right: 8.125rem !important
	}

	.posb-lg-130 {
		bottom: 8.125rem !important
	}

	.posl-lg-130 {
		left: 8.125rem !important
	}

	.posmt-lg-130 {
		top: -8.125rem !important
	}

	.posmr-lg-130 {
		right: -8.125rem !important
	}

	.posmb-lg-130 {
		bottom: -8.125rem !important
	}

	.posml-lg-130 {
		left: -8.125rem !important
	}

	.pos-lg-131 {
		top: 8.1875rem !important;
		bottom: 8.1875rem !important
	}

	.pos-lg-131,
	.posx-lg-131 {
		right: 8.1875rem !important;
		left: 8.1875rem !important
	}

	.posy-lg-131 {
		bottom: 8.1875rem !important
	}

	.post-lg-131,
	.posy-lg-131 {
		top: 8.1875rem !important
	}

	.posr-lg-131 {
		right: 8.1875rem !important
	}

	.posb-lg-131 {
		bottom: 8.1875rem !important
	}

	.posl-lg-131 {
		left: 8.1875rem !important
	}

	.posmt-lg-131 {
		top: -8.1875rem !important
	}

	.posmr-lg-131 {
		right: -8.1875rem !important
	}

	.posmb-lg-131 {
		bottom: -8.1875rem !important
	}

	.posml-lg-131 {
		left: -8.1875rem !important
	}

	.pos-lg-132 {
		top: 8.25rem !important;
		bottom: 8.25rem !important
	}

	.pos-lg-132,
	.posx-lg-132 {
		right: 8.25rem !important;
		left: 8.25rem !important
	}

	.posy-lg-132 {
		bottom: 8.25rem !important
	}

	.post-lg-132,
	.posy-lg-132 {
		top: 8.25rem !important
	}

	.posr-lg-132 {
		right: 8.25rem !important
	}

	.posb-lg-132 {
		bottom: 8.25rem !important
	}

	.posl-lg-132 {
		left: 8.25rem !important
	}

	.posmt-lg-132 {
		top: -8.25rem !important
	}

	.posmr-lg-132 {
		right: -8.25rem !important
	}

	.posmb-lg-132 {
		bottom: -8.25rem !important
	}

	.posml-lg-132 {
		left: -8.25rem !important
	}

	.pos-lg-133 {
		top: 8.3125rem !important;
		bottom: 8.3125rem !important
	}

	.pos-lg-133,
	.posx-lg-133 {
		right: 8.3125rem !important;
		left: 8.3125rem !important
	}

	.posy-lg-133 {
		bottom: 8.3125rem !important
	}

	.post-lg-133,
	.posy-lg-133 {
		top: 8.3125rem !important
	}

	.posr-lg-133 {
		right: 8.3125rem !important
	}

	.posb-lg-133 {
		bottom: 8.3125rem !important
	}

	.posl-lg-133 {
		left: 8.3125rem !important
	}

	.posmt-lg-133 {
		top: -8.3125rem !important
	}

	.posmr-lg-133 {
		right: -8.3125rem !important
	}

	.posmb-lg-133 {
		bottom: -8.3125rem !important
	}

	.posml-lg-133 {
		left: -8.3125rem !important
	}

	.pos-lg-134 {
		top: 8.375rem !important;
		bottom: 8.375rem !important
	}

	.pos-lg-134,
	.posx-lg-134 {
		right: 8.375rem !important;
		left: 8.375rem !important
	}

	.posy-lg-134 {
		bottom: 8.375rem !important
	}

	.post-lg-134,
	.posy-lg-134 {
		top: 8.375rem !important
	}

	.posr-lg-134 {
		right: 8.375rem !important
	}

	.posb-lg-134 {
		bottom: 8.375rem !important
	}

	.posl-lg-134 {
		left: 8.375rem !important
	}

	.posmt-lg-134 {
		top: -8.375rem !important
	}

	.posmr-lg-134 {
		right: -8.375rem !important
	}

	.posmb-lg-134 {
		bottom: -8.375rem !important
	}

	.posml-lg-134 {
		left: -8.375rem !important
	}

	.pos-lg-135 {
		top: 8.4375rem !important;
		bottom: 8.4375rem !important
	}

	.pos-lg-135,
	.posx-lg-135 {
		right: 8.4375rem !important;
		left: 8.4375rem !important
	}

	.posy-lg-135 {
		bottom: 8.4375rem !important
	}

	.post-lg-135,
	.posy-lg-135 {
		top: 8.4375rem !important
	}

	.posr-lg-135 {
		right: 8.4375rem !important
	}

	.posb-lg-135 {
		bottom: 8.4375rem !important
	}

	.posl-lg-135 {
		left: 8.4375rem !important
	}

	.posmt-lg-135 {
		top: -8.4375rem !important
	}

	.posmr-lg-135 {
		right: -8.4375rem !important
	}

	.posmb-lg-135 {
		bottom: -8.4375rem !important
	}

	.posml-lg-135 {
		left: -8.4375rem !important
	}

	.pos-lg-136 {
		top: 8.5rem !important;
		bottom: 8.5rem !important
	}

	.pos-lg-136,
	.posx-lg-136 {
		right: 8.5rem !important;
		left: 8.5rem !important
	}

	.posy-lg-136 {
		bottom: 8.5rem !important
	}

	.post-lg-136,
	.posy-lg-136 {
		top: 8.5rem !important
	}

	.posr-lg-136 {
		right: 8.5rem !important
	}

	.posb-lg-136 {
		bottom: 8.5rem !important
	}

	.posl-lg-136 {
		left: 8.5rem !important
	}

	.posmt-lg-136 {
		top: -8.5rem !important
	}

	.posmr-lg-136 {
		right: -8.5rem !important
	}

	.posmb-lg-136 {
		bottom: -8.5rem !important
	}

	.posml-lg-136 {
		left: -8.5rem !important
	}

	.pos-lg-137 {
		top: 8.5625rem !important;
		bottom: 8.5625rem !important
	}

	.pos-lg-137,
	.posx-lg-137 {
		right: 8.5625rem !important;
		left: 8.5625rem !important
	}

	.posy-lg-137 {
		bottom: 8.5625rem !important
	}

	.post-lg-137,
	.posy-lg-137 {
		top: 8.5625rem !important
	}

	.posr-lg-137 {
		right: 8.5625rem !important
	}

	.posb-lg-137 {
		bottom: 8.5625rem !important
	}

	.posl-lg-137 {
		left: 8.5625rem !important
	}

	.posmt-lg-137 {
		top: -8.5625rem !important
	}

	.posmr-lg-137 {
		right: -8.5625rem !important
	}

	.posmb-lg-137 {
		bottom: -8.5625rem !important
	}

	.posml-lg-137 {
		left: -8.5625rem !important
	}

	.pos-lg-138 {
		top: 8.625rem !important;
		bottom: 8.625rem !important
	}

	.pos-lg-138,
	.posx-lg-138 {
		right: 8.625rem !important;
		left: 8.625rem !important
	}

	.posy-lg-138 {
		bottom: 8.625rem !important
	}

	.post-lg-138,
	.posy-lg-138 {
		top: 8.625rem !important
	}

	.posr-lg-138 {
		right: 8.625rem !important
	}

	.posb-lg-138 {
		bottom: 8.625rem !important
	}

	.posl-lg-138 {
		left: 8.625rem !important
	}

	.posmt-lg-138 {
		top: -8.625rem !important
	}

	.posmr-lg-138 {
		right: -8.625rem !important
	}

	.posmb-lg-138 {
		bottom: -8.625rem !important
	}

	.posml-lg-138 {
		left: -8.625rem !important
	}

	.pos-lg-139 {
		top: 8.6875rem !important;
		bottom: 8.6875rem !important
	}

	.pos-lg-139,
	.posx-lg-139 {
		right: 8.6875rem !important;
		left: 8.6875rem !important
	}

	.posy-lg-139 {
		bottom: 8.6875rem !important
	}

	.post-lg-139,
	.posy-lg-139 {
		top: 8.6875rem !important
	}

	.posr-lg-139 {
		right: 8.6875rem !important
	}

	.posb-lg-139 {
		bottom: 8.6875rem !important
	}

	.posl-lg-139 {
		left: 8.6875rem !important
	}

	.posmt-lg-139 {
		top: -8.6875rem !important
	}

	.posmr-lg-139 {
		right: -8.6875rem !important
	}

	.posmb-lg-139 {
		bottom: -8.6875rem !important
	}

	.posml-lg-139 {
		left: -8.6875rem !important
	}

	.pos-lg-140 {
		top: 8.75rem !important;
		bottom: 8.75rem !important
	}

	.pos-lg-140,
	.posx-lg-140 {
		right: 8.75rem !important;
		left: 8.75rem !important
	}

	.posy-lg-140 {
		bottom: 8.75rem !important
	}

	.post-lg-140,
	.posy-lg-140 {
		top: 8.75rem !important
	}

	.posr-lg-140 {
		right: 8.75rem !important
	}

	.posb-lg-140 {
		bottom: 8.75rem !important
	}

	.posl-lg-140 {
		left: 8.75rem !important
	}

	.posmt-lg-140 {
		top: -8.75rem !important
	}

	.posmr-lg-140 {
		right: -8.75rem !important
	}

	.posmb-lg-140 {
		bottom: -8.75rem !important
	}

	.posml-lg-140 {
		left: -8.75rem !important
	}

	.pos-lg-141 {
		top: 8.8125rem !important;
		bottom: 8.8125rem !important
	}

	.pos-lg-141,
	.posx-lg-141 {
		right: 8.8125rem !important;
		left: 8.8125rem !important
	}

	.posy-lg-141 {
		bottom: 8.8125rem !important
	}

	.post-lg-141,
	.posy-lg-141 {
		top: 8.8125rem !important
	}

	.posr-lg-141 {
		right: 8.8125rem !important
	}

	.posb-lg-141 {
		bottom: 8.8125rem !important
	}

	.posl-lg-141 {
		left: 8.8125rem !important
	}

	.posmt-lg-141 {
		top: -8.8125rem !important
	}

	.posmr-lg-141 {
		right: -8.8125rem !important
	}

	.posmb-lg-141 {
		bottom: -8.8125rem !important
	}

	.posml-lg-141 {
		left: -8.8125rem !important
	}

	.pos-lg-142 {
		top: 8.875rem !important;
		bottom: 8.875rem !important
	}

	.pos-lg-142,
	.posx-lg-142 {
		right: 8.875rem !important;
		left: 8.875rem !important
	}

	.posy-lg-142 {
		bottom: 8.875rem !important
	}

	.post-lg-142,
	.posy-lg-142 {
		top: 8.875rem !important
	}

	.posr-lg-142 {
		right: 8.875rem !important
	}

	.posb-lg-142 {
		bottom: 8.875rem !important
	}

	.posl-lg-142 {
		left: 8.875rem !important
	}

	.posmt-lg-142 {
		top: -8.875rem !important
	}

	.posmr-lg-142 {
		right: -8.875rem !important
	}

	.posmb-lg-142 {
		bottom: -8.875rem !important
	}

	.posml-lg-142 {
		left: -8.875rem !important
	}

	.pos-lg-143 {
		top: 8.9375rem !important;
		bottom: 8.9375rem !important
	}

	.pos-lg-143,
	.posx-lg-143 {
		right: 8.9375rem !important;
		left: 8.9375rem !important
	}

	.posy-lg-143 {
		bottom: 8.9375rem !important
	}

	.post-lg-143,
	.posy-lg-143 {
		top: 8.9375rem !important
	}

	.posr-lg-143 {
		right: 8.9375rem !important
	}

	.posb-lg-143 {
		bottom: 8.9375rem !important
	}

	.posl-lg-143 {
		left: 8.9375rem !important
	}

	.posmt-lg-143 {
		top: -8.9375rem !important
	}

	.posmr-lg-143 {
		right: -8.9375rem !important
	}

	.posmb-lg-143 {
		bottom: -8.9375rem !important
	}

	.posml-lg-143 {
		left: -8.9375rem !important
	}

	.pos-lg-144 {
		top: 9rem !important;
		bottom: 9rem !important
	}

	.pos-lg-144,
	.posx-lg-144 {
		right: 9rem !important;
		left: 9rem !important
	}

	.posy-lg-144 {
		bottom: 9rem !important
	}

	.post-lg-144,
	.posy-lg-144 {
		top: 9rem !important
	}

	.posr-lg-144 {
		right: 9rem !important
	}

	.posb-lg-144 {
		bottom: 9rem !important
	}

	.posl-lg-144 {
		left: 9rem !important
	}

	.posmt-lg-144 {
		top: -9rem !important
	}

	.posmr-lg-144 {
		right: -9rem !important
	}

	.posmb-lg-144 {
		bottom: -9rem !important
	}

	.posml-lg-144 {
		left: -9rem !important
	}

	.pos-lg-145 {
		top: 9.0625rem !important;
		bottom: 9.0625rem !important
	}

	.pos-lg-145,
	.posx-lg-145 {
		right: 9.0625rem !important;
		left: 9.0625rem !important
	}

	.posy-lg-145 {
		bottom: 9.0625rem !important
	}

	.post-lg-145,
	.posy-lg-145 {
		top: 9.0625rem !important
	}

	.posr-lg-145 {
		right: 9.0625rem !important
	}

	.posb-lg-145 {
		bottom: 9.0625rem !important
	}

	.posl-lg-145 {
		left: 9.0625rem !important
	}

	.posmt-lg-145 {
		top: -9.0625rem !important
	}

	.posmr-lg-145 {
		right: -9.0625rem !important
	}

	.posmb-lg-145 {
		bottom: -9.0625rem !important
	}

	.posml-lg-145 {
		left: -9.0625rem !important
	}

	.pos-lg-146 {
		top: 9.125rem !important;
		bottom: 9.125rem !important
	}

	.pos-lg-146,
	.posx-lg-146 {
		right: 9.125rem !important;
		left: 9.125rem !important
	}

	.posy-lg-146 {
		bottom: 9.125rem !important
	}

	.post-lg-146,
	.posy-lg-146 {
		top: 9.125rem !important
	}

	.posr-lg-146 {
		right: 9.125rem !important
	}

	.posb-lg-146 {
		bottom: 9.125rem !important
	}

	.posl-lg-146 {
		left: 9.125rem !important
	}

	.posmt-lg-146 {
		top: -9.125rem !important
	}

	.posmr-lg-146 {
		right: -9.125rem !important
	}

	.posmb-lg-146 {
		bottom: -9.125rem !important
	}

	.posml-lg-146 {
		left: -9.125rem !important
	}

	.pos-lg-147 {
		top: 9.1875rem !important;
		bottom: 9.1875rem !important
	}

	.pos-lg-147,
	.posx-lg-147 {
		right: 9.1875rem !important;
		left: 9.1875rem !important
	}

	.posy-lg-147 {
		bottom: 9.1875rem !important
	}

	.post-lg-147,
	.posy-lg-147 {
		top: 9.1875rem !important
	}

	.posr-lg-147 {
		right: 9.1875rem !important
	}

	.posb-lg-147 {
		bottom: 9.1875rem !important
	}

	.posl-lg-147 {
		left: 9.1875rem !important
	}

	.posmt-lg-147 {
		top: -9.1875rem !important
	}

	.posmr-lg-147 {
		right: -9.1875rem !important
	}

	.posmb-lg-147 {
		bottom: -9.1875rem !important
	}

	.posml-lg-147 {
		left: -9.1875rem !important
	}

	.pos-lg-148 {
		top: 9.25rem !important;
		bottom: 9.25rem !important
	}

	.pos-lg-148,
	.posx-lg-148 {
		right: 9.25rem !important;
		left: 9.25rem !important
	}

	.posy-lg-148 {
		bottom: 9.25rem !important
	}

	.post-lg-148,
	.posy-lg-148 {
		top: 9.25rem !important
	}

	.posr-lg-148 {
		right: 9.25rem !important
	}

	.posb-lg-148 {
		bottom: 9.25rem !important
	}

	.posl-lg-148 {
		left: 9.25rem !important
	}

	.posmt-lg-148 {
		top: -9.25rem !important
	}

	.posmr-lg-148 {
		right: -9.25rem !important
	}

	.posmb-lg-148 {
		bottom: -9.25rem !important
	}

	.posml-lg-148 {
		left: -9.25rem !important
	}

	.pos-lg-149 {
		top: 9.3125rem !important;
		bottom: 9.3125rem !important
	}

	.pos-lg-149,
	.posx-lg-149 {
		right: 9.3125rem !important;
		left: 9.3125rem !important
	}

	.posy-lg-149 {
		bottom: 9.3125rem !important
	}

	.post-lg-149,
	.posy-lg-149 {
		top: 9.3125rem !important
	}

	.posr-lg-149 {
		right: 9.3125rem !important
	}

	.posb-lg-149 {
		bottom: 9.3125rem !important
	}

	.posl-lg-149 {
		left: 9.3125rem !important
	}

	.posmt-lg-149 {
		top: -9.3125rem !important
	}

	.posmr-lg-149 {
		right: -9.3125rem !important
	}

	.posmb-lg-149 {
		bottom: -9.3125rem !important
	}

	.posml-lg-149 {
		left: -9.3125rem !important
	}

	.pos-lg-150 {
		top: 9.375rem !important;
		bottom: 9.375rem !important
	}

	.pos-lg-150,
	.posx-lg-150 {
		right: 9.375rem !important;
		left: 9.375rem !important
	}

	.posy-lg-150 {
		bottom: 9.375rem !important
	}

	.post-lg-150,
	.posy-lg-150 {
		top: 9.375rem !important
	}

	.posr-lg-150 {
		right: 9.375rem !important
	}

	.posb-lg-150 {
		bottom: 9.375rem !important
	}

	.posl-lg-150 {
		left: 9.375rem !important
	}

	.posmt-lg-150 {
		top: -9.375rem !important
	}

	.posmr-lg-150 {
		right: -9.375rem !important
	}

	.posmb-lg-150 {
		bottom: -9.375rem !important
	}

	.posml-lg-150 {
		left: -9.375rem !important
	}

	.pos-lg-151 {
		top: 9.4375rem !important;
		bottom: 9.4375rem !important
	}

	.pos-lg-151,
	.posx-lg-151 {
		right: 9.4375rem !important;
		left: 9.4375rem !important
	}

	.posy-lg-151 {
		bottom: 9.4375rem !important
	}

	.post-lg-151,
	.posy-lg-151 {
		top: 9.4375rem !important
	}

	.posr-lg-151 {
		right: 9.4375rem !important
	}

	.posb-lg-151 {
		bottom: 9.4375rem !important
	}

	.posl-lg-151 {
		left: 9.4375rem !important
	}

	.posmt-lg-151 {
		top: -9.4375rem !important
	}

	.posmr-lg-151 {
		right: -9.4375rem !important
	}

	.posmb-lg-151 {
		bottom: -9.4375rem !important
	}

	.posml-lg-151 {
		left: -9.4375rem !important
	}

	.pos-lg-152 {
		top: 9.5rem !important;
		bottom: 9.5rem !important
	}

	.pos-lg-152,
	.posx-lg-152 {
		right: 9.5rem !important;
		left: 9.5rem !important
	}

	.posy-lg-152 {
		bottom: 9.5rem !important
	}

	.post-lg-152,
	.posy-lg-152 {
		top: 9.5rem !important
	}

	.posr-lg-152 {
		right: 9.5rem !important
	}

	.posb-lg-152 {
		bottom: 9.5rem !important
	}

	.posl-lg-152 {
		left: 9.5rem !important
	}

	.posmt-lg-152 {
		top: -9.5rem !important
	}

	.posmr-lg-152 {
		right: -9.5rem !important
	}

	.posmb-lg-152 {
		bottom: -9.5rem !important
	}

	.posml-lg-152 {
		left: -9.5rem !important
	}

	.pos-lg-153 {
		top: 9.5625rem !important;
		bottom: 9.5625rem !important
	}

	.pos-lg-153,
	.posx-lg-153 {
		right: 9.5625rem !important;
		left: 9.5625rem !important
	}

	.posy-lg-153 {
		bottom: 9.5625rem !important
	}

	.post-lg-153,
	.posy-lg-153 {
		top: 9.5625rem !important
	}

	.posr-lg-153 {
		right: 9.5625rem !important
	}

	.posb-lg-153 {
		bottom: 9.5625rem !important
	}

	.posl-lg-153 {
		left: 9.5625rem !important
	}

	.posmt-lg-153 {
		top: -9.5625rem !important
	}

	.posmr-lg-153 {
		right: -9.5625rem !important
	}

	.posmb-lg-153 {
		bottom: -9.5625rem !important
	}

	.posml-lg-153 {
		left: -9.5625rem !important
	}

	.pos-lg-154 {
		top: 9.625rem !important;
		bottom: 9.625rem !important
	}

	.pos-lg-154,
	.posx-lg-154 {
		right: 9.625rem !important;
		left: 9.625rem !important
	}

	.posy-lg-154 {
		bottom: 9.625rem !important
	}

	.post-lg-154,
	.posy-lg-154 {
		top: 9.625rem !important
	}

	.posr-lg-154 {
		right: 9.625rem !important
	}

	.posb-lg-154 {
		bottom: 9.625rem !important
	}

	.posl-lg-154 {
		left: 9.625rem !important
	}

	.posmt-lg-154 {
		top: -9.625rem !important
	}

	.posmr-lg-154 {
		right: -9.625rem !important
	}

	.posmb-lg-154 {
		bottom: -9.625rem !important
	}

	.posml-lg-154 {
		left: -9.625rem !important
	}

	.pos-lg-155 {
		top: 9.6875rem !important;
		bottom: 9.6875rem !important
	}

	.pos-lg-155,
	.posx-lg-155 {
		right: 9.6875rem !important;
		left: 9.6875rem !important
	}

	.posy-lg-155 {
		bottom: 9.6875rem !important
	}

	.post-lg-155,
	.posy-lg-155 {
		top: 9.6875rem !important
	}

	.posr-lg-155 {
		right: 9.6875rem !important
	}

	.posb-lg-155 {
		bottom: 9.6875rem !important
	}

	.posl-lg-155 {
		left: 9.6875rem !important
	}

	.posmt-lg-155 {
		top: -9.6875rem !important
	}

	.posmr-lg-155 {
		right: -9.6875rem !important
	}

	.posmb-lg-155 {
		bottom: -9.6875rem !important
	}

	.posml-lg-155 {
		left: -9.6875rem !important
	}

	.pos-lg-156 {
		top: 9.75rem !important;
		bottom: 9.75rem !important
	}

	.pos-lg-156,
	.posx-lg-156 {
		right: 9.75rem !important;
		left: 9.75rem !important
	}

	.posy-lg-156 {
		bottom: 9.75rem !important
	}

	.post-lg-156,
	.posy-lg-156 {
		top: 9.75rem !important
	}

	.posr-lg-156 {
		right: 9.75rem !important
	}

	.posb-lg-156 {
		bottom: 9.75rem !important
	}

	.posl-lg-156 {
		left: 9.75rem !important
	}

	.posmt-lg-156 {
		top: -9.75rem !important
	}

	.posmr-lg-156 {
		right: -9.75rem !important
	}

	.posmb-lg-156 {
		bottom: -9.75rem !important
	}

	.posml-lg-156 {
		left: -9.75rem !important
	}

	.pos-lg-157 {
		top: 9.8125rem !important;
		bottom: 9.8125rem !important
	}

	.pos-lg-157,
	.posx-lg-157 {
		right: 9.8125rem !important;
		left: 9.8125rem !important
	}

	.posy-lg-157 {
		bottom: 9.8125rem !important
	}

	.post-lg-157,
	.posy-lg-157 {
		top: 9.8125rem !important
	}

	.posr-lg-157 {
		right: 9.8125rem !important
	}

	.posb-lg-157 {
		bottom: 9.8125rem !important
	}

	.posl-lg-157 {
		left: 9.8125rem !important
	}

	.posmt-lg-157 {
		top: -9.8125rem !important
	}

	.posmr-lg-157 {
		right: -9.8125rem !important
	}

	.posmb-lg-157 {
		bottom: -9.8125rem !important
	}

	.posml-lg-157 {
		left: -9.8125rem !important
	}

	.pos-lg-158 {
		top: 9.875rem !important;
		bottom: 9.875rem !important
	}

	.pos-lg-158,
	.posx-lg-158 {
		right: 9.875rem !important;
		left: 9.875rem !important
	}

	.posy-lg-158 {
		bottom: 9.875rem !important
	}

	.post-lg-158,
	.posy-lg-158 {
		top: 9.875rem !important
	}

	.posr-lg-158 {
		right: 9.875rem !important
	}

	.posb-lg-158 {
		bottom: 9.875rem !important
	}

	.posl-lg-158 {
		left: 9.875rem !important
	}

	.posmt-lg-158 {
		top: -9.875rem !important
	}

	.posmr-lg-158 {
		right: -9.875rem !important
	}

	.posmb-lg-158 {
		bottom: -9.875rem !important
	}

	.posml-lg-158 {
		left: -9.875rem !important
	}

	.pos-lg-159 {
		top: 9.9375rem !important;
		bottom: 9.9375rem !important
	}

	.pos-lg-159,
	.posx-lg-159 {
		right: 9.9375rem !important;
		left: 9.9375rem !important
	}

	.posy-lg-159 {
		bottom: 9.9375rem !important
	}

	.post-lg-159,
	.posy-lg-159 {
		top: 9.9375rem !important
	}

	.posr-lg-159 {
		right: 9.9375rem !important
	}

	.posb-lg-159 {
		bottom: 9.9375rem !important
	}

	.posl-lg-159 {
		left: 9.9375rem !important
	}

	.posmt-lg-159 {
		top: -9.9375rem !important
	}

	.posmr-lg-159 {
		right: -9.9375rem !important
	}

	.posmb-lg-159 {
		bottom: -9.9375rem !important
	}

	.posml-lg-159 {
		left: -9.9375rem !important
	}

	.pos-lg-160 {
		top: 10rem !important;
		bottom: 10rem !important
	}

	.pos-lg-160,
	.posx-lg-160 {
		right: 10rem !important;
		left: 10rem !important
	}

	.posy-lg-160 {
		bottom: 10rem !important
	}

	.post-lg-160,
	.posy-lg-160 {
		top: 10rem !important
	}

	.posr-lg-160 {
		right: 10rem !important
	}

	.posb-lg-160 {
		bottom: 10rem !important
	}

	.posl-lg-160 {
		left: 10rem !important
	}

	.posmt-lg-160 {
		top: -10rem !important
	}

	.posmr-lg-160 {
		right: -10rem !important
	}

	.posmb-lg-160 {
		bottom: -10rem !important
	}

	.posml-lg-160 {
		left: -10rem !important
	}

	.pos-lg-161 {
		top: 10.0625rem !important;
		bottom: 10.0625rem !important
	}

	.pos-lg-161,
	.posx-lg-161 {
		right: 10.0625rem !important;
		left: 10.0625rem !important
	}

	.posy-lg-161 {
		bottom: 10.0625rem !important
	}

	.post-lg-161,
	.posy-lg-161 {
		top: 10.0625rem !important
	}

	.posr-lg-161 {
		right: 10.0625rem !important
	}

	.posb-lg-161 {
		bottom: 10.0625rem !important
	}

	.posl-lg-161 {
		left: 10.0625rem !important
	}

	.posmt-lg-161 {
		top: -10.0625rem !important
	}

	.posmr-lg-161 {
		right: -10.0625rem !important
	}

	.posmb-lg-161 {
		bottom: -10.0625rem !important
	}

	.posml-lg-161 {
		left: -10.0625rem !important
	}

	.pos-lg-162 {
		top: 10.125rem !important;
		bottom: 10.125rem !important
	}

	.pos-lg-162,
	.posx-lg-162 {
		right: 10.125rem !important;
		left: 10.125rem !important
	}

	.posy-lg-162 {
		bottom: 10.125rem !important
	}

	.post-lg-162,
	.posy-lg-162 {
		top: 10.125rem !important
	}

	.posr-lg-162 {
		right: 10.125rem !important
	}

	.posb-lg-162 {
		bottom: 10.125rem !important
	}

	.posl-lg-162 {
		left: 10.125rem !important
	}

	.posmt-lg-162 {
		top: -10.125rem !important
	}

	.posmr-lg-162 {
		right: -10.125rem !important
	}

	.posmb-lg-162 {
		bottom: -10.125rem !important
	}

	.posml-lg-162 {
		left: -10.125rem !important
	}

	.pos-lg-163 {
		top: 10.1875rem !important;
		bottom: 10.1875rem !important
	}

	.pos-lg-163,
	.posx-lg-163 {
		right: 10.1875rem !important;
		left: 10.1875rem !important
	}

	.posy-lg-163 {
		bottom: 10.1875rem !important
	}

	.post-lg-163,
	.posy-lg-163 {
		top: 10.1875rem !important
	}

	.posr-lg-163 {
		right: 10.1875rem !important
	}

	.posb-lg-163 {
		bottom: 10.1875rem !important
	}

	.posl-lg-163 {
		left: 10.1875rem !important
	}

	.posmt-lg-163 {
		top: -10.1875rem !important
	}

	.posmr-lg-163 {
		right: -10.1875rem !important
	}

	.posmb-lg-163 {
		bottom: -10.1875rem !important
	}

	.posml-lg-163 {
		left: -10.1875rem !important
	}

	.pos-lg-164 {
		top: 10.25rem !important;
		bottom: 10.25rem !important
	}

	.pos-lg-164,
	.posx-lg-164 {
		right: 10.25rem !important;
		left: 10.25rem !important
	}

	.posy-lg-164 {
		bottom: 10.25rem !important
	}

	.post-lg-164,
	.posy-lg-164 {
		top: 10.25rem !important
	}

	.posr-lg-164 {
		right: 10.25rem !important
	}

	.posb-lg-164 {
		bottom: 10.25rem !important
	}

	.posl-lg-164 {
		left: 10.25rem !important
	}

	.posmt-lg-164 {
		top: -10.25rem !important
	}

	.posmr-lg-164 {
		right: -10.25rem !important
	}

	.posmb-lg-164 {
		bottom: -10.25rem !important
	}

	.posml-lg-164 {
		left: -10.25rem !important
	}

	.pos-lg-165 {
		top: 10.3125rem !important;
		bottom: 10.3125rem !important
	}

	.pos-lg-165,
	.posx-lg-165 {
		right: 10.3125rem !important;
		left: 10.3125rem !important
	}

	.posy-lg-165 {
		bottom: 10.3125rem !important
	}

	.post-lg-165,
	.posy-lg-165 {
		top: 10.3125rem !important
	}

	.posr-lg-165 {
		right: 10.3125rem !important
	}

	.posb-lg-165 {
		bottom: 10.3125rem !important
	}

	.posl-lg-165 {
		left: 10.3125rem !important
	}

	.posmt-lg-165 {
		top: -10.3125rem !important
	}

	.posmr-lg-165 {
		right: -10.3125rem !important
	}

	.posmb-lg-165 {
		bottom: -10.3125rem !important
	}

	.posml-lg-165 {
		left: -10.3125rem !important
	}

	.pos-lg-166 {
		top: 10.375rem !important;
		bottom: 10.375rem !important
	}

	.pos-lg-166,
	.posx-lg-166 {
		right: 10.375rem !important;
		left: 10.375rem !important
	}

	.posy-lg-166 {
		bottom: 10.375rem !important
	}

	.post-lg-166,
	.posy-lg-166 {
		top: 10.375rem !important
	}

	.posr-lg-166 {
		right: 10.375rem !important
	}

	.posb-lg-166 {
		bottom: 10.375rem !important
	}

	.posl-lg-166 {
		left: 10.375rem !important
	}

	.posmt-lg-166 {
		top: -10.375rem !important
	}

	.posmr-lg-166 {
		right: -10.375rem !important
	}

	.posmb-lg-166 {
		bottom: -10.375rem !important
	}

	.posml-lg-166 {
		left: -10.375rem !important
	}

	.pos-lg-167 {
		top: 10.4375rem !important;
		bottom: 10.4375rem !important
	}

	.pos-lg-167,
	.posx-lg-167 {
		right: 10.4375rem !important;
		left: 10.4375rem !important
	}

	.posy-lg-167 {
		bottom: 10.4375rem !important
	}

	.post-lg-167,
	.posy-lg-167 {
		top: 10.4375rem !important
	}

	.posr-lg-167 {
		right: 10.4375rem !important
	}

	.posb-lg-167 {
		bottom: 10.4375rem !important
	}

	.posl-lg-167 {
		left: 10.4375rem !important
	}

	.posmt-lg-167 {
		top: -10.4375rem !important
	}

	.posmr-lg-167 {
		right: -10.4375rem !important
	}

	.posmb-lg-167 {
		bottom: -10.4375rem !important
	}

	.posml-lg-167 {
		left: -10.4375rem !important
	}

	.pos-lg-168 {
		top: 10.5rem !important;
		bottom: 10.5rem !important
	}

	.pos-lg-168,
	.posx-lg-168 {
		right: 10.5rem !important;
		left: 10.5rem !important
	}

	.posy-lg-168 {
		bottom: 10.5rem !important
	}

	.post-lg-168,
	.posy-lg-168 {
		top: 10.5rem !important
	}

	.posr-lg-168 {
		right: 10.5rem !important
	}

	.posb-lg-168 {
		bottom: 10.5rem !important
	}

	.posl-lg-168 {
		left: 10.5rem !important
	}

	.posmt-lg-168 {
		top: -10.5rem !important
	}

	.posmr-lg-168 {
		right: -10.5rem !important
	}

	.posmb-lg-168 {
		bottom: -10.5rem !important
	}

	.posml-lg-168 {
		left: -10.5rem !important
	}

	.pos-lg-169 {
		top: 10.5625rem !important;
		bottom: 10.5625rem !important
	}

	.pos-lg-169,
	.posx-lg-169 {
		right: 10.5625rem !important;
		left: 10.5625rem !important
	}

	.posy-lg-169 {
		bottom: 10.5625rem !important
	}

	.post-lg-169,
	.posy-lg-169 {
		top: 10.5625rem !important
	}

	.posr-lg-169 {
		right: 10.5625rem !important
	}

	.posb-lg-169 {
		bottom: 10.5625rem !important
	}

	.posl-lg-169 {
		left: 10.5625rem !important
	}

	.posmt-lg-169 {
		top: -10.5625rem !important
	}

	.posmr-lg-169 {
		right: -10.5625rem !important
	}

	.posmb-lg-169 {
		bottom: -10.5625rem !important
	}

	.posml-lg-169 {
		left: -10.5625rem !important
	}

	.pos-lg-170 {
		top: 10.625rem !important;
		bottom: 10.625rem !important
	}

	.pos-lg-170,
	.posx-lg-170 {
		right: 10.625rem !important;
		left: 10.625rem !important
	}

	.posy-lg-170 {
		bottom: 10.625rem !important
	}

	.post-lg-170,
	.posy-lg-170 {
		top: 10.625rem !important
	}

	.posr-lg-170 {
		right: 10.625rem !important
	}

	.posb-lg-170 {
		bottom: 10.625rem !important
	}

	.posl-lg-170 {
		left: 10.625rem !important
	}

	.posmt-lg-170 {
		top: -10.625rem !important
	}

	.posmr-lg-170 {
		right: -10.625rem !important
	}

	.posmb-lg-170 {
		bottom: -10.625rem !important
	}

	.posml-lg-170 {
		left: -10.625rem !important
	}

	.pos-lg-171 {
		top: 10.6875rem !important;
		bottom: 10.6875rem !important
	}

	.pos-lg-171,
	.posx-lg-171 {
		right: 10.6875rem !important;
		left: 10.6875rem !important
	}

	.posy-lg-171 {
		bottom: 10.6875rem !important
	}

	.post-lg-171,
	.posy-lg-171 {
		top: 10.6875rem !important
	}

	.posr-lg-171 {
		right: 10.6875rem !important
	}

	.posb-lg-171 {
		bottom: 10.6875rem !important
	}

	.posl-lg-171 {
		left: 10.6875rem !important
	}

	.posmt-lg-171 {
		top: -10.6875rem !important
	}

	.posmr-lg-171 {
		right: -10.6875rem !important
	}

	.posmb-lg-171 {
		bottom: -10.6875rem !important
	}

	.posml-lg-171 {
		left: -10.6875rem !important
	}

	.pos-lg-172 {
		top: 10.75rem !important;
		bottom: 10.75rem !important
	}

	.pos-lg-172,
	.posx-lg-172 {
		right: 10.75rem !important;
		left: 10.75rem !important
	}

	.posy-lg-172 {
		bottom: 10.75rem !important
	}

	.post-lg-172,
	.posy-lg-172 {
		top: 10.75rem !important
	}

	.posr-lg-172 {
		right: 10.75rem !important
	}

	.posb-lg-172 {
		bottom: 10.75rem !important
	}

	.posl-lg-172 {
		left: 10.75rem !important
	}

	.posmt-lg-172 {
		top: -10.75rem !important
	}

	.posmr-lg-172 {
		right: -10.75rem !important
	}

	.posmb-lg-172 {
		bottom: -10.75rem !important
	}

	.posml-lg-172 {
		left: -10.75rem !important
	}

	.pos-lg-173 {
		top: 10.8125rem !important;
		bottom: 10.8125rem !important
	}

	.pos-lg-173,
	.posx-lg-173 {
		right: 10.8125rem !important;
		left: 10.8125rem !important
	}

	.posy-lg-173 {
		bottom: 10.8125rem !important
	}

	.post-lg-173,
	.posy-lg-173 {
		top: 10.8125rem !important
	}

	.posr-lg-173 {
		right: 10.8125rem !important
	}

	.posb-lg-173 {
		bottom: 10.8125rem !important
	}

	.posl-lg-173 {
		left: 10.8125rem !important
	}

	.posmt-lg-173 {
		top: -10.8125rem !important
	}

	.posmr-lg-173 {
		right: -10.8125rem !important
	}

	.posmb-lg-173 {
		bottom: -10.8125rem !important
	}

	.posml-lg-173 {
		left: -10.8125rem !important
	}

	.pos-lg-174 {
		top: 10.875rem !important;
		bottom: 10.875rem !important
	}

	.pos-lg-174,
	.posx-lg-174 {
		right: 10.875rem !important;
		left: 10.875rem !important
	}

	.posy-lg-174 {
		bottom: 10.875rem !important
	}

	.post-lg-174,
	.posy-lg-174 {
		top: 10.875rem !important
	}

	.posr-lg-174 {
		right: 10.875rem !important
	}

	.posb-lg-174 {
		bottom: 10.875rem !important
	}

	.posl-lg-174 {
		left: 10.875rem !important
	}

	.posmt-lg-174 {
		top: -10.875rem !important
	}

	.posmr-lg-174 {
		right: -10.875rem !important
	}

	.posmb-lg-174 {
		bottom: -10.875rem !important
	}

	.posml-lg-174 {
		left: -10.875rem !important
	}

	.pos-lg-175 {
		top: 10.9375rem !important;
		bottom: 10.9375rem !important
	}

	.pos-lg-175,
	.posx-lg-175 {
		right: 10.9375rem !important;
		left: 10.9375rem !important
	}

	.posy-lg-175 {
		bottom: 10.9375rem !important
	}

	.post-lg-175,
	.posy-lg-175 {
		top: 10.9375rem !important
	}

	.posr-lg-175 {
		right: 10.9375rem !important
	}

	.posb-lg-175 {
		bottom: 10.9375rem !important
	}

	.posl-lg-175 {
		left: 10.9375rem !important
	}

	.posmt-lg-175 {
		top: -10.9375rem !important
	}

	.posmr-lg-175 {
		right: -10.9375rem !important
	}

	.posmb-lg-175 {
		bottom: -10.9375rem !important
	}

	.posml-lg-175 {
		left: -10.9375rem !important
	}

	.pos-lg-176 {
		top: 11rem !important;
		bottom: 11rem !important
	}

	.pos-lg-176,
	.posx-lg-176 {
		right: 11rem !important;
		left: 11rem !important
	}

	.posy-lg-176 {
		bottom: 11rem !important
	}

	.post-lg-176,
	.posy-lg-176 {
		top: 11rem !important
	}

	.posr-lg-176 {
		right: 11rem !important
	}

	.posb-lg-176 {
		bottom: 11rem !important
	}

	.posl-lg-176 {
		left: 11rem !important
	}

	.posmt-lg-176 {
		top: -11rem !important
	}

	.posmr-lg-176 {
		right: -11rem !important
	}

	.posmb-lg-176 {
		bottom: -11rem !important
	}

	.posml-lg-176 {
		left: -11rem !important
	}

	.pos-lg-177 {
		top: 11.0625rem !important;
		bottom: 11.0625rem !important
	}

	.pos-lg-177,
	.posx-lg-177 {
		right: 11.0625rem !important;
		left: 11.0625rem !important
	}

	.posy-lg-177 {
		bottom: 11.0625rem !important
	}

	.post-lg-177,
	.posy-lg-177 {
		top: 11.0625rem !important
	}

	.posr-lg-177 {
		right: 11.0625rem !important
	}

	.posb-lg-177 {
		bottom: 11.0625rem !important
	}

	.posl-lg-177 {
		left: 11.0625rem !important
	}

	.posmt-lg-177 {
		top: -11.0625rem !important
	}

	.posmr-lg-177 {
		right: -11.0625rem !important
	}

	.posmb-lg-177 {
		bottom: -11.0625rem !important
	}

	.posml-lg-177 {
		left: -11.0625rem !important
	}

	.pos-lg-178 {
		top: 11.125rem !important;
		bottom: 11.125rem !important
	}

	.pos-lg-178,
	.posx-lg-178 {
		right: 11.125rem !important;
		left: 11.125rem !important
	}

	.posy-lg-178 {
		bottom: 11.125rem !important
	}

	.post-lg-178,
	.posy-lg-178 {
		top: 11.125rem !important
	}

	.posr-lg-178 {
		right: 11.125rem !important
	}

	.posb-lg-178 {
		bottom: 11.125rem !important
	}

	.posl-lg-178 {
		left: 11.125rem !important
	}

	.posmt-lg-178 {
		top: -11.125rem !important
	}

	.posmr-lg-178 {
		right: -11.125rem !important
	}

	.posmb-lg-178 {
		bottom: -11.125rem !important
	}

	.posml-lg-178 {
		left: -11.125rem !important
	}

	.pos-lg-179 {
		top: 11.1875rem !important;
		bottom: 11.1875rem !important
	}

	.pos-lg-179,
	.posx-lg-179 {
		right: 11.1875rem !important;
		left: 11.1875rem !important
	}

	.posy-lg-179 {
		bottom: 11.1875rem !important
	}

	.post-lg-179,
	.posy-lg-179 {
		top: 11.1875rem !important
	}

	.posr-lg-179 {
		right: 11.1875rem !important
	}

	.posb-lg-179 {
		bottom: 11.1875rem !important
	}

	.posl-lg-179 {
		left: 11.1875rem !important
	}

	.posmt-lg-179 {
		top: -11.1875rem !important
	}

	.posmr-lg-179 {
		right: -11.1875rem !important
	}

	.posmb-lg-179 {
		bottom: -11.1875rem !important
	}

	.posml-lg-179 {
		left: -11.1875rem !important
	}

	.pos-lg-180 {
		top: 11.25rem !important;
		bottom: 11.25rem !important
	}

	.pos-lg-180,
	.posx-lg-180 {
		right: 11.25rem !important;
		left: 11.25rem !important
	}

	.posy-lg-180 {
		bottom: 11.25rem !important
	}

	.post-lg-180,
	.posy-lg-180 {
		top: 11.25rem !important
	}

	.posr-lg-180 {
		right: 11.25rem !important
	}

	.posb-lg-180 {
		bottom: 11.25rem !important
	}

	.posl-lg-180 {
		left: 11.25rem !important
	}

	.posmt-lg-180 {
		top: -11.25rem !important
	}

	.posmr-lg-180 {
		right: -11.25rem !important
	}

	.posmb-lg-180 {
		bottom: -11.25rem !important
	}

	.posml-lg-180 {
		left: -11.25rem !important
	}

	.pos-lg-181 {
		top: 11.3125rem !important;
		bottom: 11.3125rem !important
	}

	.pos-lg-181,
	.posx-lg-181 {
		right: 11.3125rem !important;
		left: 11.3125rem !important
	}

	.posy-lg-181 {
		bottom: 11.3125rem !important
	}

	.post-lg-181,
	.posy-lg-181 {
		top: 11.3125rem !important
	}

	.posr-lg-181 {
		right: 11.3125rem !important
	}

	.posb-lg-181 {
		bottom: 11.3125rem !important
	}

	.posl-lg-181 {
		left: 11.3125rem !important
	}

	.posmt-lg-181 {
		top: -11.3125rem !important
	}

	.posmr-lg-181 {
		right: -11.3125rem !important
	}

	.posmb-lg-181 {
		bottom: -11.3125rem !important
	}

	.posml-lg-181 {
		left: -11.3125rem !important
	}

	.pos-lg-182 {
		top: 11.375rem !important;
		bottom: 11.375rem !important
	}

	.pos-lg-182,
	.posx-lg-182 {
		right: 11.375rem !important;
		left: 11.375rem !important
	}

	.posy-lg-182 {
		bottom: 11.375rem !important
	}

	.post-lg-182,
	.posy-lg-182 {
		top: 11.375rem !important
	}

	.posr-lg-182 {
		right: 11.375rem !important
	}

	.posb-lg-182 {
		bottom: 11.375rem !important
	}

	.posl-lg-182 {
		left: 11.375rem !important
	}

	.posmt-lg-182 {
		top: -11.375rem !important
	}

	.posmr-lg-182 {
		right: -11.375rem !important
	}

	.posmb-lg-182 {
		bottom: -11.375rem !important
	}

	.posml-lg-182 {
		left: -11.375rem !important
	}

	.pos-lg-183 {
		top: 11.4375rem !important;
		bottom: 11.4375rem !important
	}

	.pos-lg-183,
	.posx-lg-183 {
		right: 11.4375rem !important;
		left: 11.4375rem !important
	}

	.posy-lg-183 {
		bottom: 11.4375rem !important
	}

	.post-lg-183,
	.posy-lg-183 {
		top: 11.4375rem !important
	}

	.posr-lg-183 {
		right: 11.4375rem !important
	}

	.posb-lg-183 {
		bottom: 11.4375rem !important
	}

	.posl-lg-183 {
		left: 11.4375rem !important
	}

	.posmt-lg-183 {
		top: -11.4375rem !important
	}

	.posmr-lg-183 {
		right: -11.4375rem !important
	}

	.posmb-lg-183 {
		bottom: -11.4375rem !important
	}

	.posml-lg-183 {
		left: -11.4375rem !important
	}

	.pos-lg-184 {
		top: 11.5rem !important;
		bottom: 11.5rem !important
	}

	.pos-lg-184,
	.posx-lg-184 {
		right: 11.5rem !important;
		left: 11.5rem !important
	}

	.posy-lg-184 {
		bottom: 11.5rem !important
	}

	.post-lg-184,
	.posy-lg-184 {
		top: 11.5rem !important
	}

	.posr-lg-184 {
		right: 11.5rem !important
	}

	.posb-lg-184 {
		bottom: 11.5rem !important
	}

	.posl-lg-184 {
		left: 11.5rem !important
	}

	.posmt-lg-184 {
		top: -11.5rem !important
	}

	.posmr-lg-184 {
		right: -11.5rem !important
	}

	.posmb-lg-184 {
		bottom: -11.5rem !important
	}

	.posml-lg-184 {
		left: -11.5rem !important
	}

	.pos-lg-185 {
		top: 11.5625rem !important;
		bottom: 11.5625rem !important
	}

	.pos-lg-185,
	.posx-lg-185 {
		right: 11.5625rem !important;
		left: 11.5625rem !important
	}

	.posy-lg-185 {
		bottom: 11.5625rem !important
	}

	.post-lg-185,
	.posy-lg-185 {
		top: 11.5625rem !important
	}

	.posr-lg-185 {
		right: 11.5625rem !important
	}

	.posb-lg-185 {
		bottom: 11.5625rem !important
	}

	.posl-lg-185 {
		left: 11.5625rem !important
	}

	.posmt-lg-185 {
		top: -11.5625rem !important
	}

	.posmr-lg-185 {
		right: -11.5625rem !important
	}

	.posmb-lg-185 {
		bottom: -11.5625rem !important
	}

	.posml-lg-185 {
		left: -11.5625rem !important
	}

	.pos-lg-186 {
		top: 11.625rem !important;
		bottom: 11.625rem !important
	}

	.pos-lg-186,
	.posx-lg-186 {
		right: 11.625rem !important;
		left: 11.625rem !important
	}

	.posy-lg-186 {
		bottom: 11.625rem !important
	}

	.post-lg-186,
	.posy-lg-186 {
		top: 11.625rem !important
	}

	.posr-lg-186 {
		right: 11.625rem !important
	}

	.posb-lg-186 {
		bottom: 11.625rem !important
	}

	.posl-lg-186 {
		left: 11.625rem !important
	}

	.posmt-lg-186 {
		top: -11.625rem !important
	}

	.posmr-lg-186 {
		right: -11.625rem !important
	}

	.posmb-lg-186 {
		bottom: -11.625rem !important
	}

	.posml-lg-186 {
		left: -11.625rem !important
	}

	.pos-lg-187 {
		top: 11.6875rem !important;
		bottom: 11.6875rem !important
	}

	.pos-lg-187,
	.posx-lg-187 {
		right: 11.6875rem !important;
		left: 11.6875rem !important
	}

	.posy-lg-187 {
		bottom: 11.6875rem !important
	}

	.post-lg-187,
	.posy-lg-187 {
		top: 11.6875rem !important
	}

	.posr-lg-187 {
		right: 11.6875rem !important
	}

	.posb-lg-187 {
		bottom: 11.6875rem !important
	}

	.posl-lg-187 {
		left: 11.6875rem !important
	}

	.posmt-lg-187 {
		top: -11.6875rem !important
	}

	.posmr-lg-187 {
		right: -11.6875rem !important
	}

	.posmb-lg-187 {
		bottom: -11.6875rem !important
	}

	.posml-lg-187 {
		left: -11.6875rem !important
	}

	.pos-lg-188 {
		top: 11.75rem !important;
		bottom: 11.75rem !important
	}

	.pos-lg-188,
	.posx-lg-188 {
		right: 11.75rem !important;
		left: 11.75rem !important
	}

	.posy-lg-188 {
		bottom: 11.75rem !important
	}

	.post-lg-188,
	.posy-lg-188 {
		top: 11.75rem !important
	}

	.posr-lg-188 {
		right: 11.75rem !important
	}

	.posb-lg-188 {
		bottom: 11.75rem !important
	}

	.posl-lg-188 {
		left: 11.75rem !important
	}

	.posmt-lg-188 {
		top: -11.75rem !important
	}

	.posmr-lg-188 {
		right: -11.75rem !important
	}

	.posmb-lg-188 {
		bottom: -11.75rem !important
	}

	.posml-lg-188 {
		left: -11.75rem !important
	}

	.pos-lg-189 {
		top: 11.8125rem !important;
		bottom: 11.8125rem !important
	}

	.pos-lg-189,
	.posx-lg-189 {
		right: 11.8125rem !important;
		left: 11.8125rem !important
	}

	.posy-lg-189 {
		bottom: 11.8125rem !important
	}

	.post-lg-189,
	.posy-lg-189 {
		top: 11.8125rem !important
	}

	.posr-lg-189 {
		right: 11.8125rem !important
	}

	.posb-lg-189 {
		bottom: 11.8125rem !important
	}

	.posl-lg-189 {
		left: 11.8125rem !important
	}

	.posmt-lg-189 {
		top: -11.8125rem !important
	}

	.posmr-lg-189 {
		right: -11.8125rem !important
	}

	.posmb-lg-189 {
		bottom: -11.8125rem !important
	}

	.posml-lg-189 {
		left: -11.8125rem !important
	}

	.pos-lg-190 {
		top: 11.875rem !important;
		bottom: 11.875rem !important
	}

	.pos-lg-190,
	.posx-lg-190 {
		right: 11.875rem !important;
		left: 11.875rem !important
	}

	.posy-lg-190 {
		bottom: 11.875rem !important
	}

	.post-lg-190,
	.posy-lg-190 {
		top: 11.875rem !important
	}

	.posr-lg-190 {
		right: 11.875rem !important
	}

	.posb-lg-190 {
		bottom: 11.875rem !important
	}

	.posl-lg-190 {
		left: 11.875rem !important
	}

	.posmt-lg-190 {
		top: -11.875rem !important
	}

	.posmr-lg-190 {
		right: -11.875rem !important
	}

	.posmb-lg-190 {
		bottom: -11.875rem !important
	}

	.posml-lg-190 {
		left: -11.875rem !important
	}

	.pos-lg-191 {
		top: 11.9375rem !important;
		bottom: 11.9375rem !important
	}

	.pos-lg-191,
	.posx-lg-191 {
		right: 11.9375rem !important;
		left: 11.9375rem !important
	}

	.posy-lg-191 {
		bottom: 11.9375rem !important
	}

	.post-lg-191,
	.posy-lg-191 {
		top: 11.9375rem !important
	}

	.posr-lg-191 {
		right: 11.9375rem !important
	}

	.posb-lg-191 {
		bottom: 11.9375rem !important
	}

	.posl-lg-191 {
		left: 11.9375rem !important
	}

	.posmt-lg-191 {
		top: -11.9375rem !important
	}

	.posmr-lg-191 {
		right: -11.9375rem !important
	}

	.posmb-lg-191 {
		bottom: -11.9375rem !important
	}

	.posml-lg-191 {
		left: -11.9375rem !important
	}

	.pos-lg-192 {
		top: 12rem !important;
		bottom: 12rem !important
	}

	.pos-lg-192,
	.posx-lg-192 {
		right: 12rem !important;
		left: 12rem !important
	}

	.posy-lg-192 {
		bottom: 12rem !important
	}

	.post-lg-192,
	.posy-lg-192 {
		top: 12rem !important
	}

	.posr-lg-192 {
		right: 12rem !important
	}

	.posb-lg-192 {
		bottom: 12rem !important
	}

	.posl-lg-192 {
		left: 12rem !important
	}

	.posmt-lg-192 {
		top: -12rem !important
	}

	.posmr-lg-192 {
		right: -12rem !important
	}

	.posmb-lg-192 {
		bottom: -12rem !important
	}

	.posml-lg-192 {
		left: -12rem !important
	}

	.pos-lg-193 {
		top: 12.0625rem !important;
		bottom: 12.0625rem !important
	}

	.pos-lg-193,
	.posx-lg-193 {
		right: 12.0625rem !important;
		left: 12.0625rem !important
	}

	.posy-lg-193 {
		bottom: 12.0625rem !important
	}

	.post-lg-193,
	.posy-lg-193 {
		top: 12.0625rem !important
	}

	.posr-lg-193 {
		right: 12.0625rem !important
	}

	.posb-lg-193 {
		bottom: 12.0625rem !important
	}

	.posl-lg-193 {
		left: 12.0625rem !important
	}

	.posmt-lg-193 {
		top: -12.0625rem !important
	}

	.posmr-lg-193 {
		right: -12.0625rem !important
	}

	.posmb-lg-193 {
		bottom: -12.0625rem !important
	}

	.posml-lg-193 {
		left: -12.0625rem !important
	}

	.pos-lg-194 {
		top: 12.125rem !important;
		bottom: 12.125rem !important
	}

	.pos-lg-194,
	.posx-lg-194 {
		right: 12.125rem !important;
		left: 12.125rem !important
	}

	.posy-lg-194 {
		bottom: 12.125rem !important
	}

	.post-lg-194,
	.posy-lg-194 {
		top: 12.125rem !important
	}

	.posr-lg-194 {
		right: 12.125rem !important
	}

	.posb-lg-194 {
		bottom: 12.125rem !important
	}

	.posl-lg-194 {
		left: 12.125rem !important
	}

	.posmt-lg-194 {
		top: -12.125rem !important
	}

	.posmr-lg-194 {
		right: -12.125rem !important
	}

	.posmb-lg-194 {
		bottom: -12.125rem !important
	}

	.posml-lg-194 {
		left: -12.125rem !important
	}

	.pos-lg-195 {
		top: 12.1875rem !important;
		bottom: 12.1875rem !important
	}

	.pos-lg-195,
	.posx-lg-195 {
		right: 12.1875rem !important;
		left: 12.1875rem !important
	}

	.posy-lg-195 {
		bottom: 12.1875rem !important
	}

	.post-lg-195,
	.posy-lg-195 {
		top: 12.1875rem !important
	}

	.posr-lg-195 {
		right: 12.1875rem !important
	}

	.posb-lg-195 {
		bottom: 12.1875rem !important
	}

	.posl-lg-195 {
		left: 12.1875rem !important
	}

	.posmt-lg-195 {
		top: -12.1875rem !important
	}

	.posmr-lg-195 {
		right: -12.1875rem !important
	}

	.posmb-lg-195 {
		bottom: -12.1875rem !important
	}

	.posml-lg-195 {
		left: -12.1875rem !important
	}

	.pos-lg-196 {
		top: 12.25rem !important;
		bottom: 12.25rem !important
	}

	.pos-lg-196,
	.posx-lg-196 {
		right: 12.25rem !important;
		left: 12.25rem !important
	}

	.posy-lg-196 {
		bottom: 12.25rem !important
	}

	.post-lg-196,
	.posy-lg-196 {
		top: 12.25rem !important
	}

	.posr-lg-196 {
		right: 12.25rem !important
	}

	.posb-lg-196 {
		bottom: 12.25rem !important
	}

	.posl-lg-196 {
		left: 12.25rem !important
	}

	.posmt-lg-196 {
		top: -12.25rem !important
	}

	.posmr-lg-196 {
		right: -12.25rem !important
	}

	.posmb-lg-196 {
		bottom: -12.25rem !important
	}

	.posml-lg-196 {
		left: -12.25rem !important
	}

	.pos-lg-197 {
		top: 12.3125rem !important;
		bottom: 12.3125rem !important
	}

	.pos-lg-197,
	.posx-lg-197 {
		right: 12.3125rem !important;
		left: 12.3125rem !important
	}

	.posy-lg-197 {
		bottom: 12.3125rem !important
	}

	.post-lg-197,
	.posy-lg-197 {
		top: 12.3125rem !important
	}

	.posr-lg-197 {
		right: 12.3125rem !important
	}

	.posb-lg-197 {
		bottom: 12.3125rem !important
	}

	.posl-lg-197 {
		left: 12.3125rem !important
	}

	.posmt-lg-197 {
		top: -12.3125rem !important
	}

	.posmr-lg-197 {
		right: -12.3125rem !important
	}

	.posmb-lg-197 {
		bottom: -12.3125rem !important
	}

	.posml-lg-197 {
		left: -12.3125rem !important
	}

	.pos-lg-198 {
		top: 12.375rem !important;
		bottom: 12.375rem !important
	}

	.pos-lg-198,
	.posx-lg-198 {
		right: 12.375rem !important;
		left: 12.375rem !important
	}

	.posy-lg-198 {
		bottom: 12.375rem !important
	}

	.post-lg-198,
	.posy-lg-198 {
		top: 12.375rem !important
	}

	.posr-lg-198 {
		right: 12.375rem !important
	}

	.posb-lg-198 {
		bottom: 12.375rem !important
	}

	.posl-lg-198 {
		left: 12.375rem !important
	}

	.posmt-lg-198 {
		top: -12.375rem !important
	}

	.posmr-lg-198 {
		right: -12.375rem !important
	}

	.posmb-lg-198 {
		bottom: -12.375rem !important
	}

	.posml-lg-198 {
		left: -12.375rem !important
	}

	.pos-lg-199 {
		top: 12.4375rem !important;
		bottom: 12.4375rem !important
	}

	.pos-lg-199,
	.posx-lg-199 {
		right: 12.4375rem !important;
		left: 12.4375rem !important
	}

	.posy-lg-199 {
		bottom: 12.4375rem !important
	}

	.post-lg-199,
	.posy-lg-199 {
		top: 12.4375rem !important
	}

	.posr-lg-199 {
		right: 12.4375rem !important
	}

	.posb-lg-199 {
		bottom: 12.4375rem !important
	}

	.posl-lg-199 {
		left: 12.4375rem !important
	}

	.posmt-lg-199 {
		top: -12.4375rem !important
	}

	.posmr-lg-199 {
		right: -12.4375rem !important
	}

	.posmb-lg-199 {
		bottom: -12.4375rem !important
	}

	.posml-lg-199 {
		left: -12.4375rem !important
	}

	.pos-lg-200 {
		top: 12.5rem !important;
		bottom: 12.5rem !important
	}

	.pos-lg-200,
	.posx-lg-200 {
		right: 12.5rem !important;
		left: 12.5rem !important
	}

	.posy-lg-200 {
		bottom: 12.5rem !important
	}

	.post-lg-200,
	.posy-lg-200 {
		top: 12.5rem !important
	}

	.posr-lg-200 {
		right: 12.5rem !important
	}

	.posb-lg-200 {
		bottom: 12.5rem !important
	}

	.posl-lg-200 {
		left: 12.5rem !important
	}

	.posmt-lg-200 {
		top: -12.5rem !important
	}

	.posmr-lg-200 {
		right: -12.5rem !important
	}

	.posmb-lg-200 {
		bottom: -12.5rem !important
	}

	.posml-lg-200 {
		left: -12.5rem !important
	}

	.pos-lg-auto {
		top: auto !important;
		bottom: auto !important
	}

	.pos-lg-auto,
	.posx-lg-auto {
		right: auto !important;
		left: auto !important
	}

	.posy-lg-auto {
		bottom: auto !important
	}

	.post-lg-auto,
	.posy-lg-auto {
		top: auto !important
	}

	.posr-lg-auto {
		right: auto !important
	}

	.posb-lg-auto {
		bottom: auto !important
	}

	.posl-lg-auto {
		left: auto !important
	}

	.posmt-lg-auto {
		top: -auto !important
	}

	.posmr-lg-auto {
		right: -auto !important
	}

	.posmb-lg-auto {
		bottom: -auto !important
	}

	.posml-lg-auto {
		left: -auto !important
	}
}

@media (min-width:1200px) {
	.pos-xl-0 {
		top: 0 !important;
		bottom: 0 !important
	}

	.pos-xl-0,
	.posx-xl-0 {
		right: 0 !important;
		left: 0 !important
	}

	.posy-xl-0 {
		bottom: 0 !important
	}

	.post-xl-0,
	.posy-xl-0 {
		top: 0 !important
	}

	.posr-xl-0 {
		right: 0 !important
	}

	.posb-xl-0 {
		bottom: 0 !important
	}

	.posl-xl-0 {
		left: 0 !important
	}

	.posmt-xl-0 {
		top: 0 !important
	}

	.posmr-xl-0 {
		right: 0 !important
	}

	.posmb-xl-0 {
		bottom: 0 !important
	}

	.posml-xl-0 {
		left: 0 !important
	}

	.pos-xl-1 {
		top: .0625rem !important;
		bottom: .0625rem !important
	}

	.pos-xl-1,
	.posx-xl-1 {
		right: .0625rem !important;
		left: .0625rem !important
	}

	.posy-xl-1 {
		bottom: .0625rem !important
	}

	.post-xl-1,
	.posy-xl-1 {
		top: .0625rem !important
	}

	.posr-xl-1 {
		right: .0625rem !important
	}

	.posb-xl-1 {
		bottom: .0625rem !important
	}

	.posl-xl-1 {
		left: .0625rem !important
	}

	.posmt-xl-1 {
		top: -.0625rem !important
	}

	.posmr-xl-1 {
		right: -.0625rem !important
	}

	.posmb-xl-1 {
		bottom: -.0625rem !important
	}

	.posml-xl-1 {
		left: -.0625rem !important
	}

	.pos-xl-2 {
		top: .125rem !important;
		bottom: .125rem !important
	}

	.pos-xl-2,
	.posx-xl-2 {
		right: .125rem !important;
		left: .125rem !important
	}

	.posy-xl-2 {
		bottom: .125rem !important
	}

	.post-xl-2,
	.posy-xl-2 {
		top: .125rem !important
	}

	.posr-xl-2 {
		right: .125rem !important
	}

	.posb-xl-2 {
		bottom: .125rem !important
	}

	.posl-xl-2 {
		left: .125rem !important
	}

	.posmt-xl-2 {
		top: -.125rem !important
	}

	.posmr-xl-2 {
		right: -.125rem !important
	}

	.posmb-xl-2 {
		bottom: -.125rem !important
	}

	.posml-xl-2 {
		left: -.125rem !important
	}

	.pos-xl-3 {
		top: .1875rem !important;
		bottom: .1875rem !important
	}

	.pos-xl-3,
	.posx-xl-3 {
		right: .1875rem !important;
		left: .1875rem !important
	}

	.posy-xl-3 {
		bottom: .1875rem !important
	}

	.post-xl-3,
	.posy-xl-3 {
		top: .1875rem !important
	}

	.posr-xl-3 {
		right: .1875rem !important
	}

	.posb-xl-3 {
		bottom: .1875rem !important
	}

	.posl-xl-3 {
		left: .1875rem !important
	}

	.posmt-xl-3 {
		top: -.1875rem !important
	}

	.posmr-xl-3 {
		right: -.1875rem !important
	}

	.posmb-xl-3 {
		bottom: -.1875rem !important
	}

	.posml-xl-3 {
		left: -.1875rem !important
	}

	.pos-xl-4 {
		top: .25rem !important;
		bottom: .25rem !important
	}

	.pos-xl-4,
	.posx-xl-4 {
		right: .25rem !important;
		left: .25rem !important
	}

	.posy-xl-4 {
		bottom: .25rem !important
	}

	.post-xl-4,
	.posy-xl-4 {
		top: .25rem !important
	}

	.posr-xl-4 {
		right: .25rem !important
	}

	.posb-xl-4 {
		bottom: .25rem !important
	}

	.posl-xl-4 {
		left: .25rem !important
	}

	.posmt-xl-4 {
		top: -.25rem !important
	}

	.posmr-xl-4 {
		right: -.25rem !important
	}

	.posmb-xl-4 {
		bottom: -.25rem !important
	}

	.posml-xl-4 {
		left: -.25rem !important
	}

	.pos-xl-5 {
		top: .3125rem !important;
		bottom: .3125rem !important
	}

	.pos-xl-5,
	.posx-xl-5 {
		right: .3125rem !important;
		left: .3125rem !important
	}

	.posy-xl-5 {
		bottom: .3125rem !important
	}

	.post-xl-5,
	.posy-xl-5 {
		top: .3125rem !important
	}

	.posr-xl-5 {
		right: .3125rem !important
	}

	.posb-xl-5 {
		bottom: .3125rem !important
	}

	.posl-xl-5 {
		left: .3125rem !important
	}

	.posmt-xl-5 {
		top: -.3125rem !important
	}

	.posmr-xl-5 {
		right: -.3125rem !important
	}

	.posmb-xl-5 {
		bottom: -.3125rem !important
	}

	.posml-xl-5 {
		left: -.3125rem !important
	}

	.pos-xl-6 {
		top: .375rem !important;
		bottom: .375rem !important
	}

	.pos-xl-6,
	.posx-xl-6 {
		right: .375rem !important;
		left: .375rem !important
	}

	.posy-xl-6 {
		bottom: .375rem !important
	}

	.post-xl-6,
	.posy-xl-6 {
		top: .375rem !important
	}

	.posr-xl-6 {
		right: .375rem !important
	}

	.posb-xl-6 {
		bottom: .375rem !important
	}

	.posl-xl-6 {
		left: .375rem !important
	}

	.posmt-xl-6 {
		top: -.375rem !important
	}

	.posmr-xl-6 {
		right: -.375rem !important
	}

	.posmb-xl-6 {
		bottom: -.375rem !important
	}

	.posml-xl-6 {
		left: -.375rem !important
	}

	.pos-xl-7 {
		top: .4375rem !important;
		bottom: .4375rem !important
	}

	.pos-xl-7,
	.posx-xl-7 {
		right: .4375rem !important;
		left: .4375rem !important
	}

	.posy-xl-7 {
		bottom: .4375rem !important
	}

	.post-xl-7,
	.posy-xl-7 {
		top: .4375rem !important
	}

	.posr-xl-7 {
		right: .4375rem !important
	}

	.posb-xl-7 {
		bottom: .4375rem !important
	}

	.posl-xl-7 {
		left: .4375rem !important
	}

	.posmt-xl-7 {
		top: -.4375rem !important
	}

	.posmr-xl-7 {
		right: -.4375rem !important
	}

	.posmb-xl-7 {
		bottom: -.4375rem !important
	}

	.posml-xl-7 {
		left: -.4375rem !important
	}

	.pos-xl-8 {
		top: .5rem !important;
		bottom: .5rem !important
	}

	.pos-xl-8,
	.posx-xl-8 {
		right: .5rem !important;
		left: .5rem !important
	}

	.posy-xl-8 {
		bottom: .5rem !important
	}

	.post-xl-8,
	.posy-xl-8 {
		top: .5rem !important
	}

	.posr-xl-8 {
		right: .5rem !important
	}

	.posb-xl-8 {
		bottom: .5rem !important
	}

	.posl-xl-8 {
		left: .5rem !important
	}

	.posmt-xl-8 {
		top: -.5rem !important
	}

	.posmr-xl-8 {
		right: -.5rem !important
	}

	.posmb-xl-8 {
		bottom: -.5rem !important
	}

	.posml-xl-8 {
		left: -.5rem !important
	}

	.pos-xl-9 {
		top: .5625rem !important;
		bottom: .5625rem !important
	}

	.pos-xl-9,
	.posx-xl-9 {
		right: .5625rem !important;
		left: .5625rem !important
	}

	.posy-xl-9 {
		bottom: .5625rem !important
	}

	.post-xl-9,
	.posy-xl-9 {
		top: .5625rem !important
	}

	.posr-xl-9 {
		right: .5625rem !important
	}

	.posb-xl-9 {
		bottom: .5625rem !important
	}

	.posl-xl-9 {
		left: .5625rem !important
	}

	.posmt-xl-9 {
		top: -.5625rem !important
	}

	.posmr-xl-9 {
		right: -.5625rem !important
	}

	.posmb-xl-9 {
		bottom: -.5625rem !important
	}

	.posml-xl-9 {
		left: -.5625rem !important
	}

	.pos-xl-10 {
		top: .625rem !important;
		bottom: .625rem !important
	}

	.pos-xl-10,
	.posx-xl-10 {
		right: .625rem !important;
		left: .625rem !important
	}

	.posy-xl-10 {
		bottom: .625rem !important
	}

	.post-xl-10,
	.posy-xl-10 {
		top: .625rem !important
	}

	.posr-xl-10 {
		right: .625rem !important
	}

	.posb-xl-10 {
		bottom: .625rem !important
	}

	.posl-xl-10 {
		left: .625rem !important
	}

	.posmt-xl-10 {
		top: -.625rem !important
	}

	.posmr-xl-10 {
		right: -.625rem !important
	}

	.posmb-xl-10 {
		bottom: -.625rem !important
	}

	.posml-xl-10 {
		left: -.625rem !important
	}

	.pos-xl-11 {
		top: .6875rem !important;
		bottom: .6875rem !important
	}

	.pos-xl-11,
	.posx-xl-11 {
		right: .6875rem !important;
		left: .6875rem !important
	}

	.posy-xl-11 {
		bottom: .6875rem !important
	}

	.post-xl-11,
	.posy-xl-11 {
		top: .6875rem !important
	}

	.posr-xl-11 {
		right: .6875rem !important
	}

	.posb-xl-11 {
		bottom: .6875rem !important
	}

	.posl-xl-11 {
		left: .6875rem !important
	}

	.posmt-xl-11 {
		top: -.6875rem !important
	}

	.posmr-xl-11 {
		right: -.6875rem !important
	}

	.posmb-xl-11 {
		bottom: -.6875rem !important
	}

	.posml-xl-11 {
		left: -.6875rem !important
	}

	.pos-xl-12 {
		top: .75rem !important;
		bottom: .75rem !important
	}

	.pos-xl-12,
	.posx-xl-12 {
		right: .75rem !important;
		left: .75rem !important
	}

	.posy-xl-12 {
		bottom: .75rem !important
	}

	.post-xl-12,
	.posy-xl-12 {
		top: .75rem !important
	}

	.posr-xl-12 {
		right: .75rem !important
	}

	.posb-xl-12 {
		bottom: .75rem !important
	}

	.posl-xl-12 {
		left: .75rem !important
	}

	.posmt-xl-12 {
		top: -.75rem !important
	}

	.posmr-xl-12 {
		right: -.75rem !important
	}

	.posmb-xl-12 {
		bottom: -.75rem !important
	}

	.posml-xl-12 {
		left: -.75rem !important
	}

	.pos-xl-13 {
		top: .8125rem !important;
		bottom: .8125rem !important
	}

	.pos-xl-13,
	.posx-xl-13 {
		right: .8125rem !important;
		left: .8125rem !important
	}

	.posy-xl-13 {
		bottom: .8125rem !important
	}

	.post-xl-13,
	.posy-xl-13 {
		top: .8125rem !important
	}

	.posr-xl-13 {
		right: .8125rem !important
	}

	.posb-xl-13 {
		bottom: .8125rem !important
	}

	.posl-xl-13 {
		left: .8125rem !important
	}

	.posmt-xl-13 {
		top: -.8125rem !important
	}

	.posmr-xl-13 {
		right: -.8125rem !important
	}

	.posmb-xl-13 {
		bottom: -.8125rem !important
	}

	.posml-xl-13 {
		left: -.8125rem !important
	}

	.pos-xl-14 {
		top: .875rem !important;
		bottom: .875rem !important
	}

	.pos-xl-14,
	.posx-xl-14 {
		right: .875rem !important;
		left: .875rem !important
	}

	.posy-xl-14 {
		bottom: .875rem !important
	}

	.post-xl-14,
	.posy-xl-14 {
		top: .875rem !important
	}

	.posr-xl-14 {
		right: .875rem !important
	}

	.posb-xl-14 {
		bottom: .875rem !important
	}

	.posl-xl-14 {
		left: .875rem !important
	}

	.posmt-xl-14 {
		top: -.875rem !important
	}

	.posmr-xl-14 {
		right: -.875rem !important
	}

	.posmb-xl-14 {
		bottom: -.875rem !important
	}

	.posml-xl-14 {
		left: -.875rem !important
	}

	.pos-xl-15 {
		top: .9375rem !important;
		bottom: .9375rem !important
	}

	.pos-xl-15,
	.posx-xl-15 {
		right: .9375rem !important;
		left: .9375rem !important
	}

	.posy-xl-15 {
		bottom: .9375rem !important
	}

	.post-xl-15,
	.posy-xl-15 {
		top: .9375rem !important
	}

	.posr-xl-15 {
		right: .9375rem !important
	}

	.posb-xl-15 {
		bottom: .9375rem !important
	}

	.posl-xl-15 {
		left: .9375rem !important
	}

	.posmt-xl-15 {
		top: -.9375rem !important
	}

	.posmr-xl-15 {
		right: -.9375rem !important
	}

	.posmb-xl-15 {
		bottom: -.9375rem !important
	}

	.posml-xl-15 {
		left: -.9375rem !important
	}

	.pos-xl-16 {
		top: 1rem !important;
		bottom: 1rem !important
	}

	.pos-xl-16,
	.posx-xl-16 {
		right: 1rem !important;
		left: 1rem !important
	}

	.posy-xl-16 {
		bottom: 1rem !important
	}

	.post-xl-16,
	.posy-xl-16 {
		top: 1rem !important
	}

	.posr-xl-16 {
		right: 1rem !important
	}

	.posb-xl-16 {
		bottom: 1rem !important
	}

	.posl-xl-16 {
		left: 1rem !important
	}

	.posmt-xl-16 {
		top: -1rem !important
	}

	.posmr-xl-16 {
		right: -1rem !important
	}

	.posmb-xl-16 {
		bottom: -1rem !important
	}

	.posml-xl-16 {
		left: -1rem !important
	}

	.pos-xl-17 {
		top: 1.0625rem !important;
		bottom: 1.0625rem !important
	}

	.pos-xl-17,
	.posx-xl-17 {
		right: 1.0625rem !important;
		left: 1.0625rem !important
	}

	.posy-xl-17 {
		bottom: 1.0625rem !important
	}

	.post-xl-17,
	.posy-xl-17 {
		top: 1.0625rem !important
	}

	.posr-xl-17 {
		right: 1.0625rem !important
	}

	.posb-xl-17 {
		bottom: 1.0625rem !important
	}

	.posl-xl-17 {
		left: 1.0625rem !important
	}

	.posmt-xl-17 {
		top: -1.0625rem !important
	}

	.posmr-xl-17 {
		right: -1.0625rem !important
	}

	.posmb-xl-17 {
		bottom: -1.0625rem !important
	}

	.posml-xl-17 {
		left: -1.0625rem !important
	}

	.pos-xl-18 {
		top: 1.125rem !important;
		bottom: 1.125rem !important
	}

	.pos-xl-18,
	.posx-xl-18 {
		right: 1.125rem !important;
		left: 1.125rem !important
	}

	.posy-xl-18 {
		bottom: 1.125rem !important
	}

	.post-xl-18,
	.posy-xl-18 {
		top: 1.125rem !important
	}

	.posr-xl-18 {
		right: 1.125rem !important
	}

	.posb-xl-18 {
		bottom: 1.125rem !important
	}

	.posl-xl-18 {
		left: 1.125rem !important
	}

	.posmt-xl-18 {
		top: -1.125rem !important
	}

	.posmr-xl-18 {
		right: -1.125rem !important
	}

	.posmb-xl-18 {
		bottom: -1.125rem !important
	}

	.posml-xl-18 {
		left: -1.125rem !important
	}

	.pos-xl-19 {
		top: 1.1875rem !important;
		bottom: 1.1875rem !important
	}

	.pos-xl-19,
	.posx-xl-19 {
		right: 1.1875rem !important;
		left: 1.1875rem !important
	}

	.posy-xl-19 {
		bottom: 1.1875rem !important
	}

	.post-xl-19,
	.posy-xl-19 {
		top: 1.1875rem !important
	}

	.posr-xl-19 {
		right: 1.1875rem !important
	}

	.posb-xl-19 {
		bottom: 1.1875rem !important
	}

	.posl-xl-19 {
		left: 1.1875rem !important
	}

	.posmt-xl-19 {
		top: -1.1875rem !important
	}

	.posmr-xl-19 {
		right: -1.1875rem !important
	}

	.posmb-xl-19 {
		bottom: -1.1875rem !important
	}

	.posml-xl-19 {
		left: -1.1875rem !important
	}

	.pos-xl-20 {
		top: 1.25rem !important;
		bottom: 1.25rem !important
	}

	.pos-xl-20,
	.posx-xl-20 {
		right: 1.25rem !important;
		left: 1.25rem !important
	}

	.posy-xl-20 {
		bottom: 1.25rem !important
	}

	.post-xl-20,
	.posy-xl-20 {
		top: 1.25rem !important
	}

	.posr-xl-20 {
		right: 1.25rem !important
	}

	.posb-xl-20 {
		bottom: 1.25rem !important
	}

	.posl-xl-20 {
		left: 1.25rem !important
	}

	.posmt-xl-20 {
		top: -1.25rem !important
	}

	.posmr-xl-20 {
		right: -1.25rem !important
	}

	.posmb-xl-20 {
		bottom: -1.25rem !important
	}

	.posml-xl-20 {
		left: -1.25rem !important
	}

	.pos-xl-21 {
		top: 1.3125rem !important;
		bottom: 1.3125rem !important
	}

	.pos-xl-21,
	.posx-xl-21 {
		right: 1.3125rem !important;
		left: 1.3125rem !important
	}

	.posy-xl-21 {
		bottom: 1.3125rem !important
	}

	.post-xl-21,
	.posy-xl-21 {
		top: 1.3125rem !important
	}

	.posr-xl-21 {
		right: 1.3125rem !important
	}

	.posb-xl-21 {
		bottom: 1.3125rem !important
	}

	.posl-xl-21 {
		left: 1.3125rem !important
	}

	.posmt-xl-21 {
		top: -1.3125rem !important
	}

	.posmr-xl-21 {
		right: -1.3125rem !important
	}

	.posmb-xl-21 {
		bottom: -1.3125rem !important
	}

	.posml-xl-21 {
		left: -1.3125rem !important
	}

	.pos-xl-22 {
		top: 1.375rem !important;
		bottom: 1.375rem !important
	}

	.pos-xl-22,
	.posx-xl-22 {
		right: 1.375rem !important;
		left: 1.375rem !important
	}

	.posy-xl-22 {
		bottom: 1.375rem !important
	}

	.post-xl-22,
	.posy-xl-22 {
		top: 1.375rem !important
	}

	.posr-xl-22 {
		right: 1.375rem !important
	}

	.posb-xl-22 {
		bottom: 1.375rem !important
	}

	.posl-xl-22 {
		left: 1.375rem !important
	}

	.posmt-xl-22 {
		top: -1.375rem !important
	}

	.posmr-xl-22 {
		right: -1.375rem !important
	}

	.posmb-xl-22 {
		bottom: -1.375rem !important
	}

	.posml-xl-22 {
		left: -1.375rem !important
	}

	.pos-xl-23 {
		top: 1.4375rem !important;
		bottom: 1.4375rem !important
	}

	.pos-xl-23,
	.posx-xl-23 {
		right: 1.4375rem !important;
		left: 1.4375rem !important
	}

	.posy-xl-23 {
		bottom: 1.4375rem !important
	}

	.post-xl-23,
	.posy-xl-23 {
		top: 1.4375rem !important
	}

	.posr-xl-23 {
		right: 1.4375rem !important
	}

	.posb-xl-23 {
		bottom: 1.4375rem !important
	}

	.posl-xl-23 {
		left: 1.4375rem !important
	}

	.posmt-xl-23 {
		top: -1.4375rem !important
	}

	.posmr-xl-23 {
		right: -1.4375rem !important
	}

	.posmb-xl-23 {
		bottom: -1.4375rem !important
	}

	.posml-xl-23 {
		left: -1.4375rem !important
	}

	.pos-xl-24 {
		top: 1.5rem !important;
		bottom: 1.5rem !important
	}

	.pos-xl-24,
	.posx-xl-24 {
		right: 1.5rem !important;
		left: 1.5rem !important
	}

	.posy-xl-24 {
		bottom: 1.5rem !important
	}

	.post-xl-24,
	.posy-xl-24 {
		top: 1.5rem !important
	}

	.posr-xl-24 {
		right: 1.5rem !important
	}

	.posb-xl-24 {
		bottom: 1.5rem !important
	}

	.posl-xl-24 {
		left: 1.5rem !important
	}

	.posmt-xl-24 {
		top: -1.5rem !important
	}

	.posmr-xl-24 {
		right: -1.5rem !important
	}

	.posmb-xl-24 {
		bottom: -1.5rem !important
	}

	.posml-xl-24 {
		left: -1.5rem !important
	}

	.pos-xl-25 {
		top: 1.5625rem !important;
		bottom: 1.5625rem !important
	}

	.pos-xl-25,
	.posx-xl-25 {
		right: 1.5625rem !important;
		left: 1.5625rem !important
	}

	.posy-xl-25 {
		bottom: 1.5625rem !important
	}

	.post-xl-25,
	.posy-xl-25 {
		top: 1.5625rem !important
	}

	.posr-xl-25 {
		right: 1.5625rem !important
	}

	.posb-xl-25 {
		bottom: 1.5625rem !important
	}

	.posl-xl-25 {
		left: 1.5625rem !important
	}

	.posmt-xl-25 {
		top: -1.5625rem !important
	}

	.posmr-xl-25 {
		right: -1.5625rem !important
	}

	.posmb-xl-25 {
		bottom: -1.5625rem !important
	}

	.posml-xl-25 {
		left: -1.5625rem !important
	}

	.pos-xl-26 {
		top: 1.625rem !important;
		bottom: 1.625rem !important
	}

	.pos-xl-26,
	.posx-xl-26 {
		right: 1.625rem !important;
		left: 1.625rem !important
	}

	.posy-xl-26 {
		bottom: 1.625rem !important
	}

	.post-xl-26,
	.posy-xl-26 {
		top: 1.625rem !important
	}

	.posr-xl-26 {
		right: 1.625rem !important
	}

	.posb-xl-26 {
		bottom: 1.625rem !important
	}

	.posl-xl-26 {
		left: 1.625rem !important
	}

	.posmt-xl-26 {
		top: -1.625rem !important
	}

	.posmr-xl-26 {
		right: -1.625rem !important
	}

	.posmb-xl-26 {
		bottom: -1.625rem !important
	}

	.posml-xl-26 {
		left: -1.625rem !important
	}

	.pos-xl-27 {
		top: 1.6875rem !important;
		bottom: 1.6875rem !important
	}

	.pos-xl-27,
	.posx-xl-27 {
		right: 1.6875rem !important;
		left: 1.6875rem !important
	}

	.posy-xl-27 {
		bottom: 1.6875rem !important
	}

	.post-xl-27,
	.posy-xl-27 {
		top: 1.6875rem !important
	}

	.posr-xl-27 {
		right: 1.6875rem !important
	}

	.posb-xl-27 {
		bottom: 1.6875rem !important
	}

	.posl-xl-27 {
		left: 1.6875rem !important
	}

	.posmt-xl-27 {
		top: -1.6875rem !important
	}

	.posmr-xl-27 {
		right: -1.6875rem !important
	}

	.posmb-xl-27 {
		bottom: -1.6875rem !important
	}

	.posml-xl-27 {
		left: -1.6875rem !important
	}

	.pos-xl-28 {
		top: 1.75rem !important;
		bottom: 1.75rem !important
	}

	.pos-xl-28,
	.posx-xl-28 {
		right: 1.75rem !important;
		left: 1.75rem !important
	}

	.posy-xl-28 {
		bottom: 1.75rem !important
	}

	.post-xl-28,
	.posy-xl-28 {
		top: 1.75rem !important
	}

	.posr-xl-28 {
		right: 1.75rem !important
	}

	.posb-xl-28 {
		bottom: 1.75rem !important
	}

	.posl-xl-28 {
		left: 1.75rem !important
	}

	.posmt-xl-28 {
		top: -1.75rem !important
	}

	.posmr-xl-28 {
		right: -1.75rem !important
	}

	.posmb-xl-28 {
		bottom: -1.75rem !important
	}

	.posml-xl-28 {
		left: -1.75rem !important
	}

	.pos-xl-29 {
		top: 1.8125rem !important;
		bottom: 1.8125rem !important
	}

	.pos-xl-29,
	.posx-xl-29 {
		right: 1.8125rem !important;
		left: 1.8125rem !important
	}

	.posy-xl-29 {
		bottom: 1.8125rem !important
	}

	.post-xl-29,
	.posy-xl-29 {
		top: 1.8125rem !important
	}

	.posr-xl-29 {
		right: 1.8125rem !important
	}

	.posb-xl-29 {
		bottom: 1.8125rem !important
	}

	.posl-xl-29 {
		left: 1.8125rem !important
	}

	.posmt-xl-29 {
		top: -1.8125rem !important
	}

	.posmr-xl-29 {
		right: -1.8125rem !important
	}

	.posmb-xl-29 {
		bottom: -1.8125rem !important
	}

	.posml-xl-29 {
		left: -1.8125rem !important
	}

	.pos-xl-30 {
		top: 1.875rem !important;
		bottom: 1.875rem !important
	}

	.pos-xl-30,
	.posx-xl-30 {
		right: 1.875rem !important;
		left: 1.875rem !important
	}

	.posy-xl-30 {
		bottom: 1.875rem !important
	}

	.post-xl-30,
	.posy-xl-30 {
		top: 1.875rem !important
	}

	.posr-xl-30 {
		right: 1.875rem !important
	}

	.posb-xl-30 {
		bottom: 1.875rem !important
	}

	.posl-xl-30 {
		left: 1.875rem !important
	}

	.posmt-xl-30 {
		top: -1.875rem !important
	}

	.posmr-xl-30 {
		right: -1.875rem !important
	}

	.posmb-xl-30 {
		bottom: -1.875rem !important
	}

	.posml-xl-30 {
		left: -1.875rem !important
	}

	.pos-xl-31 {
		top: 1.9375rem !important;
		bottom: 1.9375rem !important
	}

	.pos-xl-31,
	.posx-xl-31 {
		right: 1.9375rem !important;
		left: 1.9375rem !important
	}

	.posy-xl-31 {
		bottom: 1.9375rem !important
	}

	.post-xl-31,
	.posy-xl-31 {
		top: 1.9375rem !important
	}

	.posr-xl-31 {
		right: 1.9375rem !important
	}

	.posb-xl-31 {
		bottom: 1.9375rem !important
	}

	.posl-xl-31 {
		left: 1.9375rem !important
	}

	.posmt-xl-31 {
		top: -1.9375rem !important
	}

	.posmr-xl-31 {
		right: -1.9375rem !important
	}

	.posmb-xl-31 {
		bottom: -1.9375rem !important
	}

	.posml-xl-31 {
		left: -1.9375rem !important
	}

	.pos-xl-32 {
		top: 2rem !important;
		bottom: 2rem !important
	}

	.pos-xl-32,
	.posx-xl-32 {
		right: 2rem !important;
		left: 2rem !important
	}

	.posy-xl-32 {
		bottom: 2rem !important
	}

	.post-xl-32,
	.posy-xl-32 {
		top: 2rem !important
	}

	.posr-xl-32 {
		right: 2rem !important
	}

	.posb-xl-32 {
		bottom: 2rem !important
	}

	.posl-xl-32 {
		left: 2rem !important
	}

	.posmt-xl-32 {
		top: -2rem !important
	}

	.posmr-xl-32 {
		right: -2rem !important
	}

	.posmb-xl-32 {
		bottom: -2rem !important
	}

	.posml-xl-32 {
		left: -2rem !important
	}

	.pos-xl-33 {
		top: 2.0625rem !important;
		bottom: 2.0625rem !important
	}

	.pos-xl-33,
	.posx-xl-33 {
		right: 2.0625rem !important;
		left: 2.0625rem !important
	}

	.posy-xl-33 {
		bottom: 2.0625rem !important
	}

	.post-xl-33,
	.posy-xl-33 {
		top: 2.0625rem !important
	}

	.posr-xl-33 {
		right: 2.0625rem !important
	}

	.posb-xl-33 {
		bottom: 2.0625rem !important
	}

	.posl-xl-33 {
		left: 2.0625rem !important
	}

	.posmt-xl-33 {
		top: -2.0625rem !important
	}

	.posmr-xl-33 {
		right: -2.0625rem !important
	}

	.posmb-xl-33 {
		bottom: -2.0625rem !important
	}

	.posml-xl-33 {
		left: -2.0625rem !important
	}

	.pos-xl-34 {
		top: 2.125rem !important;
		bottom: 2.125rem !important
	}

	.pos-xl-34,
	.posx-xl-34 {
		right: 2.125rem !important;
		left: 2.125rem !important
	}

	.posy-xl-34 {
		bottom: 2.125rem !important
	}

	.post-xl-34,
	.posy-xl-34 {
		top: 2.125rem !important
	}

	.posr-xl-34 {
		right: 2.125rem !important
	}

	.posb-xl-34 {
		bottom: 2.125rem !important
	}

	.posl-xl-34 {
		left: 2.125rem !important
	}

	.posmt-xl-34 {
		top: -2.125rem !important
	}

	.posmr-xl-34 {
		right: -2.125rem !important
	}

	.posmb-xl-34 {
		bottom: -2.125rem !important
	}

	.posml-xl-34 {
		left: -2.125rem !important
	}

	.pos-xl-35 {
		top: 2.1875rem !important;
		bottom: 2.1875rem !important
	}

	.pos-xl-35,
	.posx-xl-35 {
		right: 2.1875rem !important;
		left: 2.1875rem !important
	}

	.posy-xl-35 {
		bottom: 2.1875rem !important
	}

	.post-xl-35,
	.posy-xl-35 {
		top: 2.1875rem !important
	}

	.posr-xl-35 {
		right: 2.1875rem !important
	}

	.posb-xl-35 {
		bottom: 2.1875rem !important
	}

	.posl-xl-35 {
		left: 2.1875rem !important
	}

	.posmt-xl-35 {
		top: -2.1875rem !important
	}

	.posmr-xl-35 {
		right: -2.1875rem !important
	}

	.posmb-xl-35 {
		bottom: -2.1875rem !important
	}

	.posml-xl-35 {
		left: -2.1875rem !important
	}

	.pos-xl-36 {
		top: 2.25rem !important;
		bottom: 2.25rem !important
	}

	.pos-xl-36,
	.posx-xl-36 {
		right: 2.25rem !important;
		left: 2.25rem !important
	}

	.posy-xl-36 {
		bottom: 2.25rem !important
	}

	.post-xl-36,
	.posy-xl-36 {
		top: 2.25rem !important
	}

	.posr-xl-36 {
		right: 2.25rem !important
	}

	.posb-xl-36 {
		bottom: 2.25rem !important
	}

	.posl-xl-36 {
		left: 2.25rem !important
	}

	.posmt-xl-36 {
		top: -2.25rem !important
	}

	.posmr-xl-36 {
		right: -2.25rem !important
	}

	.posmb-xl-36 {
		bottom: -2.25rem !important
	}

	.posml-xl-36 {
		left: -2.25rem !important
	}

	.pos-xl-37 {
		top: 2.3125rem !important;
		bottom: 2.3125rem !important
	}

	.pos-xl-37,
	.posx-xl-37 {
		right: 2.3125rem !important;
		left: 2.3125rem !important
	}

	.posy-xl-37 {
		bottom: 2.3125rem !important
	}

	.post-xl-37,
	.posy-xl-37 {
		top: 2.3125rem !important
	}

	.posr-xl-37 {
		right: 2.3125rem !important
	}

	.posb-xl-37 {
		bottom: 2.3125rem !important
	}

	.posl-xl-37 {
		left: 2.3125rem !important
	}

	.posmt-xl-37 {
		top: -2.3125rem !important
	}

	.posmr-xl-37 {
		right: -2.3125rem !important
	}

	.posmb-xl-37 {
		bottom: -2.3125rem !important
	}

	.posml-xl-37 {
		left: -2.3125rem !important
	}

	.pos-xl-38 {
		top: 2.375rem !important;
		bottom: 2.375rem !important
	}

	.pos-xl-38,
	.posx-xl-38 {
		right: 2.375rem !important;
		left: 2.375rem !important
	}

	.posy-xl-38 {
		bottom: 2.375rem !important
	}

	.post-xl-38,
	.posy-xl-38 {
		top: 2.375rem !important
	}

	.posr-xl-38 {
		right: 2.375rem !important
	}

	.posb-xl-38 {
		bottom: 2.375rem !important
	}

	.posl-xl-38 {
		left: 2.375rem !important
	}

	.posmt-xl-38 {
		top: -2.375rem !important
	}

	.posmr-xl-38 {
		right: -2.375rem !important
	}

	.posmb-xl-38 {
		bottom: -2.375rem !important
	}

	.posml-xl-38 {
		left: -2.375rem !important
	}

	.pos-xl-39 {
		top: 2.4375rem !important;
		bottom: 2.4375rem !important
	}

	.pos-xl-39,
	.posx-xl-39 {
		right: 2.4375rem !important;
		left: 2.4375rem !important
	}

	.posy-xl-39 {
		bottom: 2.4375rem !important
	}

	.post-xl-39,
	.posy-xl-39 {
		top: 2.4375rem !important
	}

	.posr-xl-39 {
		right: 2.4375rem !important
	}

	.posb-xl-39 {
		bottom: 2.4375rem !important
	}

	.posl-xl-39 {
		left: 2.4375rem !important
	}

	.posmt-xl-39 {
		top: -2.4375rem !important
	}

	.posmr-xl-39 {
		right: -2.4375rem !important
	}

	.posmb-xl-39 {
		bottom: -2.4375rem !important
	}

	.posml-xl-39 {
		left: -2.4375rem !important
	}

	.pos-xl-40 {
		top: 2.5rem !important;
		bottom: 2.5rem !important
	}

	.pos-xl-40,
	.posx-xl-40 {
		right: 2.5rem !important;
		left: 2.5rem !important
	}

	.posy-xl-40 {
		bottom: 2.5rem !important
	}

	.post-xl-40,
	.posy-xl-40 {
		top: 2.5rem !important
	}

	.posr-xl-40 {
		right: 2.5rem !important
	}

	.posb-xl-40 {
		bottom: 2.5rem !important
	}

	.posl-xl-40 {
		left: 2.5rem !important
	}

	.posmt-xl-40 {
		top: -2.5rem !important
	}

	.posmr-xl-40 {
		right: -2.5rem !important
	}

	.posmb-xl-40 {
		bottom: -2.5rem !important
	}

	.posml-xl-40 {
		left: -2.5rem !important
	}

	.pos-xl-41 {
		top: 2.5625rem !important;
		bottom: 2.5625rem !important
	}

	.pos-xl-41,
	.posx-xl-41 {
		right: 2.5625rem !important;
		left: 2.5625rem !important
	}

	.posy-xl-41 {
		bottom: 2.5625rem !important
	}

	.post-xl-41,
	.posy-xl-41 {
		top: 2.5625rem !important
	}

	.posr-xl-41 {
		right: 2.5625rem !important
	}

	.posb-xl-41 {
		bottom: 2.5625rem !important
	}

	.posl-xl-41 {
		left: 2.5625rem !important
	}

	.posmt-xl-41 {
		top: -2.5625rem !important
	}

	.posmr-xl-41 {
		right: -2.5625rem !important
	}

	.posmb-xl-41 {
		bottom: -2.5625rem !important
	}

	.posml-xl-41 {
		left: -2.5625rem !important
	}

	.pos-xl-42 {
		top: 2.625rem !important;
		bottom: 2.625rem !important
	}

	.pos-xl-42,
	.posx-xl-42 {
		right: 2.625rem !important;
		left: 2.625rem !important
	}

	.posy-xl-42 {
		bottom: 2.625rem !important
	}

	.post-xl-42,
	.posy-xl-42 {
		top: 2.625rem !important
	}

	.posr-xl-42 {
		right: 2.625rem !important
	}

	.posb-xl-42 {
		bottom: 2.625rem !important
	}

	.posl-xl-42 {
		left: 2.625rem !important
	}

	.posmt-xl-42 {
		top: -2.625rem !important
	}

	.posmr-xl-42 {
		right: -2.625rem !important
	}

	.posmb-xl-42 {
		bottom: -2.625rem !important
	}

	.posml-xl-42 {
		left: -2.625rem !important
	}

	.pos-xl-43 {
		top: 2.6875rem !important;
		bottom: 2.6875rem !important
	}

	.pos-xl-43,
	.posx-xl-43 {
		right: 2.6875rem !important;
		left: 2.6875rem !important
	}

	.posy-xl-43 {
		bottom: 2.6875rem !important
	}

	.post-xl-43,
	.posy-xl-43 {
		top: 2.6875rem !important
	}

	.posr-xl-43 {
		right: 2.6875rem !important
	}

	.posb-xl-43 {
		bottom: 2.6875rem !important
	}

	.posl-xl-43 {
		left: 2.6875rem !important
	}

	.posmt-xl-43 {
		top: -2.6875rem !important
	}

	.posmr-xl-43 {
		right: -2.6875rem !important
	}

	.posmb-xl-43 {
		bottom: -2.6875rem !important
	}

	.posml-xl-43 {
		left: -2.6875rem !important
	}

	.pos-xl-44 {
		top: 2.75rem !important;
		bottom: 2.75rem !important
	}

	.pos-xl-44,
	.posx-xl-44 {
		right: 2.75rem !important;
		left: 2.75rem !important
	}

	.posy-xl-44 {
		bottom: 2.75rem !important
	}

	.post-xl-44,
	.posy-xl-44 {
		top: 2.75rem !important
	}

	.posr-xl-44 {
		right: 2.75rem !important
	}

	.posb-xl-44 {
		bottom: 2.75rem !important
	}

	.posl-xl-44 {
		left: 2.75rem !important
	}

	.posmt-xl-44 {
		top: -2.75rem !important
	}

	.posmr-xl-44 {
		right: -2.75rem !important
	}

	.posmb-xl-44 {
		bottom: -2.75rem !important
	}

	.posml-xl-44 {
		left: -2.75rem !important
	}

	.pos-xl-45 {
		top: 2.8125rem !important;
		bottom: 2.8125rem !important
	}

	.pos-xl-45,
	.posx-xl-45 {
		right: 2.8125rem !important;
		left: 2.8125rem !important
	}

	.posy-xl-45 {
		bottom: 2.8125rem !important
	}

	.post-xl-45,
	.posy-xl-45 {
		top: 2.8125rem !important
	}

	.posr-xl-45 {
		right: 2.8125rem !important
	}

	.posb-xl-45 {
		bottom: 2.8125rem !important
	}

	.posl-xl-45 {
		left: 2.8125rem !important
	}

	.posmt-xl-45 {
		top: -2.8125rem !important
	}

	.posmr-xl-45 {
		right: -2.8125rem !important
	}

	.posmb-xl-45 {
		bottom: -2.8125rem !important
	}

	.posml-xl-45 {
		left: -2.8125rem !important
	}

	.pos-xl-46 {
		top: 2.875rem !important;
		bottom: 2.875rem !important
	}

	.pos-xl-46,
	.posx-xl-46 {
		right: 2.875rem !important;
		left: 2.875rem !important
	}

	.posy-xl-46 {
		bottom: 2.875rem !important
	}

	.post-xl-46,
	.posy-xl-46 {
		top: 2.875rem !important
	}

	.posr-xl-46 {
		right: 2.875rem !important
	}

	.posb-xl-46 {
		bottom: 2.875rem !important
	}

	.posl-xl-46 {
		left: 2.875rem !important
	}

	.posmt-xl-46 {
		top: -2.875rem !important
	}

	.posmr-xl-46 {
		right: -2.875rem !important
	}

	.posmb-xl-46 {
		bottom: -2.875rem !important
	}

	.posml-xl-46 {
		left: -2.875rem !important
	}

	.pos-xl-47 {
		top: 2.9375rem !important;
		bottom: 2.9375rem !important
	}

	.pos-xl-47,
	.posx-xl-47 {
		right: 2.9375rem !important;
		left: 2.9375rem !important
	}

	.posy-xl-47 {
		bottom: 2.9375rem !important
	}

	.post-xl-47,
	.posy-xl-47 {
		top: 2.9375rem !important
	}

	.posr-xl-47 {
		right: 2.9375rem !important
	}

	.posb-xl-47 {
		bottom: 2.9375rem !important
	}

	.posl-xl-47 {
		left: 2.9375rem !important
	}

	.posmt-xl-47 {
		top: -2.9375rem !important
	}

	.posmr-xl-47 {
		right: -2.9375rem !important
	}

	.posmb-xl-47 {
		bottom: -2.9375rem !important
	}

	.posml-xl-47 {
		left: -2.9375rem !important
	}

	.pos-xl-48 {
		top: 3rem !important;
		bottom: 3rem !important
	}

	.pos-xl-48,
	.posx-xl-48 {
		right: 3rem !important;
		left: 3rem !important
	}

	.posy-xl-48 {
		bottom: 3rem !important
	}

	.post-xl-48,
	.posy-xl-48 {
		top: 3rem !important
	}

	.posr-xl-48 {
		right: 3rem !important
	}

	.posb-xl-48 {
		bottom: 3rem !important
	}

	.posl-xl-48 {
		left: 3rem !important
	}

	.posmt-xl-48 {
		top: -3rem !important
	}

	.posmr-xl-48 {
		right: -3rem !important
	}

	.posmb-xl-48 {
		bottom: -3rem !important
	}

	.posml-xl-48 {
		left: -3rem !important
	}

	.pos-xl-49 {
		top: 3.0625rem !important;
		bottom: 3.0625rem !important
	}

	.pos-xl-49,
	.posx-xl-49 {
		right: 3.0625rem !important;
		left: 3.0625rem !important
	}

	.posy-xl-49 {
		bottom: 3.0625rem !important
	}

	.post-xl-49,
	.posy-xl-49 {
		top: 3.0625rem !important
	}

	.posr-xl-49 {
		right: 3.0625rem !important
	}

	.posb-xl-49 {
		bottom: 3.0625rem !important
	}

	.posl-xl-49 {
		left: 3.0625rem !important
	}

	.posmt-xl-49 {
		top: -3.0625rem !important
	}

	.posmr-xl-49 {
		right: -3.0625rem !important
	}

	.posmb-xl-49 {
		bottom: -3.0625rem !important
	}

	.posml-xl-49 {
		left: -3.0625rem !important
	}

	.pos-xl-50 {
		top: 3.125rem !important;
		bottom: 3.125rem !important
	}

	.pos-xl-50,
	.posx-xl-50 {
		right: 3.125rem !important;
		left: 3.125rem !important
	}

	.posy-xl-50 {
		bottom: 3.125rem !important
	}

	.post-xl-50,
	.posy-xl-50 {
		top: 3.125rem !important
	}

	.posr-xl-50 {
		right: 3.125rem !important
	}

	.posb-xl-50 {
		bottom: 3.125rem !important
	}

	.posl-xl-50 {
		left: 3.125rem !important
	}

	.posmt-xl-50 {
		top: -3.125rem !important
	}

	.posmr-xl-50 {
		right: -3.125rem !important
	}

	.posmb-xl-50 {
		bottom: -3.125rem !important
	}

	.posml-xl-50 {
		left: -3.125rem !important
	}

	.pos-xl-51 {
		top: 3.1875rem !important;
		bottom: 3.1875rem !important
	}

	.pos-xl-51,
	.posx-xl-51 {
		right: 3.1875rem !important;
		left: 3.1875rem !important
	}

	.posy-xl-51 {
		bottom: 3.1875rem !important
	}

	.post-xl-51,
	.posy-xl-51 {
		top: 3.1875rem !important
	}

	.posr-xl-51 {
		right: 3.1875rem !important
	}

	.posb-xl-51 {
		bottom: 3.1875rem !important
	}

	.posl-xl-51 {
		left: 3.1875rem !important
	}

	.posmt-xl-51 {
		top: -3.1875rem !important
	}

	.posmr-xl-51 {
		right: -3.1875rem !important
	}

	.posmb-xl-51 {
		bottom: -3.1875rem !important
	}

	.posml-xl-51 {
		left: -3.1875rem !important
	}

	.pos-xl-52 {
		top: 3.25rem !important;
		bottom: 3.25rem !important
	}

	.pos-xl-52,
	.posx-xl-52 {
		right: 3.25rem !important;
		left: 3.25rem !important
	}

	.posy-xl-52 {
		bottom: 3.25rem !important
	}

	.post-xl-52,
	.posy-xl-52 {
		top: 3.25rem !important
	}

	.posr-xl-52 {
		right: 3.25rem !important
	}

	.posb-xl-52 {
		bottom: 3.25rem !important
	}

	.posl-xl-52 {
		left: 3.25rem !important
	}

	.posmt-xl-52 {
		top: -3.25rem !important
	}

	.posmr-xl-52 {
		right: -3.25rem !important
	}

	.posmb-xl-52 {
		bottom: -3.25rem !important
	}

	.posml-xl-52 {
		left: -3.25rem !important
	}

	.pos-xl-53 {
		top: 3.3125rem !important;
		bottom: 3.3125rem !important
	}

	.pos-xl-53,
	.posx-xl-53 {
		right: 3.3125rem !important;
		left: 3.3125rem !important
	}

	.posy-xl-53 {
		bottom: 3.3125rem !important
	}

	.post-xl-53,
	.posy-xl-53 {
		top: 3.3125rem !important
	}

	.posr-xl-53 {
		right: 3.3125rem !important
	}

	.posb-xl-53 {
		bottom: 3.3125rem !important
	}

	.posl-xl-53 {
		left: 3.3125rem !important
	}

	.posmt-xl-53 {
		top: -3.3125rem !important
	}

	.posmr-xl-53 {
		right: -3.3125rem !important
	}

	.posmb-xl-53 {
		bottom: -3.3125rem !important
	}

	.posml-xl-53 {
		left: -3.3125rem !important
	}

	.pos-xl-54 {
		top: 3.375rem !important;
		bottom: 3.375rem !important
	}

	.pos-xl-54,
	.posx-xl-54 {
		right: 3.375rem !important;
		left: 3.375rem !important
	}

	.posy-xl-54 {
		bottom: 3.375rem !important
	}

	.post-xl-54,
	.posy-xl-54 {
		top: 3.375rem !important
	}

	.posr-xl-54 {
		right: 3.375rem !important
	}

	.posb-xl-54 {
		bottom: 3.375rem !important
	}

	.posl-xl-54 {
		left: 3.375rem !important
	}

	.posmt-xl-54 {
		top: -3.375rem !important
	}

	.posmr-xl-54 {
		right: -3.375rem !important
	}

	.posmb-xl-54 {
		bottom: -3.375rem !important
	}

	.posml-xl-54 {
		left: -3.375rem !important
	}

	.pos-xl-55 {
		top: 3.4375rem !important;
		bottom: 3.4375rem !important
	}

	.pos-xl-55,
	.posx-xl-55 {
		right: 3.4375rem !important;
		left: 3.4375rem !important
	}

	.posy-xl-55 {
		bottom: 3.4375rem !important
	}

	.post-xl-55,
	.posy-xl-55 {
		top: 3.4375rem !important
	}

	.posr-xl-55 {
		right: 3.4375rem !important
	}

	.posb-xl-55 {
		bottom: 3.4375rem !important
	}

	.posl-xl-55 {
		left: 3.4375rem !important
	}

	.posmt-xl-55 {
		top: -3.4375rem !important
	}

	.posmr-xl-55 {
		right: -3.4375rem !important
	}

	.posmb-xl-55 {
		bottom: -3.4375rem !important
	}

	.posml-xl-55 {
		left: -3.4375rem !important
	}

	.pos-xl-56 {
		top: 3.5rem !important;
		bottom: 3.5rem !important
	}

	.pos-xl-56,
	.posx-xl-56 {
		right: 3.5rem !important;
		left: 3.5rem !important
	}

	.posy-xl-56 {
		bottom: 3.5rem !important
	}

	.post-xl-56,
	.posy-xl-56 {
		top: 3.5rem !important
	}

	.posr-xl-56 {
		right: 3.5rem !important
	}

	.posb-xl-56 {
		bottom: 3.5rem !important
	}

	.posl-xl-56 {
		left: 3.5rem !important
	}

	.posmt-xl-56 {
		top: -3.5rem !important
	}

	.posmr-xl-56 {
		right: -3.5rem !important
	}

	.posmb-xl-56 {
		bottom: -3.5rem !important
	}

	.posml-xl-56 {
		left: -3.5rem !important
	}

	.pos-xl-57 {
		top: 3.5625rem !important;
		bottom: 3.5625rem !important
	}

	.pos-xl-57,
	.posx-xl-57 {
		right: 3.5625rem !important;
		left: 3.5625rem !important
	}

	.posy-xl-57 {
		bottom: 3.5625rem !important
	}

	.post-xl-57,
	.posy-xl-57 {
		top: 3.5625rem !important
	}

	.posr-xl-57 {
		right: 3.5625rem !important
	}

	.posb-xl-57 {
		bottom: 3.5625rem !important
	}

	.posl-xl-57 {
		left: 3.5625rem !important
	}

	.posmt-xl-57 {
		top: -3.5625rem !important
	}

	.posmr-xl-57 {
		right: -3.5625rem !important
	}

	.posmb-xl-57 {
		bottom: -3.5625rem !important
	}

	.posml-xl-57 {
		left: -3.5625rem !important
	}

	.pos-xl-58 {
		top: 3.625rem !important;
		bottom: 3.625rem !important
	}

	.pos-xl-58,
	.posx-xl-58 {
		right: 3.625rem !important;
		left: 3.625rem !important
	}

	.posy-xl-58 {
		bottom: 3.625rem !important
	}

	.post-xl-58,
	.posy-xl-58 {
		top: 3.625rem !important
	}

	.posr-xl-58 {
		right: 3.625rem !important
	}

	.posb-xl-58 {
		bottom: 3.625rem !important
	}

	.posl-xl-58 {
		left: 3.625rem !important
	}

	.posmt-xl-58 {
		top: -3.625rem !important
	}

	.posmr-xl-58 {
		right: -3.625rem !important
	}

	.posmb-xl-58 {
		bottom: -3.625rem !important
	}

	.posml-xl-58 {
		left: -3.625rem !important
	}

	.pos-xl-59 {
		top: 3.6875rem !important;
		bottom: 3.6875rem !important
	}

	.pos-xl-59,
	.posx-xl-59 {
		right: 3.6875rem !important;
		left: 3.6875rem !important
	}

	.posy-xl-59 {
		bottom: 3.6875rem !important
	}

	.post-xl-59,
	.posy-xl-59 {
		top: 3.6875rem !important
	}

	.posr-xl-59 {
		right: 3.6875rem !important
	}

	.posb-xl-59 {
		bottom: 3.6875rem !important
	}

	.posl-xl-59 {
		left: 3.6875rem !important
	}

	.posmt-xl-59 {
		top: -3.6875rem !important
	}

	.posmr-xl-59 {
		right: -3.6875rem !important
	}

	.posmb-xl-59 {
		bottom: -3.6875rem !important
	}

	.posml-xl-59 {
		left: -3.6875rem !important
	}

	.pos-xl-60 {
		top: 3.75rem !important;
		bottom: 3.75rem !important
	}

	.pos-xl-60,
	.posx-xl-60 {
		right: 3.75rem !important;
		left: 3.75rem !important
	}

	.posy-xl-60 {
		bottom: 3.75rem !important
	}

	.post-xl-60,
	.posy-xl-60 {
		top: 3.75rem !important
	}

	.posr-xl-60 {
		right: 3.75rem !important
	}

	.posb-xl-60 {
		bottom: 3.75rem !important
	}

	.posl-xl-60 {
		left: 3.75rem !important
	}

	.posmt-xl-60 {
		top: -3.75rem !important
	}

	.posmr-xl-60 {
		right: -3.75rem !important
	}

	.posmb-xl-60 {
		bottom: -3.75rem !important
	}

	.posml-xl-60 {
		left: -3.75rem !important
	}

	.pos-xl-61 {
		top: 3.8125rem !important;
		bottom: 3.8125rem !important
	}

	.pos-xl-61,
	.posx-xl-61 {
		right: 3.8125rem !important;
		left: 3.8125rem !important
	}

	.posy-xl-61 {
		bottom: 3.8125rem !important
	}

	.post-xl-61,
	.posy-xl-61 {
		top: 3.8125rem !important
	}

	.posr-xl-61 {
		right: 3.8125rem !important
	}

	.posb-xl-61 {
		bottom: 3.8125rem !important
	}

	.posl-xl-61 {
		left: 3.8125rem !important
	}

	.posmt-xl-61 {
		top: -3.8125rem !important
	}

	.posmr-xl-61 {
		right: -3.8125rem !important
	}

	.posmb-xl-61 {
		bottom: -3.8125rem !important
	}

	.posml-xl-61 {
		left: -3.8125rem !important
	}

	.pos-xl-62 {
		top: 3.875rem !important;
		bottom: 3.875rem !important
	}

	.pos-xl-62,
	.posx-xl-62 {
		right: 3.875rem !important;
		left: 3.875rem !important
	}

	.posy-xl-62 {
		bottom: 3.875rem !important
	}

	.post-xl-62,
	.posy-xl-62 {
		top: 3.875rem !important
	}

	.posr-xl-62 {
		right: 3.875rem !important
	}

	.posb-xl-62 {
		bottom: 3.875rem !important
	}

	.posl-xl-62 {
		left: 3.875rem !important
	}

	.posmt-xl-62 {
		top: -3.875rem !important
	}

	.posmr-xl-62 {
		right: -3.875rem !important
	}

	.posmb-xl-62 {
		bottom: -3.875rem !important
	}

	.posml-xl-62 {
		left: -3.875rem !important
	}

	.pos-xl-63 {
		top: 3.9375rem !important;
		bottom: 3.9375rem !important
	}

	.pos-xl-63,
	.posx-xl-63 {
		right: 3.9375rem !important;
		left: 3.9375rem !important
	}

	.posy-xl-63 {
		bottom: 3.9375rem !important
	}

	.post-xl-63,
	.posy-xl-63 {
		top: 3.9375rem !important
	}

	.posr-xl-63 {
		right: 3.9375rem !important
	}

	.posb-xl-63 {
		bottom: 3.9375rem !important
	}

	.posl-xl-63 {
		left: 3.9375rem !important
	}

	.posmt-xl-63 {
		top: -3.9375rem !important
	}

	.posmr-xl-63 {
		right: -3.9375rem !important
	}

	.posmb-xl-63 {
		bottom: -3.9375rem !important
	}

	.posml-xl-63 {
		left: -3.9375rem !important
	}

	.pos-xl-64 {
		top: 4rem !important;
		bottom: 4rem !important
	}

	.pos-xl-64,
	.posx-xl-64 {
		right: 4rem !important;
		left: 4rem !important
	}

	.posy-xl-64 {
		bottom: 4rem !important
	}

	.post-xl-64,
	.posy-xl-64 {
		top: 4rem !important
	}

	.posr-xl-64 {
		right: 4rem !important
	}

	.posb-xl-64 {
		bottom: 4rem !important
	}

	.posl-xl-64 {
		left: 4rem !important
	}

	.posmt-xl-64 {
		top: -4rem !important
	}

	.posmr-xl-64 {
		right: -4rem !important
	}

	.posmb-xl-64 {
		bottom: -4rem !important
	}

	.posml-xl-64 {
		left: -4rem !important
	}

	.pos-xl-65 {
		top: 4.0625rem !important;
		bottom: 4.0625rem !important
	}

	.pos-xl-65,
	.posx-xl-65 {
		right: 4.0625rem !important;
		left: 4.0625rem !important
	}

	.posy-xl-65 {
		bottom: 4.0625rem !important
	}

	.post-xl-65,
	.posy-xl-65 {
		top: 4.0625rem !important
	}

	.posr-xl-65 {
		right: 4.0625rem !important
	}

	.posb-xl-65 {
		bottom: 4.0625rem !important
	}

	.posl-xl-65 {
		left: 4.0625rem !important
	}

	.posmt-xl-65 {
		top: -4.0625rem !important
	}

	.posmr-xl-65 {
		right: -4.0625rem !important
	}

	.posmb-xl-65 {
		bottom: -4.0625rem !important
	}

	.posml-xl-65 {
		left: -4.0625rem !important
	}

	.pos-xl-66 {
		top: 4.125rem !important;
		bottom: 4.125rem !important
	}

	.pos-xl-66,
	.posx-xl-66 {
		right: 4.125rem !important;
		left: 4.125rem !important
	}

	.posy-xl-66 {
		bottom: 4.125rem !important
	}

	.post-xl-66,
	.posy-xl-66 {
		top: 4.125rem !important
	}

	.posr-xl-66 {
		right: 4.125rem !important
	}

	.posb-xl-66 {
		bottom: 4.125rem !important
	}

	.posl-xl-66 {
		left: 4.125rem !important
	}

	.posmt-xl-66 {
		top: -4.125rem !important
	}

	.posmr-xl-66 {
		right: -4.125rem !important
	}

	.posmb-xl-66 {
		bottom: -4.125rem !important
	}

	.posml-xl-66 {
		left: -4.125rem !important
	}

	.pos-xl-67 {
		top: 4.1875rem !important;
		bottom: 4.1875rem !important
	}

	.pos-xl-67,
	.posx-xl-67 {
		right: 4.1875rem !important;
		left: 4.1875rem !important
	}

	.posy-xl-67 {
		bottom: 4.1875rem !important
	}

	.post-xl-67,
	.posy-xl-67 {
		top: 4.1875rem !important
	}

	.posr-xl-67 {
		right: 4.1875rem !important
	}

	.posb-xl-67 {
		bottom: 4.1875rem !important
	}

	.posl-xl-67 {
		left: 4.1875rem !important
	}

	.posmt-xl-67 {
		top: -4.1875rem !important
	}

	.posmr-xl-67 {
		right: -4.1875rem !important
	}

	.posmb-xl-67 {
		bottom: -4.1875rem !important
	}

	.posml-xl-67 {
		left: -4.1875rem !important
	}

	.pos-xl-68 {
		top: 4.25rem !important;
		bottom: 4.25rem !important
	}

	.pos-xl-68,
	.posx-xl-68 {
		right: 4.25rem !important;
		left: 4.25rem !important
	}

	.posy-xl-68 {
		bottom: 4.25rem !important
	}

	.post-xl-68,
	.posy-xl-68 {
		top: 4.25rem !important
	}

	.posr-xl-68 {
		right: 4.25rem !important
	}

	.posb-xl-68 {
		bottom: 4.25rem !important
	}

	.posl-xl-68 {
		left: 4.25rem !important
	}

	.posmt-xl-68 {
		top: -4.25rem !important
	}

	.posmr-xl-68 {
		right: -4.25rem !important
	}

	.posmb-xl-68 {
		bottom: -4.25rem !important
	}

	.posml-xl-68 {
		left: -4.25rem !important
	}

	.pos-xl-69 {
		top: 4.3125rem !important;
		bottom: 4.3125rem !important
	}

	.pos-xl-69,
	.posx-xl-69 {
		right: 4.3125rem !important;
		left: 4.3125rem !important
	}

	.posy-xl-69 {
		bottom: 4.3125rem !important
	}

	.post-xl-69,
	.posy-xl-69 {
		top: 4.3125rem !important
	}

	.posr-xl-69 {
		right: 4.3125rem !important
	}

	.posb-xl-69 {
		bottom: 4.3125rem !important
	}

	.posl-xl-69 {
		left: 4.3125rem !important
	}

	.posmt-xl-69 {
		top: -4.3125rem !important
	}

	.posmr-xl-69 {
		right: -4.3125rem !important
	}

	.posmb-xl-69 {
		bottom: -4.3125rem !important
	}

	.posml-xl-69 {
		left: -4.3125rem !important
	}

	.pos-xl-70 {
		top: 4.375rem !important;
		bottom: 4.375rem !important
	}

	.pos-xl-70,
	.posx-xl-70 {
		right: 4.375rem !important;
		left: 4.375rem !important
	}

	.posy-xl-70 {
		bottom: 4.375rem !important
	}

	.post-xl-70,
	.posy-xl-70 {
		top: 4.375rem !important
	}

	.posr-xl-70 {
		right: 4.375rem !important
	}

	.posb-xl-70 {
		bottom: 4.375rem !important
	}

	.posl-xl-70 {
		left: 4.375rem !important
	}

	.posmt-xl-70 {
		top: -4.375rem !important
	}

	.posmr-xl-70 {
		right: -4.375rem !important
	}

	.posmb-xl-70 {
		bottom: -4.375rem !important
	}

	.posml-xl-70 {
		left: -4.375rem !important
	}

	.pos-xl-71 {
		top: 4.4375rem !important;
		bottom: 4.4375rem !important
	}

	.pos-xl-71,
	.posx-xl-71 {
		right: 4.4375rem !important;
		left: 4.4375rem !important
	}

	.posy-xl-71 {
		bottom: 4.4375rem !important
	}

	.post-xl-71,
	.posy-xl-71 {
		top: 4.4375rem !important
	}

	.posr-xl-71 {
		right: 4.4375rem !important
	}

	.posb-xl-71 {
		bottom: 4.4375rem !important
	}

	.posl-xl-71 {
		left: 4.4375rem !important
	}

	.posmt-xl-71 {
		top: -4.4375rem !important
	}

	.posmr-xl-71 {
		right: -4.4375rem !important
	}

	.posmb-xl-71 {
		bottom: -4.4375rem !important
	}

	.posml-xl-71 {
		left: -4.4375rem !important
	}

	.pos-xl-72 {
		top: 4.5rem !important;
		bottom: 4.5rem !important
	}

	.pos-xl-72,
	.posx-xl-72 {
		right: 4.5rem !important;
		left: 4.5rem !important
	}

	.posy-xl-72 {
		bottom: 4.5rem !important
	}

	.post-xl-72,
	.posy-xl-72 {
		top: 4.5rem !important
	}

	.posr-xl-72 {
		right: 4.5rem !important
	}

	.posb-xl-72 {
		bottom: 4.5rem !important
	}

	.posl-xl-72 {
		left: 4.5rem !important
	}

	.posmt-xl-72 {
		top: -4.5rem !important
	}

	.posmr-xl-72 {
		right: -4.5rem !important
	}

	.posmb-xl-72 {
		bottom: -4.5rem !important
	}

	.posml-xl-72 {
		left: -4.5rem !important
	}

	.pos-xl-73 {
		top: 4.5625rem !important;
		bottom: 4.5625rem !important
	}

	.pos-xl-73,
	.posx-xl-73 {
		right: 4.5625rem !important;
		left: 4.5625rem !important
	}

	.posy-xl-73 {
		bottom: 4.5625rem !important
	}

	.post-xl-73,
	.posy-xl-73 {
		top: 4.5625rem !important
	}

	.posr-xl-73 {
		right: 4.5625rem !important
	}

	.posb-xl-73 {
		bottom: 4.5625rem !important
	}

	.posl-xl-73 {
		left: 4.5625rem !important
	}

	.posmt-xl-73 {
		top: -4.5625rem !important
	}

	.posmr-xl-73 {
		right: -4.5625rem !important
	}

	.posmb-xl-73 {
		bottom: -4.5625rem !important
	}

	.posml-xl-73 {
		left: -4.5625rem !important
	}

	.pos-xl-74 {
		top: 4.625rem !important;
		bottom: 4.625rem !important
	}

	.pos-xl-74,
	.posx-xl-74 {
		right: 4.625rem !important;
		left: 4.625rem !important
	}

	.posy-xl-74 {
		bottom: 4.625rem !important
	}

	.post-xl-74,
	.posy-xl-74 {
		top: 4.625rem !important
	}

	.posr-xl-74 {
		right: 4.625rem !important
	}

	.posb-xl-74 {
		bottom: 4.625rem !important
	}

	.posl-xl-74 {
		left: 4.625rem !important
	}

	.posmt-xl-74 {
		top: -4.625rem !important
	}

	.posmr-xl-74 {
		right: -4.625rem !important
	}

	.posmb-xl-74 {
		bottom: -4.625rem !important
	}

	.posml-xl-74 {
		left: -4.625rem !important
	}

	.pos-xl-75 {
		top: 4.6875rem !important;
		bottom: 4.6875rem !important
	}

	.pos-xl-75,
	.posx-xl-75 {
		right: 4.6875rem !important;
		left: 4.6875rem !important
	}

	.posy-xl-75 {
		bottom: 4.6875rem !important
	}

	.post-xl-75,
	.posy-xl-75 {
		top: 4.6875rem !important
	}

	.posr-xl-75 {
		right: 4.6875rem !important
	}

	.posb-xl-75 {
		bottom: 4.6875rem !important
	}

	.posl-xl-75 {
		left: 4.6875rem !important
	}

	.posmt-xl-75 {
		top: -4.6875rem !important
	}

	.posmr-xl-75 {
		right: -4.6875rem !important
	}

	.posmb-xl-75 {
		bottom: -4.6875rem !important
	}

	.posml-xl-75 {
		left: -4.6875rem !important
	}

	.pos-xl-76 {
		top: 4.75rem !important;
		bottom: 4.75rem !important
	}

	.pos-xl-76,
	.posx-xl-76 {
		right: 4.75rem !important;
		left: 4.75rem !important
	}

	.posy-xl-76 {
		bottom: 4.75rem !important
	}

	.post-xl-76,
	.posy-xl-76 {
		top: 4.75rem !important
	}

	.posr-xl-76 {
		right: 4.75rem !important
	}

	.posb-xl-76 {
		bottom: 4.75rem !important
	}

	.posl-xl-76 {
		left: 4.75rem !important
	}

	.posmt-xl-76 {
		top: -4.75rem !important
	}

	.posmr-xl-76 {
		right: -4.75rem !important
	}

	.posmb-xl-76 {
		bottom: -4.75rem !important
	}

	.posml-xl-76 {
		left: -4.75rem !important
	}

	.pos-xl-77 {
		top: 4.8125rem !important;
		bottom: 4.8125rem !important
	}

	.pos-xl-77,
	.posx-xl-77 {
		right: 4.8125rem !important;
		left: 4.8125rem !important
	}

	.posy-xl-77 {
		bottom: 4.8125rem !important
	}

	.post-xl-77,
	.posy-xl-77 {
		top: 4.8125rem !important
	}

	.posr-xl-77 {
		right: 4.8125rem !important
	}

	.posb-xl-77 {
		bottom: 4.8125rem !important
	}

	.posl-xl-77 {
		left: 4.8125rem !important
	}

	.posmt-xl-77 {
		top: -4.8125rem !important
	}

	.posmr-xl-77 {
		right: -4.8125rem !important
	}

	.posmb-xl-77 {
		bottom: -4.8125rem !important
	}

	.posml-xl-77 {
		left: -4.8125rem !important
	}

	.pos-xl-78 {
		top: 4.875rem !important;
		bottom: 4.875rem !important
	}

	.pos-xl-78,
	.posx-xl-78 {
		right: 4.875rem !important;
		left: 4.875rem !important
	}

	.posy-xl-78 {
		bottom: 4.875rem !important
	}

	.post-xl-78,
	.posy-xl-78 {
		top: 4.875rem !important
	}

	.posr-xl-78 {
		right: 4.875rem !important
	}

	.posb-xl-78 {
		bottom: 4.875rem !important
	}

	.posl-xl-78 {
		left: 4.875rem !important
	}

	.posmt-xl-78 {
		top: -4.875rem !important
	}

	.posmr-xl-78 {
		right: -4.875rem !important
	}

	.posmb-xl-78 {
		bottom: -4.875rem !important
	}

	.posml-xl-78 {
		left: -4.875rem !important
	}

	.pos-xl-79 {
		top: 4.9375rem !important;
		bottom: 4.9375rem !important
	}

	.pos-xl-79,
	.posx-xl-79 {
		right: 4.9375rem !important;
		left: 4.9375rem !important
	}

	.posy-xl-79 {
		bottom: 4.9375rem !important
	}

	.post-xl-79,
	.posy-xl-79 {
		top: 4.9375rem !important
	}

	.posr-xl-79 {
		right: 4.9375rem !important
	}

	.posb-xl-79 {
		bottom: 4.9375rem !important
	}

	.posl-xl-79 {
		left: 4.9375rem !important
	}

	.posmt-xl-79 {
		top: -4.9375rem !important
	}

	.posmr-xl-79 {
		right: -4.9375rem !important
	}

	.posmb-xl-79 {
		bottom: -4.9375rem !important
	}

	.posml-xl-79 {
		left: -4.9375rem !important
	}

	.pos-xl-80 {
		top: 5rem !important;
		bottom: 5rem !important
	}

	.pos-xl-80,
	.posx-xl-80 {
		right: 5rem !important;
		left: 5rem !important
	}

	.posy-xl-80 {
		bottom: 5rem !important
	}

	.post-xl-80,
	.posy-xl-80 {
		top: 5rem !important
	}

	.posr-xl-80 {
		right: 5rem !important
	}

	.posb-xl-80 {
		bottom: 5rem !important
	}

	.posl-xl-80 {
		left: 5rem !important
	}

	.posmt-xl-80 {
		top: -5rem !important
	}

	.posmr-xl-80 {
		right: -5rem !important
	}

	.posmb-xl-80 {
		bottom: -5rem !important
	}

	.posml-xl-80 {
		left: -5rem !important
	}

	.pos-xl-81 {
		top: 5.0625rem !important;
		bottom: 5.0625rem !important
	}

	.pos-xl-81,
	.posx-xl-81 {
		right: 5.0625rem !important;
		left: 5.0625rem !important
	}

	.posy-xl-81 {
		bottom: 5.0625rem !important
	}

	.post-xl-81,
	.posy-xl-81 {
		top: 5.0625rem !important
	}

	.posr-xl-81 {
		right: 5.0625rem !important
	}

	.posb-xl-81 {
		bottom: 5.0625rem !important
	}

	.posl-xl-81 {
		left: 5.0625rem !important
	}

	.posmt-xl-81 {
		top: -5.0625rem !important
	}

	.posmr-xl-81 {
		right: -5.0625rem !important
	}

	.posmb-xl-81 {
		bottom: -5.0625rem !important
	}

	.posml-xl-81 {
		left: -5.0625rem !important
	}

	.pos-xl-82 {
		top: 5.125rem !important;
		bottom: 5.125rem !important
	}

	.pos-xl-82,
	.posx-xl-82 {
		right: 5.125rem !important;
		left: 5.125rem !important
	}

	.posy-xl-82 {
		bottom: 5.125rem !important
	}

	.post-xl-82,
	.posy-xl-82 {
		top: 5.125rem !important
	}

	.posr-xl-82 {
		right: 5.125rem !important
	}

	.posb-xl-82 {
		bottom: 5.125rem !important
	}

	.posl-xl-82 {
		left: 5.125rem !important
	}

	.posmt-xl-82 {
		top: -5.125rem !important
	}

	.posmr-xl-82 {
		right: -5.125rem !important
	}

	.posmb-xl-82 {
		bottom: -5.125rem !important
	}

	.posml-xl-82 {
		left: -5.125rem !important
	}

	.pos-xl-83 {
		top: 5.1875rem !important;
		bottom: 5.1875rem !important
	}

	.pos-xl-83,
	.posx-xl-83 {
		right: 5.1875rem !important;
		left: 5.1875rem !important
	}

	.posy-xl-83 {
		bottom: 5.1875rem !important
	}

	.post-xl-83,
	.posy-xl-83 {
		top: 5.1875rem !important
	}

	.posr-xl-83 {
		right: 5.1875rem !important
	}

	.posb-xl-83 {
		bottom: 5.1875rem !important
	}

	.posl-xl-83 {
		left: 5.1875rem !important
	}

	.posmt-xl-83 {
		top: -5.1875rem !important
	}

	.posmr-xl-83 {
		right: -5.1875rem !important
	}

	.posmb-xl-83 {
		bottom: -5.1875rem !important
	}

	.posml-xl-83 {
		left: -5.1875rem !important
	}

	.pos-xl-84 {
		top: 5.25rem !important;
		bottom: 5.25rem !important
	}

	.pos-xl-84,
	.posx-xl-84 {
		right: 5.25rem !important;
		left: 5.25rem !important
	}

	.posy-xl-84 {
		bottom: 5.25rem !important
	}

	.post-xl-84,
	.posy-xl-84 {
		top: 5.25rem !important
	}

	.posr-xl-84 {
		right: 5.25rem !important
	}

	.posb-xl-84 {
		bottom: 5.25rem !important
	}

	.posl-xl-84 {
		left: 5.25rem !important
	}

	.posmt-xl-84 {
		top: -5.25rem !important
	}

	.posmr-xl-84 {
		right: -5.25rem !important
	}

	.posmb-xl-84 {
		bottom: -5.25rem !important
	}

	.posml-xl-84 {
		left: -5.25rem !important
	}

	.pos-xl-85 {
		top: 5.3125rem !important;
		bottom: 5.3125rem !important
	}

	.pos-xl-85,
	.posx-xl-85 {
		right: 5.3125rem !important;
		left: 5.3125rem !important
	}

	.posy-xl-85 {
		bottom: 5.3125rem !important
	}

	.post-xl-85,
	.posy-xl-85 {
		top: 5.3125rem !important
	}

	.posr-xl-85 {
		right: 5.3125rem !important
	}

	.posb-xl-85 {
		bottom: 5.3125rem !important
	}

	.posl-xl-85 {
		left: 5.3125rem !important
	}

	.posmt-xl-85 {
		top: -5.3125rem !important
	}

	.posmr-xl-85 {
		right: -5.3125rem !important
	}

	.posmb-xl-85 {
		bottom: -5.3125rem !important
	}

	.posml-xl-85 {
		left: -5.3125rem !important
	}

	.pos-xl-86 {
		top: 5.375rem !important;
		bottom: 5.375rem !important
	}

	.pos-xl-86,
	.posx-xl-86 {
		right: 5.375rem !important;
		left: 5.375rem !important
	}

	.posy-xl-86 {
		bottom: 5.375rem !important
	}

	.post-xl-86,
	.posy-xl-86 {
		top: 5.375rem !important
	}

	.posr-xl-86 {
		right: 5.375rem !important
	}

	.posb-xl-86 {
		bottom: 5.375rem !important
	}

	.posl-xl-86 {
		left: 5.375rem !important
	}

	.posmt-xl-86 {
		top: -5.375rem !important
	}

	.posmr-xl-86 {
		right: -5.375rem !important
	}

	.posmb-xl-86 {
		bottom: -5.375rem !important
	}

	.posml-xl-86 {
		left: -5.375rem !important
	}

	.pos-xl-87 {
		top: 5.4375rem !important;
		bottom: 5.4375rem !important
	}

	.pos-xl-87,
	.posx-xl-87 {
		right: 5.4375rem !important;
		left: 5.4375rem !important
	}

	.posy-xl-87 {
		bottom: 5.4375rem !important
	}

	.post-xl-87,
	.posy-xl-87 {
		top: 5.4375rem !important
	}

	.posr-xl-87 {
		right: 5.4375rem !important
	}

	.posb-xl-87 {
		bottom: 5.4375rem !important
	}

	.posl-xl-87 {
		left: 5.4375rem !important
	}

	.posmt-xl-87 {
		top: -5.4375rem !important
	}

	.posmr-xl-87 {
		right: -5.4375rem !important
	}

	.posmb-xl-87 {
		bottom: -5.4375rem !important
	}

	.posml-xl-87 {
		left: -5.4375rem !important
	}

	.pos-xl-88 {
		top: 5.5rem !important;
		bottom: 5.5rem !important
	}

	.pos-xl-88,
	.posx-xl-88 {
		right: 5.5rem !important;
		left: 5.5rem !important
	}

	.posy-xl-88 {
		bottom: 5.5rem !important
	}

	.post-xl-88,
	.posy-xl-88 {
		top: 5.5rem !important
	}

	.posr-xl-88 {
		right: 5.5rem !important
	}

	.posb-xl-88 {
		bottom: 5.5rem !important
	}

	.posl-xl-88 {
		left: 5.5rem !important
	}

	.posmt-xl-88 {
		top: -5.5rem !important
	}

	.posmr-xl-88 {
		right: -5.5rem !important
	}

	.posmb-xl-88 {
		bottom: -5.5rem !important
	}

	.posml-xl-88 {
		left: -5.5rem !important
	}

	.pos-xl-89 {
		top: 5.5625rem !important;
		bottom: 5.5625rem !important
	}

	.pos-xl-89,
	.posx-xl-89 {
		right: 5.5625rem !important;
		left: 5.5625rem !important
	}

	.posy-xl-89 {
		bottom: 5.5625rem !important
	}

	.post-xl-89,
	.posy-xl-89 {
		top: 5.5625rem !important
	}

	.posr-xl-89 {
		right: 5.5625rem !important
	}

	.posb-xl-89 {
		bottom: 5.5625rem !important
	}

	.posl-xl-89 {
		left: 5.5625rem !important
	}

	.posmt-xl-89 {
		top: -5.5625rem !important
	}

	.posmr-xl-89 {
		right: -5.5625rem !important
	}

	.posmb-xl-89 {
		bottom: -5.5625rem !important
	}

	.posml-xl-89 {
		left: -5.5625rem !important
	}

	.pos-xl-90 {
		top: 5.625rem !important;
		bottom: 5.625rem !important
	}

	.pos-xl-90,
	.posx-xl-90 {
		right: 5.625rem !important;
		left: 5.625rem !important
	}

	.posy-xl-90 {
		bottom: 5.625rem !important
	}

	.post-xl-90,
	.posy-xl-90 {
		top: 5.625rem !important
	}

	.posr-xl-90 {
		right: 5.625rem !important
	}

	.posb-xl-90 {
		bottom: 5.625rem !important
	}

	.posl-xl-90 {
		left: 5.625rem !important
	}

	.posmt-xl-90 {
		top: -5.625rem !important
	}

	.posmr-xl-90 {
		right: -5.625rem !important
	}

	.posmb-xl-90 {
		bottom: -5.625rem !important
	}

	.posml-xl-90 {
		left: -5.625rem !important
	}

	.pos-xl-91 {
		top: 5.6875rem !important;
		bottom: 5.6875rem !important
	}

	.pos-xl-91,
	.posx-xl-91 {
		right: 5.6875rem !important;
		left: 5.6875rem !important
	}

	.posy-xl-91 {
		bottom: 5.6875rem !important
	}

	.post-xl-91,
	.posy-xl-91 {
		top: 5.6875rem !important
	}

	.posr-xl-91 {
		right: 5.6875rem !important
	}

	.posb-xl-91 {
		bottom: 5.6875rem !important
	}

	.posl-xl-91 {
		left: 5.6875rem !important
	}

	.posmt-xl-91 {
		top: -5.6875rem !important
	}

	.posmr-xl-91 {
		right: -5.6875rem !important
	}

	.posmb-xl-91 {
		bottom: -5.6875rem !important
	}

	.posml-xl-91 {
		left: -5.6875rem !important
	}

	.pos-xl-92 {
		top: 5.75rem !important;
		bottom: 5.75rem !important
	}

	.pos-xl-92,
	.posx-xl-92 {
		right: 5.75rem !important;
		left: 5.75rem !important
	}

	.posy-xl-92 {
		bottom: 5.75rem !important
	}

	.post-xl-92,
	.posy-xl-92 {
		top: 5.75rem !important
	}

	.posr-xl-92 {
		right: 5.75rem !important
	}

	.posb-xl-92 {
		bottom: 5.75rem !important
	}

	.posl-xl-92 {
		left: 5.75rem !important
	}

	.posmt-xl-92 {
		top: -5.75rem !important
	}

	.posmr-xl-92 {
		right: -5.75rem !important
	}

	.posmb-xl-92 {
		bottom: -5.75rem !important
	}

	.posml-xl-92 {
		left: -5.75rem !important
	}

	.pos-xl-93 {
		top: 5.8125rem !important;
		bottom: 5.8125rem !important
	}

	.pos-xl-93,
	.posx-xl-93 {
		right: 5.8125rem !important;
		left: 5.8125rem !important
	}

	.posy-xl-93 {
		bottom: 5.8125rem !important
	}

	.post-xl-93,
	.posy-xl-93 {
		top: 5.8125rem !important
	}

	.posr-xl-93 {
		right: 5.8125rem !important
	}

	.posb-xl-93 {
		bottom: 5.8125rem !important
	}

	.posl-xl-93 {
		left: 5.8125rem !important
	}

	.posmt-xl-93 {
		top: -5.8125rem !important
	}

	.posmr-xl-93 {
		right: -5.8125rem !important
	}

	.posmb-xl-93 {
		bottom: -5.8125rem !important
	}

	.posml-xl-93 {
		left: -5.8125rem !important
	}

	.pos-xl-94 {
		top: 5.875rem !important;
		bottom: 5.875rem !important
	}

	.pos-xl-94,
	.posx-xl-94 {
		right: 5.875rem !important;
		left: 5.875rem !important
	}

	.posy-xl-94 {
		bottom: 5.875rem !important
	}

	.post-xl-94,
	.posy-xl-94 {
		top: 5.875rem !important
	}

	.posr-xl-94 {
		right: 5.875rem !important
	}

	.posb-xl-94 {
		bottom: 5.875rem !important
	}

	.posl-xl-94 {
		left: 5.875rem !important
	}

	.posmt-xl-94 {
		top: -5.875rem !important
	}

	.posmr-xl-94 {
		right: -5.875rem !important
	}

	.posmb-xl-94 {
		bottom: -5.875rem !important
	}

	.posml-xl-94 {
		left: -5.875rem !important
	}

	.pos-xl-95 {
		top: 5.9375rem !important;
		bottom: 5.9375rem !important
	}

	.pos-xl-95,
	.posx-xl-95 {
		right: 5.9375rem !important;
		left: 5.9375rem !important
	}

	.posy-xl-95 {
		bottom: 5.9375rem !important
	}

	.post-xl-95,
	.posy-xl-95 {
		top: 5.9375rem !important
	}

	.posr-xl-95 {
		right: 5.9375rem !important
	}

	.posb-xl-95 {
		bottom: 5.9375rem !important
	}

	.posl-xl-95 {
		left: 5.9375rem !important
	}

	.posmt-xl-95 {
		top: -5.9375rem !important
	}

	.posmr-xl-95 {
		right: -5.9375rem !important
	}

	.posmb-xl-95 {
		bottom: -5.9375rem !important
	}

	.posml-xl-95 {
		left: -5.9375rem !important
	}

	.pos-xl-96 {
		top: 6rem !important;
		bottom: 6rem !important
	}

	.pos-xl-96,
	.posx-xl-96 {
		right: 6rem !important;
		left: 6rem !important
	}

	.posy-xl-96 {
		bottom: 6rem !important
	}

	.post-xl-96,
	.posy-xl-96 {
		top: 6rem !important
	}

	.posr-xl-96 {
		right: 6rem !important
	}

	.posb-xl-96 {
		bottom: 6rem !important
	}

	.posl-xl-96 {
		left: 6rem !important
	}

	.posmt-xl-96 {
		top: -6rem !important
	}

	.posmr-xl-96 {
		right: -6rem !important
	}

	.posmb-xl-96 {
		bottom: -6rem !important
	}

	.posml-xl-96 {
		left: -6rem !important
	}

	.pos-xl-97 {
		top: 6.0625rem !important;
		bottom: 6.0625rem !important
	}

	.pos-xl-97,
	.posx-xl-97 {
		right: 6.0625rem !important;
		left: 6.0625rem !important
	}

	.posy-xl-97 {
		bottom: 6.0625rem !important
	}

	.post-xl-97,
	.posy-xl-97 {
		top: 6.0625rem !important
	}

	.posr-xl-97 {
		right: 6.0625rem !important
	}

	.posb-xl-97 {
		bottom: 6.0625rem !important
	}

	.posl-xl-97 {
		left: 6.0625rem !important
	}

	.posmt-xl-97 {
		top: -6.0625rem !important
	}

	.posmr-xl-97 {
		right: -6.0625rem !important
	}

	.posmb-xl-97 {
		bottom: -6.0625rem !important
	}

	.posml-xl-97 {
		left: -6.0625rem !important
	}

	.pos-xl-98 {
		top: 6.125rem !important;
		bottom: 6.125rem !important
	}

	.pos-xl-98,
	.posx-xl-98 {
		right: 6.125rem !important;
		left: 6.125rem !important
	}

	.posy-xl-98 {
		bottom: 6.125rem !important
	}

	.post-xl-98,
	.posy-xl-98 {
		top: 6.125rem !important
	}

	.posr-xl-98 {
		right: 6.125rem !important
	}

	.posb-xl-98 {
		bottom: 6.125rem !important
	}

	.posl-xl-98 {
		left: 6.125rem !important
	}

	.posmt-xl-98 {
		top: -6.125rem !important
	}

	.posmr-xl-98 {
		right: -6.125rem !important
	}

	.posmb-xl-98 {
		bottom: -6.125rem !important
	}

	.posml-xl-98 {
		left: -6.125rem !important
	}

	.pos-xl-99 {
		top: 6.1875rem !important;
		bottom: 6.1875rem !important
	}

	.pos-xl-99,
	.posx-xl-99 {
		right: 6.1875rem !important;
		left: 6.1875rem !important
	}

	.posy-xl-99 {
		bottom: 6.1875rem !important
	}

	.post-xl-99,
	.posy-xl-99 {
		top: 6.1875rem !important
	}

	.posr-xl-99 {
		right: 6.1875rem !important
	}

	.posb-xl-99 {
		bottom: 6.1875rem !important
	}

	.posl-xl-99 {
		left: 6.1875rem !important
	}

	.posmt-xl-99 {
		top: -6.1875rem !important
	}

	.posmr-xl-99 {
		right: -6.1875rem !important
	}

	.posmb-xl-99 {
		bottom: -6.1875rem !important
	}

	.posml-xl-99 {
		left: -6.1875rem !important
	}

	.pos-xl-100 {
		top: 6.25rem !important;
		bottom: 6.25rem !important
	}

	.pos-xl-100,
	.posx-xl-100 {
		right: 6.25rem !important;
		left: 6.25rem !important
	}

	.posy-xl-100 {
		bottom: 6.25rem !important
	}

	.post-xl-100,
	.posy-xl-100 {
		top: 6.25rem !important
	}

	.posr-xl-100 {
		right: 6.25rem !important
	}

	.posb-xl-100 {
		bottom: 6.25rem !important
	}

	.posl-xl-100 {
		left: 6.25rem !important
	}

	.posmt-xl-100 {
		top: -6.25rem !important
	}

	.posmr-xl-100 {
		right: -6.25rem !important
	}

	.posmb-xl-100 {
		bottom: -6.25rem !important
	}

	.posml-xl-100 {
		left: -6.25rem !important
	}

	.pos-xl-101 {
		top: 6.3125rem !important;
		bottom: 6.3125rem !important
	}

	.pos-xl-101,
	.posx-xl-101 {
		right: 6.3125rem !important;
		left: 6.3125rem !important
	}

	.posy-xl-101 {
		bottom: 6.3125rem !important
	}

	.post-xl-101,
	.posy-xl-101 {
		top: 6.3125rem !important
	}

	.posr-xl-101 {
		right: 6.3125rem !important
	}

	.posb-xl-101 {
		bottom: 6.3125rem !important
	}

	.posl-xl-101 {
		left: 6.3125rem !important
	}

	.posmt-xl-101 {
		top: -6.3125rem !important
	}

	.posmr-xl-101 {
		right: -6.3125rem !important
	}

	.posmb-xl-101 {
		bottom: -6.3125rem !important
	}

	.posml-xl-101 {
		left: -6.3125rem !important
	}

	.pos-xl-102 {
		top: 6.375rem !important;
		bottom: 6.375rem !important
	}

	.pos-xl-102,
	.posx-xl-102 {
		right: 6.375rem !important;
		left: 6.375rem !important
	}

	.posy-xl-102 {
		bottom: 6.375rem !important
	}

	.post-xl-102,
	.posy-xl-102 {
		top: 6.375rem !important
	}

	.posr-xl-102 {
		right: 6.375rem !important
	}

	.posb-xl-102 {
		bottom: 6.375rem !important
	}

	.posl-xl-102 {
		left: 6.375rem !important
	}

	.posmt-xl-102 {
		top: -6.375rem !important
	}

	.posmr-xl-102 {
		right: -6.375rem !important
	}

	.posmb-xl-102 {
		bottom: -6.375rem !important
	}

	.posml-xl-102 {
		left: -6.375rem !important
	}

	.pos-xl-103 {
		top: 6.4375rem !important;
		bottom: 6.4375rem !important
	}

	.pos-xl-103,
	.posx-xl-103 {
		right: 6.4375rem !important;
		left: 6.4375rem !important
	}

	.posy-xl-103 {
		bottom: 6.4375rem !important
	}

	.post-xl-103,
	.posy-xl-103 {
		top: 6.4375rem !important
	}

	.posr-xl-103 {
		right: 6.4375rem !important
	}

	.posb-xl-103 {
		bottom: 6.4375rem !important
	}

	.posl-xl-103 {
		left: 6.4375rem !important
	}

	.posmt-xl-103 {
		top: -6.4375rem !important
	}

	.posmr-xl-103 {
		right: -6.4375rem !important
	}

	.posmb-xl-103 {
		bottom: -6.4375rem !important
	}

	.posml-xl-103 {
		left: -6.4375rem !important
	}

	.pos-xl-104 {
		top: 6.5rem !important;
		bottom: 6.5rem !important
	}

	.pos-xl-104,
	.posx-xl-104 {
		right: 6.5rem !important;
		left: 6.5rem !important
	}

	.posy-xl-104 {
		bottom: 6.5rem !important
	}

	.post-xl-104,
	.posy-xl-104 {
		top: 6.5rem !important
	}

	.posr-xl-104 {
		right: 6.5rem !important
	}

	.posb-xl-104 {
		bottom: 6.5rem !important
	}

	.posl-xl-104 {
		left: 6.5rem !important
	}

	.posmt-xl-104 {
		top: -6.5rem !important
	}

	.posmr-xl-104 {
		right: -6.5rem !important
	}

	.posmb-xl-104 {
		bottom: -6.5rem !important
	}

	.posml-xl-104 {
		left: -6.5rem !important
	}

	.pos-xl-105 {
		top: 6.5625rem !important;
		bottom: 6.5625rem !important
	}

	.pos-xl-105,
	.posx-xl-105 {
		right: 6.5625rem !important;
		left: 6.5625rem !important
	}

	.posy-xl-105 {
		bottom: 6.5625rem !important
	}

	.post-xl-105,
	.posy-xl-105 {
		top: 6.5625rem !important
	}

	.posr-xl-105 {
		right: 6.5625rem !important
	}

	.posb-xl-105 {
		bottom: 6.5625rem !important
	}

	.posl-xl-105 {
		left: 6.5625rem !important
	}

	.posmt-xl-105 {
		top: -6.5625rem !important
	}

	.posmr-xl-105 {
		right: -6.5625rem !important
	}

	.posmb-xl-105 {
		bottom: -6.5625rem !important
	}

	.posml-xl-105 {
		left: -6.5625rem !important
	}

	.pos-xl-106 {
		top: 6.625rem !important;
		bottom: 6.625rem !important
	}

	.pos-xl-106,
	.posx-xl-106 {
		right: 6.625rem !important;
		left: 6.625rem !important
	}

	.posy-xl-106 {
		bottom: 6.625rem !important
	}

	.post-xl-106,
	.posy-xl-106 {
		top: 6.625rem !important
	}

	.posr-xl-106 {
		right: 6.625rem !important
	}

	.posb-xl-106 {
		bottom: 6.625rem !important
	}

	.posl-xl-106 {
		left: 6.625rem !important
	}

	.posmt-xl-106 {
		top: -6.625rem !important
	}

	.posmr-xl-106 {
		right: -6.625rem !important
	}

	.posmb-xl-106 {
		bottom: -6.625rem !important
	}

	.posml-xl-106 {
		left: -6.625rem !important
	}

	.pos-xl-107 {
		top: 6.6875rem !important;
		bottom: 6.6875rem !important
	}

	.pos-xl-107,
	.posx-xl-107 {
		right: 6.6875rem !important;
		left: 6.6875rem !important
	}

	.posy-xl-107 {
		bottom: 6.6875rem !important
	}

	.post-xl-107,
	.posy-xl-107 {
		top: 6.6875rem !important
	}

	.posr-xl-107 {
		right: 6.6875rem !important
	}

	.posb-xl-107 {
		bottom: 6.6875rem !important
	}

	.posl-xl-107 {
		left: 6.6875rem !important
	}

	.posmt-xl-107 {
		top: -6.6875rem !important
	}

	.posmr-xl-107 {
		right: -6.6875rem !important
	}

	.posmb-xl-107 {
		bottom: -6.6875rem !important
	}

	.posml-xl-107 {
		left: -6.6875rem !important
	}

	.pos-xl-108 {
		top: 6.75rem !important;
		bottom: 6.75rem !important
	}

	.pos-xl-108,
	.posx-xl-108 {
		right: 6.75rem !important;
		left: 6.75rem !important
	}

	.posy-xl-108 {
		bottom: 6.75rem !important
	}

	.post-xl-108,
	.posy-xl-108 {
		top: 6.75rem !important
	}

	.posr-xl-108 {
		right: 6.75rem !important
	}

	.posb-xl-108 {
		bottom: 6.75rem !important
	}

	.posl-xl-108 {
		left: 6.75rem !important
	}

	.posmt-xl-108 {
		top: -6.75rem !important
	}

	.posmr-xl-108 {
		right: -6.75rem !important
	}

	.posmb-xl-108 {
		bottom: -6.75rem !important
	}

	.posml-xl-108 {
		left: -6.75rem !important
	}

	.pos-xl-109 {
		top: 6.8125rem !important;
		bottom: 6.8125rem !important
	}

	.pos-xl-109,
	.posx-xl-109 {
		right: 6.8125rem !important;
		left: 6.8125rem !important
	}

	.posy-xl-109 {
		bottom: 6.8125rem !important
	}

	.post-xl-109,
	.posy-xl-109 {
		top: 6.8125rem !important
	}

	.posr-xl-109 {
		right: 6.8125rem !important
	}

	.posb-xl-109 {
		bottom: 6.8125rem !important
	}

	.posl-xl-109 {
		left: 6.8125rem !important
	}

	.posmt-xl-109 {
		top: -6.8125rem !important
	}

	.posmr-xl-109 {
		right: -6.8125rem !important
	}

	.posmb-xl-109 {
		bottom: -6.8125rem !important
	}

	.posml-xl-109 {
		left: -6.8125rem !important
	}

	.pos-xl-110 {
		top: 6.875rem !important;
		bottom: 6.875rem !important
	}

	.pos-xl-110,
	.posx-xl-110 {
		right: 6.875rem !important;
		left: 6.875rem !important
	}

	.posy-xl-110 {
		bottom: 6.875rem !important
	}

	.post-xl-110,
	.posy-xl-110 {
		top: 6.875rem !important
	}

	.posr-xl-110 {
		right: 6.875rem !important
	}

	.posb-xl-110 {
		bottom: 6.875rem !important
	}

	.posl-xl-110 {
		left: 6.875rem !important
	}

	.posmt-xl-110 {
		top: -6.875rem !important
	}

	.posmr-xl-110 {
		right: -6.875rem !important
	}

	.posmb-xl-110 {
		bottom: -6.875rem !important
	}

	.posml-xl-110 {
		left: -6.875rem !important
	}

	.pos-xl-111 {
		top: 6.9375rem !important;
		bottom: 6.9375rem !important
	}

	.pos-xl-111,
	.posx-xl-111 {
		right: 6.9375rem !important;
		left: 6.9375rem !important
	}

	.posy-xl-111 {
		bottom: 6.9375rem !important
	}

	.post-xl-111,
	.posy-xl-111 {
		top: 6.9375rem !important
	}

	.posr-xl-111 {
		right: 6.9375rem !important
	}

	.posb-xl-111 {
		bottom: 6.9375rem !important
	}

	.posl-xl-111 {
		left: 6.9375rem !important
	}

	.posmt-xl-111 {
		top: -6.9375rem !important
	}

	.posmr-xl-111 {
		right: -6.9375rem !important
	}

	.posmb-xl-111 {
		bottom: -6.9375rem !important
	}

	.posml-xl-111 {
		left: -6.9375rem !important
	}

	.pos-xl-112 {
		top: 7rem !important;
		bottom: 7rem !important
	}

	.pos-xl-112,
	.posx-xl-112 {
		right: 7rem !important;
		left: 7rem !important
	}

	.posy-xl-112 {
		bottom: 7rem !important
	}

	.post-xl-112,
	.posy-xl-112 {
		top: 7rem !important
	}

	.posr-xl-112 {
		right: 7rem !important
	}

	.posb-xl-112 {
		bottom: 7rem !important
	}

	.posl-xl-112 {
		left: 7rem !important
	}

	.posmt-xl-112 {
		top: -7rem !important
	}

	.posmr-xl-112 {
		right: -7rem !important
	}

	.posmb-xl-112 {
		bottom: -7rem !important
	}

	.posml-xl-112 {
		left: -7rem !important
	}

	.pos-xl-113 {
		top: 7.0625rem !important;
		bottom: 7.0625rem !important
	}

	.pos-xl-113,
	.posx-xl-113 {
		right: 7.0625rem !important;
		left: 7.0625rem !important
	}

	.posy-xl-113 {
		bottom: 7.0625rem !important
	}

	.post-xl-113,
	.posy-xl-113 {
		top: 7.0625rem !important
	}

	.posr-xl-113 {
		right: 7.0625rem !important
	}

	.posb-xl-113 {
		bottom: 7.0625rem !important
	}

	.posl-xl-113 {
		left: 7.0625rem !important
	}

	.posmt-xl-113 {
		top: -7.0625rem !important
	}

	.posmr-xl-113 {
		right: -7.0625rem !important
	}

	.posmb-xl-113 {
		bottom: -7.0625rem !important
	}

	.posml-xl-113 {
		left: -7.0625rem !important
	}

	.pos-xl-114 {
		top: 7.125rem !important;
		bottom: 7.125rem !important
	}

	.pos-xl-114,
	.posx-xl-114 {
		right: 7.125rem !important;
		left: 7.125rem !important
	}

	.posy-xl-114 {
		bottom: 7.125rem !important
	}

	.post-xl-114,
	.posy-xl-114 {
		top: 7.125rem !important
	}

	.posr-xl-114 {
		right: 7.125rem !important
	}

	.posb-xl-114 {
		bottom: 7.125rem !important
	}

	.posl-xl-114 {
		left: 7.125rem !important
	}

	.posmt-xl-114 {
		top: -7.125rem !important
	}

	.posmr-xl-114 {
		right: -7.125rem !important
	}

	.posmb-xl-114 {
		bottom: -7.125rem !important
	}

	.posml-xl-114 {
		left: -7.125rem !important
	}

	.pos-xl-115 {
		top: 7.1875rem !important;
		bottom: 7.1875rem !important
	}

	.pos-xl-115,
	.posx-xl-115 {
		right: 7.1875rem !important;
		left: 7.1875rem !important
	}

	.posy-xl-115 {
		bottom: 7.1875rem !important
	}

	.post-xl-115,
	.posy-xl-115 {
		top: 7.1875rem !important
	}

	.posr-xl-115 {
		right: 7.1875rem !important
	}

	.posb-xl-115 {
		bottom: 7.1875rem !important
	}

	.posl-xl-115 {
		left: 7.1875rem !important
	}

	.posmt-xl-115 {
		top: -7.1875rem !important
	}

	.posmr-xl-115 {
		right: -7.1875rem !important
	}

	.posmb-xl-115 {
		bottom: -7.1875rem !important
	}

	.posml-xl-115 {
		left: -7.1875rem !important
	}

	.pos-xl-116 {
		top: 7.25rem !important;
		bottom: 7.25rem !important
	}

	.pos-xl-116,
	.posx-xl-116 {
		right: 7.25rem !important;
		left: 7.25rem !important
	}

	.posy-xl-116 {
		bottom: 7.25rem !important
	}

	.post-xl-116,
	.posy-xl-116 {
		top: 7.25rem !important
	}

	.posr-xl-116 {
		right: 7.25rem !important
	}

	.posb-xl-116 {
		bottom: 7.25rem !important
	}

	.posl-xl-116 {
		left: 7.25rem !important
	}

	.posmt-xl-116 {
		top: -7.25rem !important
	}

	.posmr-xl-116 {
		right: -7.25rem !important
	}

	.posmb-xl-116 {
		bottom: -7.25rem !important
	}

	.posml-xl-116 {
		left: -7.25rem !important
	}

	.pos-xl-117 {
		top: 7.3125rem !important;
		bottom: 7.3125rem !important
	}

	.pos-xl-117,
	.posx-xl-117 {
		right: 7.3125rem !important;
		left: 7.3125rem !important
	}

	.posy-xl-117 {
		bottom: 7.3125rem !important
	}

	.post-xl-117,
	.posy-xl-117 {
		top: 7.3125rem !important
	}

	.posr-xl-117 {
		right: 7.3125rem !important
	}

	.posb-xl-117 {
		bottom: 7.3125rem !important
	}

	.posl-xl-117 {
		left: 7.3125rem !important
	}

	.posmt-xl-117 {
		top: -7.3125rem !important
	}

	.posmr-xl-117 {
		right: -7.3125rem !important
	}

	.posmb-xl-117 {
		bottom: -7.3125rem !important
	}

	.posml-xl-117 {
		left: -7.3125rem !important
	}

	.pos-xl-118 {
		top: 7.375rem !important;
		bottom: 7.375rem !important
	}

	.pos-xl-118,
	.posx-xl-118 {
		right: 7.375rem !important;
		left: 7.375rem !important
	}

	.posy-xl-118 {
		bottom: 7.375rem !important
	}

	.post-xl-118,
	.posy-xl-118 {
		top: 7.375rem !important
	}

	.posr-xl-118 {
		right: 7.375rem !important
	}

	.posb-xl-118 {
		bottom: 7.375rem !important
	}

	.posl-xl-118 {
		left: 7.375rem !important
	}

	.posmt-xl-118 {
		top: -7.375rem !important
	}

	.posmr-xl-118 {
		right: -7.375rem !important
	}

	.posmb-xl-118 {
		bottom: -7.375rem !important
	}

	.posml-xl-118 {
		left: -7.375rem !important
	}

	.pos-xl-119 {
		top: 7.4375rem !important;
		bottom: 7.4375rem !important
	}

	.pos-xl-119,
	.posx-xl-119 {
		right: 7.4375rem !important;
		left: 7.4375rem !important
	}

	.posy-xl-119 {
		bottom: 7.4375rem !important
	}

	.post-xl-119,
	.posy-xl-119 {
		top: 7.4375rem !important
	}

	.posr-xl-119 {
		right: 7.4375rem !important
	}

	.posb-xl-119 {
		bottom: 7.4375rem !important
	}

	.posl-xl-119 {
		left: 7.4375rem !important
	}

	.posmt-xl-119 {
		top: -7.4375rem !important
	}

	.posmr-xl-119 {
		right: -7.4375rem !important
	}

	.posmb-xl-119 {
		bottom: -7.4375rem !important
	}

	.posml-xl-119 {
		left: -7.4375rem !important
	}

	.pos-xl-120 {
		top: 7.5rem !important;
		bottom: 7.5rem !important
	}

	.pos-xl-120,
	.posx-xl-120 {
		right: 7.5rem !important;
		left: 7.5rem !important
	}

	.posy-xl-120 {
		bottom: 7.5rem !important
	}

	.post-xl-120,
	.posy-xl-120 {
		top: 7.5rem !important
	}

	.posr-xl-120 {
		right: 7.5rem !important
	}

	.posb-xl-120 {
		bottom: 7.5rem !important
	}

	.posl-xl-120 {
		left: 7.5rem !important
	}

	.posmt-xl-120 {
		top: -7.5rem !important
	}

	.posmr-xl-120 {
		right: -7.5rem !important
	}

	.posmb-xl-120 {
		bottom: -7.5rem !important
	}

	.posml-xl-120 {
		left: -7.5rem !important
	}

	.pos-xl-121 {
		top: 7.5625rem !important;
		bottom: 7.5625rem !important
	}

	.pos-xl-121,
	.posx-xl-121 {
		right: 7.5625rem !important;
		left: 7.5625rem !important
	}

	.posy-xl-121 {
		bottom: 7.5625rem !important
	}

	.post-xl-121,
	.posy-xl-121 {
		top: 7.5625rem !important
	}

	.posr-xl-121 {
		right: 7.5625rem !important
	}

	.posb-xl-121 {
		bottom: 7.5625rem !important
	}

	.posl-xl-121 {
		left: 7.5625rem !important
	}

	.posmt-xl-121 {
		top: -7.5625rem !important
	}

	.posmr-xl-121 {
		right: -7.5625rem !important
	}

	.posmb-xl-121 {
		bottom: -7.5625rem !important
	}

	.posml-xl-121 {
		left: -7.5625rem !important
	}

	.pos-xl-122 {
		top: 7.625rem !important;
		bottom: 7.625rem !important
	}

	.pos-xl-122,
	.posx-xl-122 {
		right: 7.625rem !important;
		left: 7.625rem !important
	}

	.posy-xl-122 {
		bottom: 7.625rem !important
	}

	.post-xl-122,
	.posy-xl-122 {
		top: 7.625rem !important
	}

	.posr-xl-122 {
		right: 7.625rem !important
	}

	.posb-xl-122 {
		bottom: 7.625rem !important
	}

	.posl-xl-122 {
		left: 7.625rem !important
	}

	.posmt-xl-122 {
		top: -7.625rem !important
	}

	.posmr-xl-122 {
		right: -7.625rem !important
	}

	.posmb-xl-122 {
		bottom: -7.625rem !important
	}

	.posml-xl-122 {
		left: -7.625rem !important
	}

	.pos-xl-123 {
		top: 7.6875rem !important;
		bottom: 7.6875rem !important
	}

	.pos-xl-123,
	.posx-xl-123 {
		right: 7.6875rem !important;
		left: 7.6875rem !important
	}

	.posy-xl-123 {
		bottom: 7.6875rem !important
	}

	.post-xl-123,
	.posy-xl-123 {
		top: 7.6875rem !important
	}

	.posr-xl-123 {
		right: 7.6875rem !important
	}

	.posb-xl-123 {
		bottom: 7.6875rem !important
	}

	.posl-xl-123 {
		left: 7.6875rem !important
	}

	.posmt-xl-123 {
		top: -7.6875rem !important
	}

	.posmr-xl-123 {
		right: -7.6875rem !important
	}

	.posmb-xl-123 {
		bottom: -7.6875rem !important
	}

	.posml-xl-123 {
		left: -7.6875rem !important
	}

	.pos-xl-124 {
		top: 7.75rem !important;
		bottom: 7.75rem !important
	}

	.pos-xl-124,
	.posx-xl-124 {
		right: 7.75rem !important;
		left: 7.75rem !important
	}

	.posy-xl-124 {
		bottom: 7.75rem !important
	}

	.post-xl-124,
	.posy-xl-124 {
		top: 7.75rem !important
	}

	.posr-xl-124 {
		right: 7.75rem !important
	}

	.posb-xl-124 {
		bottom: 7.75rem !important
	}

	.posl-xl-124 {
		left: 7.75rem !important
	}

	.posmt-xl-124 {
		top: -7.75rem !important
	}

	.posmr-xl-124 {
		right: -7.75rem !important
	}

	.posmb-xl-124 {
		bottom: -7.75rem !important
	}

	.posml-xl-124 {
		left: -7.75rem !important
	}

	.pos-xl-125 {
		top: 7.8125rem !important;
		bottom: 7.8125rem !important
	}

	.pos-xl-125,
	.posx-xl-125 {
		right: 7.8125rem !important;
		left: 7.8125rem !important
	}

	.posy-xl-125 {
		bottom: 7.8125rem !important
	}

	.post-xl-125,
	.posy-xl-125 {
		top: 7.8125rem !important
	}

	.posr-xl-125 {
		right: 7.8125rem !important
	}

	.posb-xl-125 {
		bottom: 7.8125rem !important
	}

	.posl-xl-125 {
		left: 7.8125rem !important
	}

	.posmt-xl-125 {
		top: -7.8125rem !important
	}

	.posmr-xl-125 {
		right: -7.8125rem !important
	}

	.posmb-xl-125 {
		bottom: -7.8125rem !important
	}

	.posml-xl-125 {
		left: -7.8125rem !important
	}

	.pos-xl-126 {
		top: 7.875rem !important;
		bottom: 7.875rem !important
	}

	.pos-xl-126,
	.posx-xl-126 {
		right: 7.875rem !important;
		left: 7.875rem !important
	}

	.posy-xl-126 {
		bottom: 7.875rem !important
	}

	.post-xl-126,
	.posy-xl-126 {
		top: 7.875rem !important
	}

	.posr-xl-126 {
		right: 7.875rem !important
	}

	.posb-xl-126 {
		bottom: 7.875rem !important
	}

	.posl-xl-126 {
		left: 7.875rem !important
	}

	.posmt-xl-126 {
		top: -7.875rem !important
	}

	.posmr-xl-126 {
		right: -7.875rem !important
	}

	.posmb-xl-126 {
		bottom: -7.875rem !important
	}

	.posml-xl-126 {
		left: -7.875rem !important
	}

	.pos-xl-127 {
		top: 7.9375rem !important;
		bottom: 7.9375rem !important
	}

	.pos-xl-127,
	.posx-xl-127 {
		right: 7.9375rem !important;
		left: 7.9375rem !important
	}

	.posy-xl-127 {
		bottom: 7.9375rem !important
	}

	.post-xl-127,
	.posy-xl-127 {
		top: 7.9375rem !important
	}

	.posr-xl-127 {
		right: 7.9375rem !important
	}

	.posb-xl-127 {
		bottom: 7.9375rem !important
	}

	.posl-xl-127 {
		left: 7.9375rem !important
	}

	.posmt-xl-127 {
		top: -7.9375rem !important
	}

	.posmr-xl-127 {
		right: -7.9375rem !important
	}

	.posmb-xl-127 {
		bottom: -7.9375rem !important
	}

	.posml-xl-127 {
		left: -7.9375rem !important
	}

	.pos-xl-128 {
		top: 8rem !important;
		bottom: 8rem !important
	}

	.pos-xl-128,
	.posx-xl-128 {
		right: 8rem !important;
		left: 8rem !important
	}

	.posy-xl-128 {
		bottom: 8rem !important
	}

	.post-xl-128,
	.posy-xl-128 {
		top: 8rem !important
	}

	.posr-xl-128 {
		right: 8rem !important
	}

	.posb-xl-128 {
		bottom: 8rem !important
	}

	.posl-xl-128 {
		left: 8rem !important
	}

	.posmt-xl-128 {
		top: -8rem !important
	}

	.posmr-xl-128 {
		right: -8rem !important
	}

	.posmb-xl-128 {
		bottom: -8rem !important
	}

	.posml-xl-128 {
		left: -8rem !important
	}

	.pos-xl-129 {
		top: 8.0625rem !important;
		bottom: 8.0625rem !important
	}

	.pos-xl-129,
	.posx-xl-129 {
		right: 8.0625rem !important;
		left: 8.0625rem !important
	}

	.posy-xl-129 {
		bottom: 8.0625rem !important
	}

	.post-xl-129,
	.posy-xl-129 {
		top: 8.0625rem !important
	}

	.posr-xl-129 {
		right: 8.0625rem !important
	}

	.posb-xl-129 {
		bottom: 8.0625rem !important
	}

	.posl-xl-129 {
		left: 8.0625rem !important
	}

	.posmt-xl-129 {
		top: -8.0625rem !important
	}

	.posmr-xl-129 {
		right: -8.0625rem !important
	}

	.posmb-xl-129 {
		bottom: -8.0625rem !important
	}

	.posml-xl-129 {
		left: -8.0625rem !important
	}

	.pos-xl-130 {
		top: 8.125rem !important;
		bottom: 8.125rem !important
	}

	.pos-xl-130,
	.posx-xl-130 {
		right: 8.125rem !important;
		left: 8.125rem !important
	}

	.posy-xl-130 {
		bottom: 8.125rem !important
	}

	.post-xl-130,
	.posy-xl-130 {
		top: 8.125rem !important
	}

	.posr-xl-130 {
		right: 8.125rem !important
	}

	.posb-xl-130 {
		bottom: 8.125rem !important
	}

	.posl-xl-130 {
		left: 8.125rem !important
	}

	.posmt-xl-130 {
		top: -8.125rem !important
	}

	.posmr-xl-130 {
		right: -8.125rem !important
	}

	.posmb-xl-130 {
		bottom: -8.125rem !important
	}

	.posml-xl-130 {
		left: -8.125rem !important
	}

	.pos-xl-131 {
		top: 8.1875rem !important;
		bottom: 8.1875rem !important
	}

	.pos-xl-131,
	.posx-xl-131 {
		right: 8.1875rem !important;
		left: 8.1875rem !important
	}

	.posy-xl-131 {
		bottom: 8.1875rem !important
	}

	.post-xl-131,
	.posy-xl-131 {
		top: 8.1875rem !important
	}

	.posr-xl-131 {
		right: 8.1875rem !important
	}

	.posb-xl-131 {
		bottom: 8.1875rem !important
	}

	.posl-xl-131 {
		left: 8.1875rem !important
	}

	.posmt-xl-131 {
		top: -8.1875rem !important
	}

	.posmr-xl-131 {
		right: -8.1875rem !important
	}

	.posmb-xl-131 {
		bottom: -8.1875rem !important
	}

	.posml-xl-131 {
		left: -8.1875rem !important
	}

	.pos-xl-132 {
		top: 8.25rem !important;
		bottom: 8.25rem !important
	}

	.pos-xl-132,
	.posx-xl-132 {
		right: 8.25rem !important;
		left: 8.25rem !important
	}

	.posy-xl-132 {
		bottom: 8.25rem !important
	}

	.post-xl-132,
	.posy-xl-132 {
		top: 8.25rem !important
	}

	.posr-xl-132 {
		right: 8.25rem !important
	}

	.posb-xl-132 {
		bottom: 8.25rem !important
	}

	.posl-xl-132 {
		left: 8.25rem !important
	}

	.posmt-xl-132 {
		top: -8.25rem !important
	}

	.posmr-xl-132 {
		right: -8.25rem !important
	}

	.posmb-xl-132 {
		bottom: -8.25rem !important
	}

	.posml-xl-132 {
		left: -8.25rem !important
	}

	.pos-xl-133 {
		top: 8.3125rem !important;
		bottom: 8.3125rem !important
	}

	.pos-xl-133,
	.posx-xl-133 {
		right: 8.3125rem !important;
		left: 8.3125rem !important
	}

	.posy-xl-133 {
		bottom: 8.3125rem !important
	}

	.post-xl-133,
	.posy-xl-133 {
		top: 8.3125rem !important
	}

	.posr-xl-133 {
		right: 8.3125rem !important
	}

	.posb-xl-133 {
		bottom: 8.3125rem !important
	}

	.posl-xl-133 {
		left: 8.3125rem !important
	}

	.posmt-xl-133 {
		top: -8.3125rem !important
	}

	.posmr-xl-133 {
		right: -8.3125rem !important
	}

	.posmb-xl-133 {
		bottom: -8.3125rem !important
	}

	.posml-xl-133 {
		left: -8.3125rem !important
	}

	.pos-xl-134 {
		top: 8.375rem !important;
		bottom: 8.375rem !important
	}

	.pos-xl-134,
	.posx-xl-134 {
		right: 8.375rem !important;
		left: 8.375rem !important
	}

	.posy-xl-134 {
		bottom: 8.375rem !important
	}

	.post-xl-134,
	.posy-xl-134 {
		top: 8.375rem !important
	}

	.posr-xl-134 {
		right: 8.375rem !important
	}

	.posb-xl-134 {
		bottom: 8.375rem !important
	}

	.posl-xl-134 {
		left: 8.375rem !important
	}

	.posmt-xl-134 {
		top: -8.375rem !important
	}

	.posmr-xl-134 {
		right: -8.375rem !important
	}

	.posmb-xl-134 {
		bottom: -8.375rem !important
	}

	.posml-xl-134 {
		left: -8.375rem !important
	}

	.pos-xl-135 {
		top: 8.4375rem !important;
		bottom: 8.4375rem !important
	}

	.pos-xl-135,
	.posx-xl-135 {
		right: 8.4375rem !important;
		left: 8.4375rem !important
	}

	.posy-xl-135 {
		bottom: 8.4375rem !important
	}

	.post-xl-135,
	.posy-xl-135 {
		top: 8.4375rem !important
	}

	.posr-xl-135 {
		right: 8.4375rem !important
	}

	.posb-xl-135 {
		bottom: 8.4375rem !important
	}

	.posl-xl-135 {
		left: 8.4375rem !important
	}

	.posmt-xl-135 {
		top: -8.4375rem !important
	}

	.posmr-xl-135 {
		right: -8.4375rem !important
	}

	.posmb-xl-135 {
		bottom: -8.4375rem !important
	}

	.posml-xl-135 {
		left: -8.4375rem !important
	}

	.pos-xl-136 {
		top: 8.5rem !important;
		bottom: 8.5rem !important
	}

	.pos-xl-136,
	.posx-xl-136 {
		right: 8.5rem !important;
		left: 8.5rem !important
	}

	.posy-xl-136 {
		bottom: 8.5rem !important
	}

	.post-xl-136,
	.posy-xl-136 {
		top: 8.5rem !important
	}

	.posr-xl-136 {
		right: 8.5rem !important
	}

	.posb-xl-136 {
		bottom: 8.5rem !important
	}

	.posl-xl-136 {
		left: 8.5rem !important
	}

	.posmt-xl-136 {
		top: -8.5rem !important
	}

	.posmr-xl-136 {
		right: -8.5rem !important
	}

	.posmb-xl-136 {
		bottom: -8.5rem !important
	}

	.posml-xl-136 {
		left: -8.5rem !important
	}

	.pos-xl-137 {
		top: 8.5625rem !important;
		bottom: 8.5625rem !important
	}

	.pos-xl-137,
	.posx-xl-137 {
		right: 8.5625rem !important;
		left: 8.5625rem !important
	}

	.posy-xl-137 {
		bottom: 8.5625rem !important
	}

	.post-xl-137,
	.posy-xl-137 {
		top: 8.5625rem !important
	}

	.posr-xl-137 {
		right: 8.5625rem !important
	}

	.posb-xl-137 {
		bottom: 8.5625rem !important
	}

	.posl-xl-137 {
		left: 8.5625rem !important
	}

	.posmt-xl-137 {
		top: -8.5625rem !important
	}

	.posmr-xl-137 {
		right: -8.5625rem !important
	}

	.posmb-xl-137 {
		bottom: -8.5625rem !important
	}

	.posml-xl-137 {
		left: -8.5625rem !important
	}

	.pos-xl-138 {
		top: 8.625rem !important;
		bottom: 8.625rem !important
	}

	.pos-xl-138,
	.posx-xl-138 {
		right: 8.625rem !important;
		left: 8.625rem !important
	}

	.posy-xl-138 {
		bottom: 8.625rem !important
	}

	.post-xl-138,
	.posy-xl-138 {
		top: 8.625rem !important
	}

	.posr-xl-138 {
		right: 8.625rem !important
	}

	.posb-xl-138 {
		bottom: 8.625rem !important
	}

	.posl-xl-138 {
		left: 8.625rem !important
	}

	.posmt-xl-138 {
		top: -8.625rem !important
	}

	.posmr-xl-138 {
		right: -8.625rem !important
	}

	.posmb-xl-138 {
		bottom: -8.625rem !important
	}

	.posml-xl-138 {
		left: -8.625rem !important
	}

	.pos-xl-139 {
		top: 8.6875rem !important;
		bottom: 8.6875rem !important
	}

	.pos-xl-139,
	.posx-xl-139 {
		right: 8.6875rem !important;
		left: 8.6875rem !important
	}

	.posy-xl-139 {
		bottom: 8.6875rem !important
	}

	.post-xl-139,
	.posy-xl-139 {
		top: 8.6875rem !important
	}

	.posr-xl-139 {
		right: 8.6875rem !important
	}

	.posb-xl-139 {
		bottom: 8.6875rem !important
	}

	.posl-xl-139 {
		left: 8.6875rem !important
	}

	.posmt-xl-139 {
		top: -8.6875rem !important
	}

	.posmr-xl-139 {
		right: -8.6875rem !important
	}

	.posmb-xl-139 {
		bottom: -8.6875rem !important
	}

	.posml-xl-139 {
		left: -8.6875rem !important
	}

	.pos-xl-140 {
		top: 8.75rem !important;
		bottom: 8.75rem !important
	}

	.pos-xl-140,
	.posx-xl-140 {
		right: 8.75rem !important;
		left: 8.75rem !important
	}

	.posy-xl-140 {
		bottom: 8.75rem !important
	}

	.post-xl-140,
	.posy-xl-140 {
		top: 8.75rem !important
	}

	.posr-xl-140 {
		right: 8.75rem !important
	}

	.posb-xl-140 {
		bottom: 8.75rem !important
	}

	.posl-xl-140 {
		left: 8.75rem !important
	}

	.posmt-xl-140 {
		top: -8.75rem !important
	}

	.posmr-xl-140 {
		right: -8.75rem !important
	}

	.posmb-xl-140 {
		bottom: -8.75rem !important
	}

	.posml-xl-140 {
		left: -8.75rem !important
	}

	.pos-xl-141 {
		top: 8.8125rem !important;
		bottom: 8.8125rem !important
	}

	.pos-xl-141,
	.posx-xl-141 {
		right: 8.8125rem !important;
		left: 8.8125rem !important
	}

	.posy-xl-141 {
		bottom: 8.8125rem !important
	}

	.post-xl-141,
	.posy-xl-141 {
		top: 8.8125rem !important
	}

	.posr-xl-141 {
		right: 8.8125rem !important
	}

	.posb-xl-141 {
		bottom: 8.8125rem !important
	}

	.posl-xl-141 {
		left: 8.8125rem !important
	}

	.posmt-xl-141 {
		top: -8.8125rem !important
	}

	.posmr-xl-141 {
		right: -8.8125rem !important
	}

	.posmb-xl-141 {
		bottom: -8.8125rem !important
	}

	.posml-xl-141 {
		left: -8.8125rem !important
	}

	.pos-xl-142 {
		top: 8.875rem !important;
		bottom: 8.875rem !important
	}

	.pos-xl-142,
	.posx-xl-142 {
		right: 8.875rem !important;
		left: 8.875rem !important
	}

	.posy-xl-142 {
		bottom: 8.875rem !important
	}

	.post-xl-142,
	.posy-xl-142 {
		top: 8.875rem !important
	}

	.posr-xl-142 {
		right: 8.875rem !important
	}

	.posb-xl-142 {
		bottom: 8.875rem !important
	}

	.posl-xl-142 {
		left: 8.875rem !important
	}

	.posmt-xl-142 {
		top: -8.875rem !important
	}

	.posmr-xl-142 {
		right: -8.875rem !important
	}

	.posmb-xl-142 {
		bottom: -8.875rem !important
	}

	.posml-xl-142 {
		left: -8.875rem !important
	}

	.pos-xl-143 {
		top: 8.9375rem !important;
		bottom: 8.9375rem !important
	}

	.pos-xl-143,
	.posx-xl-143 {
		right: 8.9375rem !important;
		left: 8.9375rem !important
	}

	.posy-xl-143 {
		bottom: 8.9375rem !important
	}

	.post-xl-143,
	.posy-xl-143 {
		top: 8.9375rem !important
	}

	.posr-xl-143 {
		right: 8.9375rem !important
	}

	.posb-xl-143 {
		bottom: 8.9375rem !important
	}

	.posl-xl-143 {
		left: 8.9375rem !important
	}

	.posmt-xl-143 {
		top: -8.9375rem !important
	}

	.posmr-xl-143 {
		right: -8.9375rem !important
	}

	.posmb-xl-143 {
		bottom: -8.9375rem !important
	}

	.posml-xl-143 {
		left: -8.9375rem !important
	}

	.pos-xl-144 {
		top: 9rem !important;
		bottom: 9rem !important
	}

	.pos-xl-144,
	.posx-xl-144 {
		right: 9rem !important;
		left: 9rem !important
	}

	.posy-xl-144 {
		bottom: 9rem !important
	}

	.post-xl-144,
	.posy-xl-144 {
		top: 9rem !important
	}

	.posr-xl-144 {
		right: 9rem !important
	}

	.posb-xl-144 {
		bottom: 9rem !important
	}

	.posl-xl-144 {
		left: 9rem !important
	}

	.posmt-xl-144 {
		top: -9rem !important
	}

	.posmr-xl-144 {
		right: -9rem !important
	}

	.posmb-xl-144 {
		bottom: -9rem !important
	}

	.posml-xl-144 {
		left: -9rem !important
	}

	.pos-xl-145 {
		top: 9.0625rem !important;
		bottom: 9.0625rem !important
	}

	.pos-xl-145,
	.posx-xl-145 {
		right: 9.0625rem !important;
		left: 9.0625rem !important
	}

	.posy-xl-145 {
		bottom: 9.0625rem !important
	}

	.post-xl-145,
	.posy-xl-145 {
		top: 9.0625rem !important
	}

	.posr-xl-145 {
		right: 9.0625rem !important
	}

	.posb-xl-145 {
		bottom: 9.0625rem !important
	}

	.posl-xl-145 {
		left: 9.0625rem !important
	}

	.posmt-xl-145 {
		top: -9.0625rem !important
	}

	.posmr-xl-145 {
		right: -9.0625rem !important
	}

	.posmb-xl-145 {
		bottom: -9.0625rem !important
	}

	.posml-xl-145 {
		left: -9.0625rem !important
	}

	.pos-xl-146 {
		top: 9.125rem !important;
		bottom: 9.125rem !important
	}

	.pos-xl-146,
	.posx-xl-146 {
		right: 9.125rem !important;
		left: 9.125rem !important
	}

	.posy-xl-146 {
		bottom: 9.125rem !important
	}

	.post-xl-146,
	.posy-xl-146 {
		top: 9.125rem !important
	}

	.posr-xl-146 {
		right: 9.125rem !important
	}

	.posb-xl-146 {
		bottom: 9.125rem !important
	}

	.posl-xl-146 {
		left: 9.125rem !important
	}

	.posmt-xl-146 {
		top: -9.125rem !important
	}

	.posmr-xl-146 {
		right: -9.125rem !important
	}

	.posmb-xl-146 {
		bottom: -9.125rem !important
	}

	.posml-xl-146 {
		left: -9.125rem !important
	}

	.pos-xl-147 {
		top: 9.1875rem !important;
		bottom: 9.1875rem !important
	}

	.pos-xl-147,
	.posx-xl-147 {
		right: 9.1875rem !important;
		left: 9.1875rem !important
	}

	.posy-xl-147 {
		bottom: 9.1875rem !important
	}

	.post-xl-147,
	.posy-xl-147 {
		top: 9.1875rem !important
	}

	.posr-xl-147 {
		right: 9.1875rem !important
	}

	.posb-xl-147 {
		bottom: 9.1875rem !important
	}

	.posl-xl-147 {
		left: 9.1875rem !important
	}

	.posmt-xl-147 {
		top: -9.1875rem !important
	}

	.posmr-xl-147 {
		right: -9.1875rem !important
	}

	.posmb-xl-147 {
		bottom: -9.1875rem !important
	}

	.posml-xl-147 {
		left: -9.1875rem !important
	}

	.pos-xl-148 {
		top: 9.25rem !important;
		bottom: 9.25rem !important
	}

	.pos-xl-148,
	.posx-xl-148 {
		right: 9.25rem !important;
		left: 9.25rem !important
	}

	.posy-xl-148 {
		bottom: 9.25rem !important
	}

	.post-xl-148,
	.posy-xl-148 {
		top: 9.25rem !important
	}

	.posr-xl-148 {
		right: 9.25rem !important
	}

	.posb-xl-148 {
		bottom: 9.25rem !important
	}

	.posl-xl-148 {
		left: 9.25rem !important
	}

	.posmt-xl-148 {
		top: -9.25rem !important
	}

	.posmr-xl-148 {
		right: -9.25rem !important
	}

	.posmb-xl-148 {
		bottom: -9.25rem !important
	}

	.posml-xl-148 {
		left: -9.25rem !important
	}

	.pos-xl-149 {
		top: 9.3125rem !important;
		bottom: 9.3125rem !important
	}

	.pos-xl-149,
	.posx-xl-149 {
		right: 9.3125rem !important;
		left: 9.3125rem !important
	}

	.posy-xl-149 {
		bottom: 9.3125rem !important
	}

	.post-xl-149,
	.posy-xl-149 {
		top: 9.3125rem !important
	}

	.posr-xl-149 {
		right: 9.3125rem !important
	}

	.posb-xl-149 {
		bottom: 9.3125rem !important
	}

	.posl-xl-149 {
		left: 9.3125rem !important
	}

	.posmt-xl-149 {
		top: -9.3125rem !important
	}

	.posmr-xl-149 {
		right: -9.3125rem !important
	}

	.posmb-xl-149 {
		bottom: -9.3125rem !important
	}

	.posml-xl-149 {
		left: -9.3125rem !important
	}

	.pos-xl-150 {
		top: 9.375rem !important;
		bottom: 9.375rem !important
	}

	.pos-xl-150,
	.posx-xl-150 {
		right: 9.375rem !important;
		left: 9.375rem !important
	}

	.posy-xl-150 {
		bottom: 9.375rem !important
	}

	.post-xl-150,
	.posy-xl-150 {
		top: 9.375rem !important
	}

	.posr-xl-150 {
		right: 9.375rem !important
	}

	.posb-xl-150 {
		bottom: 9.375rem !important
	}

	.posl-xl-150 {
		left: 9.375rem !important
	}

	.posmt-xl-150 {
		top: -9.375rem !important
	}

	.posmr-xl-150 {
		right: -9.375rem !important
	}

	.posmb-xl-150 {
		bottom: -9.375rem !important
	}

	.posml-xl-150 {
		left: -9.375rem !important
	}

	.pos-xl-151 {
		top: 9.4375rem !important;
		bottom: 9.4375rem !important
	}

	.pos-xl-151,
	.posx-xl-151 {
		right: 9.4375rem !important;
		left: 9.4375rem !important
	}

	.posy-xl-151 {
		bottom: 9.4375rem !important
	}

	.post-xl-151,
	.posy-xl-151 {
		top: 9.4375rem !important
	}

	.posr-xl-151 {
		right: 9.4375rem !important
	}

	.posb-xl-151 {
		bottom: 9.4375rem !important
	}

	.posl-xl-151 {
		left: 9.4375rem !important
	}

	.posmt-xl-151 {
		top: -9.4375rem !important
	}

	.posmr-xl-151 {
		right: -9.4375rem !important
	}

	.posmb-xl-151 {
		bottom: -9.4375rem !important
	}

	.posml-xl-151 {
		left: -9.4375rem !important
	}

	.pos-xl-152 {
		top: 9.5rem !important;
		bottom: 9.5rem !important
	}

	.pos-xl-152,
	.posx-xl-152 {
		right: 9.5rem !important;
		left: 9.5rem !important
	}

	.posy-xl-152 {
		bottom: 9.5rem !important
	}

	.post-xl-152,
	.posy-xl-152 {
		top: 9.5rem !important
	}

	.posr-xl-152 {
		right: 9.5rem !important
	}

	.posb-xl-152 {
		bottom: 9.5rem !important
	}

	.posl-xl-152 {
		left: 9.5rem !important
	}

	.posmt-xl-152 {
		top: -9.5rem !important
	}

	.posmr-xl-152 {
		right: -9.5rem !important
	}

	.posmb-xl-152 {
		bottom: -9.5rem !important
	}

	.posml-xl-152 {
		left: -9.5rem !important
	}

	.pos-xl-153 {
		top: 9.5625rem !important;
		bottom: 9.5625rem !important
	}

	.pos-xl-153,
	.posx-xl-153 {
		right: 9.5625rem !important;
		left: 9.5625rem !important
	}

	.posy-xl-153 {
		bottom: 9.5625rem !important
	}

	.post-xl-153,
	.posy-xl-153 {
		top: 9.5625rem !important
	}

	.posr-xl-153 {
		right: 9.5625rem !important
	}

	.posb-xl-153 {
		bottom: 9.5625rem !important
	}

	.posl-xl-153 {
		left: 9.5625rem !important
	}

	.posmt-xl-153 {
		top: -9.5625rem !important
	}

	.posmr-xl-153 {
		right: -9.5625rem !important
	}

	.posmb-xl-153 {
		bottom: -9.5625rem !important
	}

	.posml-xl-153 {
		left: -9.5625rem !important
	}

	.pos-xl-154 {
		top: 9.625rem !important;
		bottom: 9.625rem !important
	}

	.pos-xl-154,
	.posx-xl-154 {
		right: 9.625rem !important;
		left: 9.625rem !important
	}

	.posy-xl-154 {
		bottom: 9.625rem !important
	}

	.post-xl-154,
	.posy-xl-154 {
		top: 9.625rem !important
	}

	.posr-xl-154 {
		right: 9.625rem !important
	}

	.posb-xl-154 {
		bottom: 9.625rem !important
	}

	.posl-xl-154 {
		left: 9.625rem !important
	}

	.posmt-xl-154 {
		top: -9.625rem !important
	}

	.posmr-xl-154 {
		right: -9.625rem !important
	}

	.posmb-xl-154 {
		bottom: -9.625rem !important
	}

	.posml-xl-154 {
		left: -9.625rem !important
	}

	.pos-xl-155 {
		top: 9.6875rem !important;
		bottom: 9.6875rem !important
	}

	.pos-xl-155,
	.posx-xl-155 {
		right: 9.6875rem !important;
		left: 9.6875rem !important
	}

	.posy-xl-155 {
		bottom: 9.6875rem !important
	}

	.post-xl-155,
	.posy-xl-155 {
		top: 9.6875rem !important
	}

	.posr-xl-155 {
		right: 9.6875rem !important
	}

	.posb-xl-155 {
		bottom: 9.6875rem !important
	}

	.posl-xl-155 {
		left: 9.6875rem !important
	}

	.posmt-xl-155 {
		top: -9.6875rem !important
	}

	.posmr-xl-155 {
		right: -9.6875rem !important
	}

	.posmb-xl-155 {
		bottom: -9.6875rem !important
	}

	.posml-xl-155 {
		left: -9.6875rem !important
	}

	.pos-xl-156 {
		top: 9.75rem !important;
		bottom: 9.75rem !important
	}

	.pos-xl-156,
	.posx-xl-156 {
		right: 9.75rem !important;
		left: 9.75rem !important
	}

	.posy-xl-156 {
		bottom: 9.75rem !important
	}

	.post-xl-156,
	.posy-xl-156 {
		top: 9.75rem !important
	}

	.posr-xl-156 {
		right: 9.75rem !important
	}

	.posb-xl-156 {
		bottom: 9.75rem !important
	}

	.posl-xl-156 {
		left: 9.75rem !important
	}

	.posmt-xl-156 {
		top: -9.75rem !important
	}

	.posmr-xl-156 {
		right: -9.75rem !important
	}

	.posmb-xl-156 {
		bottom: -9.75rem !important
	}

	.posml-xl-156 {
		left: -9.75rem !important
	}

	.pos-xl-157 {
		top: 9.8125rem !important;
		bottom: 9.8125rem !important
	}

	.pos-xl-157,
	.posx-xl-157 {
		right: 9.8125rem !important;
		left: 9.8125rem !important
	}

	.posy-xl-157 {
		bottom: 9.8125rem !important
	}

	.post-xl-157,
	.posy-xl-157 {
		top: 9.8125rem !important
	}

	.posr-xl-157 {
		right: 9.8125rem !important
	}

	.posb-xl-157 {
		bottom: 9.8125rem !important
	}

	.posl-xl-157 {
		left: 9.8125rem !important
	}

	.posmt-xl-157 {
		top: -9.8125rem !important
	}

	.posmr-xl-157 {
		right: -9.8125rem !important
	}

	.posmb-xl-157 {
		bottom: -9.8125rem !important
	}

	.posml-xl-157 {
		left: -9.8125rem !important
	}

	.pos-xl-158 {
		top: 9.875rem !important;
		bottom: 9.875rem !important
	}

	.pos-xl-158,
	.posx-xl-158 {
		right: 9.875rem !important;
		left: 9.875rem !important
	}

	.posy-xl-158 {
		bottom: 9.875rem !important
	}

	.post-xl-158,
	.posy-xl-158 {
		top: 9.875rem !important
	}

	.posr-xl-158 {
		right: 9.875rem !important
	}

	.posb-xl-158 {
		bottom: 9.875rem !important
	}

	.posl-xl-158 {
		left: 9.875rem !important
	}

	.posmt-xl-158 {
		top: -9.875rem !important
	}

	.posmr-xl-158 {
		right: -9.875rem !important
	}

	.posmb-xl-158 {
		bottom: -9.875rem !important
	}

	.posml-xl-158 {
		left: -9.875rem !important
	}

	.pos-xl-159 {
		top: 9.9375rem !important;
		bottom: 9.9375rem !important
	}

	.pos-xl-159,
	.posx-xl-159 {
		right: 9.9375rem !important;
		left: 9.9375rem !important
	}

	.posy-xl-159 {
		bottom: 9.9375rem !important
	}

	.post-xl-159,
	.posy-xl-159 {
		top: 9.9375rem !important
	}

	.posr-xl-159 {
		right: 9.9375rem !important
	}

	.posb-xl-159 {
		bottom: 9.9375rem !important
	}

	.posl-xl-159 {
		left: 9.9375rem !important
	}

	.posmt-xl-159 {
		top: -9.9375rem !important
	}

	.posmr-xl-159 {
		right: -9.9375rem !important
	}

	.posmb-xl-159 {
		bottom: -9.9375rem !important
	}

	.posml-xl-159 {
		left: -9.9375rem !important
	}

	.pos-xl-160 {
		top: 10rem !important;
		bottom: 10rem !important
	}

	.pos-xl-160,
	.posx-xl-160 {
		right: 10rem !important;
		left: 10rem !important
	}

	.posy-xl-160 {
		bottom: 10rem !important
	}

	.post-xl-160,
	.posy-xl-160 {
		top: 10rem !important
	}

	.posr-xl-160 {
		right: 10rem !important
	}

	.posb-xl-160 {
		bottom: 10rem !important
	}

	.posl-xl-160 {
		left: 10rem !important
	}

	.posmt-xl-160 {
		top: -10rem !important
	}

	.posmr-xl-160 {
		right: -10rem !important
	}

	.posmb-xl-160 {
		bottom: -10rem !important
	}

	.posml-xl-160 {
		left: -10rem !important
	}

	.pos-xl-161 {
		top: 10.0625rem !important;
		bottom: 10.0625rem !important
	}

	.pos-xl-161,
	.posx-xl-161 {
		right: 10.0625rem !important;
		left: 10.0625rem !important
	}

	.posy-xl-161 {
		bottom: 10.0625rem !important
	}

	.post-xl-161,
	.posy-xl-161 {
		top: 10.0625rem !important
	}

	.posr-xl-161 {
		right: 10.0625rem !important
	}

	.posb-xl-161 {
		bottom: 10.0625rem !important
	}

	.posl-xl-161 {
		left: 10.0625rem !important
	}

	.posmt-xl-161 {
		top: -10.0625rem !important
	}

	.posmr-xl-161 {
		right: -10.0625rem !important
	}

	.posmb-xl-161 {
		bottom: -10.0625rem !important
	}

	.posml-xl-161 {
		left: -10.0625rem !important
	}

	.pos-xl-162 {
		top: 10.125rem !important;
		bottom: 10.125rem !important
	}

	.pos-xl-162,
	.posx-xl-162 {
		right: 10.125rem !important;
		left: 10.125rem !important
	}

	.posy-xl-162 {
		bottom: 10.125rem !important
	}

	.post-xl-162,
	.posy-xl-162 {
		top: 10.125rem !important
	}

	.posr-xl-162 {
		right: 10.125rem !important
	}

	.posb-xl-162 {
		bottom: 10.125rem !important
	}

	.posl-xl-162 {
		left: 10.125rem !important
	}

	.posmt-xl-162 {
		top: -10.125rem !important
	}

	.posmr-xl-162 {
		right: -10.125rem !important
	}

	.posmb-xl-162 {
		bottom: -10.125rem !important
	}

	.posml-xl-162 {
		left: -10.125rem !important
	}

	.pos-xl-163 {
		top: 10.1875rem !important;
		bottom: 10.1875rem !important
	}

	.pos-xl-163,
	.posx-xl-163 {
		right: 10.1875rem !important;
		left: 10.1875rem !important
	}

	.posy-xl-163 {
		bottom: 10.1875rem !important
	}

	.post-xl-163,
	.posy-xl-163 {
		top: 10.1875rem !important
	}

	.posr-xl-163 {
		right: 10.1875rem !important
	}

	.posb-xl-163 {
		bottom: 10.1875rem !important
	}

	.posl-xl-163 {
		left: 10.1875rem !important
	}

	.posmt-xl-163 {
		top: -10.1875rem !important
	}

	.posmr-xl-163 {
		right: -10.1875rem !important
	}

	.posmb-xl-163 {
		bottom: -10.1875rem !important
	}

	.posml-xl-163 {
		left: -10.1875rem !important
	}

	.pos-xl-164 {
		top: 10.25rem !important;
		bottom: 10.25rem !important
	}

	.pos-xl-164,
	.posx-xl-164 {
		right: 10.25rem !important;
		left: 10.25rem !important
	}

	.posy-xl-164 {
		bottom: 10.25rem !important
	}

	.post-xl-164,
	.posy-xl-164 {
		top: 10.25rem !important
	}

	.posr-xl-164 {
		right: 10.25rem !important
	}

	.posb-xl-164 {
		bottom: 10.25rem !important
	}

	.posl-xl-164 {
		left: 10.25rem !important
	}

	.posmt-xl-164 {
		top: -10.25rem !important
	}

	.posmr-xl-164 {
		right: -10.25rem !important
	}

	.posmb-xl-164 {
		bottom: -10.25rem !important
	}

	.posml-xl-164 {
		left: -10.25rem !important
	}

	.pos-xl-165 {
		top: 10.3125rem !important;
		bottom: 10.3125rem !important
	}

	.pos-xl-165,
	.posx-xl-165 {
		right: 10.3125rem !important;
		left: 10.3125rem !important
	}

	.posy-xl-165 {
		bottom: 10.3125rem !important
	}

	.post-xl-165,
	.posy-xl-165 {
		top: 10.3125rem !important
	}

	.posr-xl-165 {
		right: 10.3125rem !important
	}

	.posb-xl-165 {
		bottom: 10.3125rem !important
	}

	.posl-xl-165 {
		left: 10.3125rem !important
	}

	.posmt-xl-165 {
		top: -10.3125rem !important
	}

	.posmr-xl-165 {
		right: -10.3125rem !important
	}

	.posmb-xl-165 {
		bottom: -10.3125rem !important
	}

	.posml-xl-165 {
		left: -10.3125rem !important
	}

	.pos-xl-166 {
		top: 10.375rem !important;
		bottom: 10.375rem !important
	}

	.pos-xl-166,
	.posx-xl-166 {
		right: 10.375rem !important;
		left: 10.375rem !important
	}

	.posy-xl-166 {
		bottom: 10.375rem !important
	}

	.post-xl-166,
	.posy-xl-166 {
		top: 10.375rem !important
	}

	.posr-xl-166 {
		right: 10.375rem !important
	}

	.posb-xl-166 {
		bottom: 10.375rem !important
	}

	.posl-xl-166 {
		left: 10.375rem !important
	}

	.posmt-xl-166 {
		top: -10.375rem !important
	}

	.posmr-xl-166 {
		right: -10.375rem !important
	}

	.posmb-xl-166 {
		bottom: -10.375rem !important
	}

	.posml-xl-166 {
		left: -10.375rem !important
	}

	.pos-xl-167 {
		top: 10.4375rem !important;
		bottom: 10.4375rem !important
	}

	.pos-xl-167,
	.posx-xl-167 {
		right: 10.4375rem !important;
		left: 10.4375rem !important
	}

	.posy-xl-167 {
		bottom: 10.4375rem !important
	}

	.post-xl-167,
	.posy-xl-167 {
		top: 10.4375rem !important
	}

	.posr-xl-167 {
		right: 10.4375rem !important
	}

	.posb-xl-167 {
		bottom: 10.4375rem !important
	}

	.posl-xl-167 {
		left: 10.4375rem !important
	}

	.posmt-xl-167 {
		top: -10.4375rem !important
	}

	.posmr-xl-167 {
		right: -10.4375rem !important
	}

	.posmb-xl-167 {
		bottom: -10.4375rem !important
	}

	.posml-xl-167 {
		left: -10.4375rem !important
	}

	.pos-xl-168 {
		top: 10.5rem !important;
		bottom: 10.5rem !important
	}

	.pos-xl-168,
	.posx-xl-168 {
		right: 10.5rem !important;
		left: 10.5rem !important
	}

	.posy-xl-168 {
		bottom: 10.5rem !important
	}

	.post-xl-168,
	.posy-xl-168 {
		top: 10.5rem !important
	}

	.posr-xl-168 {
		right: 10.5rem !important
	}

	.posb-xl-168 {
		bottom: 10.5rem !important
	}

	.posl-xl-168 {
		left: 10.5rem !important
	}

	.posmt-xl-168 {
		top: -10.5rem !important
	}

	.posmr-xl-168 {
		right: -10.5rem !important
	}

	.posmb-xl-168 {
		bottom: -10.5rem !important
	}

	.posml-xl-168 {
		left: -10.5rem !important
	}

	.pos-xl-169 {
		top: 10.5625rem !important;
		bottom: 10.5625rem !important
	}

	.pos-xl-169,
	.posx-xl-169 {
		right: 10.5625rem !important;
		left: 10.5625rem !important
	}

	.posy-xl-169 {
		bottom: 10.5625rem !important
	}

	.post-xl-169,
	.posy-xl-169 {
		top: 10.5625rem !important
	}

	.posr-xl-169 {
		right: 10.5625rem !important
	}

	.posb-xl-169 {
		bottom: 10.5625rem !important
	}

	.posl-xl-169 {
		left: 10.5625rem !important
	}

	.posmt-xl-169 {
		top: -10.5625rem !important
	}

	.posmr-xl-169 {
		right: -10.5625rem !important
	}

	.posmb-xl-169 {
		bottom: -10.5625rem !important
	}

	.posml-xl-169 {
		left: -10.5625rem !important
	}

	.pos-xl-170 {
		top: 10.625rem !important;
		bottom: 10.625rem !important
	}

	.pos-xl-170,
	.posx-xl-170 {
		right: 10.625rem !important;
		left: 10.625rem !important
	}

	.posy-xl-170 {
		bottom: 10.625rem !important
	}

	.post-xl-170,
	.posy-xl-170 {
		top: 10.625rem !important
	}

	.posr-xl-170 {
		right: 10.625rem !important
	}

	.posb-xl-170 {
		bottom: 10.625rem !important
	}

	.posl-xl-170 {
		left: 10.625rem !important
	}

	.posmt-xl-170 {
		top: -10.625rem !important
	}

	.posmr-xl-170 {
		right: -10.625rem !important
	}

	.posmb-xl-170 {
		bottom: -10.625rem !important
	}

	.posml-xl-170 {
		left: -10.625rem !important
	}

	.pos-xl-171 {
		top: 10.6875rem !important;
		bottom: 10.6875rem !important
	}

	.pos-xl-171,
	.posx-xl-171 {
		right: 10.6875rem !important;
		left: 10.6875rem !important
	}

	.posy-xl-171 {
		bottom: 10.6875rem !important
	}

	.post-xl-171,
	.posy-xl-171 {
		top: 10.6875rem !important
	}

	.posr-xl-171 {
		right: 10.6875rem !important
	}

	.posb-xl-171 {
		bottom: 10.6875rem !important
	}

	.posl-xl-171 {
		left: 10.6875rem !important
	}

	.posmt-xl-171 {
		top: -10.6875rem !important
	}

	.posmr-xl-171 {
		right: -10.6875rem !important
	}

	.posmb-xl-171 {
		bottom: -10.6875rem !important
	}

	.posml-xl-171 {
		left: -10.6875rem !important
	}

	.pos-xl-172 {
		top: 10.75rem !important;
		bottom: 10.75rem !important
	}

	.pos-xl-172,
	.posx-xl-172 {
		right: 10.75rem !important;
		left: 10.75rem !important
	}

	.posy-xl-172 {
		bottom: 10.75rem !important
	}

	.post-xl-172,
	.posy-xl-172 {
		top: 10.75rem !important
	}

	.posr-xl-172 {
		right: 10.75rem !important
	}

	.posb-xl-172 {
		bottom: 10.75rem !important
	}

	.posl-xl-172 {
		left: 10.75rem !important
	}

	.posmt-xl-172 {
		top: -10.75rem !important
	}

	.posmr-xl-172 {
		right: -10.75rem !important
	}

	.posmb-xl-172 {
		bottom: -10.75rem !important
	}

	.posml-xl-172 {
		left: -10.75rem !important
	}

	.pos-xl-173 {
		top: 10.8125rem !important;
		bottom: 10.8125rem !important
	}

	.pos-xl-173,
	.posx-xl-173 {
		right: 10.8125rem !important;
		left: 10.8125rem !important
	}

	.posy-xl-173 {
		bottom: 10.8125rem !important
	}

	.post-xl-173,
	.posy-xl-173 {
		top: 10.8125rem !important
	}

	.posr-xl-173 {
		right: 10.8125rem !important
	}

	.posb-xl-173 {
		bottom: 10.8125rem !important
	}

	.posl-xl-173 {
		left: 10.8125rem !important
	}

	.posmt-xl-173 {
		top: -10.8125rem !important
	}

	.posmr-xl-173 {
		right: -10.8125rem !important
	}

	.posmb-xl-173 {
		bottom: -10.8125rem !important
	}

	.posml-xl-173 {
		left: -10.8125rem !important
	}

	.pos-xl-174 {
		top: 10.875rem !important;
		bottom: 10.875rem !important
	}

	.pos-xl-174,
	.posx-xl-174 {
		right: 10.875rem !important;
		left: 10.875rem !important
	}

	.posy-xl-174 {
		bottom: 10.875rem !important
	}

	.post-xl-174,
	.posy-xl-174 {
		top: 10.875rem !important
	}

	.posr-xl-174 {
		right: 10.875rem !important
	}

	.posb-xl-174 {
		bottom: 10.875rem !important
	}

	.posl-xl-174 {
		left: 10.875rem !important
	}

	.posmt-xl-174 {
		top: -10.875rem !important
	}

	.posmr-xl-174 {
		right: -10.875rem !important
	}

	.posmb-xl-174 {
		bottom: -10.875rem !important
	}

	.posml-xl-174 {
		left: -10.875rem !important
	}

	.pos-xl-175 {
		top: 10.9375rem !important;
		bottom: 10.9375rem !important
	}

	.pos-xl-175,
	.posx-xl-175 {
		right: 10.9375rem !important;
		left: 10.9375rem !important
	}

	.posy-xl-175 {
		bottom: 10.9375rem !important
	}

	.post-xl-175,
	.posy-xl-175 {
		top: 10.9375rem !important
	}

	.posr-xl-175 {
		right: 10.9375rem !important
	}

	.posb-xl-175 {
		bottom: 10.9375rem !important
	}

	.posl-xl-175 {
		left: 10.9375rem !important
	}

	.posmt-xl-175 {
		top: -10.9375rem !important
	}

	.posmr-xl-175 {
		right: -10.9375rem !important
	}

	.posmb-xl-175 {
		bottom: -10.9375rem !important
	}

	.posml-xl-175 {
		left: -10.9375rem !important
	}

	.pos-xl-176 {
		top: 11rem !important;
		bottom: 11rem !important
	}

	.pos-xl-176,
	.posx-xl-176 {
		right: 11rem !important;
		left: 11rem !important
	}

	.posy-xl-176 {
		bottom: 11rem !important
	}

	.post-xl-176,
	.posy-xl-176 {
		top: 11rem !important
	}

	.posr-xl-176 {
		right: 11rem !important
	}

	.posb-xl-176 {
		bottom: 11rem !important
	}

	.posl-xl-176 {
		left: 11rem !important
	}

	.posmt-xl-176 {
		top: -11rem !important
	}

	.posmr-xl-176 {
		right: -11rem !important
	}

	.posmb-xl-176 {
		bottom: -11rem !important
	}

	.posml-xl-176 {
		left: -11rem !important
	}

	.pos-xl-177 {
		top: 11.0625rem !important;
		bottom: 11.0625rem !important
	}

	.pos-xl-177,
	.posx-xl-177 {
		right: 11.0625rem !important;
		left: 11.0625rem !important
	}

	.posy-xl-177 {
		bottom: 11.0625rem !important
	}

	.post-xl-177,
	.posy-xl-177 {
		top: 11.0625rem !important
	}

	.posr-xl-177 {
		right: 11.0625rem !important
	}

	.posb-xl-177 {
		bottom: 11.0625rem !important
	}

	.posl-xl-177 {
		left: 11.0625rem !important
	}

	.posmt-xl-177 {
		top: -11.0625rem !important
	}

	.posmr-xl-177 {
		right: -11.0625rem !important
	}

	.posmb-xl-177 {
		bottom: -11.0625rem !important
	}

	.posml-xl-177 {
		left: -11.0625rem !important
	}

	.pos-xl-178 {
		top: 11.125rem !important;
		bottom: 11.125rem !important
	}

	.pos-xl-178,
	.posx-xl-178 {
		right: 11.125rem !important;
		left: 11.125rem !important
	}

	.posy-xl-178 {
		bottom: 11.125rem !important
	}

	.post-xl-178,
	.posy-xl-178 {
		top: 11.125rem !important
	}

	.posr-xl-178 {
		right: 11.125rem !important
	}

	.posb-xl-178 {
		bottom: 11.125rem !important
	}

	.posl-xl-178 {
		left: 11.125rem !important
	}

	.posmt-xl-178 {
		top: -11.125rem !important
	}

	.posmr-xl-178 {
		right: -11.125rem !important
	}

	.posmb-xl-178 {
		bottom: -11.125rem !important
	}

	.posml-xl-178 {
		left: -11.125rem !important
	}

	.pos-xl-179 {
		top: 11.1875rem !important;
		bottom: 11.1875rem !important
	}

	.pos-xl-179,
	.posx-xl-179 {
		right: 11.1875rem !important;
		left: 11.1875rem !important
	}

	.posy-xl-179 {
		bottom: 11.1875rem !important
	}

	.post-xl-179,
	.posy-xl-179 {
		top: 11.1875rem !important
	}

	.posr-xl-179 {
		right: 11.1875rem !important
	}

	.posb-xl-179 {
		bottom: 11.1875rem !important
	}

	.posl-xl-179 {
		left: 11.1875rem !important
	}

	.posmt-xl-179 {
		top: -11.1875rem !important
	}

	.posmr-xl-179 {
		right: -11.1875rem !important
	}

	.posmb-xl-179 {
		bottom: -11.1875rem !important
	}

	.posml-xl-179 {
		left: -11.1875rem !important
	}

	.pos-xl-180 {
		top: 11.25rem !important;
		bottom: 11.25rem !important
	}

	.pos-xl-180,
	.posx-xl-180 {
		right: 11.25rem !important;
		left: 11.25rem !important
	}

	.posy-xl-180 {
		bottom: 11.25rem !important
	}

	.post-xl-180,
	.posy-xl-180 {
		top: 11.25rem !important
	}

	.posr-xl-180 {
		right: 11.25rem !important
	}

	.posb-xl-180 {
		bottom: 11.25rem !important
	}

	.posl-xl-180 {
		left: 11.25rem !important
	}

	.posmt-xl-180 {
		top: -11.25rem !important
	}

	.posmr-xl-180 {
		right: -11.25rem !important
	}

	.posmb-xl-180 {
		bottom: -11.25rem !important
	}

	.posml-xl-180 {
		left: -11.25rem !important
	}

	.pos-xl-181 {
		top: 11.3125rem !important;
		bottom: 11.3125rem !important
	}

	.pos-xl-181,
	.posx-xl-181 {
		right: 11.3125rem !important;
		left: 11.3125rem !important
	}

	.posy-xl-181 {
		bottom: 11.3125rem !important
	}

	.post-xl-181,
	.posy-xl-181 {
		top: 11.3125rem !important
	}

	.posr-xl-181 {
		right: 11.3125rem !important
	}

	.posb-xl-181 {
		bottom: 11.3125rem !important
	}

	.posl-xl-181 {
		left: 11.3125rem !important
	}

	.posmt-xl-181 {
		top: -11.3125rem !important
	}

	.posmr-xl-181 {
		right: -11.3125rem !important
	}

	.posmb-xl-181 {
		bottom: -11.3125rem !important
	}

	.posml-xl-181 {
		left: -11.3125rem !important
	}

	.pos-xl-182 {
		top: 11.375rem !important;
		bottom: 11.375rem !important
	}

	.pos-xl-182,
	.posx-xl-182 {
		right: 11.375rem !important;
		left: 11.375rem !important
	}

	.posy-xl-182 {
		bottom: 11.375rem !important
	}

	.post-xl-182,
	.posy-xl-182 {
		top: 11.375rem !important
	}

	.posr-xl-182 {
		right: 11.375rem !important
	}

	.posb-xl-182 {
		bottom: 11.375rem !important
	}

	.posl-xl-182 {
		left: 11.375rem !important
	}

	.posmt-xl-182 {
		top: -11.375rem !important
	}

	.posmr-xl-182 {
		right: -11.375rem !important
	}

	.posmb-xl-182 {
		bottom: -11.375rem !important
	}

	.posml-xl-182 {
		left: -11.375rem !important
	}

	.pos-xl-183 {
		top: 11.4375rem !important;
		bottom: 11.4375rem !important
	}

	.pos-xl-183,
	.posx-xl-183 {
		right: 11.4375rem !important;
		left: 11.4375rem !important
	}

	.posy-xl-183 {
		bottom: 11.4375rem !important
	}

	.post-xl-183,
	.posy-xl-183 {
		top: 11.4375rem !important
	}

	.posr-xl-183 {
		right: 11.4375rem !important
	}

	.posb-xl-183 {
		bottom: 11.4375rem !important
	}

	.posl-xl-183 {
		left: 11.4375rem !important
	}

	.posmt-xl-183 {
		top: -11.4375rem !important
	}

	.posmr-xl-183 {
		right: -11.4375rem !important
	}

	.posmb-xl-183 {
		bottom: -11.4375rem !important
	}

	.posml-xl-183 {
		left: -11.4375rem !important
	}

	.pos-xl-184 {
		top: 11.5rem !important;
		bottom: 11.5rem !important
	}

	.pos-xl-184,
	.posx-xl-184 {
		right: 11.5rem !important;
		left: 11.5rem !important
	}

	.posy-xl-184 {
		bottom: 11.5rem !important
	}

	.post-xl-184,
	.posy-xl-184 {
		top: 11.5rem !important
	}

	.posr-xl-184 {
		right: 11.5rem !important
	}

	.posb-xl-184 {
		bottom: 11.5rem !important
	}

	.posl-xl-184 {
		left: 11.5rem !important
	}

	.posmt-xl-184 {
		top: -11.5rem !important
	}

	.posmr-xl-184 {
		right: -11.5rem !important
	}

	.posmb-xl-184 {
		bottom: -11.5rem !important
	}

	.posml-xl-184 {
		left: -11.5rem !important
	}

	.pos-xl-185 {
		top: 11.5625rem !important;
		bottom: 11.5625rem !important
	}

	.pos-xl-185,
	.posx-xl-185 {
		right: 11.5625rem !important;
		left: 11.5625rem !important
	}

	.posy-xl-185 {
		bottom: 11.5625rem !important
	}

	.post-xl-185,
	.posy-xl-185 {
		top: 11.5625rem !important
	}

	.posr-xl-185 {
		right: 11.5625rem !important
	}

	.posb-xl-185 {
		bottom: 11.5625rem !important
	}

	.posl-xl-185 {
		left: 11.5625rem !important
	}

	.posmt-xl-185 {
		top: -11.5625rem !important
	}

	.posmr-xl-185 {
		right: -11.5625rem !important
	}

	.posmb-xl-185 {
		bottom: -11.5625rem !important
	}

	.posml-xl-185 {
		left: -11.5625rem !important
	}

	.pos-xl-186 {
		top: 11.625rem !important;
		bottom: 11.625rem !important
	}

	.pos-xl-186,
	.posx-xl-186 {
		right: 11.625rem !important;
		left: 11.625rem !important
	}

	.posy-xl-186 {
		bottom: 11.625rem !important
	}

	.post-xl-186,
	.posy-xl-186 {
		top: 11.625rem !important
	}

	.posr-xl-186 {
		right: 11.625rem !important
	}

	.posb-xl-186 {
		bottom: 11.625rem !important
	}

	.posl-xl-186 {
		left: 11.625rem !important
	}

	.posmt-xl-186 {
		top: -11.625rem !important
	}

	.posmr-xl-186 {
		right: -11.625rem !important
	}

	.posmb-xl-186 {
		bottom: -11.625rem !important
	}

	.posml-xl-186 {
		left: -11.625rem !important
	}

	.pos-xl-187 {
		top: 11.6875rem !important;
		bottom: 11.6875rem !important
	}

	.pos-xl-187,
	.posx-xl-187 {
		right: 11.6875rem !important;
		left: 11.6875rem !important
	}

	.posy-xl-187 {
		bottom: 11.6875rem !important
	}

	.post-xl-187,
	.posy-xl-187 {
		top: 11.6875rem !important
	}

	.posr-xl-187 {
		right: 11.6875rem !important
	}

	.posb-xl-187 {
		bottom: 11.6875rem !important
	}

	.posl-xl-187 {
		left: 11.6875rem !important
	}

	.posmt-xl-187 {
		top: -11.6875rem !important
	}

	.posmr-xl-187 {
		right: -11.6875rem !important
	}

	.posmb-xl-187 {
		bottom: -11.6875rem !important
	}

	.posml-xl-187 {
		left: -11.6875rem !important
	}

	.pos-xl-188 {
		top: 11.75rem !important;
		bottom: 11.75rem !important
	}

	.pos-xl-188,
	.posx-xl-188 {
		right: 11.75rem !important;
		left: 11.75rem !important
	}

	.posy-xl-188 {
		bottom: 11.75rem !important
	}

	.post-xl-188,
	.posy-xl-188 {
		top: 11.75rem !important
	}

	.posr-xl-188 {
		right: 11.75rem !important
	}

	.posb-xl-188 {
		bottom: 11.75rem !important
	}

	.posl-xl-188 {
		left: 11.75rem !important
	}

	.posmt-xl-188 {
		top: -11.75rem !important
	}

	.posmr-xl-188 {
		right: -11.75rem !important
	}

	.posmb-xl-188 {
		bottom: -11.75rem !important
	}

	.posml-xl-188 {
		left: -11.75rem !important
	}

	.pos-xl-189 {
		top: 11.8125rem !important;
		bottom: 11.8125rem !important
	}

	.pos-xl-189,
	.posx-xl-189 {
		right: 11.8125rem !important;
		left: 11.8125rem !important
	}

	.posy-xl-189 {
		bottom: 11.8125rem !important
	}

	.post-xl-189,
	.posy-xl-189 {
		top: 11.8125rem !important
	}

	.posr-xl-189 {
		right: 11.8125rem !important
	}

	.posb-xl-189 {
		bottom: 11.8125rem !important
	}

	.posl-xl-189 {
		left: 11.8125rem !important
	}

	.posmt-xl-189 {
		top: -11.8125rem !important
	}

	.posmr-xl-189 {
		right: -11.8125rem !important
	}

	.posmb-xl-189 {
		bottom: -11.8125rem !important
	}

	.posml-xl-189 {
		left: -11.8125rem !important
	}

	.pos-xl-190 {
		top: 11.875rem !important;
		bottom: 11.875rem !important
	}

	.pos-xl-190,
	.posx-xl-190 {
		right: 11.875rem !important;
		left: 11.875rem !important
	}

	.posy-xl-190 {
		bottom: 11.875rem !important
	}

	.post-xl-190,
	.posy-xl-190 {
		top: 11.875rem !important
	}

	.posr-xl-190 {
		right: 11.875rem !important
	}

	.posb-xl-190 {
		bottom: 11.875rem !important
	}

	.posl-xl-190 {
		left: 11.875rem !important
	}

	.posmt-xl-190 {
		top: -11.875rem !important
	}

	.posmr-xl-190 {
		right: -11.875rem !important
	}

	.posmb-xl-190 {
		bottom: -11.875rem !important
	}

	.posml-xl-190 {
		left: -11.875rem !important
	}

	.pos-xl-191 {
		top: 11.9375rem !important;
		bottom: 11.9375rem !important
	}

	.pos-xl-191,
	.posx-xl-191 {
		right: 11.9375rem !important;
		left: 11.9375rem !important
	}

	.posy-xl-191 {
		bottom: 11.9375rem !important
	}

	.post-xl-191,
	.posy-xl-191 {
		top: 11.9375rem !important
	}

	.posr-xl-191 {
		right: 11.9375rem !important
	}

	.posb-xl-191 {
		bottom: 11.9375rem !important
	}

	.posl-xl-191 {
		left: 11.9375rem !important
	}

	.posmt-xl-191 {
		top: -11.9375rem !important
	}

	.posmr-xl-191 {
		right: -11.9375rem !important
	}

	.posmb-xl-191 {
		bottom: -11.9375rem !important
	}

	.posml-xl-191 {
		left: -11.9375rem !important
	}

	.pos-xl-192 {
		top: 12rem !important;
		bottom: 12rem !important
	}

	.pos-xl-192,
	.posx-xl-192 {
		right: 12rem !important;
		left: 12rem !important
	}

	.posy-xl-192 {
		bottom: 12rem !important
	}

	.post-xl-192,
	.posy-xl-192 {
		top: 12rem !important
	}

	.posr-xl-192 {
		right: 12rem !important
	}

	.posb-xl-192 {
		bottom: 12rem !important
	}

	.posl-xl-192 {
		left: 12rem !important
	}

	.posmt-xl-192 {
		top: -12rem !important
	}

	.posmr-xl-192 {
		right: -12rem !important
	}

	.posmb-xl-192 {
		bottom: -12rem !important
	}

	.posml-xl-192 {
		left: -12rem !important
	}

	.pos-xl-193 {
		top: 12.0625rem !important;
		bottom: 12.0625rem !important
	}

	.pos-xl-193,
	.posx-xl-193 {
		right: 12.0625rem !important;
		left: 12.0625rem !important
	}

	.posy-xl-193 {
		bottom: 12.0625rem !important
	}

	.post-xl-193,
	.posy-xl-193 {
		top: 12.0625rem !important
	}

	.posr-xl-193 {
		right: 12.0625rem !important
	}

	.posb-xl-193 {
		bottom: 12.0625rem !important
	}

	.posl-xl-193 {
		left: 12.0625rem !important
	}

	.posmt-xl-193 {
		top: -12.0625rem !important
	}

	.posmr-xl-193 {
		right: -12.0625rem !important
	}

	.posmb-xl-193 {
		bottom: -12.0625rem !important
	}

	.posml-xl-193 {
		left: -12.0625rem !important
	}

	.pos-xl-194 {
		top: 12.125rem !important;
		bottom: 12.125rem !important
	}

	.pos-xl-194,
	.posx-xl-194 {
		right: 12.125rem !important;
		left: 12.125rem !important
	}

	.posy-xl-194 {
		bottom: 12.125rem !important
	}

	.post-xl-194,
	.posy-xl-194 {
		top: 12.125rem !important
	}

	.posr-xl-194 {
		right: 12.125rem !important
	}

	.posb-xl-194 {
		bottom: 12.125rem !important
	}

	.posl-xl-194 {
		left: 12.125rem !important
	}

	.posmt-xl-194 {
		top: -12.125rem !important
	}

	.posmr-xl-194 {
		right: -12.125rem !important
	}

	.posmb-xl-194 {
		bottom: -12.125rem !important
	}

	.posml-xl-194 {
		left: -12.125rem !important
	}

	.pos-xl-195 {
		top: 12.1875rem !important;
		bottom: 12.1875rem !important
	}

	.pos-xl-195,
	.posx-xl-195 {
		right: 12.1875rem !important;
		left: 12.1875rem !important
	}

	.posy-xl-195 {
		bottom: 12.1875rem !important
	}

	.post-xl-195,
	.posy-xl-195 {
		top: 12.1875rem !important
	}

	.posr-xl-195 {
		right: 12.1875rem !important
	}

	.posb-xl-195 {
		bottom: 12.1875rem !important
	}

	.posl-xl-195 {
		left: 12.1875rem !important
	}

	.posmt-xl-195 {
		top: -12.1875rem !important
	}

	.posmr-xl-195 {
		right: -12.1875rem !important
	}

	.posmb-xl-195 {
		bottom: -12.1875rem !important
	}

	.posml-xl-195 {
		left: -12.1875rem !important
	}

	.pos-xl-196 {
		top: 12.25rem !important;
		bottom: 12.25rem !important
	}

	.pos-xl-196,
	.posx-xl-196 {
		right: 12.25rem !important;
		left: 12.25rem !important
	}

	.posy-xl-196 {
		bottom: 12.25rem !important
	}

	.post-xl-196,
	.posy-xl-196 {
		top: 12.25rem !important
	}

	.posr-xl-196 {
		right: 12.25rem !important
	}

	.posb-xl-196 {
		bottom: 12.25rem !important
	}

	.posl-xl-196 {
		left: 12.25rem !important
	}

	.posmt-xl-196 {
		top: -12.25rem !important
	}

	.posmr-xl-196 {
		right: -12.25rem !important
	}

	.posmb-xl-196 {
		bottom: -12.25rem !important
	}

	.posml-xl-196 {
		left: -12.25rem !important
	}

	.pos-xl-197 {
		top: 12.3125rem !important;
		bottom: 12.3125rem !important
	}

	.pos-xl-197,
	.posx-xl-197 {
		right: 12.3125rem !important;
		left: 12.3125rem !important
	}

	.posy-xl-197 {
		bottom: 12.3125rem !important
	}

	.post-xl-197,
	.posy-xl-197 {
		top: 12.3125rem !important
	}

	.posr-xl-197 {
		right: 12.3125rem !important
	}

	.posb-xl-197 {
		bottom: 12.3125rem !important
	}

	.posl-xl-197 {
		left: 12.3125rem !important
	}

	.posmt-xl-197 {
		top: -12.3125rem !important
	}

	.posmr-xl-197 {
		right: -12.3125rem !important
	}

	.posmb-xl-197 {
		bottom: -12.3125rem !important
	}

	.posml-xl-197 {
		left: -12.3125rem !important
	}

	.pos-xl-198 {
		top: 12.375rem !important;
		bottom: 12.375rem !important
	}

	.pos-xl-198,
	.posx-xl-198 {
		right: 12.375rem !important;
		left: 12.375rem !important
	}

	.posy-xl-198 {
		bottom: 12.375rem !important
	}

	.post-xl-198,
	.posy-xl-198 {
		top: 12.375rem !important
	}

	.posr-xl-198 {
		right: 12.375rem !important
	}

	.posb-xl-198 {
		bottom: 12.375rem !important
	}

	.posl-xl-198 {
		left: 12.375rem !important
	}

	.posmt-xl-198 {
		top: -12.375rem !important
	}

	.posmr-xl-198 {
		right: -12.375rem !important
	}

	.posmb-xl-198 {
		bottom: -12.375rem !important
	}

	.posml-xl-198 {
		left: -12.375rem !important
	}

	.pos-xl-199 {
		top: 12.4375rem !important;
		bottom: 12.4375rem !important
	}

	.pos-xl-199,
	.posx-xl-199 {
		right: 12.4375rem !important;
		left: 12.4375rem !important
	}

	.posy-xl-199 {
		bottom: 12.4375rem !important
	}

	.post-xl-199,
	.posy-xl-199 {
		top: 12.4375rem !important
	}

	.posr-xl-199 {
		right: 12.4375rem !important
	}

	.posb-xl-199 {
		bottom: 12.4375rem !important
	}

	.posl-xl-199 {
		left: 12.4375rem !important
	}

	.posmt-xl-199 {
		top: -12.4375rem !important
	}

	.posmr-xl-199 {
		right: -12.4375rem !important
	}

	.posmb-xl-199 {
		bottom: -12.4375rem !important
	}

	.posml-xl-199 {
		left: -12.4375rem !important
	}

	.pos-xl-200 {
		top: 12.5rem !important;
		bottom: 12.5rem !important
	}

	.pos-xl-200,
	.posx-xl-200 {
		right: 12.5rem !important;
		left: 12.5rem !important
	}

	.posy-xl-200 {
		bottom: 12.5rem !important
	}

	.post-xl-200,
	.posy-xl-200 {
		top: 12.5rem !important
	}

	.posr-xl-200 {
		right: 12.5rem !important
	}

	.posb-xl-200 {
		bottom: 12.5rem !important
	}

	.posl-xl-200 {
		left: 12.5rem !important
	}

	.posmt-xl-200 {
		top: -12.5rem !important
	}

	.posmr-xl-200 {
		right: -12.5rem !important
	}

	.posmb-xl-200 {
		bottom: -12.5rem !important
	}

	.posml-xl-200 {
		left: -12.5rem !important
	}

	.pos-xl-auto {
		top: auto !important;
		bottom: auto !important
	}

	.pos-xl-auto,
	.posx-xl-auto {
		right: auto !important;
		left: auto !important
	}

	.posy-xl-auto {
		bottom: auto !important
	}

	.post-xl-auto,
	.posy-xl-auto {
		top: auto !important
	}

	.posr-xl-auto {
		right: auto !important
	}

	.posb-xl-auto {
		bottom: auto !important
	}

	.posl-xl-auto {
		left: auto !important
	}

	.posmt-xl-auto {
		top: -auto !important
	}

	.posmr-xl-auto {
		right: -auto !important
	}

	.posmb-xl-auto {
		bottom: -auto !important
	}

	.posml-xl-auto {
		left: -auto !important
	}
}

.resize-none {
	resize: none
}

.lh-1 {
	line-height: .06249997rem !important
}

.lh-2 {
	line-height: .12499995rem !important
}

.lh-3 {
	line-height: .18749992rem !important
}

.lh-4 {
	line-height: .24999989rem !important
}

.lh-5 {
	line-height: .31249987rem !important
}

.lh-6 {
	line-height: .37499984rem !important
}

.lh-7 {
	line-height: .43749981rem !important
}

.lh-8 {
	line-height: .49999979rem !important
}

.lh-9 {
	line-height: .56249976rem !important
}

.lh-10 {
	line-height: .62499973rem !important
}

.lh-11 {
	line-height: .68749971rem !important
}

.lh-12 {
	line-height: .74999968rem !important
}

.lh-13 {
	line-height: .81249965rem !important
}

.lh-14 {
	line-height: .87499962rem !important
}

.lh-15 {
	line-height: .9374996rem !important
}

.lh-16 {
	line-height: .99999957rem !important
}

.lh-17 {
	line-height: 1.06249954rem !important
}

.lh-18 {
	line-height: 1.12499952rem !important
}

.lh-19 {
	line-height: 1.18749949rem !important
}

.lh-20 {
	line-height: 1.24999946rem !important
}

.lh-21 {
	line-height: 1.31249944rem !important
}

.lh-22 {
	line-height: 1.37499941rem !important
}

.lh-23 {
	line-height: 1.43749938rem !important
}

.lh-24 {
	line-height: 1.49999936rem !important
}

.lh-25 {
	line-height: 1.56249933rem !important
}

.lh-26 {
	line-height: 1.6249993rem !important
}

.lh-27 {
	line-height: 1.68749928rem !important
}

.lh-28 {
	line-height: 1.74999925rem !important
}

.lh-29 {
	line-height: 1.81249922rem !important
}

.lh-30 {
	line-height: 1.8749992rem !important
}

.lh-31 {
	line-height: 1.93749917rem !important
}

.lh-32 {
	line-height: 1.99999914rem !important
}

.lh-33 {
	line-height: 2.06249912rem !important
}

.lh-34 {
	line-height: 2.12499909rem !important
}

.lh-35 {
	line-height: 2.18749906rem !important
}

.lh-36 {
	line-height: 2.24999904rem !important
}

.lh-37 {
	line-height: 2.31249901rem !important
}

.lh-38 {
	line-height: 2.37499898rem !important
}

.lh-39 {
	line-height: 2.43749895rem !important
}

.lh-40 {
	line-height: 2.49999893rem !important
}

.lh-41 {
	line-height: 2.5624989rem !important
}

.lh-42 {
	line-height: 2.62499887rem !important
}

.lh-43 {
	line-height: 2.68749885rem !important
}

.lh-44 {
	line-height: 2.74999882rem !important
}

.lh-45 {
	line-height: 2.81249879rem !important
}

.lh-46 {
	line-height: 2.87499877rem !important
}

.lh-47 {
	line-height: 2.93749874rem !important
}

.lh-48 {
	line-height: 2.99999871rem !important
}

.lh-49 {
	line-height: 3.06249869rem !important
}

.lh-50 {
	line-height: 3.12499866rem !important
}

.lh-51 {
	line-height: 3.18749863rem !important
}

.lh-52 {
	line-height: 3.24999861rem !important
}

.lh-53 {
	line-height: 3.31249858rem !important
}

.lh-54 {
	line-height: 3.37499855rem !important
}

.lh-55 {
	line-height: 3.43749853rem !important
}

.lh-56 {
	line-height: 3.4999985rem !important
}

.lh-57 {
	line-height: 3.56249847rem !important
}

.lh-58 {
	line-height: 3.62499845rem !important
}

.lh-59 {
	line-height: 3.68749842rem !important
}

.lh-60 {
	line-height: 3.74999839rem !important
}

.lh-61 {
	line-height: 3.81249837rem !important
}

.lh-62 {
	line-height: 3.87499834rem !important
}

.lh-63 {
	line-height: 3.93749831rem !important
}

.lh-64 {
	line-height: 3.99999828rem !important
}

.lh-65 {
	line-height: 4.06249826rem !important
}

.lh-66 {
	line-height: 4.12499823rem !important
}

.lh-67 {
	line-height: 4.1874982rem !important
}

.lh-68 {
	line-height: 4.24999818rem !important
}

.lh-69 {
	line-height: 4.31249815rem !important
}

.lh-70 {
	line-height: 4.37499812rem !important
}

.lh-71 {
	line-height: 4.4374981rem !important
}

.lh-72 {
	line-height: 4.49999807rem !important
}

.lh-73 {
	line-height: 4.56249804rem !important
}

.lh-74 {
	line-height: 4.62499802rem !important
}

.lh-75 {
	line-height: 4.68749799rem !important
}

.lh-76 {
	line-height: 4.74999796rem !important
}

.lh-77 {
	line-height: 4.81249794rem !important
}

.lh-78 {
	line-height: 4.87499791rem !important
}

.lh-79 {
	line-height: 4.93749788rem !important
}

.lh-80 {
	line-height: 4.99999786rem !important
}

.lh-81 {
	line-height: 5.06249783rem !important
}

.lh-82 {
	line-height: 5.1249978rem !important
}

.lh-83 {
	line-height: 5.18749778rem !important
}

.lh-84 {
	line-height: 5.24999775rem !important
}

.lh-85 {
	line-height: 5.31249772rem !important
}

.lh-86 {
	line-height: 5.3749977rem !important
}

.lh-87 {
	line-height: 5.43749767rem !important
}

.lh-88 {
	line-height: 5.49999764rem !important
}

.lh-89 {
	line-height: 5.56249761rem !important
}

.lh-90 {
	line-height: 5.62499759rem !important
}

.lh-91 {
	line-height: 5.68749756rem !important
}

.lh-92 {
	line-height: 5.74999753rem !important
}

.lh-93 {
	line-height: 5.81249751rem !important
}

.lh-94 {
	line-height: 5.87499748rem !important
}

.lh-95 {
	line-height: 5.93749745rem !important
}

.lh-96 {
	line-height: 5.99999743rem !important
}

.lh-97 {
	line-height: 6.0624974rem !important
}

.lh-98 {
	line-height: 6.12499737rem !important
}

.lh-99 {
	line-height: 6.18749735rem !important
}

.lh-100 {
	line-height: 6.24999732rem !important
}

@media (min-width:576px) {
	.lh-sm-1 {
		line-height: .06249997rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-2 {
		line-height: .12499995rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-3 {
		line-height: .18749992rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-4 {
		line-height: .24999989rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-5 {
		line-height: .31249987rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-6 {
		line-height: .37499984rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-7 {
		line-height: .43749981rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-8 {
		line-height: .49999979rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-9 {
		line-height: .56249976rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-10 {
		line-height: .62499973rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-11 {
		line-height: .68749971rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-12 {
		line-height: .74999968rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-13 {
		line-height: .81249965rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-14 {
		line-height: .87499962rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-15 {
		line-height: .9374996rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-16 {
		line-height: .99999957rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-17 {
		line-height: 1.06249954rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-18 {
		line-height: 1.12499952rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-19 {
		line-height: 1.18749949rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-20 {
		line-height: 1.24999946rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-21 {
		line-height: 1.31249944rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-22 {
		line-height: 1.37499941rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-23 {
		line-height: 1.43749938rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-24 {
		line-height: 1.49999936rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-25 {
		line-height: 1.56249933rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-26 {
		line-height: 1.6249993rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-27 {
		line-height: 1.68749928rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-28 {
		line-height: 1.74999925rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-29 {
		line-height: 1.81249922rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-30 {
		line-height: 1.8749992rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-31 {
		line-height: 1.93749917rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-32 {
		line-height: 1.99999914rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-33 {
		line-height: 2.06249912rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-34 {
		line-height: 2.12499909rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-35 {
		line-height: 2.18749906rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-36 {
		line-height: 2.24999904rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-37 {
		line-height: 2.31249901rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-38 {
		line-height: 2.37499898rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-39 {
		line-height: 2.43749895rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-40 {
		line-height: 2.49999893rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-41 {
		line-height: 2.5624989rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-42 {
		line-height: 2.62499887rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-43 {
		line-height: 2.68749885rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-44 {
		line-height: 2.74999882rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-45 {
		line-height: 2.81249879rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-46 {
		line-height: 2.87499877rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-47 {
		line-height: 2.93749874rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-48 {
		line-height: 2.99999871rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-49 {
		line-height: 3.06249869rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-50 {
		line-height: 3.12499866rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-51 {
		line-height: 3.18749863rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-52 {
		line-height: 3.24999861rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-53 {
		line-height: 3.31249858rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-54 {
		line-height: 3.37499855rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-55 {
		line-height: 3.43749853rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-56 {
		line-height: 3.4999985rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-57 {
		line-height: 3.56249847rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-58 {
		line-height: 3.62499845rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-59 {
		line-height: 3.68749842rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-60 {
		line-height: 3.74999839rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-61 {
		line-height: 3.81249837rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-62 {
		line-height: 3.87499834rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-63 {
		line-height: 3.93749831rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-64 {
		line-height: 3.99999828rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-65 {
		line-height: 4.06249826rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-66 {
		line-height: 4.12499823rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-67 {
		line-height: 4.1874982rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-68 {
		line-height: 4.24999818rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-69 {
		line-height: 4.31249815rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-70 {
		line-height: 4.37499812rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-71 {
		line-height: 4.4374981rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-72 {
		line-height: 4.49999807rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-73 {
		line-height: 4.56249804rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-74 {
		line-height: 4.62499802rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-75 {
		line-height: 4.68749799rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-76 {
		line-height: 4.74999796rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-77 {
		line-height: 4.81249794rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-78 {
		line-height: 4.87499791rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-79 {
		line-height: 4.93749788rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-80 {
		line-height: 4.99999786rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-81 {
		line-height: 5.06249783rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-82 {
		line-height: 5.1249978rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-83 {
		line-height: 5.18749778rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-84 {
		line-height: 5.24999775rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-85 {
		line-height: 5.31249772rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-86 {
		line-height: 5.3749977rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-87 {
		line-height: 5.43749767rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-88 {
		line-height: 5.49999764rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-89 {
		line-height: 5.56249761rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-90 {
		line-height: 5.62499759rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-91 {
		line-height: 5.68749756rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-92 {
		line-height: 5.74999753rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-93 {
		line-height: 5.81249751rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-94 {
		line-height: 5.87499748rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-95 {
		line-height: 5.93749745rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-96 {
		line-height: 5.99999743rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-97 {
		line-height: 6.0624974rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-98 {
		line-height: 6.12499737rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-99 {
		line-height: 6.18749735rem !important
	}
}

@media (min-width:576px) {
	.lh-sm-100 {
		line-height: 6.24999732rem !important
	}
}

@media (min-width:768px) {
	.lh-md-1 {
		line-height: .06249997rem !important
	}
}

@media (min-width:768px) {
	.lh-md-2 {
		line-height: .12499995rem !important
	}
}

@media (min-width:768px) {
	.lh-md-3 {
		line-height: .18749992rem !important
	}
}

@media (min-width:768px) {
	.lh-md-4 {
		line-height: .24999989rem !important
	}
}

@media (min-width:768px) {
	.lh-md-5 {
		line-height: .31249987rem !important
	}
}

@media (min-width:768px) {
	.lh-md-6 {
		line-height: .37499984rem !important
	}
}

@media (min-width:768px) {
	.lh-md-7 {
		line-height: .43749981rem !important
	}
}

@media (min-width:768px) {
	.lh-md-8 {
		line-height: .49999979rem !important
	}
}

@media (min-width:768px) {
	.lh-md-9 {
		line-height: .56249976rem !important
	}
}

@media (min-width:768px) {
	.lh-md-10 {
		line-height: .62499973rem !important
	}
}

@media (min-width:768px) {
	.lh-md-11 {
		line-height: .68749971rem !important
	}
}

@media (min-width:768px) {
	.lh-md-12 {
		line-height: .74999968rem !important
	}
}

@media (min-width:768px) {
	.lh-md-13 {
		line-height: .81249965rem !important
	}
}

@media (min-width:768px) {
	.lh-md-14 {
		line-height: .87499962rem !important
	}
}

@media (min-width:768px) {
	.lh-md-15 {
		line-height: .9374996rem !important
	}
}

@media (min-width:768px) {
	.lh-md-16 {
		line-height: .99999957rem !important
	}
}

@media (min-width:768px) {
	.lh-md-17 {
		line-height: 1.06249954rem !important
	}
}

@media (min-width:768px) {
	.lh-md-18 {
		line-height: 1.12499952rem !important
	}
}

@media (min-width:768px) {
	.lh-md-19 {
		line-height: 1.18749949rem !important
	}
}

@media (min-width:768px) {
	.lh-md-20 {
		line-height: 1.24999946rem !important
	}
}

@media (min-width:768px) {
	.lh-md-21 {
		line-height: 1.31249944rem !important
	}
}

@media (min-width:768px) {
	.lh-md-22 {
		line-height: 1.37499941rem !important
	}
}

@media (min-width:768px) {
	.lh-md-23 {
		line-height: 1.43749938rem !important
	}
}

@media (min-width:768px) {
	.lh-md-24 {
		line-height: 1.49999936rem !important
	}
}

@media (min-width:768px) {
	.lh-md-25 {
		line-height: 1.56249933rem !important
	}
}

@media (min-width:768px) {
	.lh-md-26 {
		line-height: 1.6249993rem !important
	}
}

@media (min-width:768px) {
	.lh-md-27 {
		line-height: 1.68749928rem !important
	}
}

@media (min-width:768px) {
	.lh-md-28 {
		line-height: 1.74999925rem !important
	}
}

@media (min-width:768px) {
	.lh-md-29 {
		line-height: 1.81249922rem !important
	}
}

@media (min-width:768px) {
	.lh-md-30 {
		line-height: 1.8749992rem !important
	}
}

@media (min-width:768px) {
	.lh-md-31 {
		line-height: 1.93749917rem !important
	}
}

@media (min-width:768px) {
	.lh-md-32 {
		line-height: 1.99999914rem !important
	}
}

@media (min-width:768px) {
	.lh-md-33 {
		line-height: 2.06249912rem !important
	}
}

@media (min-width:768px) {
	.lh-md-34 {
		line-height: 2.12499909rem !important
	}
}

@media (min-width:768px) {
	.lh-md-35 {
		line-height: 2.18749906rem !important
	}
}

@media (min-width:768px) {
	.lh-md-36 {
		line-height: 2.24999904rem !important
	}
}

@media (min-width:768px) {
	.lh-md-37 {
		line-height: 2.31249901rem !important
	}
}

@media (min-width:768px) {
	.lh-md-38 {
		line-height: 2.37499898rem !important
	}
}

@media (min-width:768px) {
	.lh-md-39 {
		line-height: 2.43749895rem !important
	}
}

@media (min-width:768px) {
	.lh-md-40 {
		line-height: 2.49999893rem !important
	}
}

@media (min-width:768px) {
	.lh-md-41 {
		line-height: 2.5624989rem !important
	}
}

@media (min-width:768px) {
	.lh-md-42 {
		line-height: 2.62499887rem !important
	}
}

@media (min-width:768px) {
	.lh-md-43 {
		line-height: 2.68749885rem !important
	}
}

@media (min-width:768px) {
	.lh-md-44 {
		line-height: 2.74999882rem !important
	}
}

@media (min-width:768px) {
	.lh-md-45 {
		line-height: 2.81249879rem !important
	}
}

@media (min-width:768px) {
	.lh-md-46 {
		line-height: 2.87499877rem !important
	}
}

@media (min-width:768px) {
	.lh-md-47 {
		line-height: 2.93749874rem !important
	}
}

@media (min-width:768px) {
	.lh-md-48 {
		line-height: 2.99999871rem !important
	}
}

@media (min-width:768px) {
	.lh-md-49 {
		line-height: 3.06249869rem !important
	}
}

@media (min-width:768px) {
	.lh-md-50 {
		line-height: 3.12499866rem !important
	}
}

@media (min-width:768px) {
	.lh-md-51 {
		line-height: 3.18749863rem !important
	}
}

@media (min-width:768px) {
	.lh-md-52 {
		line-height: 3.24999861rem !important
	}
}

@media (min-width:768px) {
	.lh-md-53 {
		line-height: 3.31249858rem !important
	}
}

@media (min-width:768px) {
	.lh-md-54 {
		line-height: 3.37499855rem !important
	}
}

@media (min-width:768px) {
	.lh-md-55 {
		line-height: 3.43749853rem !important
	}
}

@media (min-width:768px) {
	.lh-md-56 {
		line-height: 3.4999985rem !important
	}
}

@media (min-width:768px) {
	.lh-md-57 {
		line-height: 3.56249847rem !important
	}
}

@media (min-width:768px) {
	.lh-md-58 {
		line-height: 3.62499845rem !important
	}
}

@media (min-width:768px) {
	.lh-md-59 {
		line-height: 3.68749842rem !important
	}
}

@media (min-width:768px) {
	.lh-md-60 {
		line-height: 3.74999839rem !important
	}
}

@media (min-width:768px) {
	.lh-md-61 {
		line-height: 3.81249837rem !important
	}
}

@media (min-width:768px) {
	.lh-md-62 {
		line-height: 3.87499834rem !important
	}
}

@media (min-width:768px) {
	.lh-md-63 {
		line-height: 3.93749831rem !important
	}
}

@media (min-width:768px) {
	.lh-md-64 {
		line-height: 3.99999828rem !important
	}
}

@media (min-width:768px) {
	.lh-md-65 {
		line-height: 4.06249826rem !important
	}
}

@media (min-width:768px) {
	.lh-md-66 {
		line-height: 4.12499823rem !important
	}
}

@media (min-width:768px) {
	.lh-md-67 {
		line-height: 4.1874982rem !important
	}
}

@media (min-width:768px) {
	.lh-md-68 {
		line-height: 4.24999818rem !important
	}
}

@media (min-width:768px) {
	.lh-md-69 {
		line-height: 4.31249815rem !important
	}
}

@media (min-width:768px) {
	.lh-md-70 {
		line-height: 4.37499812rem !important
	}
}

@media (min-width:768px) {
	.lh-md-71 {
		line-height: 4.4374981rem !important
	}
}

@media (min-width:768px) {
	.lh-md-72 {
		line-height: 4.49999807rem !important
	}
}

@media (min-width:768px) {
	.lh-md-73 {
		line-height: 4.56249804rem !important
	}
}

@media (min-width:768px) {
	.lh-md-74 {
		line-height: 4.62499802rem !important
	}
}

@media (min-width:768px) {
	.lh-md-75 {
		line-height: 4.68749799rem !important
	}
}

@media (min-width:768px) {
	.lh-md-76 {
		line-height: 4.74999796rem !important
	}
}

@media (min-width:768px) {
	.lh-md-77 {
		line-height: 4.81249794rem !important
	}
}

@media (min-width:768px) {
	.lh-md-78 {
		line-height: 4.87499791rem !important
	}
}

@media (min-width:768px) {
	.lh-md-79 {
		line-height: 4.93749788rem !important
	}
}

@media (min-width:768px) {
	.lh-md-80 {
		line-height: 4.99999786rem !important
	}
}

@media (min-width:768px) {
	.lh-md-81 {
		line-height: 5.06249783rem !important
	}
}

@media (min-width:768px) {
	.lh-md-82 {
		line-height: 5.1249978rem !important
	}
}

@media (min-width:768px) {
	.lh-md-83 {
		line-height: 5.18749778rem !important
	}
}

@media (min-width:768px) {
	.lh-md-84 {
		line-height: 5.24999775rem !important
	}
}

@media (min-width:768px) {
	.lh-md-85 {
		line-height: 5.31249772rem !important
	}
}

@media (min-width:768px) {
	.lh-md-86 {
		line-height: 5.3749977rem !important
	}
}

@media (min-width:768px) {
	.lh-md-87 {
		line-height: 5.43749767rem !important
	}
}

@media (min-width:768px) {
	.lh-md-88 {
		line-height: 5.49999764rem !important
	}
}

@media (min-width:768px) {
	.lh-md-89 {
		line-height: 5.56249761rem !important
	}
}

@media (min-width:768px) {
	.lh-md-90 {
		line-height: 5.62499759rem !important
	}
}

@media (min-width:768px) {
	.lh-md-91 {
		line-height: 5.68749756rem !important
	}
}

@media (min-width:768px) {
	.lh-md-92 {
		line-height: 5.74999753rem !important
	}
}

@media (min-width:768px) {
	.lh-md-93 {
		line-height: 5.81249751rem !important
	}
}

@media (min-width:768px) {
	.lh-md-94 {
		line-height: 5.87499748rem !important
	}
}

@media (min-width:768px) {
	.lh-md-95 {
		line-height: 5.93749745rem !important
	}
}

@media (min-width:768px) {
	.lh-md-96 {
		line-height: 5.99999743rem !important
	}
}

@media (min-width:768px) {
	.lh-md-97 {
		line-height: 6.0624974rem !important
	}
}

@media (min-width:768px) {
	.lh-md-98 {
		line-height: 6.12499737rem !important
	}
}

@media (min-width:768px) {
	.lh-md-99 {
		line-height: 6.18749735rem !important
	}
}

@media (min-width:768px) {
	.lh-md-100 {
		line-height: 6.24999732rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-1 {
		line-height: .06249997rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-2 {
		line-height: .12499995rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-3 {
		line-height: .18749992rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-4 {
		line-height: .24999989rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-5 {
		line-height: .31249987rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-6 {
		line-height: .37499984rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-7 {
		line-height: .43749981rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-8 {
		line-height: .49999979rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-9 {
		line-height: .56249976rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-10 {
		line-height: .62499973rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-11 {
		line-height: .68749971rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-12 {
		line-height: .74999968rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-13 {
		line-height: .81249965rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-14 {
		line-height: .87499962rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-15 {
		line-height: .9374996rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-16 {
		line-height: .99999957rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-17 {
		line-height: 1.06249954rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-18 {
		line-height: 1.12499952rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-19 {
		line-height: 1.18749949rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-20 {
		line-height: 1.24999946rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-21 {
		line-height: 1.31249944rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-22 {
		line-height: 1.37499941rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-23 {
		line-height: 1.43749938rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-24 {
		line-height: 1.49999936rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-25 {
		line-height: 1.56249933rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-26 {
		line-height: 1.6249993rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-27 {
		line-height: 1.68749928rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-28 {
		line-height: 1.74999925rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-29 {
		line-height: 1.81249922rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-30 {
		line-height: 1.8749992rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-31 {
		line-height: 1.93749917rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-32 {
		line-height: 1.99999914rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-33 {
		line-height: 2.06249912rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-34 {
		line-height: 2.12499909rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-35 {
		line-height: 2.18749906rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-36 {
		line-height: 2.24999904rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-37 {
		line-height: 2.31249901rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-38 {
		line-height: 2.37499898rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-39 {
		line-height: 2.43749895rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-40 {
		line-height: 2.49999893rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-41 {
		line-height: 2.5624989rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-42 {
		line-height: 2.62499887rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-43 {
		line-height: 2.68749885rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-44 {
		line-height: 2.74999882rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-45 {
		line-height: 2.81249879rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-46 {
		line-height: 2.87499877rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-47 {
		line-height: 2.93749874rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-48 {
		line-height: 2.99999871rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-49 {
		line-height: 3.06249869rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-50 {
		line-height: 3.12499866rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-51 {
		line-height: 3.18749863rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-52 {
		line-height: 3.24999861rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-53 {
		line-height: 3.31249858rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-54 {
		line-height: 3.37499855rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-55 {
		line-height: 3.43749853rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-56 {
		line-height: 3.4999985rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-57 {
		line-height: 3.56249847rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-58 {
		line-height: 3.62499845rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-59 {
		line-height: 3.68749842rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-60 {
		line-height: 3.74999839rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-61 {
		line-height: 3.81249837rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-62 {
		line-height: 3.87499834rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-63 {
		line-height: 3.93749831rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-64 {
		line-height: 3.99999828rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-65 {
		line-height: 4.06249826rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-66 {
		line-height: 4.12499823rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-67 {
		line-height: 4.1874982rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-68 {
		line-height: 4.24999818rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-69 {
		line-height: 4.31249815rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-70 {
		line-height: 4.37499812rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-71 {
		line-height: 4.4374981rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-72 {
		line-height: 4.49999807rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-73 {
		line-height: 4.56249804rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-74 {
		line-height: 4.62499802rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-75 {
		line-height: 4.68749799rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-76 {
		line-height: 4.74999796rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-77 {
		line-height: 4.81249794rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-78 {
		line-height: 4.87499791rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-79 {
		line-height: 4.93749788rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-80 {
		line-height: 4.99999786rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-81 {
		line-height: 5.06249783rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-82 {
		line-height: 5.1249978rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-83 {
		line-height: 5.18749778rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-84 {
		line-height: 5.24999775rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-85 {
		line-height: 5.31249772rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-86 {
		line-height: 5.3749977rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-87 {
		line-height: 5.43749767rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-88 {
		line-height: 5.49999764rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-89 {
		line-height: 5.56249761rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-90 {
		line-height: 5.62499759rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-91 {
		line-height: 5.68749756rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-92 {
		line-height: 5.74999753rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-93 {
		line-height: 5.81249751rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-94 {
		line-height: 5.87499748rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-95 {
		line-height: 5.93749745rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-96 {
		line-height: 5.99999743rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-97 {
		line-height: 6.0624974rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-98 {
		line-height: 6.12499737rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-99 {
		line-height: 6.18749735rem !important
	}
}

@media (min-width:992px) {
	.lh-lg-100 {
		line-height: 6.24999732rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-1 {
		line-height: .06249997rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-2 {
		line-height: .12499995rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-3 {
		line-height: .18749992rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-4 {
		line-height: .24999989rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-5 {
		line-height: .31249987rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-6 {
		line-height: .37499984rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-7 {
		line-height: .43749981rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-8 {
		line-height: .49999979rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-9 {
		line-height: .56249976rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-10 {
		line-height: .62499973rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-11 {
		line-height: .68749971rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-12 {
		line-height: .74999968rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-13 {
		line-height: .81249965rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-14 {
		line-height: .87499962rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-15 {
		line-height: .9374996rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-16 {
		line-height: .99999957rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-17 {
		line-height: 1.06249954rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-18 {
		line-height: 1.12499952rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-19 {
		line-height: 1.18749949rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-20 {
		line-height: 1.24999946rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-21 {
		line-height: 1.31249944rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-22 {
		line-height: 1.37499941rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-23 {
		line-height: 1.43749938rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-24 {
		line-height: 1.49999936rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-25 {
		line-height: 1.56249933rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-26 {
		line-height: 1.6249993rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-27 {
		line-height: 1.68749928rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-28 {
		line-height: 1.74999925rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-29 {
		line-height: 1.81249922rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-30 {
		line-height: 1.8749992rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-31 {
		line-height: 1.93749917rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-32 {
		line-height: 1.99999914rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-33 {
		line-height: 2.06249912rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-34 {
		line-height: 2.12499909rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-35 {
		line-height: 2.18749906rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-36 {
		line-height: 2.24999904rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-37 {
		line-height: 2.31249901rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-38 {
		line-height: 2.37499898rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-39 {
		line-height: 2.43749895rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-40 {
		line-height: 2.49999893rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-41 {
		line-height: 2.5624989rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-42 {
		line-height: 2.62499887rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-43 {
		line-height: 2.68749885rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-44 {
		line-height: 2.74999882rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-45 {
		line-height: 2.81249879rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-46 {
		line-height: 2.87499877rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-47 {
		line-height: 2.93749874rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-48 {
		line-height: 2.99999871rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-49 {
		line-height: 3.06249869rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-50 {
		line-height: 3.12499866rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-51 {
		line-height: 3.18749863rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-52 {
		line-height: 3.24999861rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-53 {
		line-height: 3.31249858rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-54 {
		line-height: 3.37499855rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-55 {
		line-height: 3.43749853rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-56 {
		line-height: 3.4999985rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-57 {
		line-height: 3.56249847rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-58 {
		line-height: 3.62499845rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-59 {
		line-height: 3.68749842rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-60 {
		line-height: 3.74999839rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-61 {
		line-height: 3.81249837rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-62 {
		line-height: 3.87499834rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-63 {
		line-height: 3.93749831rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-64 {
		line-height: 3.99999828rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-65 {
		line-height: 4.06249826rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-66 {
		line-height: 4.12499823rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-67 {
		line-height: 4.1874982rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-68 {
		line-height: 4.24999818rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-69 {
		line-height: 4.31249815rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-70 {
		line-height: 4.37499812rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-71 {
		line-height: 4.4374981rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-72 {
		line-height: 4.49999807rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-73 {
		line-height: 4.56249804rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-74 {
		line-height: 4.62499802rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-75 {
		line-height: 4.68749799rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-76 {
		line-height: 4.74999796rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-77 {
		line-height: 4.81249794rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-78 {
		line-height: 4.87499791rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-79 {
		line-height: 4.93749788rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-80 {
		line-height: 4.99999786rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-81 {
		line-height: 5.06249783rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-82 {
		line-height: 5.1249978rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-83 {
		line-height: 5.18749778rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-84 {
		line-height: 5.24999775rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-85 {
		line-height: 5.31249772rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-86 {
		line-height: 5.3749977rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-87 {
		line-height: 5.43749767rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-88 {
		line-height: 5.49999764rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-89 {
		line-height: 5.56249761rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-90 {
		line-height: 5.62499759rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-91 {
		line-height: 5.68749756rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-92 {
		line-height: 5.74999753rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-93 {
		line-height: 5.81249751rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-94 {
		line-height: 5.87499748rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-95 {
		line-height: 5.93749745rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-96 {
		line-height: 5.99999743rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-97 {
		line-height: 6.0624974rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-98 {
		line-height: 6.12499737rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-99 {
		line-height: 6.18749735rem !important
	}
}

@media (min-width:1200px) {
	.lh-xl-100 {
		line-height: 6.24999732rem !important
	}
}

body {
	overflow-x: hidden;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

body.side-nav-mask:after {
	content: "";
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	position: fixed;
	background: rgba(28, 29, 42, .4)
}

@media (min-width:992px) {
	body.side-nav-mask:after {
		display: none
	}
}

body.side-layout-mask:after {
	content: "";
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	position: fixed;
	background: rgba(28, 29, 42, .4)
}

@media (min-width:1200px) {
	body.side-layout-mask:after {
		display: none
	}
}

a:active,
a:hover,
a:link,
a:visited {
	text-decoration: none
}

.color-list > .color-box > .content > .color-info {
	opacity: 0;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.color-list > .color-box > .content > .color-info:hover {
	opacity: 1
}

.color-list > .color-box > .content > .color-info:before {
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
	position: absolute;
	background: rgba(0, 0, 0, .1)
}

.example-components {
	padding: 20px;
	border-radius: .2rem;
	background: #fafbfc
}

.content-wrapper {
	margin-top: 70px;
	margin-left: 90px
}

.content-wrapper.width-top-nav {
	margin-top: 130px
}

@media (max-width:992px) {
	.content-wrapper {
		margin-left: 0;
		margin-top: 116px
	}
}

.content-wrapper .box-layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -20px;
	overflow: hidden;
	position: relative
}

@media (min-width:1200px) {
	.content-wrapper .box-layout {
		overflow-x: initial
	}
}

.content-wrapper .box-layout .main-layout {
	padding: 20px 0;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px
}

@media (min-width:1200px) {
	.content-wrapper .box-layout .main-layout {
		min-height: 100vh;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%
	}

	.content-wrapper .box-layout .main-layout.full-width {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%
	}
}

.content-wrapper .box-layout .side-layout {
	width: 280px;
	right: -500px;
	position: absolute;
	background: #f4f7fb;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .31);
	box-shadow: 0 2px 4px rgba(0, 0, 0, .31)
}

.content-wrapper .box-layout .side-layout.active {
	top: 0;
	right: 0;
	z-index: 4;
	position: fixed;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.content-wrapper .box-layout .side-layout .slimscroll-wrapper {
	padding: 20px 15px
}

@media (min-width:1200px) {
	.content-wrapper .box-layout .side-layout {
		min-height: 100vh;
		right: 0;
		display: block;
		-webkit-box-shadow: none;
		box-shadow: none;
		position: static;
		padding: 20px 0;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
		position: relative;
		width: 100%;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px
	}

	.content-wrapper .box-layout .side-layout.active {
		right: 0;
		z-index: 1;
		-webkit-box-shadow: none;
		box-shadow: none;
		position: static
	}
}

.content-wrapper .box-layout .mail-main-layout {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	padding: 20px
}

@media (min-width:992px) {
	.content-wrapper .box-layout .mail-main-layout {
		min-height: 100vh;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
		position: relative;
		width: 100%;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px
	}
}

@media (min-width:1200px) {
	.content-wrapper .box-layout .mail-main-layout {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333333%;
		flex: 0 0 83.33333333%;
		max-width: 83.33333333%
	}
}

.content-wrapper .box-layout .mail-menu-layout {
	width: 210px;
	left: -500px;
	position: absolute;
	background: #f4f7fb;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .31);
	box-shadow: 0 2px 4px rgba(0, 0, 0, .31)
}

.content-wrapper .box-layout .mail-menu-layout.active {
	top: 0;
	left: 0;
	z-index: 4;
	position: fixed;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.content-wrapper .box-layout .mail-menu-layout .slimscroll-mail-wrapper {
	padding: 15px
}

.content-wrapper .box-layout .mail-menu-layout .title {
	margin-top: 20px;
	font-weight: 400
}

.content-wrapper .box-layout .mail-menu-layout ul {
	margin-top: 10px;
	padding-left: 0
}

.content-wrapper .box-layout .mail-menu-layout ul > li {
	list-style: none;
	margin-bottom: 10px
}

.content-wrapper .box-layout .mail-menu-layout ul > li.active > a {
	color: #3b7ae2;
	font-weight: 400
}

.content-wrapper .box-layout .mail-menu-layout ul > li > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.content-wrapper .box-layout .mail-menu-layout ul > li > a > .icon {
	font-size: 16px;
	margin-right: 10px
}

.content-wrapper .box-layout .mail-menu-layout ul > li > a > .badge {
	padding: 2px 3px;
	margin-left: auto;
	background: #5d6b8d
}

@media (min-width:992px) {
	.content-wrapper .box-layout .mail-menu-layout {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
		position: relative;
		width: 100%;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px;
		min-height: 100vh;
		right: 0;
		display: block;
		-webkit-box-shadow: none;
		box-shadow: none;
		position: static;
		padding: 20px
	}

	.content-wrapper .box-layout .mail-menu-layout.active {
		right: 0;
		z-index: 1;
		-webkit-box-shadow: none;
		box-shadow: none;
		position: static
	}
}

@media (min-width:1200px) {
	.content-wrapper .box-layout .mail-menu-layout {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66666667%;
		flex: 0 0 16.66666667%;
		max-width: 16.66666667%
	}
}

.content-wrapper .box-layout .file-manager-main-layout {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	padding: 20px
}

@media (min-width:992px) {
	.content-wrapper .box-layout .file-manager-main-layout {
		min-height: 100vh;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
		position: relative;
		width: 100%;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px
	}
}

@media (min-width:1200px) {
	.content-wrapper .box-layout .file-manager-main-layout {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333333%;
		flex: 0 0 83.33333333%;
		max-width: 83.33333333%
	}
}

.content-wrapper .box-layout .file-manager-menu-layout {
	width: 210px;
	left: -500px;
	position: absolute;
	background: #f4f7fb;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .31);
	box-shadow: 0 2px 4px rgba(0, 0, 0, .31)
}

.content-wrapper .box-layout .file-manager-menu-layout.active {
	top: 0;
	left: 0;
	z-index: 4;
	position: fixed;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.content-wrapper .box-layout .file-manager-menu-layout .slimscroll-file-manager-wrapper {
	padding: 15px
}

.content-wrapper .box-layout .file-manager-menu-layout .title {
	margin-top: 20px;
	font-weight: 400
}

.content-wrapper .box-layout .file-manager-menu-layout ul {
	margin-top: 10px;
	padding-left: 0
}

.content-wrapper .box-layout .file-manager-menu-layout ul > li {
	list-style: none;
	margin-bottom: 10px
}

.content-wrapper .box-layout .file-manager-menu-layout ul > li.active > a {
	color: #3b7ae2;
	font-weight: 400
}

.content-wrapper .box-layout .file-manager-menu-layout ul > li > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.content-wrapper .box-layout .file-manager-menu-layout ul > li > a > .icon {
	font-size: 16px;
	margin-right: 10px
}

.content-wrapper .box-layout .file-manager-menu-layout ul > li > a > .badge {
	padding: 2px 3px;
	margin-left: auto;
	background: #5d6b8d
}

@media (min-width:992px) {
	.content-wrapper .box-layout .file-manager-menu-layout {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
		position: relative;
		width: 100%;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px;
		min-height: 100vh;
		right: 0;
		display: block;
		-webkit-box-shadow: none;
		box-shadow: none;
		position: static;
		padding: 20px
	}

	.content-wrapper .box-layout .file-manager-menu-layout.active {
		right: 0;
		z-index: 1;
		-webkit-box-shadow: none;
		box-shadow: none;
		position: static
	}
}

@media (min-width:1200px) {
	.content-wrapper .box-layout .file-manager-menu-layout {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66666667%;
		flex: 0 0 16.66666667%;
		max-width: 16.66666667%
	}
}

.content-wrapper .box-layout .chat-main-layout {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	background: #fff;
	height: 100vh;
	padding: 117px 0 0
}

@media (min-width:992px) {
	.content-wrapper .box-layout .chat-main-layout {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66666667%;
		flex: 0 0 66.66666667%;
		max-width: 66.66666667%;
		position: relative;
		width: 100%;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px;
		padding: 70px 0 0
	}
}

@media (min-width:1200px) {
	.content-wrapper .box-layout .chat-main-layout {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%
	}
}

.content-wrapper .box-layout .chat-menu-layout {
	width: 280px;
	height: 100vh;
	left: -500px;
	position: absolute;
	background: #f4f7fb;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .31);
	box-shadow: 0 2px 4px rgba(0, 0, 0, .31)
}

.content-wrapper .box-layout .chat-menu-layout.active {
	top: 0;
	left: 0;
	z-index: 4;
	position: fixed;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.content-wrapper .box-layout .chat-menu-layout .chat-nav {
	width: 100%;
	background: #ecf2f9;
	-webkit-box-shadow: 0 -1px 4px rgba(0, 0, 0, .05);
	box-shadow: 0 -1px 4px rgba(0, 0, 0, .05)
}

.content-wrapper .box-layout .chat-menu-layout .chat-nav > .nav {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.content-wrapper .box-layout .chat-menu-layout .chat-nav > .nav > .nav-item {
	padding: 10px 20px
}

.content-wrapper .box-layout .chat-menu-layout .chat-nav > .nav > .nav-item.active {
	background: #e3eaf3
}

.content-wrapper .box-layout .chat-menu-layout .chat-nav > .nav > .nav-item .icon {
	font-size: 16px
}

@media (min-width:992px) {
	.content-wrapper .box-layout .chat-menu-layout {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333333%;
		flex: 0 0 33.33333333%;
		max-width: 33.33333333%;
		position: relative;
		width: 100%;
		min-height: 1px;
		padding-right: 15px;
		padding-left: 15px;
		height: 100vh;
		right: 0;
		display: block;
		-webkit-box-shadow: none;
		box-shadow: none;
		position: static;
		padding: 70px 0 0
	}

	.content-wrapper .box-layout .chat-menu-layout.active {
		right: 0;
		z-index: 1;
		-webkit-box-shadow: none;
		box-shadow: none;
		position: static
	}
}

@media (min-width:1200px) {
	.content-wrapper .box-layout .chat-menu-layout {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%
	}
}

.item-thumbnail {
	cursor: pointer;
	position: relative
}

.item-thumbnail > img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	position: absolute
}

.item-thumbnail > a {
	top: 0;
	right: -15px;
	bottom: 0;
	color: #fff;
	position: absolute;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	background: rgba(28, 29, 42, .4)
}

.item-thumbnail:hover > a {
	right: -10px;
	background: #1c1d2a
}

.side-nav-box {
	width: 90px;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: fixed;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .56);
	box-shadow: 0 2px 4px rgba(0, 0, 0, .56)
}

@media (max-width:992px) {
	.side-nav-box {
		width: 250px;
		left: -500px
	}

	.side-nav-box.active {
		left: 0
	}
}

.side-nav-box.light {
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
	box-shadow: 0 2px 4px rgba(0, 0, 0, .12)
}

.side-nav-box.light > .logo-box {
}

.side-nav-box.light .side-nav {
	background: #fff
}

.side-nav-box.light .side-nav .main-menu > ul > li > .menu-item,
.side-nav-box.light .side-nav .title {
	color: #8791a5
}

.side-nav-box > .logo-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (max-width:992px) {
	.side-nav-box > .logo-box {
		padding: 0 20px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}
}

.side-nav-box > .logo-box > .logo {
	height: 30px
}

.side-nav-box > .logo-box > .title {
	display: none
}

@media (max-width:992px) {
	.side-nav-box > .logo-box > .title {
		color: #fff;
		display: block;
		margin-left: 12px;
		font-weight: 400;
		font-size: 1.125rem
	}

	.side-nav-box > .logo-box > .title > .highlight {
		color: #4d8cbf
	}
}

.side-nav-box .side-nav {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	width: 100%;
	overflow: hidden;
	background: #1c1e2b
}

@media (max-width:992px) {
	.side-nav-box .side-nav {
		position: relative
	}

	.side-nav-box .side-nav.active > .title {
		color: #7b85a2
	}
}

.side-nav-box .side-nav > .title {
	color: #fff;
	max-width: 80%;
	margin: 0 auto;
	text-align: center;
	font-weight: 400;
	padding-top: 20px;
	padding-bottom: 10px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}

@media (max-width:992px) {
	.side-nav-box .side-nav > .title {
		margin: 0;
		max-width: 100%;
		text-align: left;
		padding-left: 20px
	}
}

.side-nav-box .side-nav > .main-menu > ul {
	padding-left: 0;
	margin-bottom: 0
}

.side-nav-box .side-nav > .main-menu > ul > li {
	padding: 8px 0;
	text-align: center
}

.side-nav-box .side-nav > .main-menu > ul > li.active {
	background: #222531
}

.side-nav-box .side-nav > .main-menu > ul > li > .menu-item {
	color: #fff;
	display: block;
	text-decoration: none
}

.side-nav-box .side-nav > .main-menu > ul > li > .menu-item > .icon {
	font-size: 1.25rem
}

.side-nav-box .side-nav > .main-menu > ul > li > .menu-item > .title {
	left: 45px;
	max-width: 80%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin: 5px auto 0;
	color: #8a95a9
}

.side-nav-box .side-nav > .main-menu > ul > li > .sub-menu {
	left: -500px;
	display: none
}

.side-nav-box .side-nav > .main-menu > ul > li > .sub-menu ul > li,
.side-nav-box .side-nav > .main-menu > ul > li > .sub-menu ul > li > ul > li {
	display: none
}

@media (max-width:992px) {
	.side-nav-box .side-nav > .main-menu > ul > li {
		text-align: left;
		position: relative;
		padding-left: 20px
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu {
		left: 54px
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position {
		position: static
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu {
		top: 0;
		z-index: 2;
		height: 100%;
		position: absolute;
		background: #222531
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu:after,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu:after {
		display: none
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul {
		padding-left: 0
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul > li,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li {
		display: block;
		list-style: none;
		position: relative;
		-webkit-transition: all .3s ease;
		transition: all .3s ease
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul > li > a,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li > a {
		width: 196px;
		display: block;
		padding: 12px 8px 12px 20px;
		color: #858ba5;
		text-decoration: none;
		-webkit-transition: all .3s ease;
		transition: all .3s ease
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul > li > a > .icon,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li > a > .icon {
		margin-right: 5px
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul > li:hover > a,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li:hover > a {
		color: #fff
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul > li > ul:after,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li > ul:after {
		content: "\F142";
		top: 12px;
		right: 12px;
		position: absolute;
		color: #575e7d;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
		font: normal normal normal 18px/1 Material Design Icons
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul > li > ul > li,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li > ul > li {
		display: none
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active {
		background: #1e202b
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > a,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > a {
		color: #fff
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > ul,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > ul {
		padding-bottom: 8px
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > ul:after,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > ul:after {
		color: #fff;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg)
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > ul > li,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > ul > li {
		display: block;
		list-style: none
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > ul > li > a,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > ul > li > a {
		display: block;
		padding: 12px 8px 12px 28px;
		color: #858ba5;
		text-decoration: none;
		-webkit-transition: all .3s ease;
		transition: all .3s ease
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > ul > li > a > .icon,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > ul > li > a > .icon {
		color: #fff;
		margin-right: 5px
	}

	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > ul > li.active > a,
	.side-nav-box .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > ul > li:hover > a,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > ul > li.active > a,
	.side-nav-box .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > ul > li:hover > a {
		color: #fff
	}

	.side-nav-box .side-nav > .main-menu > ul > li > .sub-menu {
		display: block
	}

	.side-nav-box .side-nav > .main-menu > ul > li > .sub-menu:after {
		content: "\F142";
		top: 16px;
		right: 20px;
		position: absolute;
		color: #8a95a9;
		font: normal normal normal 18px/1 Material Design Icons
	}

	.side-nav-box .side-nav > .main-menu > ul > li > .menu-item {
		position: relative
	}

	.side-nav-box .side-nav > .main-menu > ul > li > .menu-item > .title {
		top: 0;
		left: 34px;
		position: absolute
	}

	.side-nav-box .side-nav > .main-menu > ul > li > .menu-item:hover > .title {
		color: #fff
	}
}

.side-nav-box:hover {
	width: 250px
}

.side-nav-box:hover .logo-box {
	padding: 0 20px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.side-nav-box:hover .logo-box > .title {
	color: #fff;
	display: block;
	margin-left: 12px;
	font-weight: 400;
	font-size: 1.125rem
}

.side-nav-box:hover .logo-box > .title > .highlight {
	color: #4d8cbf
}

.side-nav-box:hover .side-nav {
	position: relative
}

.side-nav-box:hover .side-nav > .title {
	margin: 0;
	max-width: 100%;
	text-align: left;
	padding-left: 20px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.side-nav-box:hover .side-nav.active > .title {
	color: #7b85a2
}

.side-nav-box:hover .side-nav > .main-menu > ul > li {
	text-align: left;
	position: relative;
	padding-left: 20px
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu {
	left: 54px
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position {
	position: static
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu {
	top: 0;
	z-index: 2;
	height: 100vh;
	position: absolute;
	background: #222531
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu:after,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu:after {
	display: none
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul {
	padding-left: 0
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul > li,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li {
	display: block;
	list-style: none;
	position: relative;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul > li > a,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li > a {
	width: 196px;
	display: block;
	padding: 12px 8px;
	padding-left: 20px;
	color: #858ba5;
	text-decoration: none;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul > li > a > .icon,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li > a > .icon {
	margin-right: 5px
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul > li:hover > a,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li:hover > a {
	color: #fff
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul > li > ul > li,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li > ul > li {
	display: none
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul > li > ul:after,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li > ul:after {
	content: "\F142";
	top: 12px;
	right: 12px;
	position: absolute;
	color: #575e7d;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	font: normal normal normal 18px/1 Material Design Icons
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active {
	background: #1e202b
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > a,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > a {
	color: #fff
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > ul,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > ul {
	padding-bottom: 8px
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > ul:after,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > ul:after {
	color: #fff;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg)
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > ul > li,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > ul > li {
	display: block;
	list-style: none
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > ul > li > a,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > ul > li > a {
	display: block;
	padding: 12px 8px 12px 28px;
	color: #858ba5;
	text-decoration: none;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > ul > li > a > .icon,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > ul > li > a > .icon {
	color: #fff;
	margin-right: 5px
}

.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > ul > li.active > a,
.side-nav-box:hover .side-nav > .main-menu > ul > li.active > .sub-menu ul > li.active > ul > li:hover > a,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > ul > li.active > a,
.side-nav-box:hover .side-nav > .main-menu > ul > li.first-position > .sub-menu ul > li.active > ul > li:hover > a {
	color: #fff
}

.side-nav-box:hover .side-nav > .main-menu > ul > li > .sub-menu {
	display: block
}

.side-nav-box:hover .side-nav > .main-menu > ul > li > .sub-menu:after {
	content: "\F142";
	top: 16px;
	right: 20px;
	position: absolute;
	color: #8a95a9;
	font: normal normal normal 18px/1 Material Design Icons
}

.side-nav-box:hover .side-nav > .main-menu > ul > li > .menu-item {
	position: relative
}

.side-nav-box:hover .side-nav > .main-menu > ul > li > .menu-item > .title {
	top: 0;
	left: 34px;
	position: absolute;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.side-nav-box:hover .side-nav > .main-menu > ul > li > .menu-item:hover > .title {
	color: #fff
}

.top-bar-box {
	width: 100%;
	top: 0;
	left: 0;
	z-index: 2;
	position: fixed;
	padding-left: 90px
}

@media (max-width:992px) {
	.top-bar-box {
		padding-left: 0;
		background: #242935;
		-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .31);
		box-shadow: 0 1px 4px rgba(0, 0, 0, .31)
	}
}

.top-bar-box.colored {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	background: #242935;
	-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, .31);
	box-shadow: 0 1px 4px rgba(0, 0, 0, .31)
}

.top-bar-box .top-bar {
	height: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

@media (max-width:992px) {
	.top-bar-box .top-bar {
		height: 117px;
		display: block;
		padding-top: 47px;
		position: relative
	}
}

.top-bar-box .top-bar > .mobile-nav-toggle {
	display: none
}

@media (max-width:992px) {
	.top-bar-box .top-bar > .mobile-nav-toggle {
		height: 37px;
		color: #fff;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		cursor: pointer;
		margin-top: 15px;
		padding: 0 15px;
		position: absolute;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		border-radius: .25rem;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		background: #222531
	}

	.top-bar-box .top-bar > .mobile-nav-toggle > .icon {
		color: #fff;
		position: relative;
		margin-right: 10px;
		font-size: 1.25rem
	}
}

.top-bar-box .top-bar .logo-box {
    width: 100%;
    min-width: 140px;
    max-width: 300px;
    height: 100px;
    background-image: image-set("/assets/images/GenuFormAI_logo.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: -10px;
    margin-right: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width:992px) {
	.top-bar-box .top-bar .logo-box {
		display: none
	}
}

.top-bar-box .top-bar .logo-box > .logo {
	width: 30px
}

.top-bar-box .top-bar .logo-box > .title {
	color: #fff;
	margin-left: 12px;
	font-weight: 400;
	font-size: 1.125rem
}

.top-bar-box .top-bar .logo-box > .title > .highlight {
	color: #4d8cbf
}

.top-bar-box .top-bar > .page-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	margin-right: auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	white-space: nowrap;
	color: #a2acbf;
	font-size: .75rem
}

@media (max-width:992px) {
	.top-bar-box .top-bar > .page-info {
		top: 0;
		width: 50%;
		height: 47px;
		position: absolute
	}

	.top-bar-box .top-bar > .page-info:before {
		content: "";
		width: 1000%;
		height: 47px;
		left: -500%;
		z-index: -1;
		position: absolute;
		background: #222531
	}
}

@media (max-width:576px) {
	.top-bar-box .top-bar > .page-info {
		font-size: .625rem
	}
}

.top-bar-box .top-bar > .top-side-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative
}

.top-bar-box .top-bar > .top-side-box:after {
	content: "";
	width: 1px;
	height: 40%;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
	background: #41475d
}

@media (max-width:992px) {
	.top-bar-box .top-bar > .top-side-box:after {
		display: none
	}
}

@media (max-width:992px) {
	.top-bar-box .top-bar > .top-side-box {
		top: 0;
		width: 50%;
		left: 50%;
		padding: 5px 0;
		position: absolute;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end
	}
}

.top-bar-box .top-bar > .top-side-box > .notification-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: 20px;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

@media (max-width:1200px) {
	.top-bar-box .top-bar > .top-side-box > .notification-box {
		margin-right: 10px
	}
}

@media (max-width:992px) {
	.top-bar-box .top-bar > .top-side-box > .notification-box {
		margin-right: 0
	}
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item {
	height: 37px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	margin: 0 15px;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

@media (max-width:992px) {
	.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item {
		margin: 0 10px
	}
}

@media (max-width:576px) {
	.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item {
		width: 28px;
		margin: 0
	}
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item > .icon {
	color: #fff;
	position: relative;
	font-size: 1.25rem
}

@media (max-width:576px) {
	.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item > .icon {
		font-size: 1rem
	}
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item > .bullet {
	width: 12px;
	height: 12px;
	top: 4px;
	right: -5px;
	background: #e33244;
	position: absolute;
	border-radius: 50px
}

@media (max-width:576px) {
	.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item > .bullet {
		width: 9px;
		height: 9px;
		top: 7px;
		right: 2px
	}
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content {
	width: 330px;
	top: 45px;
	right: -33px;
	z-index: 2;
	display: none;
	position: absolute;
	background: #fff;
	border-radius: .25rem;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
	box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

@media (max-width:576px) {
	.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content {
		top: 48px;
		right: 0;
		left: 0;
		position: fixed;
		margin: 0 auto
	}
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content:after {
	content: "";
	width: 0;
	height: 0;
	top: -16px;
	right: 36px;
	position: absolute;
	border: 8px solid transparent;
	border-bottom-color: #fff
}

@media (max-width:576px) {
	.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content:after {
		display: none
	}
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content > .header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 20px;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content > .header > .title {
	font-weight: 400;
	font-size: .875rem
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content > .header > .action > a {
	position: relative;
	margin-right: 18px
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content > .header > .action > a:last-child {
	margin-right: 0
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content > .header > .action > a:last-child:after {
	content: ""
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content > .header > .action > a:after {
	content: ".";
	top: -8px;
	right: -17px;
	position: absolute;
	color: #dadce6;
	font-size: 3.125rem;
	line-height: .06249997
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .content,
.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .messages-content {
	overflow: hidden
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .content > .item,
.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .messages-content > .item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 20px;
	margin-bottom: 20px;
	color: #5d6b8d
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .content > .item > img,
.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .messages-content > .item > img {
	width: 50px;
	height: 50px;
	margin-right: 15px;
	border-radius: 50px
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .content > .item > .info,
.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .messages-content > .item > .info {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	margin-top: 2px
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .content > .item > .info > .text .highlight,
.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .messages-content > .item > .info > .text .highlight {
	font-weight: 400
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .content > .item > .info > .time,
.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .messages-content > .item > .info > .time {
	margin-top: 5px;
	text-align: right;
	font-size: .6875rem
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .content > .item > .messages-box,
.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .messages-content > .item > .messages-box {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	margin-top: 2px
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .content > .item > .messages-box > .name,
.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .messages-content > .item > .messages-box > .name {
	font-weight: 400
}

.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .content > .item > .messages-box > .time,
.top-bar-box .top-bar > .top-side-box > .notification-box > .notification-item .notification-content .messages-content > .item > .messages-box > .time {
	margin-top: 5px;
	text-align: right;
	font-size: .6875rem
}

.top-bar-box .top-bar > .top-side-box > .side-layout-toggle {
	display: none;
	position: relative
}

@media (max-width:1200px) {
	.top-bar-box .top-bar > .top-side-box > .side-layout-toggle {
		color: #fff;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		cursor: pointer;
		padding: 0 5px;
		margin-right: 20px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.top-bar-box .top-bar > .top-side-box > .side-layout-toggle > .icon {
		color: #fff;
		position: relative;
		margin-right: 10px;
		font-size: 1.375rem
	}
}

@media (max-width:992px) {
	.top-bar-box .top-bar > .top-side-box > .side-layout-toggle {
		padding: 0;
		margin: 0 -14px 0 35px
	}

	.top-bar-box .top-bar > .top-side-box > .side-layout-toggle:after {
		content: "";
		width: 1px;
		height: 50%;
		top: 0;
		left: -21px;
		bottom: 0;
		margin: auto;
		position: absolute;
		background: #41475d
	}

	.top-bar-box .top-bar > .top-side-box > .side-layout-toggle > .text {
		display: none
	}
}

@media (max-width:576px) {
	.top-bar-box .top-bar > .top-side-box > .side-layout-toggle {
		margin-left: 25px
	}

	.top-bar-box .top-bar > .top-side-box > .side-layout-toggle:after {
		left: -15px
	}

	.top-bar-box .top-bar > .top-side-box > .side-layout-toggle > .icon {
		font-size: 1.125rem
	}
}

.top-bar-box .top-bar > .user-profile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	margin-left: 35px;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

@media (max-width:1200px) {
	.top-bar-box .top-bar > .user-profile {
		margin-left: 25px
	}
}

@media (max-width:992px) {
	.top-bar-box .top-bar > .user-profile {
		right: 0;
		bottom: 16px;
		position: absolute;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse
	}
}

.top-bar-box .top-bar > .user-profile > .user-image {
	width: 40px;
	height: 40px;
	border-radius: 50%
}

.top-bar-box .top-bar > .user-profile > .info {
	color: #fff;
	margin-left: 15px
}

@media (max-width:992px) {
	.top-bar-box .top-bar > .user-profile > .info {
		margin-top: -4px;
		margin-left: 0;
		margin-right: 15px
	}
}

.top-bar-box .top-bar > .user-profile > .info > .user-name {
	font-weight: 400
}

.top-bar-box .top-bar > .user-profile > .info > .user-info {
	text-align: right;
	color: #a2acbf;
	font-size: .75rem
}

@media (max-width:576px) {
	.top-bar-box .top-bar > .user-profile > .info > .user-info {
		font-size: .6875rem
	}
}

.top-bar-box .top-bar > .user-profile > .user-profile-content {
	min-width: 180px;
	top: 67px;
	right: 0;
	z-index: 2;
	padding: 20px;
	display: none;
	position: absolute;
	background: #fff;
	border-radius: .25rem;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
	box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.top-bar-box .top-bar > .user-profile > .user-profile-content:after {
	content: "";
	width: 0;
	height: 0;
	top: -16px;
	right: 24px;
	position: absolute;
	border: 8px solid transparent;
	border-bottom-color: #fff
}

.top-bar-box .top-bar > .user-profile > .user-profile-content > a {
	display: block;
	margin-bottom: 12px
}

.top-bar-box .top-bar > .user-profile > .user-profile-content > a:last-child {
	margin-bottom: 0
}

.top-bar-box .top-bar > .user-profile > .user-profile-content > a > .icon {
	margin-right: 10px
}

.top-bar-box .mail-top-bar-box {
	width: 100%;
	height: 60px;
	position: relative
}

.top-bar-box .mail-top-bar-box:before {
	content: "";
	width: 1000%;
	height: 100%;
	left: -500%;
	z-index: -1;
	position: absolute;
	background: #1c1e2b
}

.top-bar-box .mail-top-bar-box .mail-top-bar {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -20px;
	overflow: hidden;
	position: relative
}

.top-bar-box .mail-top-bar-box .mail-top-bar .side-bar {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	padding: 0 20px
}

@media (min-width:992px) {
	.top-bar-box .mail-top-bar-box .mail-top-bar .side-bar {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%
	}
}

@media (min-width:1200px) {
	.top-bar-box .mail-top-bar-box .mail-top-bar .side-bar {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66666667%;
		flex: 0 0 16.66666667%;
		max-width: 16.66666667%
	}
}

.top-bar-box .mail-top-bar-box .mail-top-bar .main-bar {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	padding: 0 20px
}

.top-bar-box .mail-top-bar-box .mail-top-bar .main-bar input::-webkit-input-placeholder {
	color: #8b98b1
}

@media (min-width:992px) {
	.top-bar-box .mail-top-bar-box .mail-top-bar .main-bar {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%
	}
}

@media (min-width:1200px) {
	.top-bar-box .mail-top-bar-box .mail-top-bar .main-bar {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333333%;
		flex: 0 0 83.33333333%;
		max-width: 83.33333333%
	}
}

@media (min-width:992px) {
	.top-bar-box .top-nav-box {
		width: 100%;
		height: 60px;
		position: relative
	}

	.top-bar-box .top-nav-box:before {
		content: "";
		width: 1000%;
		height: 100%;
		left: -500%;
		z-index: -1;
		position: absolute;
		background: #1c1e2b
	}

	.top-bar-box .top-nav-box > .top-nav {
		width: 100%;
		height: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-bottom: 0;
		position: relative;
		-webkit-padding-start: initial;
		padding-inline-start: 0
	}

	.top-bar-box .top-nav-box > .top-nav > li {
		cursor: pointer;
		list-style: none;
		position: relative;
		margin-right: 30px
	}

	.top-bar-box .top-nav-box > .top-nav > li > a {
		color: #fff;
		height: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}

	.top-bar-box .top-nav-box > .top-nav > li > a > .icon {
		margin-right: 8px;
		color: #9c9fa9
	}

	.top-bar-box .top-nav-box > .top-nav > li:hover > .sub-menu {
		display: block;
		-webkit-animation-name: fadeInUp;
		animation-name: fadeInUp;
		-webkit-animation-duration: .3s;
		animation-duration: .3s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both
	}

	.top-bar-box .top-nav-box > .top-nav > li > .sub-menu {
		left: -20px;
		display: none;
		min-width: 210px;
		position: absolute;
		padding-bottom: 10px;
		background: #222531;
		border-radius: 0 0 .25rem .25rem;
		-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .18);
		box-shadow: 0 2px 4px rgba(0, 0, 0, .18)
	}

	.top-bar-box .top-nav-box > .top-nav > li > .sub-menu > ul {
		-webkit-padding-start: initial;
		padding-inline-start: 0
	}

	.top-bar-box .top-nav-box > .top-nav > li > .sub-menu > ul > li {
		list-style: none;
		position: relative;
		padding: 13px 20px
	}

	.top-bar-box .top-nav-box > .top-nav > li > .sub-menu > ul > li > a {
		color: #fff
	}

	.top-bar-box .top-nav-box > .top-nav > li > .sub-menu > ul > li > a > .icon {
		margin-right: 8px;
		color: #9c9fa9
	}

	.top-bar-box .top-nav-box > .top-nav > li > .sub-menu > ul > li:hover > ul > li {
		display: block;
		-webkit-animation-name: fadeInLeft;
		animation-name: fadeInLeft;
		-webkit-animation-duration: .3s;
		animation-duration: .3s;
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both
	}

	.top-bar-box .top-nav-box > .top-nav > li > .sub-menu > ul > li > ul {
		top: 0;
		left: 100%;
		min-width: 210px;
		-webkit-box-shadow: none;
		box-shadow: none;
		position: absolute;
		background: transparent;
		-webkit-padding-start: initial;
		padding-inline-start: 0
	}

	.top-bar-box .top-nav-box > .top-nav > li > .sub-menu > ul > li > ul:after {
		content: "\F142";
		top: 14px;
		left: -32px;
		position: absolute;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
		color: #9c9fa9;
		font: normal normal normal 18px/1 Material Design Icons
	}

	.top-bar-box .top-nav-box > .top-nav > li > .sub-menu > ul > li > ul > li {
		display: none;
		padding: 13px 20px;
		background: #222531;
		-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .18);
		box-shadow: 0 2px 4px rgba(0, 0, 0, .18)
	}

	.top-bar-box .top-nav-box > .top-nav > li > .sub-menu > ul > li > ul > li:first-child {
		border-radius: 0 .25rem 0 0
	}

	.top-bar-box .top-nav-box > .top-nav > li > .sub-menu > ul > li > ul > li:last-child {
		border-radius: 0 0 .25rem .25rem
	}

	.top-bar-box .top-nav-box > .top-nav > li > .sub-menu > ul > li > ul > li > a {
		color: #fff
	}

	.top-bar-box .top-nav-box > .top-nav > li > .sub-menu > ul > li > ul > li > a > .icon {
		margin-right: 8px;
		color: #9c9fa9
	}
}

@media (max-width:992px) {
	.top-bar-box.top-nav-mask:after {
		content: "";
		top: 0;
		left: 0;
		z-index: 2;
		width: 100%;
		height: 100%;
		position: fixed;
		background: rgba(28, 29, 42, .4)
	}

	.top-bar-box .top-nav-box {
		width: 250px;
		height: 100vh;
		z-index: 3;
		top: 0;
		left: -500px;
		position: fixed;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
		background: #1c1e2b;
		-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .56);
		box-shadow: 0 2px 4px rgba(0, 0, 0, .56)
	}

	.top-bar-box .top-nav-box.active {
		left: 0
	}

	.top-bar-box .top-nav-box .top-nav {
		padding-left: 0;
		margin-bottom: 0
	}

	.top-bar-box .top-nav-box .top-nav > li {
		text-align: left;
		position: relative;
		padding: 8px 0 8px 20px
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu {
		left: 54px
	}

	.top-bar-box .top-nav-box .top-nav > li.active,
	.top-bar-box .top-nav-box .top-nav > li.first-position {
		position: static;
		background: #222531
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu {
		top: 0;
		z-index: 2;
		width: 196px;
		height: 100%;
		position: absolute;
		background: #222531
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu:after,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu:after {
		display: none
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul {
		padding-left: 0
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li {
		display: block;
		position: relative
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li > a,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li > a {
		display: block;
		text-decoration: none;
		padding: 12px 8px 12px 20px;
		color: #858ba5
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li > a > .icon,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li > a > .icon {
		margin-right: 5px
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li:hover > a,
	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li:hover > a > .icon,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li:hover > a,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li:hover > a > .icon {
		color: #fff
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li > ul:after,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li > ul:after {
		content: "\F142";
		top: 12px;
		right: 12px;
		position: absolute;
		color: #575e7d;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
		font: normal normal normal 18px/1 Material Design Icons
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li > ul > li,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li > ul > li {
		display: none
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li.active,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li.active {
		background: #1e202b
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li.active > a,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li.active > a {
		color: #fff
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li.active > ul,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li.active > ul {
		padding-left: 0;
		padding-bottom: 8px
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li.active > ul:after,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li.active > ul:after {
		color: #fff;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg)
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li.active > ul > li,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li.active > ul > li {
		display: block;
		list-style: none
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li.active > ul > li > a,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li.active > ul > li > a {
		display: block;
		text-decoration: none;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
		padding: 12px 8px 12px 28px;
		color: #858ba5
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li.active > ul > li > a > .icon,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li.active > ul > li > a > .icon {
		color: #fff;
		margin-right: 5px
	}

	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li.active > ul > li.active > a,
	.top-bar-box .top-nav-box .top-nav > li.active > .sub-menu > div > ul > li.active > ul > li:hover > a,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li.active > ul > li.active > a,
	.top-bar-box .top-nav-box .top-nav > li.first-position > .sub-menu > div > ul > li.active > ul > li:hover > a {
		color: #fff
	}

	.top-bar-box .top-nav-box .top-nav > li > a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-decoration: none;
		color: #8a95a9
	}

	.top-bar-box .top-nav-box .top-nav > li > a > .icon {
		color: #fff;
		margin-right: 14px;
		font-size: 1.25rem
	}

	.top-bar-box .top-nav-box .top-nav > li:hover > a {
		color: #fff
	}

	.top-bar-box .top-nav-box .top-nav > li > .sub-menu {
		left: -500px
	}

	.top-bar-box .top-nav-box .top-nav > li > .sub-menu:after {
		content: "\F142";
		top: 16px;
		right: 20px;
		position: absolute;
		color: #8a95a9;
		font: normal normal normal 18px/1 Material Design Icons
	}

	.top-bar-box .top-nav-box .top-nav > li > .sub-menu > ul > li,
	.top-bar-box .top-nav-box .top-nav > li > .sub-menu > ul > li > ul > li {
		display: none
	}
}

.report-box-1 {
	overflow: hidden;
	position: relative;
	background-size: 100%;
	background-position: 0 -140px;
	background-image: url(../images/background4839.jpg?88e109f255e1f56e5b434e0545421a1c)
}

@media (max-width:992px) {
	.report-box-1 {
		background-size: cover;
		background-position: 50%
	}
}

.report-box-1:before {
	content: "";
	width: 1000%;
	height: 100%;
	top: 0;
	left: -500%;
	position: absolute;
	background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .49), #2a2f3d)
}

.report-box-2 {
	overflow: hidden;
	position: relative;
	background-size: cover;
	background-position: 0 20%;
	background-image: url(../images/background4839.jpg?88e109f255e1f56e5b434e0545421a1c)
}

.report-box-2:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(42, 47, 61, .5)
}

.report-box-2 .report {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%
}

@media (min-width:768px) {
	.report-box-2 .report {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1
	}
}

.report-box-2 .report:first-child {
	background: rgba(42, 47, 61, .25)
}

.report-box-2 .report:nth-child(2) {
	background: rgba(42, 47, 61, .35)
}

.report-box-2 .report:nth-child(3) {
	background: rgba(42, 47, 61, .45)
}

.report-box-2 .report:nth-child(4) {
	background: rgba(42, 47, 61, .55)
}

.report-box-3 {
	min-width: 375px;
	margin-left: -122px
}

@media (max-width:1200px) {
	.report-box-3 {
		min-width: auto;
		margin-left: 0
	}
}

.product-list-1 .product {
	overflow: hidden;
	border-top: 2px solid #fafbfc
}

.product-list-1 .product > .action {
	margin-right: -100%
}

.product-list-1 .product > .action > a {
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.product-list-1 .product > .action > a:hover {
	color: #fff;
	cursor: pointer;
	background: #888ea9
}

.product-list-1 .product > .content {
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.product-list-1 .product > .content:after {
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
	position: absolute;
	background: hsla(0, 0%, 100%, .8)
}

.product-list-1 .product:hover .content {
	margin-left: -120px
}

.product-list-1 .product:hover .content:after {
	display: block
}

.product-list-2 .product {
	overflow: hidden;
	border-top: 2px solid #fafbfc
}

.product-list-2 .product > .action {
	margin-right: -100%
}

.product-list-2 .product > .action > a {
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.product-list-2 .product > .action > a:hover {
	color: #fff;
	cursor: pointer;
	background: #888ea9
}

.product-list-2 .product > .content {
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}

.product-list-2 .product > .content:after {
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
	position: absolute;
	background: hsla(0, 0%, 100%, .8)
}

.product-list-2 .product:hover .content {
	margin-left: -150px
}

.product-list-2 .product:hover .content:after {
	display: block
}

.form-control.outline {
	color: #5d6b8d;
	border-color: #e8e9ea;
	background: transparent;
	-webkit-appearance: none;
	background-repeat: no-repeat;
	background-position: right 5px top 50%;
	background-image: url(../images/select-arrow-black8fd9.png?02372e6ee7ef1e15aa527600a8c2f221)
}

.form-control.outline.dark {
	color: #343a40;
	border-color: #343a40
}

.form-control.outline.light {
	color: #fff;
	border-color: hsla(0, 0%, 100%, .74);
	background-image: url(../images/select-arrow91c8.png?b5accafb490d57e9012e910b8f71bacd)
}

.mail-list > .mail {
	cursor: pointer;
	background: #fafbfc
}

.mail-list > .mail.unread {
	background: transparent
}

.mail-list > .mail.selected {
	color: #fff;
	background: #5d6b8d
}

.mail-list > .mail.selected .user-name {
	color: #fff !important
}

.content-box {
	background: #fff;
	-webkit-box-shadow: 0 2px 5px rgba(69, 101, 173, .08);
	box-shadow: 0 2px 5px rgba(69, 101, 173, .08);
	border-radius: .2rem
}

.content-box .box-title {
	font-weight: 400;
	color: rgba(43, 47, 62, .8);
	font-size: 1rem
}

.content-box .box-action {
	color: #5d6b8d
}

.auth-wrapper {
	min-height: 100vh
}

.auth-wrapper > .auth-box {
	width: 90%
}

@media (min-width:576px) {
	.auth-wrapper > .auth-box {
		width: 380px
	}
}

.auth-wrapper > .auth-box .form-input > input {
	margin-top: -1px;
	position: relative;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.auth-wrapper > .auth-box .form-input > input:first-child {
	margin-top: 0;
	border-top-left-radius: .2rem;
	border-top-right-radius: .2rem
}

.auth-wrapper > .auth-box .form-input > input:last-child {
	border-bottom-left-radius: .2rem;
	border-bottom-right-radius: .2rem
}

.auth-wrapper > .auth-box .form-input > input:focus {
	z-index: 2
}

.error-wrapper {
	min-height: 100vh
}

.error-wrapper > .error-box {
	width: 90%
}

@media (min-width:576px) {
	.error-wrapper > .error-box {
		width: 380px
	}
}

.error-wrapper > .error-box .code-text {
	font-size: 7rem;
	line-height: 7rem
}

@media (min-width:576px) {
	.error-wrapper > .error-box .code-text {
		font-size: 8rem;
		line-height: 8rem
	}
}

@media (min-width:768px) {
	.error-wrapper > .error-box .code-text {
		font-size: 10rem;
		line-height: 10rem
	}
}

.file-list {
	margin: 0 -10px
}

.file-list > .file {
	margin: 0 10px 20px;
	background: #f4f7fb
}

.file-list > .file:hover {
	cursor: pointer;
	background: #ecf2f9
}

.file-list > .file .file-name {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}

.file-list > .file .empty-directory {
	position: relative
}

.file-list > .file .empty-directory:before {
	content: "";
	top: 8px;
	left: 2px;
	width: 40px;
	height: 55px;
	background: #41475d;
	position: absolute;
	border-radius: .3em;
	-webkit-box-shadow: 25px 5px 0 0 #41475d;
	box-shadow: 25px 5px 0 0 #41475d
}

.file-list > .file .empty-directory:after {
	content: "";
	top: 17px;
	left: 0;
	width: 70px;
	height: 53px;
	background: #5d6b8d;
	position: absolute;
	border-radius: .3em
}

.file-list > .file .document {
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-weight: 400;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.file-list > .file .document .file-type {
	position: relative;
	padding-left: 20px
}

.file-list > .file .document:before {
	content: "";
	top: 5px;
	left: 4px;
	width: 62px;
	height: 70px;
	position: absolute;
	border-radius: .4em;
	-webkit-box-shadow: 48px -53px 0 0 #5d6b8d inset;
	box-shadow: inset 48px -53px 0 0 #5d6b8d
}

.file-list > .file .document:after {
	content: "";
	top: 4px;
	left: 50px;
	width: 0;
	height: 0;
	position: absolute;
	border-radius: .4em;
	border: 9px solid #41475d;
	border-bottom-width: 10px;
	border-top-color: transparent;
	border-right-color: transparent
}

.file-list > .file .directory {
	position: relative
}

.file-list > .file .directory:before {
	content: "";
	top: 8px;
	left: 2px;
	width: 40px;
	height: 55px;
	background: #41475d;
	position: absolute;
	border-radius: .3em;
	-webkit-box-shadow: 25px 5px 0 0 #41475d;
	box-shadow: 25px 5px 0 0 #41475d
}

.file-list > .file .directory:after {
	content: "";
	top: 20px;
	left: 0;
	width: 70px;
	height: 50px;
	background: #5d6b8d;
	position: absolute;
	border-radius: .3em;
	-webkit-box-shadow: 0 -3px 0 0 #97a3c5;
	box-shadow: 0 -3px 0 0 #97a3c5
}

.chat-list .chat {
	cursor: pointer
}

.chat-list .chat.active {
	color: #fff;
	background: #5d6b8d
}

.chat-list .chat.active .user-name {
	color: #fff !important
}

.chat-list .chat .badge {
	color: #fff;
	height: 1.1875rem;
	background: #97a3c5
}

.chat-box .content {
	-webkit-box-shadow: 0 2px 5px rgba(69, 101, 173, .05);
	box-shadow: 0 2px 5px rgba(69, 101, 173, .05)
}

.invoice-wrapper {
	min-height: 100vh
}

.invoice-wrapper .invoice-box {
	width: 90%
}

@media (min-width:768px) {
	.invoice-wrapper .invoice-box {
		width: 800px
	}
}
