html {
	width: 100vw;
	height: 100vh;
}
body {
	margin: 0;
}
.hide {
	display: none;
}
.show {
	display: block;
}
.inline {
	display: inline;
}
.inline-block {
	display: inline-block;
}
.disappear {
	opacity: 0;
}
.half-here {
	opacity: 0.5;
}
.appear {
	opacity: 1;
}
.abs-pos {
	position: absolute;
}
.rel-pos {
	position: relative;
}
.fix-pos {
	position: fixed;
}
.flex {
	display: flex;
}
.flex-column {
	flex-direction: column;
}
.flex-row {
	flex-direction: row;
}
.flex-wrap,
.wrap-mobile {
	flex-wrap: wrap;
}
.flex-nowrap {
	flex-wrap: nowrap;
}
.flex-align-center {
	align-items: center;
}
.flex-align-start {
	align-items: flex-start;
}
.flex-align-end {
	align-items: flex-end;
}
.flex-justify-center {
	justify-content: center;
}
.flex-justify-start {
	justify-content: flex-start;
}
.flex-justify-end {
	justify-content: flex-end;
}
.flex-justify-around,
.flex-justify-spacearound {
	justify-content: space-around;
}
.flex-justify-between,
.flex-justify-spacebetween {
	justify-content: space-between;
}
.flex-justify-even {
	justify-content: space-evenly;
}
.flex-big-column,
.flex-three,
.flex-three-column {
	flex-basis: 100%;
}
.flex-two-column {
	flex-basis: 100%;
}
@media screen and (max-width: 1100px) {
	.show-mobile {
		display: block;
	}
	.mobile-hide {
		display: none;
	}
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
	.double-padding {
		padding: 2em 3em;
	}
	.flex-two-column {
		flex-basis: 45%;
	}
	.flex-three-column {
		flex-basis: 32.5%;
	}
	.flex-three {
		flex-basis: 45%;
	}
	.background-fixed {
		background-attachment: scroll;
	}
	.text-sm {
		font-size: 11px;
	}
}
@media screen and (min-width: 1100px) {
	.wrap-mobile {
		flex-wrap: nowrap;
	}
	.flex-two-column {
		flex-basis: 46%;
	}
	.flex-three {
		flex: 0 0 30%;
	}
	.flex-big-column {
		flex-basis: 54%;
	}
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.uptop {
	top: 0;
}
.downlow {
	bottom: 0;
}
.stayleft {
	left: 0;
}
.stayright {
	right: 0;
}
.way-back {
	z-index: -1;
}
.get-behind {
	z-index: 1;
}
.pull-forward {
	z-index: 2;
}
.more-forward {
	z-index: 10;
}
.ahead-of-most {
	z-index: 50;
}
.way-forward {
	z-index: 100;
}
.uppercase {
	text-transform: uppercase;
}
.capitalize {
	text-transform: capitalize;
}
.lowercase {
	text-transform: lowercase;
}
.no-transform {
	text-transform: none;
}
.ec-border-radius {
	border-radius: 8px;
}
.ec-top-border-radius {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.ec-bottom-border-radius {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
.ec-rounded {
	border-radius: 50px;
}
.full-radius {
	border-radius: 50%;
}
.ec-button,
.full-width {
	width: 100%;
	max-width: 100%;
}
.full-height {
	height: 100%;
}
.extra-wide {
	width: 100vw;
}
.extra-high {
	height: 100vh;
}
.ec-max-width {
	max-width: 1400px;
}
.no-padding {
	padding: 0;
}
.no-margin {
	margin: 0;
}
.double-bottom-margin {
	margin-bottom: 2em;
}
.double-top-margin {
	margin-top: 2em;
}
.double-left-margin {
	margin-left: 2em;
}
.double-right-margin {
	margin-right: 2em;
}
.triple-bottom-margin {
	margin-bottom: 3em;
}
.triple-top-margin {
	margin-top: 3em;
}
.triple-left-margin {
	margin-left: 3em;
}
.triple-right-margin {
	margin-right: 3em;
}
.quad-bottom-margin {
	margin-bottom: 4em;
}
.quad-top-margin {
	margin-top: 4em;
}
.quad-left-margin {
	margin-left: 4em;
}
.quad-right-margin {
	margin-right: 4em;
}
.bottom-margin {
	margin-bottom: 1em;
}
.top-margin {
	margin-top: 1em;
}
.left-margin {
	margin-left: 1em;
}
.right-margin {
	margin-right: 1em;
}
.slight-bottom-margin {
	margin-bottom: 0.5em;
}
.slight-top-margin {
	margin-top: 0.5em;
}
.slight-left-margin {
	margin-left: 0.5em;
}
.slight-right-margin {
	margin-right: 0.5em;
}
.double-bottom-padding {
	padding-bottom: 2em;
}
.double-top-padding {
	padding-top: 2em;
}
.double-left-padding {
	padding-left: 2em;
}
.double-right-padding {
	padding-right: 2em;
}
.triple-bottom-padding {
	padding-bottom: 3em;
}
.triple-top-padding {
	padding-top: 3em;
}
.triple-left-padding {
	padding-left: 3em;
}
.triple-right-padding {
	padding-right: 3em;
}
.quad-bottom-padding {
	padding-bottom: 4em;
}
.quad-top-padding {
	padding-top: 4em;
}
.quad-left-padding {
	padding-left: 4em;
}
.quad-right-padding {
	padding-right: 4em;
}
.bottom-padding {
	padding-bottom: 1em;
}
.top-padding {
	padding-top: 1em;
}
.left-padding {
	padding-left: 1em;
}
.right-padding {
	padding-right: 1em;
}
.slight-bottom-padding {
	padding-bottom: 0.5em;
}
.slight-top-padding {
	padding-top: 0.5em;
}
.slight-left-padding {
	padding-left: 0.5em;
}
.slight-right-padding {
	padding-right: 0.5em;
}
.add-alittle-space-around {
	padding: 0.5em;
}
.add-some-space {
	padding: 2.5em 0;
}
.add-padding {
	padding: 0 2em 3em;
}
.double-padding {
	padding: 3em 4em;
}
.single-padding {
	padding: 2em 3em;
}
.slight-padding {
	padding: 1.5em;
}
.no-left-margin {
	margin-left: 0;
}
.no-right-margin {
	margin-right: 0;
}
.no-top-margin {
	margin-top: 0;
}
.no-bottom-margin {
	margin-bottom: 0;
}
.no-overflow {
	overflow: hidden;
}
.overflowing {
	overflow: scroll;
}
.center-content,
.content-center {
	margin: 0 auto;
}
.background-cover {
	background-size: cover;
}
.background-center {
	background-position: center center;
}
.background-fixed {
	background-attachment: scroll;
}
.background-norepeat {
	background-repeat: no-repeat;
}
.abs-center,
.absolute-center {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.ec-box-shadow {
	box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
}
.no-list-style {
	list-style-type: none;
}
.no-border {
	border: 0;
}
.bordered {
	border: 1px solid;
}
.border-top {
	border-top: 1px solid;
}
.border-bottom {
	border-bottom: 1px solid;
}
@media screen and (min-width: 1100px) {
	.background-fixed {
		background-attachment: fixed;
	}
}
.disable:before,
button.disabled,
button:disabled,
button[disabled],
input:disabled {
	color: rgba(24, 24, 24, 0.5);
}
button.disabled,
button:disabled,
button[disabled],
input:disabled {
	pointer-events: none;
}
button.disabled,
button:disabled,
button[disabled],
input:disabled {
	background-color: transparent;
}
.overlay {
	background-color: rgba(24, 24, 24, 0.75);
	z-index: 0;
}
.fa-facebook-f {
	color: #5c81bc;
}
.fa-google {
	color: #eb4e48;
}
@media screen and (min-width: 767px) {
	.half-width {
		width: 50%;
	}
}
.input-wrapper:before {
	font-family: "simple-line-icons";
	font-size: 20px;
	position: absolute;
	left: 14px;
	top: 14px;
}
#form-phone:before {
	content: "e010";
}
#form-email:before {
	content: "e086";
}
#form-barcode:before {
	content: "e005";
}
.hide {
	display: none;
}
.show {
	display: block;
}
.inline {
	display: inline;
}
.inline-block {
	display: inline-block;
}
.disappear {
	opacity: 0;
}
.half-here {
	opacity: 0.5;
}
.appear {
	opacity: 1;
}
.abs-pos {
	position: absolute;
}
.rel-pos {
	position: relative;
}
.fix-pos {
	position: fixed;
}
.flex {
	display: flex;
}
.flex-column {
	flex-direction: column;
}
.flex-row {
	flex-direction: row;
}
.flex-wrap,
.wrap-mobile {
	flex-wrap: wrap;
}
.flex-nowrap {
	flex-wrap: nowrap;
}
.flex-align-center {
	align-items: center;
}
.flex-align-start {
	align-items: flex-start;
}
.flex-align-end {
	align-items: flex-end;
}
.flex-justify-center {
	justify-content: center;
}
.flex-justify-start {
	justify-content: flex-start;
}
.flex-justify-end {
	justify-content: flex-end;
}
.flex-justify-around,
.flex-justify-spacearound {
	justify-content: space-around;
}
.flex-justify-between,
.flex-justify-spacebetween {
	justify-content: space-between;
}
.flex-justify-even {
	justify-content: space-evenly;
}
.flex-big-column,
.flex-three,
.flex-three-column {
	flex-basis: 100%;
}
.flex-two-column {
	flex-basis: 100%;
}
@media screen and (max-width: 991px) {
	.show-mobile {
		display: block;
	}
	.mobile-hide {
		display: none;
	}
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
	.double-padding {
		padding: 2em 3em;
	}
	.flex-two-column {
		flex-basis: 50%;
	}
	.flex-three-column {
		flex-basis: 32.5%;
	}
	.flex-three {
		flex-basis: 45%;
	}
	.background-fixed {
		background-attachment: scroll;
	}
	.text-sm {
		font-size: 11px;
	}
}
@media screen and (min-width: 1100px) {
	.wrap-mobile {
		flex-wrap: nowrap;
	}
	.flex-two-column {
		flex-basis: 50%;
	}
	.flex-three {
		flex: 0 0 30%;
	}
	.flex-big-column {
		flex-basis: 60%;
	}
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.uptop {
	top: 0;
}
.downlow {
	bottom: 0;
}
.stayleft {
	left: 0;
}
.stayright {
	right: 0;
}
.way-back {
	z-index: -1;
}
.get-behind {
	z-index: 1;
}
.pull-forward {
	z-index: 2;
}
.more-forward {
	z-index: 10;
}
.ahead-of-most {
	z-index: 50;
}
.way-forward {
	z-index: 100;
}
.uppercase {
	text-transform: uppercase;
}
.capitalize {
	text-transform: capitalize;
}
.lowercase {
	text-transform: lowercase;
}
.no-transform {
	text-transform: none;
}
.ec-border-radius {
	border-radius: 8px;
}
.ec-top-border-radius {
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.ec-bottom-border-radius {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}
.ec-rounded {
	border-radius: 50px;
}
.full-radius {
	border-radius: 50%;
}
.ec-button,
.full-width {
	width: 100%;
	max-width: 100%;
}
.full-height {
	height: 100%;
}
.extra-wide {
	width: 100vw;
}
.extra-high {
	height: 100vh;
}
.ec-max-width {
	max-width: 1400px;
}
.no-overflow {
	overflow: hidden;
}
.overflowing {
	overflow: scroll;
}
.center-content,
.content-center {
	margin: 0 auto;
}
.background-cover {
	background-size: cover;
}
.background-center {
	background-position: center center;
}
.background-fixed {
	background-attachment: scroll;
}
.background-norepeat {
	background-repeat: no-repeat;
}
.abs-center,
.absolute-center {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.ec-box-shadow {
	box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
}
.no-list-style {
	list-style-type: none;
}
.no-border {
	border: 0;
}
.norm-font-size,
.norm-font-size p {
	font-size: 17px;
}
.btn-txt,
.btn-txt p,
.dkpdf-button,
.single-curriculum li {
	font-size: 16px;
}
.font-size-15 {
	font-size: 15px;
}
.font-size-14 p {
	font-size: 14px;
}
#section3.special-font p,
#section4 p,
.faq-page #heading-1 p,
.faq-page #heading-2 p,
.faq-page #heading-3 p,
.faq-page #heading-4 p,
.faq-page #heading-5 p,
.small-link {
	font-size: 14px !important;
}
.sm-title {
	font-size: 13px;
}
@media (min-width: 992px) {
	.sm-title {
		font-size: 16px;
	}
}
.smaller {
	font-size: 10px;
}
@media (min-width: 992px) {
	.smaller {
		font-size: 12px;
	}
}
a:hover {
	color: initial;
	text-decoration: none;
}
.bold {
	font-weight: 700;
}
.extra-bold {
	font-weight: 900;
}
.mont-bold {
	font-weight: 600;
}
.dkpdf-button,
.dkpdf-button p,
.regular,
.regular p {
	font-weight: 400;
}
.lighter {
	font-weight: 300;
}
#menu-top-nav .menu-item a,
.let-sp-reg {
	letter-spacing: 0.5px;
}
.let-sp-sgl {
	letter-spacing: 1.5px;
}
.let-sp-dbl {
	letter-spacing: 0.25rem;
}
.ln-height-reset {
	line-height: 1;
}
.sgl-ln-height,
.sgl-ln-height p {
	line-height: 1.5;
}
.dbl-ln-height {
	line-height: 1.7;
}
.icon-2xl {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 1rem;
}
.icon-2xl.small-card-arrow-push {
	right: 2rem;
}
.scrolling {
	overflow: scroll;
}
.box {
	height: 3rem;
	width: 3rem;
}
.small-box {
	height: 4.6875rem;
	width: 4.6875rem;
}
.large-box {
	height: 21.875rem;
	width: 21.875rem;
}
.ghost {
	visibility: hidden;
}
.col-gutter-lr {
	padding: 0;
}
.col-no-gutter {
	padding: 0;
}
.show {
	display: block !important;
}
.row.show {
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
}
.hide {
	display: none !important;
}
.show-xs {
	display: block !important;
}
.row.show-xs {
	display: -webkit-flex !important;
	display: -ms-flexbox !important;
	display: flex !important;
}
.hide-xs {
	display: none !important;
}
@media only screen and (max-width: 40rem) {
	.show-xs-only {
		display: block !important;
	}
	.row.show-xs-only {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.hide-xs-only {
		display: none !important;
	}
}
@media only screen and (min-width: 41rem) {
	.show-sm {
		display: block !important;
	}
	.row.show-sm {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.hide-sm {
		display: none !important;
	}
}
@media only screen and (min-width: 41rem) and (max-width: 64rem) {
	.show-sm-only {
		display: block !important;
	}
	.row.show-sm-only {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.hide-sm-only {
		display: none !important;
	}
}
@media only screen and (min-width: 65rem) {
	.show-md {
		display: block !important;
	}
	.row.show-md {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.hide-md {
		display: none !important;
	}
}
@media only screen and (min-width: 65rem) and (max-width: 90rem) {
	.show-md-only {
		display: block !important;
	}
	.row.show-md-only {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.hide-md-only {
		display: none !important;
	}
}
@media only screen and (min-width: 91rem) {
	.show-lg {
		display: block !important;
	}
	.row.show-lg {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.hide-lg {
		display: none !important;
	}
}
@media only screen and (min-width: 91rem) and (max-width: 120rem) {
	.show-lg-only {
		display: block !important;
	}
	.row.show-lg-only {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.hide-lg-only {
		display: none !important;
	}
}
@media only screen and (min-width: 121rem) {
	.show-xl {
		display: block !important;
	}
	.row.show-xl {
		display: -webkit-flex !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.hide-xl {
		display: none !important;
	}
}
@-webkit-keyframes slide-in-elliptic-top-bck {
	0% {
		-webkit-transform: translateY(-600px) rotateX(30deg) scale(6.5);
		transform: translateY(-600px) rotateX(30deg) scale(6.5);
		-webkit-transform-origin: 50% 200%;
		transform-origin: 50% 200%;
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0) rotateX(0) scale(1);
		transform: translateY(0) rotateX(0) scale(1);
		-webkit-transform-origin: 50% -500px;
		transform-origin: 50% -500px;
		opacity: 1;
	}
}
@keyframes slide-in-elliptic-top-bck {
	0% {
		-webkit-transform: translateY(-600px) rotateX(30deg) scale(6.5);
		transform: translateY(-600px) rotateX(30deg) scale(6.5);
		-webkit-transform-origin: 50% 200%;
		transform-origin: 50% 200%;
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0) rotateX(0) scale(1);
		transform: translateY(0) rotateX(0) scale(1);
		-webkit-transform-origin: 50% -500px;
		transform-origin: 50% -500px;
		opacity: 1;
	}
}
.slide-in-elliptic-top-bck {
	-webkit-animation: slide-in-elliptic-top-bck 0.7s
		cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
	animation: slide-in-elliptic-top-bck 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
		both;
}
@-webkit-keyframes slide-in-right {
	0% {
		-webkit-transform: translateX(1000px);
		transform: translateX(1000px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}
}
@keyframes slide-in-right {
	0% {
		-webkit-transform: translateX(1000px);
		transform: translateX(1000px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		opacity: 1;
	}
}
.slide-in-right {
	-webkit-animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
		both;
	animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes slide-in-tr {
	0% {
		-webkit-transform: translateY(-1000px) translateX(1000px);
		transform: translateY(-1000px) translateX(1000px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0) translateX(0);
		transform: translateY(0) translateX(0);
		opacity: 1;
	}
}
@keyframes slide-in-tr {
	0% {
		-webkit-transform: translateY(-1000px) translateX(1000px);
		transform: translateY(-1000px) translateX(1000px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0) translateX(0);
		transform: translateY(0) translateX(0);
		opacity: 1;
	}
}
.slide-in-tr {
	-webkit-animation: slide-in-tr 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
	animation: slide-in-tr 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.slide-in-right-delay {
	-webkit-animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
		500ms both;
	animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 500ms both;
}
@-webkit-keyframes scale-up-hor-right {
	0% {
		-webkit-transform: scaleX(0.4);
		transform: scaleX(0.4);
		-webkit-transform-origin: 100% 100%;
		transform-origin: 100% 100%;
	}
	100% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
		-webkit-transform-origin: 100% 100%;
		transform-origin: 100% 100%;
	}
}
@keyframes scale-up-hor-right {
	0% {
		-webkit-transform: scaleX(0.4);
		transform: scaleX(0.4);
		-webkit-transform-origin: 100% 100%;
		transform-origin: 100% 100%;
	}
	100% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
		-webkit-transform-origin: 100% 100%;
		transform-origin: 100% 100%;
	}
}
.scale-up-hor-right {
	-webkit-animation: scale-up-hor-right 0.4s cubic-bezier(0.39, 0.575, 0.565, 1)
		both;
	animation: scale-up-hor-right 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@keyframes slide-in-blurred-right {
	0% {
		-webkit-transform: translateX(1000px);
		transform: translateX(1000px);
		-webkit-transform-origin: 0% 50%;
		transform-origin: 0% 50%;
		-webkit-filter: blur(40px);
		filter: blur(40px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
		-webkit-filter: blur(0);
		filter: blur(0);
		opacity: 1;
	}
}
.slide-in-blurred-right {
	-webkit-animation: slide-in-blurred-right 0.5s cubic-bezier(0.23, 1, 0.32, 1)
		both;
	animation: slide-in-blurred-right 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}
@keyframes slide-out-blurred-right {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
		-webkit-filter: blur(0);
		filter: blur(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(1000px);
		transform: translateX(1000px);
		-webkit-transform-origin: 0% 50%;
		transform-origin: 0% 50%;
		-webkit-filter: blur(40px);
		filter: blur(40px);
		opacity: 0;
	}
}
.slide-out-blurred-right {
	-webkit-animation: slide-out-blurred-right 0.45s
		cubic-bezier(0.755, 0.05, 0.855, 0.06) both;
	animation: slide-out-blurred-right 0.45s
		cubic-bezier(0.755, 0.05, 0.855, 0.06) both;
}
@-webkit-keyframes slide-in-blurred-top {
	0% {
		-webkit-transform: translateY(-1000px);
		transform: translateY(-1000px);
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
		-webkit-filter: blur(40px);
		filter: blur(40px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
		-webkit-filter: blur(0);
		filter: blur(0);
		opacity: 1;
	}
}
@keyframes slide-in-blurred-top {
	0% {
		-webkit-transform: translateY(-1000px);
		transform: translateY(-1000px);
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
		-webkit-filter: blur(40px);
		filter: blur(40px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
		-webkit-filter: blur(0);
		filter: blur(0);
		opacity: 1;
	}
}
.slide-in-blurred-top {
	-webkit-animation: slide-in-blurred-top 0.5s cubic-bezier(0.23, 1, 0.32, 1)
		both;
	animation: slide-in-blurred-top 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}
@-webkit-keyframes slide-out-blurred-top {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
		-webkit-filter: blur(0);
		filter: blur(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(-1000px);
		transform: translateY(-1000px);
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
		-webkit-filter: blur(40px);
		filter: blur(40px);
		opacity: 0;
	}
}
@keyframes slide-out-blurred-top {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
		-webkit-filter: blur(0);
		filter: blur(0);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateY(-1000px);
		transform: translateY(-1000px);
		-webkit-transform-origin: 50% 0%;
		transform-origin: 50% 0%;
		-webkit-filter: blur(40px);
		filter: blur(40px);
		opacity: 0;
	}
}
.slide-out-blurred-top {
	-webkit-animation: slide-out-blurred-top 0.45s
		cubic-bezier(0.755, 0.05, 0.855, 0.06) both;
	animation: slide-out-blurred-top 0.45s cubic-bezier(0.755, 0.05, 0.855, 0.06)
		both;
}
.m-spacer-none {
	margin: 0;
}
@media (min-width: 768px) {
	.m-spacer-none {
		margin: 0;
	}
}
.m-t-spacer-none {
	margin-top: 0;
}
@media (min-width: 768px) {
	.m-t-spacer-none {
		margin-top: 0;
	}
}
.m-b-spacer-none {
	margin-bottom: 0;
}
@media (min-width: 768px) {
	.m-b-spacer-none {
		margin-bottom: 0;
	}
}
.m-l-spacer-none {
	margin-left: 0;
}
@media (min-width: 768px) {
	.m-l-spacer-none {
		margin-left: 0;
	}
}
.m-r-spacer-none {
	margin-right: 0;
}
@media (min-width: 768px) {
	.m-r-spacer-none {
		margin-right: 0;
	}
}
.m-x-spacer-none {
	margin-right: 0;
	margin-left: 0;
}
@media (min-width: 768px) {
	.m-x-spacer-none {
		margin-right: 0;
		margin-left: 0;
	}
}
.m-y-spacer-none {
	margin-top: 0;
	margin-bottom: 0;
}
@media (min-width: 768px) {
	.m-y-spacer-none {
		margin-top: 0;
		margin-bottom: 0;
	}
}
.m-spacer-2xs {
	margin: 0.7ex;
}
@media (min-width: 768px) {
	.m-spacer-2xs {
		margin: 1ex;
	}
}
.m-t-spacer-2xs {
	margin-top: 0.7ex;
}
@media (min-width: 768px) {
	.m-t-spacer-2xs {
		margin-top: 1ex;
	}
}
.m-b-spacer-2xs {
	margin-bottom: 0.7ex;
}
@media (min-width: 768px) {
	.m-b-spacer-2xs {
		margin-bottom: 1ex;
	}
}
.m-l-spacer-2xs {
	margin-left: 0.7ex;
}
@media (min-width: 768px) {
	.m-l-spacer-2xs {
		margin-left: 1ex;
	}
}
.m-r-spacer-2xs {
	margin-right: 0.7ex;
}
@media (min-width: 768px) {
	.m-r-spacer-2xs {
		margin-right: 1ex;
	}
}
.m-x-spacer-2xs {
	margin-right: 0.7ex;
	margin-left: 0.7ex;
}
@media (min-width: 768px) {
	.m-x-spacer-2xs {
		margin-right: 1ex;
		margin-left: 1ex;
	}
}
.m-y-spacer-2xs {
	margin-top: 0.7ex;
	margin-bottom: 0.7ex;
}
@media (min-width: 768px) {
	.m-y-spacer-2xs {
		margin-top: 1ex;
		margin-bottom: 1ex;
	}
}
.m-spacer-xs {
	margin: 0.63ex;
}
@media (min-width: 768px) {
	.m-spacer-xs {
		margin: 0.9ex;
	}
}
.m-t-spacer-xs {
	margin-top: 0.63ex;
}
@media (min-width: 768px) {
	.m-t-spacer-xs {
		margin-top: 0.9ex;
	}
}
.m-b-spacer-xs {
	margin-bottom: 0.63ex;
}
@media (min-width: 768px) {
	.m-b-spacer-xs {
		margin-bottom: 0.9ex;
	}
}
.m-l-spacer-xs {
	margin-left: 0.63ex;
}
@media (min-width: 768px) {
	.m-l-spacer-xs {
		margin-left: 0.9ex;
	}
}
.m-r-spacer-xs {
	margin-right: 0.63ex;
}
@media (min-width: 768px) {
	.m-r-spacer-xs {
		margin-right: 0.9ex;
	}
}
.m-x-spacer-xs {
	margin-right: 0.63ex;
	margin-left: 0.63ex;
}
@media (min-width: 768px) {
	.m-x-spacer-xs {
		margin-right: 0.9ex;
		margin-left: 0.9ex;
	}
}
.m-y-spacer-xs {
	margin-top: 0.63ex;
	margin-bottom: 0.63ex;
}
@media (min-width: 768px) {
	.m-y-spacer-xs {
		margin-top: 0.9ex;
		margin-bottom: 0.9ex;
	}
}
.m-spacer-sm {
	margin: 0.7ex;
}
@media (min-width: 768px) {
	.m-spacer-sm {
		margin: 1ex;
	}
}
.m-t-spacer-sm {
	margin-top: 0.7ex;
}
@media (min-width: 768px) {
	.m-t-spacer-sm {
		margin-top: 1ex;
	}
}
.m-b-spacer-sm {
	margin-bottom: 0.7ex;
}
@media (min-width: 768px) {
	.m-b-spacer-sm {
		margin-bottom: 1ex;
	}
}
.m-l-spacer-sm {
	margin-left: 0.7ex;
}
@media (min-width: 768px) {
	.m-l-spacer-sm {
		margin-left: 1ex;
	}
}
.m-r-spacer-sm {
	margin-right: 0.7ex;
}
@media (min-width: 768px) {
	.m-r-spacer-sm {
		margin-right: 1ex;
	}
}
.m-x-spacer-sm {
	margin-right: 0.7ex;
	margin-left: 0.7ex;
}
@media (min-width: 768px) {
	.m-x-spacer-sm {
		margin-right: 1ex;
		margin-left: 1ex;
	}
}
.m-y-spacer-sm {
	margin-top: 0.7ex;
	margin-bottom: 0.7ex;
}
@media (min-width: 768px) {
	.m-y-spacer-sm {
		margin-top: 1ex;
		margin-bottom: 1ex;
	}
}
.m-spacer-md {
	margin: 1.4ex;
}
@media (min-width: 768px) {
	.m-spacer-md {
		margin: 2ex;
	}
}
.m-t-spacer-md {
	margin-top: 1.4ex;
}
@media (min-width: 768px) {
	.m-t-spacer-md {
		margin-top: 2ex;
	}
}
.m-b-spacer-md {
	margin-bottom: 1.4ex;
}
@media (min-width: 768px) {
	.m-b-spacer-md {
		margin-bottom: 2ex;
	}
}
.m-l-spacer-md {
	margin-left: 1.4ex;
}
@media (min-width: 768px) {
	.m-l-spacer-md {
		margin-left: 2ex;
	}
}
.m-r-spacer-md {
	margin-right: 1.4ex;
}
@media (min-width: 768px) {
	.m-r-spacer-md {
		margin-right: 2ex;
	}
}
.m-x-spacer-md {
	margin-right: 1.4ex;
	margin-left: 1.4ex;
}
@media (min-width: 768px) {
	.m-x-spacer-md {
		margin-right: 2ex;
		margin-left: 2ex;
	}
}
.m-y-spacer-md {
	margin-top: 1.4ex;
	margin-bottom: 1.4ex;
}
@media (min-width: 768px) {
	.m-y-spacer-md {
		margin-top: 2ex;
		margin-bottom: 2ex;
	}
}
.m-spacer-lg {
	margin: 2.1ex;
}
@media (min-width: 768px) {
	.m-spacer-lg {
		margin: 3ex;
	}
}
.m-t-spacer-lg {
	margin-top: 2.1ex;
}
@media (min-width: 768px) {
	.m-t-spacer-lg {
		margin-top: 3ex;
	}
}
.m-b-spacer-lg {
	margin-bottom: 2.1ex;
}
@media (min-width: 768px) {
	.m-b-spacer-lg {
		margin-bottom: 3ex;
	}
}
.m-l-spacer-lg {
	margin-left: 2.1ex;
}
@media (min-width: 768px) {
	.m-l-spacer-lg {
		margin-left: 3ex;
	}
}
.m-r-spacer-lg {
	margin-right: 2.1ex;
}
@media (min-width: 768px) {
	.m-r-spacer-lg {
		margin-right: 3ex;
	}
}
.m-x-spacer-lg {
	margin-right: 2.1ex;
	margin-left: 2.1ex;
}
@media (min-width: 768px) {
	.m-x-spacer-lg {
		margin-right: 3ex;
		margin-left: 3ex;
	}
}
.m-y-spacer-lg {
	margin-top: 2.1ex;
	margin-bottom: 2.1ex;
}
@media (min-width: 768px) {
	.m-y-spacer-lg {
		margin-top: 3ex;
		margin-bottom: 3ex;
	}
}
.m-spacer-xl {
	margin: 2.8ex;
}
@media (min-width: 768px) {
	.m-spacer-xl {
		margin: 4ex;
	}
}
.m-t-spacer-xl {
	margin-top: 2.8ex;
}
@media (min-width: 768px) {
	.m-t-spacer-xl {
		margin-top: 4ex;
	}
}
.m-b-spacer-xl {
	margin-bottom: 2.8ex;
}
@media (min-width: 768px) {
	.m-b-spacer-xl {
		margin-bottom: 4ex;
	}
}
.m-l-spacer-xl {
	margin-left: 2.8ex;
}
@media (min-width: 768px) {
	.m-l-spacer-xl {
		margin-left: 4ex;
	}
}
.m-r-spacer-xl {
	margin-right: 2.8ex;
}
@media (min-width: 768px) {
	.m-r-spacer-xl {
		margin-right: 4ex;
	}
}
.m-x-spacer-xl {
	margin-right: 2.8ex;
	margin-left: 2.8ex;
}
@media (min-width: 768px) {
	.m-x-spacer-xl {
		margin-right: 4ex;
		margin-left: 4ex;
	}
}
.m-y-spacer-xl {
	margin-top: 2.8ex;
	margin-bottom: 2.8ex;
}
@media (min-width: 768px) {
	.m-y-spacer-xl {
		margin-top: 4ex;
		margin-bottom: 4ex;
	}
}
.m-spacer-2xl {
	margin: 4.2ex;
}
@media (min-width: 768px) {
	.m-spacer-2xl {
		margin: 6ex;
	}
}
.m-t-spacer-2xl {
	margin-top: 4.2ex;
}
@media (min-width: 768px) {
	.m-t-spacer-2xl {
		margin-top: 6ex;
	}
}
.m-b-spacer-2xl {
	margin-bottom: 4.2ex;
}
@media (min-width: 768px) {
	.m-b-spacer-2xl {
		margin-bottom: 6ex;
	}
}
.m-l-spacer-2xl {
	margin-left: 4.2ex;
}
@media (min-width: 768px) {
	.m-l-spacer-2xl {
		margin-left: 6ex;
	}
}
.m-r-spacer-2xl {
	margin-right: 4.2ex;
}
@media (min-width: 768px) {
	.m-r-spacer-2xl {
		margin-right: 6ex;
	}
}
.m-x-spacer-2xl {
	margin-right: 4.2ex;
	margin-left: 4.2ex;
}
@media (min-width: 768px) {
	.m-x-spacer-2xl {
		margin-right: 6ex;
		margin-left: 6ex;
	}
}
.m-y-spacer-2xl {
	margin-top: 4.2ex;
	margin-bottom: 4.2ex;
}
@media (min-width: 768px) {
	.m-y-spacer-2xl {
		margin-top: 6ex;
		margin-bottom: 6ex;
	}
}
.m-spacer-3xl {
	margin: 6.3ex;
}
@media (min-width: 768px) {
	.m-spacer-3xl {
		margin: 9ex;
	}
}
.m-t-spacer-3xl {
	margin-top: 6.3ex;
}
@media (min-width: 768px) {
	.m-t-spacer-3xl {
		margin-top: 9ex;
	}
}
.m-b-spacer-3xl {
	margin-bottom: 6.3ex;
}
@media (min-width: 768px) {
	.m-b-spacer-3xl {
		margin-bottom: 9ex;
	}
}
.m-l-spacer-3xl {
	margin-left: 6.3ex;
}
@media (min-width: 768px) {
	.m-l-spacer-3xl {
		margin-left: 9ex;
	}
}
.m-r-spacer-3xl {
	margin-right: 6.3ex;
}
@media (min-width: 768px) {
	.m-r-spacer-3xl {
		margin-right: 9ex;
	}
}
.m-x-spacer-3xl {
	margin-right: 6.3ex;
	margin-left: 6.3ex;
}
@media (min-width: 768px) {
	.m-x-spacer-3xl {
		margin-right: 9ex;
		margin-left: 9ex;
	}
}
.m-y-spacer-3xl {
	margin-top: 6.3ex;
	margin-bottom: 6.3ex;
}
@media (min-width: 768px) {
	.m-y-spacer-3xl {
		margin-top: 9ex;
		margin-bottom: 9ex;
	}
}
.m-spacer-4xl {
	margin: 9.8ex;
}
@media (min-width: 768px) {
	.m-spacer-4xl {
		margin: 14ex;
	}
}
.m-t-spacer-4xl {
	margin-top: 9.8ex;
}
@media (min-width: 768px) {
	.m-t-spacer-4xl {
		margin-top: 14ex;
	}
}
.m-b-spacer-4xl {
	margin-bottom: 9.8ex;
}
@media (min-width: 768px) {
	.m-b-spacer-4xl {
		margin-bottom: 14ex;
	}
}
.m-l-spacer-4xl {
	margin-left: 9.8ex;
}
@media (min-width: 768px) {
	.m-l-spacer-4xl {
		margin-left: 14ex;
	}
}
.m-r-spacer-4xl {
	margin-right: 9.8ex;
}
@media (min-width: 768px) {
	.m-r-spacer-4xl {
		margin-right: 14ex;
	}
}
.m-x-spacer-4xl {
	margin-right: 9.8ex;
	margin-left: 9.8ex;
}
@media (min-width: 768px) {
	.m-x-spacer-4xl {
		margin-right: 14ex;
		margin-left: 14ex;
	}
}
.m-y-spacer-4xl {
	margin-top: 9.8ex;
	margin-bottom: 9.8ex;
}
@media (min-width: 768px) {
	.m-y-spacer-4xl {
		margin-top: 14ex;
		margin-bottom: 14ex;
	}
}
@media (max-width: 767px) {
	.mob-m-spacer-none {
		margin: 0;
	}
}
@media (max-width: 767px) {
	.mob-m-t-spacer-none {
		margin-top: 0;
	}
}
@media (max-width: 767px) {
	.mob-m-b-spacer-none {
		margin-bottom: 0;
	}
}
@media (max-width: 767px) {
	.mob-m-l-spacer-none {
		margin-left: 0;
	}
}
@media (max-width: 767px) {
	.mob-m-r-spacer-none {
		margin-right: 0;
	}
}
@media (max-width: 767px) {
	.mob-m-x-spacer-none {
		margin-right: 0;
		margin-left: 0;
	}
}
@media (max-width: 767px) {
	.mob-m-y-spacer-none {
		margin-top: 0;
		margin-bottom: 0;
	}
}
@media (max-width: 767px) {
	.mob-m-spacer-2xs {
		margin: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-m-t-spacer-2xs {
		margin-top: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-m-b-spacer-2xs {
		margin-bottom: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-m-l-spacer-2xs {
		margin-left: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-m-r-spacer-2xs {
		margin-right: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-m-x-spacer-2xs {
		margin-right: 1ex;
		margin-left: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-m-y-spacer-2xs {
		margin-top: 1ex;
		margin-bottom: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-m-spacer-xs {
		margin: 0.9ex;
	}
}
@media (max-width: 767px) {
	.mob-m-t-spacer-xs {
		margin-top: 0.9ex;
	}
}
@media (max-width: 767px) {
	.mob-m-b-spacer-xs {
		margin-bottom: 0.9ex;
	}
}
@media (max-width: 767px) {
	.mob-m-l-spacer-xs {
		margin-left: 0.9ex;
	}
}
@media (max-width: 767px) {
	.mob-m-r-spacer-xs {
		margin-right: 0.9ex;
	}
}
@media (max-width: 767px) {
	.mob-m-x-spacer-xs {
		margin-right: 0.9ex;
		margin-left: 0.9ex;
	}
}
@media (max-width: 767px) {
	.mob-m-y-spacer-xs {
		margin-top: 0.9ex;
		margin-bottom: 0.9ex;
	}
}
@media (max-width: 767px) {
	.mob-m-spacer-sm {
		margin: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-m-t-spacer-sm {
		margin-top: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-m-b-spacer-sm {
		margin-bottom: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-m-l-spacer-sm {
		margin-left: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-m-r-spacer-sm {
		margin-right: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-m-x-spacer-sm {
		margin-right: 1ex;
		margin-left: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-m-y-spacer-sm {
		margin-top: 1ex;
		margin-bottom: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-m-spacer-md {
		margin: 2ex;
	}
}
@media (max-width: 767px) {
	.mob-m-t-spacer-md {
		margin-top: 2ex;
	}
}
@media (max-width: 767px) {
	.mob-m-b-spacer-md {
		margin-bottom: 2ex;
	}
}
@media (max-width: 767px) {
	.mob-m-l-spacer-md {
		margin-left: 2ex;
	}
}
@media (max-width: 767px) {
	.mob-m-r-spacer-md {
		margin-right: 2ex;
	}
}
@media (max-width: 767px) {
	.mob-m-x-spacer-md {
		margin-right: 2ex;
		margin-left: 2ex;
	}
}
@media (max-width: 767px) {
	.mob-m-y-spacer-md {
		margin-top: 2ex;
		margin-bottom: 2ex;
	}
}
@media (max-width: 767px) {
	.mob-m-spacer-lg {
		margin: 3ex;
	}
}
@media (max-width: 767px) {
	.mob-m-t-spacer-lg {
		margin-top: 3ex;
	}
}
@media (max-width: 767px) {
	.mob-m-b-spacer-lg {
		margin-bottom: 3ex;
	}
}
@media (max-width: 767px) {
	.mob-m-l-spacer-lg {
		margin-left: 3ex;
	}
}
@media (max-width: 767px) {
	.mob-m-r-spacer-lg {
		margin-right: 3ex;
	}
}
@media (max-width: 767px) {
	.mob-m-x-spacer-lg {
		margin-right: 3ex;
		margin-left: 3ex;
	}
}
@media (max-width: 767px) {
	.mob-m-y-spacer-lg {
		margin-top: 3ex;
		margin-bottom: 3ex;
	}
}
@media (max-width: 767px) {
	.mob-m-spacer-xl {
		margin: 4ex;
	}
}
@media (max-width: 767px) {
	.mob-m-t-spacer-xl {
		margin-top: 4ex;
	}
}
@media (max-width: 767px) {
	.mob-m-b-spacer-xl {
		margin-bottom: 4ex;
	}
}
@media (max-width: 767px) {
	.mob-m-l-spacer-xl {
		margin-left: 4ex;
	}
}
@media (max-width: 767px) {
	.mob-m-r-spacer-xl {
		margin-right: 4ex;
	}
}
@media (max-width: 767px) {
	.mob-m-x-spacer-xl {
		margin-right: 4ex;
		margin-left: 4ex;
	}
}
@media (max-width: 767px) {
	.mob-m-y-spacer-xl {
		margin-top: 4ex;
		margin-bottom: 4ex;
	}
}
@media (max-width: 767px) {
	.mob-m-spacer-2xl {
		margin: 6ex;
	}
}
@media (max-width: 767px) {
	.mob-m-t-spacer-2xl {
		margin-top: 6ex;
	}
}
@media (max-width: 767px) {
	.mob-m-b-spacer-2xl {
		margin-bottom: 6ex;
	}
}
@media (max-width: 767px) {
	.mob-m-l-spacer-2xl {
		margin-left: 6ex;
	}
}
@media (max-width: 767px) {
	.mob-m-r-spacer-2xl {
		margin-right: 6ex;
	}
}
@media (max-width: 767px) {
	.mob-m-x-spacer-2xl {
		margin-right: 6ex;
		margin-left: 6ex;
	}
}
@media (max-width: 767px) {
	.mob-m-y-spacer-2xl {
		margin-top: 6ex;
		margin-bottom: 6ex;
	}
}
@media (max-width: 767px) {
	.mob-m-spacer-3xl {
		margin: 9ex;
	}
}
@media (max-width: 767px) {
	.mob-m-t-spacer-3xl {
		margin-top: 9ex;
	}
}
@media (max-width: 767px) {
	.mob-m-b-spacer-3xl {
		margin-bottom: 9ex;
	}
}
@media (max-width: 767px) {
	.mob-m-l-spacer-3xl {
		margin-left: 9ex;
	}
}
@media (max-width: 767px) {
	.mob-m-r-spacer-3xl {
		margin-right: 9ex;
	}
}
@media (max-width: 767px) {
	.mob-m-x-spacer-3xl {
		margin-right: 9ex;
		margin-left: 9ex;
	}
}
@media (max-width: 767px) {
	.mob-m-y-spacer-3xl {
		margin-top: 9ex;
		margin-bottom: 9ex;
	}
}
@media (max-width: 767px) {
	.mob-m-spacer-4xl {
		margin: 14ex;
	}
}
@media (max-width: 767px) {
	.mob-m-t-spacer-4xl {
		margin-top: 14ex;
	}
}
@media (max-width: 767px) {
	.mob-m-b-spacer-4xl {
		margin-bottom: 14ex;
	}
}
@media (max-width: 767px) {
	.mob-m-l-spacer-4xl {
		margin-left: 14ex;
	}
}
@media (max-width: 767px) {
	.mob-m-r-spacer-4xl {
		margin-right: 14ex;
	}
}
@media (max-width: 767px) {
	.mob-m-x-spacer-4xl {
		margin-right: 14ex;
		margin-left: 14ex;
	}
}
@media (max-width: 767px) {
	.mob-m-y-spacer-4xl {
		margin-top: 14ex;
		margin-bottom: 14ex;
	}
}
.p-spacer-none {
	padding: 0;
}
@media (min-width: 768px) {
	.p-spacer-none {
		padding: 0;
	}
}
.p-t-spacer-none {
	padding-top: 0;
}
@media (min-width: 768px) {
	.p-t-spacer-none {
		padding-top: 0;
	}
}
.p-b-spacer-none {
	padding-bottom: 0;
}
@media (min-width: 768px) {
	.p-b-spacer-none {
		padding-bottom: 0;
	}
}
.p-l-spacer-none {
	padding-left: 0;
}
@media (min-width: 768px) {
	.p-l-spacer-none {
		padding-left: 0;
	}
}
.p-r-spacer-none {
	padding-right: 0;
}
@media (min-width: 768px) {
	.p-r-spacer-none {
		padding-right: 0;
	}
}
.p-x-spacer-none {
	padding-right: 0;
	padding-left: 0;
}
@media (min-width: 768px) {
	.p-x-spacer-none {
		padding-right: 0;
		padding-left: 0;
	}
}
.p-y-spacer-none {
	padding-top: 0;
	padding-bottom: 0;
}
@media (min-width: 768px) {
	.p-y-spacer-none {
		padding-top: 0;
		padding-bottom: 0;
	}
}
.p-spacer-2xs {
	padding: 0.7ex;
}
@media (min-width: 768px) {
	.p-spacer-2xs {
		padding: 0.7ex;
	}
}
.p-t-spacer-2xs {
	padding-top: 0.7ex;
}
@media (min-width: 768px) {
	.p-t-spacer-2xs {
		padding-top: 0.7ex;
	}
}
.p-b-spacer-2xs {
	padding-bottom: 0.7ex;
}
@media (min-width: 768px) {
	.p-b-spacer-2xs {
		padding-bottom: 0.7ex;
	}
}
.p-l-spacer-2xs {
	padding-left: 0.7ex;
}
@media (min-width: 768px) {
	.p-l-spacer-2xs {
		padding-left: 0.7ex;
	}
}
.p-r-spacer-2xs {
	padding-right: 0.7ex;
}
@media (min-width: 768px) {
	.p-r-spacer-2xs {
		padding-right: 0.7ex;
	}
}
.p-x-spacer-2xs {
	padding-right: 0.7ex;
	padding-left: 0.7ex;
}
@media (min-width: 768px) {
	.p-x-spacer-2xs {
		padding-right: 0.7ex;
		padding-left: 0.7ex;
	}
}
.p-y-spacer-2xs {
	padding-top: 0.7ex;
	padding-bottom: 0.7ex;
}
@media (min-width: 768px) {
	.p-y-spacer-2xs {
		padding-top: 0.7ex;
		padding-bottom: 0.7ex;
	}
}
.p-spacer-xs {
	padding: 0.63ex;
}
@media (min-width: 768px) {
	.p-spacer-xs {
		padding: 0.63ex;
	}
}
.p-t-spacer-xs {
	padding-top: 0.63ex;
}
@media (min-width: 768px) {
	.p-t-spacer-xs {
		padding-top: 0.63ex;
	}
}
.p-b-spacer-xs {
	padding-bottom: 0.63ex;
}
@media (min-width: 768px) {
	.p-b-spacer-xs {
		padding-bottom: 0.63ex;
	}
}
.p-l-spacer-xs {
	padding-left: 0.63ex;
}
@media (min-width: 768px) {
	.p-l-spacer-xs {
		padding-left: 0.63ex;
	}
}
.p-r-spacer-xs {
	padding-right: 0.63ex;
}
@media (min-width: 768px) {
	.p-r-spacer-xs {
		padding-right: 0.63ex;
	}
}
.p-x-spacer-xs {
	padding-right: 0.63ex;
	padding-left: 0.63ex;
}
@media (min-width: 768px) {
	.p-x-spacer-xs {
		padding-right: 0.63ex;
		padding-left: 0.63ex;
	}
}
.p-y-spacer-xs {
	padding-top: 0.63ex;
	padding-bottom: 0.63ex;
}
@media (min-width: 768px) {
	.p-y-spacer-xs {
		padding-top: 0.63ex;
		padding-bottom: 0.63ex;
	}
}
.p-spacer-sm {
	padding: 0.7ex;
}
@media (min-width: 768px) {
	.p-spacer-sm {
		padding: 0.7ex;
	}
}
.p-t-spacer-sm {
	padding-top: 0.7ex;
}
@media (min-width: 768px) {
	.p-t-spacer-sm {
		padding-top: 0.7ex;
	}
}
.p-b-spacer-sm {
	padding-bottom: 0.7ex;
}
@media (min-width: 768px) {
	.p-b-spacer-sm {
		padding-bottom: 0.7ex;
	}
}
.p-l-spacer-sm {
	padding-left: 0.7ex;
}
@media (min-width: 768px) {
	.p-l-spacer-sm {
		padding-left: 0.7ex;
	}
}
.p-r-spacer-sm {
	padding-right: 0.7ex;
}
@media (min-width: 768px) {
	.p-r-spacer-sm {
		padding-right: 0.7ex;
	}
}
.p-x-spacer-sm {
	padding-right: 0.7ex;
	padding-left: 0.7ex;
}
@media (min-width: 768px) {
	.p-x-spacer-sm {
		padding-right: 0.7ex;
		padding-left: 0.7ex;
	}
}
.p-y-spacer-sm {
	padding-top: 0.7ex;
	padding-bottom: 0.7ex;
}
@media (min-width: 768px) {
	.p-y-spacer-sm {
		padding-top: 0.7ex;
		padding-bottom: 0.7ex;
	}
}
.p-spacer-md {
	padding: 1.4ex;
}
@media (min-width: 768px) {
	.p-spacer-md {
		padding: 1.4ex;
	}
}
.p-t-spacer-md {
	padding-top: 1.4ex;
}
@media (min-width: 768px) {
	.p-t-spacer-md {
		padding-top: 1.4ex;
	}
}
.p-b-spacer-md {
	padding-bottom: 1.4ex;
}
@media (min-width: 768px) {
	.p-b-spacer-md {
		padding-bottom: 1.4ex;
	}
}
.p-l-spacer-md {
	padding-left: 1.4ex;
}
@media (min-width: 768px) {
	.p-l-spacer-md {
		padding-left: 1.4ex;
	}
}
.p-r-spacer-md {
	padding-right: 1.4ex;
}
@media (min-width: 768px) {
	.p-r-spacer-md {
		padding-right: 1.4ex;
	}
}
.p-x-spacer-md {
	padding-right: 1.4ex;
	padding-left: 1.4ex;
}
@media (min-width: 768px) {
	.p-x-spacer-md {
		padding-right: 1.4ex;
		padding-left: 1.4ex;
	}
}
.p-y-spacer-md {
	padding-top: 1.4ex;
	padding-bottom: 1.4ex;
}
@media (min-width: 768px) {
	.p-y-spacer-md {
		padding-top: 1.4ex;
		padding-bottom: 1.4ex;
	}
}
.p-spacer-lg {
	padding: 2.1ex;
}
@media (min-width: 768px) {
	.p-spacer-lg {
		padding: 2.1ex;
	}
}
.p-t-spacer-lg {
	padding-top: 2.1ex;
}
@media (min-width: 768px) {
	.p-t-spacer-lg {
		padding-top: 2.1ex;
	}
}
.p-b-spacer-lg {
	padding-bottom: 2.1ex;
}
@media (min-width: 768px) {
	.p-b-spacer-lg {
		padding-bottom: 2.1ex;
	}
}
.p-l-spacer-lg {
	padding-left: 2.1ex;
}
@media (min-width: 768px) {
	.p-l-spacer-lg {
		padding-left: 2.1ex;
	}
}
.p-r-spacer-lg {
	padding-right: 2.1ex;
}
@media (min-width: 768px) {
	.p-r-spacer-lg {
		padding-right: 2.1ex;
	}
}
.p-x-spacer-lg {
	padding-right: 2.1ex;
	padding-left: 2.1ex;
}
@media (min-width: 768px) {
	.p-x-spacer-lg {
		padding-right: 2.1ex;
		padding-left: 2.1ex;
	}
}
.p-y-spacer-lg {
	padding-top: 2.1ex;
	padding-bottom: 2.1ex;
}
@media (min-width: 768px) {
	.p-y-spacer-lg {
		padding-top: 2.1ex;
		padding-bottom: 2.1ex;
	}
}
.p-spacer-xl {
	padding: 2.8ex;
}
@media (min-width: 768px) {
	.p-spacer-xl {
		padding: 2.8ex;
	}
}
.p-t-spacer-xl {
	padding-top: 2.8ex;
}
@media (min-width: 768px) {
	.p-t-spacer-xl {
		padding-top: 2.8ex;
	}
}
.p-b-spacer-xl {
	padding-bottom: 2.8ex;
}
@media (min-width: 768px) {
	.p-b-spacer-xl {
		padding-bottom: 2.8ex;
	}
}
.p-l-spacer-xl {
	padding-left: 2.8ex;
}
@media (min-width: 768px) {
	.p-l-spacer-xl {
		padding-left: 2.8ex;
	}
}
.p-r-spacer-xl {
	padding-right: 2.8ex;
}
@media (min-width: 768px) {
	.p-r-spacer-xl {
		padding-right: 2.8ex;
	}
}
.p-x-spacer-xl {
	padding-right: 2.8ex;
	padding-left: 2.8ex;
}
@media (min-width: 768px) {
	.p-x-spacer-xl {
		padding-right: 2.8ex;
		padding-left: 2.8ex;
	}
}
.p-y-spacer-xl {
	padding-top: 2.8ex;
	padding-bottom: 2.8ex;
}
@media (min-width: 768px) {
	.p-y-spacer-xl {
		padding-top: 2.8ex;
		padding-bottom: 2.8ex;
	}
}
.p-spacer-2xl {
	padding: 4.2ex;
}
@media (min-width: 768px) {
	.p-spacer-2xl {
		padding: 4.2ex;
	}
}
.p-t-spacer-2xl {
	padding-top: 4.2ex;
}
@media (min-width: 768px) {
	.p-t-spacer-2xl {
		padding-top: 4.2ex;
	}
}
.p-b-spacer-2xl {
	padding-bottom: 4.2ex;
}
@media (min-width: 768px) {
	.p-b-spacer-2xl {
		padding-bottom: 4.2ex;
	}
}
.p-l-spacer-2xl {
	padding-left: 4.2ex;
}
@media (min-width: 768px) {
	.p-l-spacer-2xl {
		padding-left: 4.2ex;
	}
}
.p-r-spacer-2xl {
	padding-right: 4.2ex;
}
@media (min-width: 768px) {
	.p-r-spacer-2xl {
		padding-right: 4.2ex;
	}
}
.p-x-spacer-2xl {
	padding-right: 4.2ex;
	padding-left: 4.2ex;
}
@media (min-width: 768px) {
	.p-x-spacer-2xl {
		padding-right: 4.2ex;
		padding-left: 4.2ex;
	}
}
.p-y-spacer-2xl {
	padding-top: 4.2ex;
	padding-bottom: 4.2ex;
}
@media (min-width: 768px) {
	.p-y-spacer-2xl {
		padding-top: 4.2ex;
		padding-bottom: 4.2ex;
	}
}
.p-spacer-3xl {
	padding: 6.3ex;
}
@media (min-width: 768px) {
	.p-spacer-3xl {
		padding: 6.3ex;
	}
}
.p-t-spacer-3xl {
	padding-top: 6.3ex;
}
@media (min-width: 768px) {
	.p-t-spacer-3xl {
		padding-top: 6.3ex;
	}
}
.p-b-spacer-3xl {
	padding-bottom: 6.3ex;
}
@media (min-width: 768px) {
	.p-b-spacer-3xl {
		padding-bottom: 6.3ex;
	}
}
.p-l-spacer-3xl {
	padding-left: 6.3ex;
}
@media (min-width: 768px) {
	.p-l-spacer-3xl {
		padding-left: 6.3ex;
	}
}
.p-r-spacer-3xl {
	padding-right: 6.3ex;
}
@media (min-width: 768px) {
	.p-r-spacer-3xl {
		padding-right: 6.3ex;
	}
}
.p-x-spacer-3xl {
	padding-right: 6.3ex;
	padding-left: 6.3ex;
}
@media (min-width: 768px) {
	.p-x-spacer-3xl {
		padding-right: 6.3ex;
		padding-left: 6.3ex;
	}
}
.p-y-spacer-3xl {
	padding-top: 6.3ex;
	padding-bottom: 6.3ex;
}
@media (min-width: 768px) {
	.p-y-spacer-3xl {
		padding-top: 6.3ex;
		padding-bottom: 6.3ex;
	}
}
.p-spacer-4xl {
	padding: 9.8ex;
}
@media (min-width: 768px) {
	.p-spacer-4xl {
		padding: 9.8ex;
	}
}
.p-t-spacer-4xl {
	padding-top: 9.8ex;
}
@media (min-width: 768px) {
	.p-t-spacer-4xl {
		padding-top: 9.8ex;
	}
}
.p-b-spacer-4xl {
	padding-bottom: 9.8ex;
}
@media (min-width: 768px) {
	.p-b-spacer-4xl {
		padding-bottom: 9.8ex;
	}
}
.p-l-spacer-4xl {
	padding-left: 9.8ex;
}
@media (min-width: 768px) {
	.p-l-spacer-4xl {
		padding-left: 9.8ex;
	}
}
.p-r-spacer-4xl {
	padding-right: 9.8ex;
}
@media (min-width: 768px) {
	.p-r-spacer-4xl {
		padding-right: 9.8ex;
	}
}
.p-x-spacer-4xl {
	padding-right: 9.8ex;
	padding-left: 9.8ex;
}
@media (min-width: 768px) {
	.p-x-spacer-4xl {
		padding-right: 9.8ex;
		padding-left: 9.8ex;
	}
}
.p-y-spacer-4xl {
	padding-top: 9.8ex;
	padding-bottom: 9.8ex;
}
@media (min-width: 768px) {
	.p-y-spacer-4xl {
		padding-top: 9.8ex;
		padding-bottom: 9.8ex;
	}
}
@media (max-width: 767px) {
	.mob-p-spacer-none {
		padding: 0;
	}
}
@media (max-width: 767px) {
	.mob-p-t-spacer-none {
		padding-top: 0;
	}
}
@media (max-width: 767px) {
	.mob-p-b-spacer-none {
		padding-bottom: 0;
	}
}
@media (max-width: 767px) {
	.mob-p-l-spacer-none {
		padding-left: 0;
	}
}
@media (max-width: 767px) {
	.mob-p-r-spacer-none {
		padding-right: 0;
	}
}
@media (max-width: 767px) {
	.mob-p-x-spacer-none {
		padding-right: 0;
		padding-left: 0;
	}
}
@media (max-width: 767px) {
	.mob-p-y-spacer-none {
		padding-top: 0;
		padding-bottom: 0;
	}
}
@media (max-width: 767px) {
	.mob-p-spacer-2xs {
		padding: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-p-t-spacer-2xs {
		padding-top: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-p-b-spacer-2xs {
		padding-bottom: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-p-l-spacer-2xs {
		padding-left: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-p-r-spacer-2xs {
		padding-right: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-p-x-spacer-2xs {
		padding-right: 1ex;
		padding-left: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-p-y-spacer-2xs {
		padding-top: 1ex;
		padding-bottom: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-p-spacer-xs {
		padding: 0.9ex;
	}
}
@media (max-width: 767px) {
	.mob-p-t-spacer-xs {
		padding-top: 0.9ex;
	}
}
@media (max-width: 767px) {
	.mob-p-b-spacer-xs {
		padding-bottom: 0.9ex;
	}
}
@media (max-width: 767px) {
	.mob-p-l-spacer-xs {
		padding-left: 0.9ex;
	}
}
@media (max-width: 767px) {
	.mob-p-r-spacer-xs {
		padding-right: 0.9ex;
	}
}
@media (max-width: 767px) {
	.mob-p-x-spacer-xs {
		padding-right: 0.9ex;
		padding-left: 0.9ex;
	}
}
@media (max-width: 767px) {
	.mob-p-y-spacer-xs {
		padding-top: 0.9ex;
		padding-bottom: 0.9ex;
	}
}
@media (max-width: 767px) {
	.mob-p-spacer-sm {
		padding: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-p-t-spacer-sm {
		padding-top: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-p-b-spacer-sm {
		padding-bottom: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-p-l-spacer-sm {
		padding-left: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-p-r-spacer-sm {
		padding-right: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-p-x-spacer-sm {
		padding-right: 1ex;
		padding-left: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-p-y-spacer-sm {
		padding-top: 1ex;
		padding-bottom: 1ex;
	}
}
@media (max-width: 767px) {
	.mob-p-spacer-md {
		padding: 2ex;
	}
}
@media (max-width: 767px) {
	.mob-p-t-spacer-md {
		padding-top: 2ex;
	}
}
@media (max-width: 767px) {
	.mob-p-b-spacer-md {
		padding-bottom: 2ex;
	}
}
@media (max-width: 767px) {
	.mob-p-l-spacer-md {
		padding-left: 2ex;
	}
}
@media (max-width: 767px) {
	.mob-p-r-spacer-md {
		padding-right: 2ex;
	}
}
@media (max-width: 767px) {
	.mob-p-x-spacer-md {
		padding-right: 2ex;
		padding-left: 2ex;
	}
}
@media (max-width: 767px) {
	.mob-p-y-spacer-md {
		padding-top: 2ex;
		padding-bottom: 2ex;
	}
}
@media (max-width: 767px) {
	.mob-p-spacer-lg {
		padding: 3ex;
	}
}
@media (max-width: 767px) {
	.mob-p-t-spacer-lg {
		padding-top: 3ex;
	}
}
@media (max-width: 767px) {
	.mob-p-b-spacer-lg {
		padding-bottom: 3ex;
	}
}
@media (max-width: 767px) {
	.mob-p-l-spacer-lg {
		padding-left: 3ex;
	}
}
@media (max-width: 767px) {
	.mob-p-r-spacer-lg {
		padding-right: 3ex;
	}
}
@media (max-width: 767px) {
	.mob-p-x-spacer-lg {
		padding-right: 3ex;
		padding-left: 3ex;
	}
}
@media (max-width: 767px) {
	.mob-p-y-spacer-lg {
		padding-top: 3ex;
		padding-bottom: 3ex;
	}
}
@media (max-width: 767px) {
	.mob-p-spacer-xl {
		padding: 4ex;
	}
}
@media (max-width: 767px) {
	.mob-p-t-spacer-xl {
		padding-top: 4ex;
	}
}
@media (max-width: 767px) {
	.mob-p-b-spacer-xl {
		padding-bottom: 4ex;
	}
}
@media (max-width: 767px) {
	.mob-p-l-spacer-xl {
		padding-left: 4ex;
	}
}
@media (max-width: 767px) {
	.mob-p-r-spacer-xl {
		padding-right: 4ex;
	}
}
@media (max-width: 767px) {
	.mob-p-x-spacer-xl {
		padding-right: 4ex;
		padding-left: 4ex;
	}
}
@media (max-width: 767px) {
	.mob-p-y-spacer-xl {
		padding-top: 4ex;
		padding-bottom: 4ex;
	}
}
@media (max-width: 767px) {
	.mob-p-spacer-2xl {
		padding: 6ex;
	}
}
@media (max-width: 767px) {
	.mob-p-t-spacer-2xl {
		padding-top: 6ex;
	}
}
@media (max-width: 767px) {
	.mob-p-b-spacer-2xl {
		padding-bottom: 6ex;
	}
}
@media (max-width: 767px) {
	.mob-p-l-spacer-2xl {
		padding-left: 6ex;
	}
}
@media (max-width: 767px) {
	.mob-p-r-spacer-2xl {
		padding-right: 6ex;
	}
}
@media (max-width: 767px) {
	.mob-p-x-spacer-2xl {
		padding-right: 6ex;
		padding-left: 6ex;
	}
}
@media (max-width: 767px) {
	.mob-p-y-spacer-2xl {
		padding-top: 6ex;
		padding-bottom: 6ex;
	}
}
@media (max-width: 767px) {
	.mob-p-spacer-3xl {
		padding: 9ex;
	}
}
@media (max-width: 767px) {
	.mob-p-t-spacer-3xl {
		padding-top: 9ex;
	}
}
@media (max-width: 767px) {
	.mob-p-b-spacer-3xl {
		padding-bottom: 9ex;
	}
}
@media (max-width: 767px) {
	.mob-p-l-spacer-3xl {
		padding-left: 9ex;
	}
}
@media (max-width: 767px) {
	.mob-p-r-spacer-3xl {
		padding-right: 9ex;
	}
}
@media (max-width: 767px) {
	.mob-p-x-spacer-3xl {
		padding-right: 9ex;
		padding-left: 9ex;
	}
}
@media (max-width: 767px) {
	.mob-p-y-spacer-3xl {
		padding-top: 9ex;
		padding-bottom: 9ex;
	}
}
@media (max-width: 767px) {
	.mob-p-spacer-4xl {
		padding: 14ex;
	}
}
@media (max-width: 767px) {
	.mob-p-t-spacer-4xl {
		padding-top: 14ex;
	}
}
@media (max-width: 767px) {
	.mob-p-b-spacer-4xl {
		padding-bottom: 14ex;
	}
}
@media (max-width: 767px) {
	.mob-p-l-spacer-4xl {
		padding-left: 14ex;
	}
}
@media (max-width: 767px) {
	.mob-p-r-spacer-4xl {
		padding-right: 14ex;
	}
}
@media (max-width: 767px) {
	.mob-p-x-spacer-4xl {
		padding-right: 14ex;
		padding-left: 14ex;
	}
}
@media (max-width: 767px) {
	.mob-p-y-spacer-4xl {
		padding-top: 14ex;
		padding-bottom: 14ex;
	}
}
.b-width-none {
	border: 0;
	border-style: solid;
}
.b-t-width-none {
	border-top: 0;
	border-style: solid;
}
.b-b-width-none {
	border-bottom: 0;
	border-style: solid;
}
.b-l-width-none {
	border-left: 0;
	border-style: solid;
}
.b-r-width-none {
	border-right: 0;
	border-style: solid;
}
.b-x-width-none {
	border-right: 0;
	border-left: 0;
	border-style: solid;
}
.b-y-width-none {
	border-top: 0;
	border-bottom: 0;
	border-style: solid;
}
.b-width-2xs {
	border: 1px;
	border-style: solid;
}
.b-t-width-2xs {
	border-top: 1px;
	border-style: solid;
}
.b-b-width-2xs {
	border-bottom: 1px;
	border-style: solid;
}
.b-l-width-2xs {
	border-left: 1px;
	border-style: solid;
}
.b-r-width-2xs {
	border-right: 1px;
	border-style: solid;
}
.b-x-width-2xs {
	border-right: 1px;
	border-left: 1px;
	border-style: solid;
}
.b-y-width-2xs {
	border-top: 1px;
	border-bottom: 1px;
	border-style: solid;
}
.b-width-xs {
	border: 1px;
	border-style: solid;
}
.b-t-width-xs {
	border-top: 1px;
	border-style: solid;
}
.b-b-width-xs {
	border-bottom: 1px;
	border-style: solid;
}
.b-l-width-xs {
	border-left: 1px;
	border-style: solid;
}
.b-r-width-xs {
	border-right: 1px;
	border-style: solid;
}
.b-x-width-xs {
	border-right: 1px;
	border-left: 1px;
	border-style: solid;
}
.b-y-width-xs {
	border-top: 1px;
	border-bottom: 1px;
	border-style: solid;
}
.b-width-sm {
	border: 2px;
	border-style: solid;
}
.b-t-width-sm {
	border-top: 2px;
	border-style: solid;
}
.b-b-width-sm {
	border-bottom: 2px;
	border-style: solid;
}
.b-l-width-sm {
	border-left: 2px;
	border-style: solid;
}
.b-r-width-sm {
	border-right: 2px;
	border-style: solid;
}
.b-x-width-sm {
	border-right: 2px;
	border-left: 2px;
	border-style: solid;
}
.b-y-width-sm {
	border-top: 2px;
	border-bottom: 2px;
	border-style: solid;
}
.b-width-md {
	border: 3px;
	border-style: solid;
}
.b-t-width-md {
	border-top: 3px;
	border-style: solid;
}
.b-b-width-md {
	border-bottom: 3px;
	border-style: solid;
}
.b-l-width-md {
	border-left: 3px;
	border-style: solid;
}
.b-r-width-md {
	border-right: 3px;
	border-style: solid;
}
.b-x-width-md {
	border-right: 3px;
	border-left: 3px;
	border-style: solid;
}
.b-y-width-md {
	border-top: 3px;
	border-bottom: 3px;
	border-style: solid;
}
.b-width-lg {
	border: 4px;
	border-style: solid;
}
.b-t-width-lg {
	border-top: 4px;
	border-style: solid;
}
.b-b-width-lg {
	border-bottom: 4px;
	border-style: solid;
}
.b-l-width-lg {
	border-left: 4px;
	border-style: solid;
}
.b-r-width-lg {
	border-right: 4px;
	border-style: solid;
}
.b-x-width-lg {
	border-right: 4px;
	border-left: 4px;
	border-style: solid;
}
.b-y-width-lg {
	border-top: 4px;
	border-bottom: 4px;
	border-style: solid;
}
.b-width-xl {
	border: 5px;
	border-style: solid;
}
.b-t-width-xl {
	border-top: 5px;
	border-style: solid;
}
.b-b-width-xl {
	border-bottom: 5px;
	border-style: solid;
}
.b-l-width-xl {
	border-left: 5px;
	border-style: solid;
}
.b-r-width-xl {
	border-right: 5px;
	border-style: solid;
}
.b-x-width-xl {
	border-right: 5px;
	border-left: 5px;
	border-style: solid;
}
.b-y-width-xl {
	border-top: 5px;
	border-bottom: 5px;
	border-style: solid;
}
.b-width-2xl {
	border: 10px;
	border-style: solid;
}
.b-t-width-2xl {
	border-top: 10px;
	border-style: solid;
}
.b-b-width-2xl {
	border-bottom: 10px;
	border-style: solid;
}
.b-l-width-2xl {
	border-left: 10px;
	border-style: solid;
}
.b-r-width-2xl {
	border-right: 10px;
	border-style: solid;
}
.b-x-width-2xl {
	border-right: 10px;
	border-left: 10px;
	border-style: solid;
}
.b-y-width-2xl {
	border-top: 10px;
	border-bottom: 10px;
	border-style: solid;
}
.b-width-3xl {
	border: 20px;
	border-style: solid;
}
.b-t-width-3xl {
	border-top: 20px;
	border-style: solid;
}
.b-b-width-3xl {
	border-bottom: 20px;
	border-style: solid;
}
.b-l-width-3xl {
	border-left: 20px;
	border-style: solid;
}
.b-r-width-3xl {
	border-right: 20px;
	border-style: solid;
}
.b-x-width-3xl {
	border-right: 20px;
	border-left: 20px;
	border-style: solid;
}
.b-y-width-3xl {
	border-top: 20px;
	border-bottom: 20px;
	border-style: solid;
}
@media (max-width: 767px) {
	.mob-b-width-none {
		border: 0;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-t-width-none {
		border-top: 0;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-b-width-none {
		border-bottom: 0;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-l-width-none {
		border-left: 0;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-r-width-none {
		border-right: 0;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-x-width-none {
		border-right: 0;
		border-left: 0;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-y-width-none {
		border-top: 0;
		border-bottom: 0;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-width-2xs {
		border: 1px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-t-width-2xs {
		border-top: 1px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-b-width-2xs {
		border-bottom: 1px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-l-width-2xs {
		border-left: 1px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-r-width-2xs {
		border-right: 1px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-x-width-2xs {
		border-right: 1px;
		border-left: 1px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-y-width-2xs {
		border-top: 1px;
		border-bottom: 1px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-width-xs {
		border: 1px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-t-width-xs {
		border-top: 1px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-b-width-xs {
		border-bottom: 1px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-l-width-xs {
		border-left: 1px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-r-width-xs {
		border-right: 1px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-x-width-xs {
		border-right: 1px;
		border-left: 1px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-y-width-xs {
		border-top: 1px;
		border-bottom: 1px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-width-sm {
		border: 2px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-t-width-sm {
		border-top: 2px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-b-width-sm {
		border-bottom: 2px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-l-width-sm {
		border-left: 2px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-r-width-sm {
		border-right: 2px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-x-width-sm {
		border-right: 2px;
		border-left: 2px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-y-width-sm {
		border-top: 2px;
		border-bottom: 2px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-width-md {
		border: 3px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-t-width-md {
		border-top: 3px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-b-width-md {
		border-bottom: 3px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-l-width-md {
		border-left: 3px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-r-width-md {
		border-right: 3px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-x-width-md {
		border-right: 3px;
		border-left: 3px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-y-width-md {
		border-top: 3px;
		border-bottom: 3px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-width-lg {
		border: 4px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-t-width-lg {
		border-top: 4px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-b-width-lg {
		border-bottom: 4px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-l-width-lg {
		border-left: 4px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-r-width-lg {
		border-right: 4px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-x-width-lg {
		border-right: 4px;
		border-left: 4px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-y-width-lg {
		border-top: 4px;
		border-bottom: 4px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-width-xl {
		border: 5px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-t-width-xl {
		border-top: 5px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-b-width-xl {
		border-bottom: 5px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-l-width-xl {
		border-left: 5px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-r-width-xl {
		border-right: 5px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-x-width-xl {
		border-right: 5px;
		border-left: 5px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-y-width-xl {
		border-top: 5px;
		border-bottom: 5px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-width-2xl {
		border: 10px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-t-width-2xl {
		border-top: 10px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-b-width-2xl {
		border-bottom: 10px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-l-width-2xl {
		border-left: 10px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-r-width-2xl {
		border-right: 10px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-x-width-2xl {
		border-right: 10px;
		border-left: 10px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-y-width-2xl {
		border-top: 10px;
		border-bottom: 10px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-width-3xl {
		border: 20px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-t-width-3xl {
		border-top: 20px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-b-width-3xl {
		border-bottom: 20px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-l-width-3xl {
		border-left: 20px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-r-width-3xl {
		border-right: 20px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-x-width-3xl {
		border-right: 20px;
		border-left: 20px;
		border-style: solid;
	}
}
@media (max-width: 767px) {
	.mob-b-y-width-3xl {
		border-top: 20px;
		border-bottom: 20px;
		border-style: solid;
	}
}
.max-w-25 {
	max-width: 25px !important;
}
.min-w-25 {
	min-width: 25px !important;
}
.max-w-50 {
	max-width: 50px !important;
}
.min-w-50 {
	min-width: 50px !important;
}
.max-w-75 {
	max-width: 75px !important;
}
.min-w-75 {
	min-width: 75px !important;
}
.max-w-100 {
	max-width: 100px !important;
}
.min-w-100 {
	min-width: 100px !important;
}
.max-w-125 {
	max-width: 125px !important;
}
.min-w-125 {
	min-width: 125px !important;
}
.max-w-150 {
	max-width: 150px !important;
}
.min-w-150 {
	min-width: 150px !important;
}
.max-w-175 {
	max-width: 175px !important;
}
.min-w-175 {
	min-width: 175px !important;
}
.max-w-200 {
	max-width: 200px !important;
}
.min-w-200 {
	min-width: 200px !important;
}
.max-w-225 {
	max-width: 225px !important;
}
.min-w-225 {
	min-width: 225px !important;
}
.max-w-250 {
	max-width: 250px !important;
}
.min-w-250 {
	min-width: 250px !important;
}
.max-w-275 {
	max-width: 275px !important;
}
.min-w-275 {
	min-width: 275px !important;
}
.max-w-300 {
	max-width: 300px !important;
}
.min-w-300 {
	min-width: 300px !important;
}
.max-w-325 {
	max-width: 325px !important;
}
.min-w-325 {
	min-width: 325px !important;
}
.max-w-350 {
	max-width: 350px !important;
}
.min-w-350 {
	min-width: 350px !important;
}
.max-w-375 {
	max-width: 375px !important;
}
.min-w-375 {
	min-width: 375px !important;
}
.max-w-400 {
	max-width: 400px !important;
}
.min-w-400 {
	min-width: 400px !important;
}
.max-w-425 {
	max-width: 425px !important;
}
.min-w-425 {
	min-width: 425px !important;
}
.max-w-450 {
	max-width: 450px !important;
}
.min-w-450 {
	min-width: 450px !important;
}
.max-w-475 {
	max-width: 475px !important;
}
.min-w-475 {
	min-width: 475px !important;
}
.max-w-500 {
	max-width: 500px !important;
}
.min-w-500 {
	min-width: 500px !important;
}
.max-w-525 {
	max-width: 525px !important;
}
.min-w-525 {
	min-width: 525px !important;
}
.max-w-550 {
	max-width: 550px !important;
}
.min-w-550 {
	min-width: 550px !important;
}
.max-w-575 {
	max-width: 575px !important;
}
.min-w-575 {
	min-width: 575px !important;
}
.max-w-600 {
	max-width: 600px !important;
}
.min-w-600 {
	min-width: 600px !important;
}
.max-w-625 {
	max-width: 625px !important;
}
.min-w-625 {
	min-width: 625px !important;
}
.max-w-650 {
	max-width: 650px !important;
}
.min-w-650 {
	min-width: 650px !important;
}
.max-w-675 {
	max-width: 675px !important;
}
.min-w-675 {
	min-width: 675px !important;
}
.max-w-700 {
	max-width: 700px !important;
}
.min-w-700 {
	min-width: 700px !important;
}
.max-w-725 {
	max-width: 725px !important;
}
.min-w-725 {
	min-width: 725px !important;
}
.max-w-750 {
	max-width: 750px !important;
}
.min-w-750 {
	min-width: 750px !important;
}
.max-w-775 {
	max-width: 775px !important;
}
.min-w-775 {
	min-width: 775px !important;
}
.max-w-800 {
	max-width: 800px !important;
}
.min-w-800 {
	min-width: 800px !important;
}
.max-w-825 {
	max-width: 825px !important;
}
.min-w-825 {
	min-width: 825px !important;
}
.max-w-850 {
	max-width: 850px !important;
}
.min-w-850 {
	min-width: 850px !important;
}
.max-w-875 {
	max-width: 875px !important;
}
.min-w-875 {
	min-width: 875px !important;
}
.max-w-900 {
	max-width: 900px !important;
}
.min-w-900 {
	min-width: 900px !important;
}
.max-w-925 {
	max-width: 925px !important;
}
.min-w-925 {
	min-width: 925px !important;
}
.max-w-950 {
	max-width: 950px !important;
}
.min-w-950 {
	min-width: 950px !important;
}
.max-w-975 {
	max-width: 975px !important;
}
.min-w-975 {
	min-width: 975px !important;
}
.max-w-1000 {
	max-width: 1000px !important;
}
.min-w-1000 {
	min-width: 1000px !important;
}
.max-w-1025 {
	max-width: 1025px !important;
}
.min-w-1025 {
	min-width: 1025px !important;
}
.max-w-1050 {
	max-width: 1050px !important;
}
.min-w-1050 {
	min-width: 1050px !important;
}
.max-w-1075 {
	max-width: 1075px !important;
}
.min-w-1075 {
	min-width: 1075px !important;
}
.max-w-1100 {
	max-width: 1100px !important;
}
.min-w-1100 {
	min-width: 1100px !important;
}
.max-w-1125 {
	max-width: 1125px !important;
}
.min-w-1125 {
	min-width: 1125px !important;
}
.max-w-1150 {
	max-width: 1150px !important;
}
.min-w-1150 {
	min-width: 1150px !important;
}
.max-w-1175 {
	max-width: 1175px !important;
}
.min-w-1175 {
	min-width: 1175px !important;
}
.max-w-1200 {
	max-width: 1200px !important;
}
.min-w-1200 {
	min-width: 1200px !important;
}
.max-w-1225 {
	max-width: 1225px !important;
}
.min-w-1225 {
	min-width: 1225px !important;
}
.max-w-1250 {
	max-width: 1250px !important;
}
.min-w-1250 {
	min-width: 1250px !important;
}
.max-w-1275 {
	max-width: 1275px !important;
}
.min-w-1275 {
	min-width: 1275px !important;
}
.max-w-1300 {
	max-width: 1300px !important;
}
.min-w-1300 {
	min-width: 1300px !important;
}
.max-w-1325 {
	max-width: 1325px !important;
}
.min-w-1325 {
	min-width: 1325px !important;
}
.max-w-1350 {
	max-width: 1350px !important;
}
.min-w-1350 {
	min-width: 1350px !important;
}
.max-w-1375 {
	max-width: 1375px !important;
}
.min-w-1375 {
	min-width: 1375px !important;
}
.max-w-1400 {
	max-width: 1400px !important;
}
.min-w-1400 {
	min-width: 1400px !important;
}
.max-w-1425 {
	max-width: 1425px !important;
}
.min-w-1425 {
	min-width: 1425px !important;
}
.max-w-1450 {
	max-width: 1450px !important;
}
.min-w-1450 {
	min-width: 1450px !important;
}
.max-w-1475 {
	max-width: 1475px !important;
}
.min-w-1475 {
	min-width: 1475px !important;
}
.max-w-1500 {
	max-width: 1500px !important;
}
.min-w-1500 {
	min-width: 1500px !important;
}
@media screen and (max-width: 994px) {
	.mob-max-w-25 {
		max-width: 25px !important;
	}
	.mob-min-w-25 {
		min-width: 25px !important;
	}
	.mob-max-w-50 {
		max-width: 50px !important;
	}
	.mob-min-w-50 {
		min-width: 50px !important;
	}
	.mob-max-w-75 {
		max-width: 75px !important;
	}
	.mob-min-w-75 {
		min-width: 75px !important;
	}
	.mob-max-w-100 {
		max-width: 100px !important;
	}
	.mob-min-w-100 {
		min-width: 100px !important;
	}
	.mob-max-w-125 {
		max-width: 125px !important;
	}
	.mob-min-w-125 {
		min-width: 125px !important;
	}
	.mob-max-w-150 {
		max-width: 150px !important;
	}
	.mob-min-w-150 {
		min-width: 150px !important;
	}
	.mob-max-w-175 {
		max-width: 175px !important;
	}
	.mob-min-w-175 {
		min-width: 175px !important;
	}
	.mob-max-w-200 {
		max-width: 200px !important;
	}
	.mob-min-w-200 {
		min-width: 200px !important;
	}
	.mob-max-w-225 {
		max-width: 225px !important;
	}
	.mob-min-w-225 {
		min-width: 225px !important;
	}
	.mob-max-w-250 {
		max-width: 250px !important;
	}
	.mob-min-w-250 {
		min-width: 250px !important;
	}
	.mob-max-w-275 {
		max-width: 275px !important;
	}
	.mob-min-w-275 {
		min-width: 275px !important;
	}
	.mob-max-w-300 {
		max-width: 300px !important;
	}
	.mob-min-w-300 {
		min-width: 300px !important;
	}
	.mob-max-w-325 {
		max-width: 325px !important;
	}
	.mob-min-w-325 {
		min-width: 325px !important;
	}
	.mob-max-w-350 {
		max-width: 350px !important;
	}
	.mob-min-w-350 {
		min-width: 350px !important;
	}
	.mob-max-w-375 {
		max-width: 375px !important;
	}
	.mob-min-w-375 {
		min-width: 375px !important;
	}
	.mob-max-w-400 {
		max-width: 400px !important;
	}
	.mob-min-w-400 {
		min-width: 400px !important;
	}
	.mob-max-w-425 {
		max-width: 425px !important;
	}
	.mob-min-w-425 {
		min-width: 425px !important;
	}
	.mob-max-w-450 {
		max-width: 450px !important;
	}
	.mob-min-w-450 {
		min-width: 450px !important;
	}
	.mob-max-w-475 {
		max-width: 475px !important;
	}
	.mob-min-w-475 {
		min-width: 475px !important;
	}
	.mob-max-w-500 {
		max-width: 500px !important;
	}
	.mob-min-w-500 {
		min-width: 500px !important;
	}
	.mob-max-w-525 {
		max-width: 525px !important;
	}
	.mob-min-w-525 {
		min-width: 525px !important;
	}
	.mob-max-w-550 {
		max-width: 550px !important;
	}
	.mob-min-w-550 {
		min-width: 550px !important;
	}
	.mob-max-w-575 {
		max-width: 575px !important;
	}
	.mob-min-w-575 {
		min-width: 575px !important;
	}
	.mob-max-w-600 {
		max-width: 600px !important;
	}
	.mob-min-w-600 {
		min-width: 600px !important;
	}
	.mob-max-w-625 {
		max-width: 625px !important;
	}
	.mob-min-w-625 {
		min-width: 625px !important;
	}
	.mob-max-w-650 {
		max-width: 650px !important;
	}
	.mob-min-w-650 {
		min-width: 650px !important;
	}
	.mob-max-w-675 {
		max-width: 675px !important;
	}
	.mob-min-w-675 {
		min-width: 675px !important;
	}
	.mob-max-w-700 {
		max-width: 700px !important;
	}
	.mob-min-w-700 {
		min-width: 700px !important;
	}
	.mob-max-w-725 {
		max-width: 725px !important;
	}
	.mob-min-w-725 {
		min-width: 725px !important;
	}
	.mob-max-w-750 {
		max-width: 750px !important;
	}
	.mob-min-w-750 {
		min-width: 750px !important;
	}
	.mob-max-w-775 {
		max-width: 775px !important;
	}
	.mob-min-w-775 {
		min-width: 775px !important;
	}
	.mob-max-w-800 {
		max-width: 800px !important;
	}
	.mob-min-w-800 {
		min-width: 800px !important;
	}
	.mob-max-w-825 {
		max-width: 825px !important;
	}
	.mob-min-w-825 {
		min-width: 825px !important;
	}
	.mob-max-w-850 {
		max-width: 850px !important;
	}
	.mob-min-w-850 {
		min-width: 850px !important;
	}
	.mob-max-w-875 {
		max-width: 875px !important;
	}
	.mob-min-w-875 {
		min-width: 875px !important;
	}
	.mob-max-w-900 {
		max-width: 900px !important;
	}
	.mob-min-w-900 {
		min-width: 900px !important;
	}
	.mob-max-w-925 {
		max-width: 925px !important;
	}
	.mob-min-w-925 {
		min-width: 925px !important;
	}
	.mob-max-w-950 {
		max-width: 950px !important;
	}
	.mob-min-w-950 {
		min-width: 950px !important;
	}
	.mob-max-w-975 {
		max-width: 975px !important;
	}
	.mob-min-w-975 {
		min-width: 975px !important;
	}
	.mob-max-w-1000 {
		max-width: 1000px !important;
	}
	.mob-min-w-1000 {
		min-width: 1000px !important;
	}
	.mob-max-w-1025 {
		max-width: 1025px !important;
	}
	.mob-min-w-1025 {
		min-width: 1025px !important;
	}
	.mob-max-w-1050 {
		max-width: 1050px !important;
	}
	.mob-min-w-1050 {
		min-width: 1050px !important;
	}
	.mob-max-w-1075 {
		max-width: 1075px !important;
	}
	.mob-min-w-1075 {
		min-width: 1075px !important;
	}
	.mob-max-w-1100 {
		max-width: 1100px !important;
	}
	.mob-min-w-1100 {
		min-width: 1100px !important;
	}
	.mob-max-w-1125 {
		max-width: 1125px !important;
	}
	.mob-min-w-1125 {
		min-width: 1125px !important;
	}
	.mob-max-w-1150 {
		max-width: 1150px !important;
	}
	.mob-min-w-1150 {
		min-width: 1150px !important;
	}
	.mob-max-w-1175 {
		max-width: 1175px !important;
	}
	.mob-min-w-1175 {
		min-width: 1175px !important;
	}
	.mob-max-w-1200 {
		max-width: 1200px !important;
	}
	.mob-min-w-1200 {
		min-width: 1200px !important;
	}
	.mob-max-w-1225 {
		max-width: 1225px !important;
	}
	.mob-min-w-1225 {
		min-width: 1225px !important;
	}
	.mob-max-w-1250 {
		max-width: 1250px !important;
	}
	.mob-min-w-1250 {
		min-width: 1250px !important;
	}
	.mob-max-w-1275 {
		max-width: 1275px !important;
	}
	.mob-min-w-1275 {
		min-width: 1275px !important;
	}
	.mob-max-w-1300 {
		max-width: 1300px !important;
	}
	.mob-min-w-1300 {
		min-width: 1300px !important;
	}
	.mob-max-w-1325 {
		max-width: 1325px !important;
	}
	.mob-min-w-1325 {
		min-width: 1325px !important;
	}
	.mob-max-w-1350 {
		max-width: 1350px !important;
	}
	.mob-min-w-1350 {
		min-width: 1350px !important;
	}
	.mob-max-w-1375 {
		max-width: 1375px !important;
	}
	.mob-min-w-1375 {
		min-width: 1375px !important;
	}
	.mob-max-w-1400 {
		max-width: 1400px !important;
	}
	.mob-min-w-1400 {
		min-width: 1400px !important;
	}
	.mob-max-w-1425 {
		max-width: 1425px !important;
	}
	.mob-min-w-1425 {
		min-width: 1425px !important;
	}
	.mob-max-w-1450 {
		max-width: 1450px !important;
	}
	.mob-min-w-1450 {
		min-width: 1450px !important;
	}
	.mob-max-w-1475 {
		max-width: 1475px !important;
	}
	.mob-min-w-1475 {
		min-width: 1475px !important;
	}
	.mob-max-w-1500 {
		max-width: 1500px !important;
	}
	.mob-min-w-1500 {
		min-width: 1500px !important;
	}
	.mob-max-w-1525 {
		max-width: 1525px !important;
	}
	.mob-min-w-1525 {
		min-width: 1525px !important;
	}
	.mob-max-w-1550 {
		max-width: 1550px !important;
	}
	.mob-min-w-1550 {
		min-width: 1550px !important;
	}
	.mob-max-w-1575 {
		max-width: 1575px !important;
	}
	.mob-min-w-1575 {
		min-width: 1575px !important;
	}
	.mob-max-w-1600 {
		max-width: 1600px !important;
	}
	.mob-min-w-1600 {
		min-width: 1600px !important;
	}
	.mob-max-w-1625 {
		max-width: 1625px !important;
	}
	.mob-min-w-1625 {
		min-width: 1625px !important;
	}
	.mob-max-w-1650 {
		max-width: 1650px !important;
	}
	.mob-min-w-1650 {
		min-width: 1650px !important;
	}
	.mob-max-w-1675 {
		max-width: 1675px !important;
	}
	.mob-min-w-1675 {
		min-width: 1675px !important;
	}
	.mob-max-w-1700 {
		max-width: 1700px !important;
	}
	.mob-min-w-1700 {
		min-width: 1700px !important;
	}
	.mob-max-w-1725 {
		max-width: 1725px !important;
	}
	.mob-min-w-1725 {
		min-width: 1725px !important;
	}
	.mob-max-w-1750 {
		max-width: 1750px !important;
	}
	.mob-min-w-1750 {
		min-width: 1750px !important;
	}
	.mob-max-w-1775 {
		max-width: 1775px !important;
	}
	.mob-min-w-1775 {
		min-width: 1775px !important;
	}
	.mob-max-w-1800 {
		max-width: 1800px !important;
	}
	.mob-min-w-1800 {
		min-width: 1800px !important;
	}
	.mob-max-w-1825 {
		max-width: 1825px !important;
	}
	.mob-min-w-1825 {
		min-width: 1825px !important;
	}
	.mob-max-w-1850 {
		max-width: 1850px !important;
	}
	.mob-min-w-1850 {
		min-width: 1850px !important;
	}
	.mob-max-w-1875 {
		max-width: 1875px !important;
	}
	.mob-min-w-1875 {
		min-width: 1875px !important;
	}
	.mob-max-w-1900 {
		max-width: 1900px !important;
	}
	.mob-min-w-1900 {
		min-width: 1900px !important;
	}
	.mob-max-w-1925 {
		max-width: 1925px !important;
	}
	.mob-min-w-1925 {
		min-width: 1925px !important;
	}
	.mob-max-w-1950 {
		max-width: 1950px !important;
	}
	.mob-min-w-1950 {
		min-width: 1950px !important;
	}
	.mob-max-w-1975 {
		max-width: 1975px !important;
	}
	.mob-min-w-1975 {
		min-width: 1975px !important;
	}
	.mob-max-w-2000 {
		max-width: 2000px !important;
	}
	.mob-min-w-2000 {
		min-width: 2000px !important;
	}
	.mob-max-w-2025 {
		max-width: 2025px !important;
	}
	.mob-min-w-2025 {
		min-width: 2025px !important;
	}
	.mob-max-w-2050 {
		max-width: 2050px !important;
	}
	.mob-min-w-2050 {
		min-width: 2050px !important;
	}
	.mob-max-w-2075 {
		max-width: 2075px !important;
	}
	.mob-min-w-2075 {
		min-width: 2075px !important;
	}
	.mob-max-w-2100 {
		max-width: 2100px !important;
	}
	.mob-min-w-2100 {
		min-width: 2100px !important;
	}
	.mob-max-w-2125 {
		max-width: 2125px !important;
	}
	.mob-min-w-2125 {
		min-width: 2125px !important;
	}
	.mob-max-w-2150 {
		max-width: 2150px !important;
	}
	.mob-min-w-2150 {
		min-width: 2150px !important;
	}
	.mob-max-w-2175 {
		max-width: 2175px !important;
	}
	.mob-min-w-2175 {
		min-width: 2175px !important;
	}
	.mob-max-w-2200 {
		max-width: 2200px !important;
	}
	.mob-min-w-2200 {
		min-width: 2200px !important;
	}
	.mob-max-w-2225 {
		max-width: 2225px !important;
	}
	.mob-min-w-2225 {
		min-width: 2225px !important;
	}
	.mob-max-w-2250 {
		max-width: 2250px !important;
	}
	.mob-min-w-2250 {
		min-width: 2250px !important;
	}
	.mob-max-w-2275 {
		max-width: 2275px !important;
	}
	.mob-min-w-2275 {
		min-width: 2275px !important;
	}
	.mob-max-w-2300 {
		max-width: 2300px !important;
	}
	.mob-min-w-2300 {
		min-width: 2300px !important;
	}
	.mob-max-w-2325 {
		max-width: 2325px !important;
	}
	.mob-min-w-2325 {
		min-width: 2325px !important;
	}
	.mob-max-w-2350 {
		max-width: 2350px !important;
	}
	.mob-min-w-2350 {
		min-width: 2350px !important;
	}
	.mob-max-w-2375 {
		max-width: 2375px !important;
	}
	.mob-min-w-2375 {
		min-width: 2375px !important;
	}
	.mob-max-w-2400 {
		max-width: 2400px !important;
	}
	.mob-min-w-2400 {
		min-width: 2400px !important;
	}
	.mob-max-w-2425 {
		max-width: 2425px !important;
	}
	.mob-min-w-2425 {
		min-width: 2425px !important;
	}
	.mob-max-w-2450 {
		max-width: 2450px !important;
	}
	.mob-min-w-2450 {
		min-width: 2450px !important;
	}
	.mob-max-w-2475 {
		max-width: 2475px !important;
	}
	.mob-min-w-2475 {
		min-width: 2475px !important;
	}
	.mob-max-w-2500 {
		max-width: 2500px !important;
	}
	.mob-min-w-2500 {
		min-width: 2500px !important;
	}
}
.w-4 {
	width: 4px;
}
.w-8 {
	width: 8px;
}
.w-12 {
	width: 12px;
}
.w-16 {
	width: 16px;
}
.w-20 {
	width: 20px;
}
.w-24 {
	width: 24px;
}
.w-28 {
	width: 28px;
}
.w-32 {
	width: 32px;
}
.w-36 {
	width: 36px;
}
.w-40 {
	width: 40px;
}
.w-44 {
	width: 44px;
}
.w-48 {
	width: 48px;
}
.w-52 {
	width: 52px;
}
.w-56 {
	width: 56px;
}
.w-60 {
	width: 60px;
}
.w-64 {
	width: 64px;
}
.w-68 {
	width: 68px;
}
.w-72 {
	width: 72px;
}
.w-76 {
	width: 76px;
}
.w-80 {
	width: 80px;
}
.w-84 {
	width: 84px;
}
.w-88 {
	width: 88px;
}
.w-92 {
	width: 92px;
}
.w-96 {
	width: 96px;
}
.w-100 {
	width: 100px;
}
.w-104 {
	width: 104px;
}
.w-108 {
	width: 108px;
}
.w-112 {
	width: 112px;
}
.w-116 {
	width: 116px;
}
.w-120 {
	width: 120px;
}
.w-124 {
	width: 124px;
}
.w-128 {
	width: 128px;
}
.w-132 {
	width: 132px;
}
.w-136 {
	width: 136px;
}
.w-140 {
	width: 140px;
}
.w-144 {
	width: 144px;
}
.w-148 {
	width: 148px;
}
.w-152 {
	width: 152px;
}
.w-156 {
	width: 156px;
}
.w-160 {
	width: 160px;
}
.w-164 {
	width: 164px;
}
.w-168 {
	width: 168px;
}
.w-172 {
	width: 172px;
}
.w-176 {
	width: 176px;
}
.w-180 {
	width: 180px;
}
.w-184 {
	width: 184px;
}
.w-188 {
	width: 188px;
}
.w-192 {
	width: 192px;
}
.w-196 {
	width: 196px;
}
.w-200 {
	width: 200px;
}
.w-204 {
	width: 204px;
}
.w-208 {
	width: 208px;
}
.w-212 {
	width: 212px;
}
.w-216 {
	width: 216px;
}
.w-220 {
	width: 220px;
}
.w-224 {
	width: 224px;
}
.w-228 {
	width: 228px;
}
.w-232 {
	width: 232px;
}
.w-236 {
	width: 236px;
}
.w-240 {
	width: 240px;
}
.w-244 {
	width: 244px;
}
.w-248 {
	width: 248px;
}
.w-252 {
	width: 252px;
}
.w-256 {
	width: 256px;
}
.w-260 {
	width: 260px;
}
.w-264 {
	width: 264px;
}
.w-268 {
	width: 268px;
}
.w-272 {
	width: 272px;
}
.w-276 {
	width: 276px;
}
.w-280 {
	width: 280px;
}
.w-284 {
	width: 284px;
}
.w-288 {
	width: 288px;
}
.w-292 {
	width: 292px;
}
.w-296 {
	width: 296px;
}
.w-300 {
	width: 300px;
}
.w-304 {
	width: 304px;
}
.w-308 {
	width: 308px;
}
.w-312 {
	width: 312px;
}
.w-316 {
	width: 316px;
}
.w-320 {
	width: 320px;
}
.w-324 {
	width: 324px;
}
.w-328 {
	width: 328px;
}
.w-332 {
	width: 332px;
}
.w-336 {
	width: 336px;
}
.w-340 {
	width: 340px;
}
.w-344 {
	width: 344px;
}
.w-348 {
	width: 348px;
}
.w-352 {
	width: 352px;
}
.w-356 {
	width: 356px;
}
.w-360 {
	width: 360px;
}
.w-364 {
	width: 364px;
}
.w-368 {
	width: 368px;
}
.w-372 {
	width: 372px;
}
.w-376 {
	width: 376px;
}
.w-380 {
	width: 380px;
}
.w-384 {
	width: 384px;
}
.w-388 {
	width: 388px;
}
.w-392 {
	width: 392px;
}
.w-396 {
	width: 396px;
}
.w-400 {
	width: 400px;
}
.w-404 {
	width: 404px;
}
.w-408 {
	width: 408px;
}
.w-412 {
	width: 412px;
}
.w-416 {
	width: 416px;
}
.w-420 {
	width: 420px;
}
.w-424 {
	width: 424px;
}
.w-428 {
	width: 428px;
}
.w-432 {
	width: 432px;
}
.w-436 {
	width: 436px;
}
.w-440 {
	width: 440px;
}
.w-444 {
	width: 444px;
}
.w-448 {
	width: 448px;
}
.w-452 {
	width: 452px;
}
.w-456 {
	width: 456px;
}
.w-460 {
	width: 460px;
}
.w-464 {
	width: 464px;
}
.w-468 {
	width: 468px;
}
.w-472 {
	width: 472px;
}
.w-476 {
	width: 476px;
}
.w-480 {
	width: 480px;
}
.w-484 {
	width: 484px;
}
.w-488 {
	width: 488px;
}
.w-492 {
	width: 492px;
}
.w-496 {
	width: 496px;
}
.w-500 {
	width: 500px;
}
.w-504 {
	width: 504px;
}
.w-508 {
	width: 508px;
}
.w-512 {
	width: 512px;
}
.w-516 {
	width: 516px;
}
.w-520 {
	width: 520px;
}
.w-524 {
	width: 524px;
}
.w-528 {
	width: 528px;
}
.w-532 {
	width: 532px;
}
.w-536 {
	width: 536px;
}
.w-540 {
	width: 540px;
}
.w-544 {
	width: 544px;
}
.w-548 {
	width: 548px;
}
.w-552 {
	width: 552px;
}
.w-556 {
	width: 556px;
}
.w-560 {
	width: 560px;
}
.w-564 {
	width: 564px;
}
.w-568 {
	width: 568px;
}
.w-572 {
	width: 572px;
}
.w-576 {
	width: 576px;
}
.w-580 {
	width: 580px;
}
.w-584 {
	width: 584px;
}
.w-588 {
	width: 588px;
}
.w-592 {
	width: 592px;
}
.w-596 {
	width: 596px;
}
.w-600 {
	width: 600px;
}
.w-604 {
	width: 604px;
}
.w-608 {
	width: 608px;
}
.w-612 {
	width: 612px;
}
.w-616 {
	width: 616px;
}
.w-620 {
	width: 620px;
}
.w-624 {
	width: 624px;
}
.w-628 {
	width: 628px;
}
.w-632 {
	width: 632px;
}
.w-636 {
	width: 636px;
}
.w-640 {
	width: 640px;
}
.w-644 {
	width: 644px;
}
.w-648 {
	width: 648px;
}
.w-652 {
	width: 652px;
}
.w-656 {
	width: 656px;
}
.w-660 {
	width: 660px;
}
.w-664 {
	width: 664px;
}
.w-668 {
	width: 668px;
}
.w-672 {
	width: 672px;
}
.w-676 {
	width: 676px;
}
.w-680 {
	width: 680px;
}
.w-684 {
	width: 684px;
}
.w-688 {
	width: 688px;
}
.w-692 {
	width: 692px;
}
.w-696 {
	width: 696px;
}
.w-700 {
	width: 700px;
}
.w-704 {
	width: 704px;
}
.w-708 {
	width: 708px;
}
.w-712 {
	width: 712px;
}
.w-716 {
	width: 716px;
}
.w-720 {
	width: 720px;
}
.w-724 {
	width: 724px;
}
.w-728 {
	width: 728px;
}
.w-732 {
	width: 732px;
}
.w-736 {
	width: 736px;
}
.w-740 {
	width: 740px;
}
.w-744 {
	width: 744px;
}
.w-748 {
	width: 748px;
}
.w-752 {
	width: 752px;
}
.w-756 {
	width: 756px;
}
.w-760 {
	width: 760px;
}
.w-764 {
	width: 764px;
}
.w-768 {
	width: 768px;
}
.w-772 {
	width: 772px;
}
.w-776 {
	width: 776px;
}
.w-780 {
	width: 780px;
}
.w-784 {
	width: 784px;
}
.w-788 {
	width: 788px;
}
.w-792 {
	width: 792px;
}
.w-796 {
	width: 796px;
}
.w-800 {
	width: 800px;
}
.w-804 {
	width: 804px;
}
.w-808 {
	width: 808px;
}
.w-812 {
	width: 812px;
}
.w-816 {
	width: 816px;
}
.w-820 {
	width: 820px;
}
.w-824 {
	width: 824px;
}
.w-828 {
	width: 828px;
}
.w-832 {
	width: 832px;
}
.w-836 {
	width: 836px;
}
.w-840 {
	width: 840px;
}
.w-844 {
	width: 844px;
}
.w-848 {
	width: 848px;
}
.w-852 {
	width: 852px;
}
.w-856 {
	width: 856px;
}
.w-860 {
	width: 860px;
}
.w-864 {
	width: 864px;
}
.w-868 {
	width: 868px;
}
.w-872 {
	width: 872px;
}
.w-876 {
	width: 876px;
}
.w-880 {
	width: 880px;
}
.w-884 {
	width: 884px;
}
.w-888 {
	width: 888px;
}
.w-892 {
	width: 892px;
}
.w-896 {
	width: 896px;
}
.w-900 {
	width: 900px;
}
.w-904 {
	width: 904px;
}
.w-908 {
	width: 908px;
}
.w-912 {
	width: 912px;
}
.w-916 {
	width: 916px;
}
.w-920 {
	width: 920px;
}
.w-924 {
	width: 924px;
}
.w-928 {
	width: 928px;
}
.w-932 {
	width: 932px;
}
.w-936 {
	width: 936px;
}
.w-940 {
	width: 940px;
}
.w-944 {
	width: 944px;
}
.w-948 {
	width: 948px;
}
.w-952 {
	width: 952px;
}
.w-956 {
	width: 956px;
}
.w-960 {
	width: 960px;
}
.w-964 {
	width: 964px;
}
.w-968 {
	width: 968px;
}
.w-972 {
	width: 972px;
}
.w-976 {
	width: 976px;
}
.w-980 {
	width: 980px;
}
.w-984 {
	width: 984px;
}
.w-988 {
	width: 988px;
}
.w-992 {
	width: 992px;
}
.w-996 {
	width: 996px;
}
.w-1000 {
	width: 1000px;
}
.w-1004 {
	width: 1004px;
}
.w-1008 {
	width: 1008px;
}
.w-1012 {
	width: 1012px;
}
.w-1016 {
	width: 1016px;
}
.w-1020 {
	width: 1020px;
}
.w-1024 {
	width: 1024px;
}
.w-1028 {
	width: 1028px;
}
.w-1032 {
	width: 1032px;
}
.w-1036 {
	width: 1036px;
}
.w-1040 {
	width: 1040px;
}
.w-1044 {
	width: 1044px;
}
.w-1048 {
	width: 1048px;
}
.w-1052 {
	width: 1052px;
}
.w-1056 {
	width: 1056px;
}
.w-1060 {
	width: 1060px;
}
.w-1064 {
	width: 1064px;
}
.w-1068 {
	width: 1068px;
}
.w-1072 {
	width: 1072px;
}
.w-1076 {
	width: 1076px;
}
.w-1080 {
	width: 1080px;
}
.w-1084 {
	width: 1084px;
}
.w-1088 {
	width: 1088px;
}
.w-1092 {
	width: 1092px;
}
.w-1096 {
	width: 1096px;
}
.w-1100 {
	width: 1100px;
}
.w-1104 {
	width: 1104px;
}
.w-1108 {
	width: 1108px;
}
.w-1112 {
	width: 1112px;
}
.w-1116 {
	width: 1116px;
}
.w-1120 {
	width: 1120px;
}
.w-1124 {
	width: 1124px;
}
.w-1128 {
	width: 1128px;
}
.w-1132 {
	width: 1132px;
}
.w-1136 {
	width: 1136px;
}
.w-1140 {
	width: 1140px;
}
.w-1144 {
	width: 1144px;
}
.w-1148 {
	width: 1148px;
}
.w-1152 {
	width: 1152px;
}
.w-1156 {
	width: 1156px;
}
.w-1160 {
	width: 1160px;
}
.w-1164 {
	width: 1164px;
}
.w-1168 {
	width: 1168px;
}
.w-1172 {
	width: 1172px;
}
.w-1176 {
	width: 1176px;
}
.w-1180 {
	width: 1180px;
}
.w-1184 {
	width: 1184px;
}
.w-1188 {
	width: 1188px;
}
.w-1192 {
	width: 1192px;
}
.w-1196 {
	width: 1196px;
}
.w-1200 {
	width: 1200px;
}
.w-1204 {
	width: 1204px;
}
.w-1208 {
	width: 1208px;
}
.w-1212 {
	width: 1212px;
}
.w-1216 {
	width: 1216px;
}
.w-1220 {
	width: 1220px;
}
.w-1224 {
	width: 1224px;
}
.w-1228 {
	width: 1228px;
}
.w-1232 {
	width: 1232px;
}
.w-1236 {
	width: 1236px;
}
.w-1240 {
	width: 1240px;
}
.w-1244 {
	width: 1244px;
}
.w-1248 {
	width: 1248px;
}
.w-1252 {
	width: 1252px;
}
.w-1256 {
	width: 1256px;
}
.w-1260 {
	width: 1260px;
}
.w-1264 {
	width: 1264px;
}
.w-1268 {
	width: 1268px;
}
.w-1272 {
	width: 1272px;
}
.w-1276 {
	width: 1276px;
}
.w-1280 {
	width: 1280px;
}
.w-1284 {
	width: 1284px;
}
.w-1288 {
	width: 1288px;
}
.w-1292 {
	width: 1292px;
}
.w-1296 {
	width: 1296px;
}
.w-1300 {
	width: 1300px;
}
.w-1304 {
	width: 1304px;
}
.w-1308 {
	width: 1308px;
}
.w-1312 {
	width: 1312px;
}
.w-1316 {
	width: 1316px;
}
.w-1320 {
	width: 1320px;
}
.w-1324 {
	width: 1324px;
}
.w-1328 {
	width: 1328px;
}
.w-1332 {
	width: 1332px;
}
.w-1336 {
	width: 1336px;
}
.w-1340 {
	width: 1340px;
}
.w-1344 {
	width: 1344px;
}
.w-1348 {
	width: 1348px;
}
.w-1352 {
	width: 1352px;
}
.w-1356 {
	width: 1356px;
}
.w-1360 {
	width: 1360px;
}
.w-1364 {
	width: 1364px;
}
.w-1368 {
	width: 1368px;
}
.w-1372 {
	width: 1372px;
}
.w-1376 {
	width: 1376px;
}
.w-1380 {
	width: 1380px;
}
.w-1384 {
	width: 1384px;
}
.w-1388 {
	width: 1388px;
}
.w-1392 {
	width: 1392px;
}
.w-1396 {
	width: 1396px;
}
.w-1400 {
	width: 1400px;
}
.w-1404 {
	width: 1404px;
}
.w-1408 {
	width: 1408px;
}
.w-1412 {
	width: 1412px;
}
.w-1416 {
	width: 1416px;
}
.w-1420 {
	width: 1420px;
}
.w-1424 {
	width: 1424px;
}
.w-1428 {
	width: 1428px;
}
.w-1432 {
	width: 1432px;
}
.w-1436 {
	width: 1436px;
}
.w-1440 {
	width: 1440px;
}
.w-1444 {
	width: 1444px;
}
.w-1448 {
	width: 1448px;
}
.w-1452 {
	width: 1452px;
}
.w-1456 {
	width: 1456px;
}
.w-1460 {
	width: 1460px;
}
.w-1464 {
	width: 1464px;
}
.w-1468 {
	width: 1468px;
}
.w-1472 {
	width: 1472px;
}
.w-1476 {
	width: 1476px;
}
.w-1480 {
	width: 1480px;
}
.w-1484 {
	width: 1484px;
}
.w-1488 {
	width: 1488px;
}
.w-1492 {
	width: 1492px;
}
.w-1496 {
	width: 1496px;
}
.w-1500 {
	width: 1500px;
}
.w-1504 {
	width: 1504px;
}
.w-1508 {
	width: 1508px;
}
.w-1512 {
	width: 1512px;
}
.w-1516 {
	width: 1516px;
}
.w-1520 {
	width: 1520px;
}
.w-1524 {
	width: 1524px;
}
.w-1528 {
	width: 1528px;
}
.w-1532 {
	width: 1532px;
}
.w-1536 {
	width: 1536px;
}
.w-1540 {
	width: 1540px;
}
.w-1544 {
	width: 1544px;
}
.w-1548 {
	width: 1548px;
}
.w-1552 {
	width: 1552px;
}
.w-1556 {
	width: 1556px;
}
.w-1560 {
	width: 1560px;
}
.w-1564 {
	width: 1564px;
}
.w-1568 {
	width: 1568px;
}
.w-1572 {
	width: 1572px;
}
.w-1576 {
	width: 1576px;
}
.w-1580 {
	width: 1580px;
}
.w-1584 {
	width: 1584px;
}
.w-1588 {
	width: 1588px;
}
.w-1592 {
	width: 1592px;
}
.w-1596 {
	width: 1596px;
}
.w-1600 {
	width: 1600px;
}
.w-1604 {
	width: 1604px;
}
.w-1608 {
	width: 1608px;
}
.w-1612 {
	width: 1612px;
}
.w-1616 {
	width: 1616px;
}
.w-1620 {
	width: 1620px;
}
.w-1624 {
	width: 1624px;
}
.w-1628 {
	width: 1628px;
}
.w-1632 {
	width: 1632px;
}
.w-1636 {
	width: 1636px;
}
.w-1640 {
	width: 1640px;
}
.w-1644 {
	width: 1644px;
}
.w-1648 {
	width: 1648px;
}
.w-1652 {
	width: 1652px;
}
.w-1656 {
	width: 1656px;
}
.w-1660 {
	width: 1660px;
}
.w-1664 {
	width: 1664px;
}
.w-1668 {
	width: 1668px;
}
.w-1672 {
	width: 1672px;
}
.w-1676 {
	width: 1676px;
}
.w-1680 {
	width: 1680px;
}
.w-1684 {
	width: 1684px;
}
.w-1688 {
	width: 1688px;
}
.w-1692 {
	width: 1692px;
}
.w-1696 {
	width: 1696px;
}
.w-1700 {
	width: 1700px;
}
.w-1704 {
	width: 1704px;
}
.w-1708 {
	width: 1708px;
}
.w-1712 {
	width: 1712px;
}
.w-1716 {
	width: 1716px;
}
.w-1720 {
	width: 1720px;
}
.w-1724 {
	width: 1724px;
}
.w-1728 {
	width: 1728px;
}
.w-1732 {
	width: 1732px;
}
.w-1736 {
	width: 1736px;
}
.w-1740 {
	width: 1740px;
}
.w-1744 {
	width: 1744px;
}
.w-1748 {
	width: 1748px;
}
.w-1752 {
	width: 1752px;
}
.w-1756 {
	width: 1756px;
}
.w-1760 {
	width: 1760px;
}
.w-1764 {
	width: 1764px;
}
.w-1768 {
	width: 1768px;
}
.w-1772 {
	width: 1772px;
}
.w-1776 {
	width: 1776px;
}
.w-1780 {
	width: 1780px;
}
.w-1784 {
	width: 1784px;
}
.w-1788 {
	width: 1788px;
}
.w-1792 {
	width: 1792px;
}
.w-1796 {
	width: 1796px;
}
.w-1800 {
	width: 1800px;
}
.w-1804 {
	width: 1804px;
}
.w-1808 {
	width: 1808px;
}
.w-1812 {
	width: 1812px;
}
.w-1816 {
	width: 1816px;
}
.w-1820 {
	width: 1820px;
}
.w-1824 {
	width: 1824px;
}
.w-1828 {
	width: 1828px;
}
.w-1832 {
	width: 1832px;
}
.w-1836 {
	width: 1836px;
}
.w-1840 {
	width: 1840px;
}
.w-1844 {
	width: 1844px;
}
.w-1848 {
	width: 1848px;
}
.w-1852 {
	width: 1852px;
}
.w-1856 {
	width: 1856px;
}
.w-1860 {
	width: 1860px;
}
.w-1864 {
	width: 1864px;
}
.w-1868 {
	width: 1868px;
}
.w-1872 {
	width: 1872px;
}
.w-1876 {
	width: 1876px;
}
.w-1880 {
	width: 1880px;
}
.w-1884 {
	width: 1884px;
}
.w-1888 {
	width: 1888px;
}
.w-1892 {
	width: 1892px;
}
.w-1896 {
	width: 1896px;
}
.w-1900 {
	width: 1900px;
}
.w-1904 {
	width: 1904px;
}
.w-1908 {
	width: 1908px;
}
.w-1912 {
	width: 1912px;
}
.w-1916 {
	width: 1916px;
}
.w-1920 {
	width: 1920px;
}
.w-1924 {
	width: 1924px;
}
.w-1928 {
	width: 1928px;
}
.w-1932 {
	width: 1932px;
}
.w-1936 {
	width: 1936px;
}
.w-1940 {
	width: 1940px;
}
.w-1944 {
	width: 1944px;
}
.w-1948 {
	width: 1948px;
}
.w-1952 {
	width: 1952px;
}
.w-1956 {
	width: 1956px;
}
.w-1960 {
	width: 1960px;
}
.w-1964 {
	width: 1964px;
}
.w-1968 {
	width: 1968px;
}
.w-1972 {
	width: 1972px;
}
.w-1976 {
	width: 1976px;
}
.w-1980 {
	width: 1980px;
}
.w-1984 {
	width: 1984px;
}
.w-1988 {
	width: 1988px;
}
.w-1992 {
	width: 1992px;
}
.w-1996 {
	width: 1996px;
}
.w-2000 {
	width: 2000px;
}
@media screen and (max-width: 994px) {
	.mob-w-4 {
		width: 4px;
	}
	.mob-w-8 {
		width: 8px;
	}
	.mob-w-12 {
		width: 12px;
	}
	.mob-w-16 {
		width: 16px;
	}
	.mob-w-20 {
		width: 20px;
	}
	.mob-w-24 {
		width: 24px;
	}
	.mob-w-28 {
		width: 28px;
	}
	.mob-w-32 {
		width: 32px;
	}
	.mob-w-36 {
		width: 36px;
	}
	.mob-w-40 {
		width: 40px;
	}
	.mob-w-44 {
		width: 44px;
	}
	.mob-w-48 {
		width: 48px;
	}
	.mob-w-52 {
		width: 52px;
	}
	.mob-w-56 {
		width: 56px;
	}
	.mob-w-60 {
		width: 60px;
	}
	.mob-w-64 {
		width: 64px;
	}
	.mob-w-68 {
		width: 68px;
	}
	.mob-w-72 {
		width: 72px;
	}
	.mob-w-76 {
		width: 76px;
	}
	.mob-w-80 {
		width: 80px;
	}
	.mob-w-84 {
		width: 84px;
	}
	.mob-w-88 {
		width: 88px;
	}
	.mob-w-92 {
		width: 92px;
	}
	.mob-w-96 {
		width: 96px;
	}
	.mob-w-100 {
		width: 100px;
	}
	.mob-w-104 {
		width: 104px;
	}
	.mob-w-108 {
		width: 108px;
	}
	.mob-w-112 {
		width: 112px;
	}
	.mob-w-116 {
		width: 116px;
	}
	.mob-w-120 {
		width: 120px;
	}
	.mob-w-124 {
		width: 124px;
	}
	.mob-w-128 {
		width: 128px;
	}
	.mob-w-132 {
		width: 132px;
	}
	.mob-w-136 {
		width: 136px;
	}
	.mob-w-140 {
		width: 140px;
	}
	.mob-w-144 {
		width: 144px;
	}
	.mob-w-148 {
		width: 148px;
	}
	.mob-w-152 {
		width: 152px;
	}
	.mob-w-156 {
		width: 156px;
	}
	.mob-w-160 {
		width: 160px;
	}
	.mob-w-164 {
		width: 164px;
	}
	.mob-w-168 {
		width: 168px;
	}
	.mob-w-172 {
		width: 172px;
	}
	.mob-w-176 {
		width: 176px;
	}
	.mob-w-180 {
		width: 180px;
	}
	.mob-w-184 {
		width: 184px;
	}
	.mob-w-188 {
		width: 188px;
	}
	.mob-w-192 {
		width: 192px;
	}
	.mob-w-196 {
		width: 196px;
	}
	.mob-w-200 {
		width: 200px;
	}
	.mob-w-204 {
		width: 204px;
	}
	.mob-w-208 {
		width: 208px;
	}
	.mob-w-212 {
		width: 212px;
	}
	.mob-w-216 {
		width: 216px;
	}
	.mob-w-220 {
		width: 220px;
	}
	.mob-w-224 {
		width: 224px;
	}
	.mob-w-228 {
		width: 228px;
	}
	.mob-w-232 {
		width: 232px;
	}
	.mob-w-236 {
		width: 236px;
	}
	.mob-w-240 {
		width: 240px;
	}
	.mob-w-244 {
		width: 244px;
	}
	.mob-w-248 {
		width: 248px;
	}
	.mob-w-252 {
		width: 252px;
	}
	.mob-w-256 {
		width: 256px;
	}
	.mob-w-260 {
		width: 260px;
	}
	.mob-w-264 {
		width: 264px;
	}
	.mob-w-268 {
		width: 268px;
	}
	.mob-w-272 {
		width: 272px;
	}
	.mob-w-276 {
		width: 276px;
	}
	.mob-w-280 {
		width: 280px;
	}
	.mob-w-284 {
		width: 284px;
	}
	.mob-w-288 {
		width: 288px;
	}
	.mob-w-292 {
		width: 292px;
	}
	.mob-w-296 {
		width: 296px;
	}
	.mob-w-300 {
		width: 300px;
	}
	.mob-w-304 {
		width: 304px;
	}
	.mob-w-308 {
		width: 308px;
	}
	.mob-w-312 {
		width: 312px;
	}
	.mob-w-316 {
		width: 316px;
	}
	.mob-w-320 {
		width: 320px;
	}
	.mob-w-324 {
		width: 324px;
	}
	.mob-w-328 {
		width: 328px;
	}
	.mob-w-332 {
		width: 332px;
	}
	.mob-w-336 {
		width: 336px;
	}
	.mob-w-340 {
		width: 340px;
	}
	.mob-w-344 {
		width: 344px;
	}
	.mob-w-348 {
		width: 348px;
	}
	.mob-w-352 {
		width: 352px;
	}
	.mob-w-356 {
		width: 356px;
	}
	.mob-w-360 {
		width: 360px;
	}
	.mob-w-364 {
		width: 364px;
	}
	.mob-w-368 {
		width: 368px;
	}
	.mob-w-372 {
		width: 372px;
	}
	.mob-w-376 {
		width: 376px;
	}
	.mob-w-380 {
		width: 380px;
	}
	.mob-w-384 {
		width: 384px;
	}
	.mob-w-388 {
		width: 388px;
	}
	.mob-w-392 {
		width: 392px;
	}
	.mob-w-396 {
		width: 396px;
	}
	.mob-w-400 {
		width: 400px;
	}
	.mob-w-404 {
		width: 404px;
	}
	.mob-w-408 {
		width: 408px;
	}
	.mob-w-412 {
		width: 412px;
	}
	.mob-w-416 {
		width: 416px;
	}
	.mob-w-420 {
		width: 420px;
	}
	.mob-w-424 {
		width: 424px;
	}
	.mob-w-428 {
		width: 428px;
	}
	.mob-w-432 {
		width: 432px;
	}
	.mob-w-436 {
		width: 436px;
	}
	.mob-w-440 {
		width: 440px;
	}
	.mob-w-444 {
		width: 444px;
	}
	.mob-w-448 {
		width: 448px;
	}
	.mob-w-452 {
		width: 452px;
	}
	.mob-w-456 {
		width: 456px;
	}
	.mob-w-460 {
		width: 460px;
	}
	.mob-w-464 {
		width: 464px;
	}
	.mob-w-468 {
		width: 468px;
	}
	.mob-w-472 {
		width: 472px;
	}
	.mob-w-476 {
		width: 476px;
	}
	.mob-w-480 {
		width: 480px;
	}
	.mob-w-484 {
		width: 484px;
	}
	.mob-w-488 {
		width: 488px;
	}
	.mob-w-492 {
		width: 492px;
	}
	.mob-w-496 {
		width: 496px;
	}
	.mob-w-500 {
		width: 500px;
	}
	.mob-w-504 {
		width: 504px;
	}
	.mob-w-508 {
		width: 508px;
	}
	.mob-w-512 {
		width: 512px;
	}
	.mob-w-516 {
		width: 516px;
	}
	.mob-w-520 {
		width: 520px;
	}
	.mob-w-524 {
		width: 524px;
	}
	.mob-w-528 {
		width: 528px;
	}
	.mob-w-532 {
		width: 532px;
	}
	.mob-w-536 {
		width: 536px;
	}
	.mob-w-540 {
		width: 540px;
	}
	.mob-w-544 {
		width: 544px;
	}
	.mob-w-548 {
		width: 548px;
	}
	.mob-w-552 {
		width: 552px;
	}
	.mob-w-556 {
		width: 556px;
	}
	.mob-w-560 {
		width: 560px;
	}
	.mob-w-564 {
		width: 564px;
	}
	.mob-w-568 {
		width: 568px;
	}
	.mob-w-572 {
		width: 572px;
	}
	.mob-w-576 {
		width: 576px;
	}
	.mob-w-580 {
		width: 580px;
	}
	.mob-w-584 {
		width: 584px;
	}
	.mob-w-588 {
		width: 588px;
	}
	.mob-w-592 {
		width: 592px;
	}
	.mob-w-596 {
		width: 596px;
	}
	.mob-w-600 {
		width: 600px;
	}
	.mob-w-604 {
		width: 604px;
	}
	.mob-w-608 {
		width: 608px;
	}
	.mob-w-612 {
		width: 612px;
	}
	.mob-w-616 {
		width: 616px;
	}
	.mob-w-620 {
		width: 620px;
	}
	.mob-w-624 {
		width: 624px;
	}
	.mob-w-628 {
		width: 628px;
	}
	.mob-w-632 {
		width: 632px;
	}
	.mob-w-636 {
		width: 636px;
	}
	.mob-w-640 {
		width: 640px;
	}
	.mob-w-644 {
		width: 644px;
	}
	.mob-w-648 {
		width: 648px;
	}
	.mob-w-652 {
		width: 652px;
	}
	.mob-w-656 {
		width: 656px;
	}
	.mob-w-660 {
		width: 660px;
	}
	.mob-w-664 {
		width: 664px;
	}
	.mob-w-668 {
		width: 668px;
	}
	.mob-w-672 {
		width: 672px;
	}
	.mob-w-676 {
		width: 676px;
	}
	.mob-w-680 {
		width: 680px;
	}
	.mob-w-684 {
		width: 684px;
	}
	.mob-w-688 {
		width: 688px;
	}
	.mob-w-692 {
		width: 692px;
	}
	.mob-w-696 {
		width: 696px;
	}
	.mob-w-700 {
		width: 700px;
	}
	.mob-w-704 {
		width: 704px;
	}
	.mob-w-708 {
		width: 708px;
	}
	.mob-w-712 {
		width: 712px;
	}
	.mob-w-716 {
		width: 716px;
	}
	.mob-w-720 {
		width: 720px;
	}
	.mob-w-724 {
		width: 724px;
	}
	.mob-w-728 {
		width: 728px;
	}
	.mob-w-732 {
		width: 732px;
	}
	.mob-w-736 {
		width: 736px;
	}
	.mob-w-740 {
		width: 740px;
	}
	.mob-w-744 {
		width: 744px;
	}
	.mob-w-748 {
		width: 748px;
	}
	.mob-w-752 {
		width: 752px;
	}
	.mob-w-756 {
		width: 756px;
	}
	.mob-w-760 {
		width: 760px;
	}
	.mob-w-764 {
		width: 764px;
	}
	.mob-w-768 {
		width: 768px;
	}
	.mob-w-772 {
		width: 772px;
	}
	.mob-w-776 {
		width: 776px;
	}
	.mob-w-780 {
		width: 780px;
	}
	.mob-w-784 {
		width: 784px;
	}
	.mob-w-788 {
		width: 788px;
	}
	.mob-w-792 {
		width: 792px;
	}
	.mob-w-796 {
		width: 796px;
	}
	.mob-w-800 {
		width: 800px;
	}
	.mob-w-804 {
		width: 804px;
	}
	.mob-w-808 {
		width: 808px;
	}
	.mob-w-812 {
		width: 812px;
	}
	.mob-w-816 {
		width: 816px;
	}
	.mob-w-820 {
		width: 820px;
	}
	.mob-w-824 {
		width: 824px;
	}
	.mob-w-828 {
		width: 828px;
	}
	.mob-w-832 {
		width: 832px;
	}
	.mob-w-836 {
		width: 836px;
	}
	.mob-w-840 {
		width: 840px;
	}
	.mob-w-844 {
		width: 844px;
	}
	.mob-w-848 {
		width: 848px;
	}
	.mob-w-852 {
		width: 852px;
	}
	.mob-w-856 {
		width: 856px;
	}
	.mob-w-860 {
		width: 860px;
	}
	.mob-w-864 {
		width: 864px;
	}
	.mob-w-868 {
		width: 868px;
	}
	.mob-w-872 {
		width: 872px;
	}
	.mob-w-876 {
		width: 876px;
	}
	.mob-w-880 {
		width: 880px;
	}
	.mob-w-884 {
		width: 884px;
	}
	.mob-w-888 {
		width: 888px;
	}
	.mob-w-892 {
		width: 892px;
	}
	.mob-w-896 {
		width: 896px;
	}
	.mob-w-900 {
		width: 900px;
	}
	.mob-w-904 {
		width: 904px;
	}
	.mob-w-908 {
		width: 908px;
	}
	.mob-w-912 {
		width: 912px;
	}
	.mob-w-916 {
		width: 916px;
	}
	.mob-w-920 {
		width: 920px;
	}
	.mob-w-924 {
		width: 924px;
	}
	.mob-w-928 {
		width: 928px;
	}
	.mob-w-932 {
		width: 932px;
	}
	.mob-w-936 {
		width: 936px;
	}
	.mob-w-940 {
		width: 940px;
	}
	.mob-w-944 {
		width: 944px;
	}
	.mob-w-948 {
		width: 948px;
	}
	.mob-w-952 {
		width: 952px;
	}
	.mob-w-956 {
		width: 956px;
	}
	.mob-w-960 {
		width: 960px;
	}
	.mob-w-964 {
		width: 964px;
	}
	.mob-w-968 {
		width: 968px;
	}
	.mob-w-972 {
		width: 972px;
	}
	.mob-w-976 {
		width: 976px;
	}
	.mob-w-980 {
		width: 980px;
	}
	.mob-w-984 {
		width: 984px;
	}
	.mob-w-988 {
		width: 988px;
	}
	.mob-w-992 {
		width: 992px;
	}
	.mob-w-996 {
		width: 996px;
	}
	.mob-w-1000 {
		width: 1000px;
	}
	.mob-w-1004 {
		width: 1004px;
	}
	.mob-w-1008 {
		width: 1008px;
	}
	.mob-w-1012 {
		width: 1012px;
	}
	.mob-w-1016 {
		width: 1016px;
	}
	.mob-w-1020 {
		width: 1020px;
	}
	.mob-w-1024 {
		width: 1024px;
	}
	.mob-w-1028 {
		width: 1028px;
	}
	.mob-w-1032 {
		width: 1032px;
	}
	.mob-w-1036 {
		width: 1036px;
	}
	.mob-w-1040 {
		width: 1040px;
	}
	.mob-w-1044 {
		width: 1044px;
	}
	.mob-w-1048 {
		width: 1048px;
	}
	.mob-w-1052 {
		width: 1052px;
	}
	.mob-w-1056 {
		width: 1056px;
	}
	.mob-w-1060 {
		width: 1060px;
	}
	.mob-w-1064 {
		width: 1064px;
	}
	.mob-w-1068 {
		width: 1068px;
	}
	.mob-w-1072 {
		width: 1072px;
	}
	.mob-w-1076 {
		width: 1076px;
	}
	.mob-w-1080 {
		width: 1080px;
	}
	.mob-w-1084 {
		width: 1084px;
	}
	.mob-w-1088 {
		width: 1088px;
	}
	.mob-w-1092 {
		width: 1092px;
	}
	.mob-w-1096 {
		width: 1096px;
	}
	.mob-w-1100 {
		width: 1100px;
	}
	.mob-w-1104 {
		width: 1104px;
	}
	.mob-w-1108 {
		width: 1108px;
	}
	.mob-w-1112 {
		width: 1112px;
	}
	.mob-w-1116 {
		width: 1116px;
	}
	.mob-w-1120 {
		width: 1120px;
	}
	.mob-w-1124 {
		width: 1124px;
	}
	.mob-w-1128 {
		width: 1128px;
	}
	.mob-w-1132 {
		width: 1132px;
	}
	.mob-w-1136 {
		width: 1136px;
	}
	.mob-w-1140 {
		width: 1140px;
	}
	.mob-w-1144 {
		width: 1144px;
	}
	.mob-w-1148 {
		width: 1148px;
	}
	.mob-w-1152 {
		width: 1152px;
	}
	.mob-w-1156 {
		width: 1156px;
	}
	.mob-w-1160 {
		width: 1160px;
	}
	.mob-w-1164 {
		width: 1164px;
	}
	.mob-w-1168 {
		width: 1168px;
	}
	.mob-w-1172 {
		width: 1172px;
	}
	.mob-w-1176 {
		width: 1176px;
	}
	.mob-w-1180 {
		width: 1180px;
	}
	.mob-w-1184 {
		width: 1184px;
	}
	.mob-w-1188 {
		width: 1188px;
	}
	.mob-w-1192 {
		width: 1192px;
	}
	.mob-w-1196 {
		width: 1196px;
	}
	.mob-w-1200 {
		width: 1200px;
	}
	.mob-w-1204 {
		width: 1204px;
	}
	.mob-w-1208 {
		width: 1208px;
	}
	.mob-w-1212 {
		width: 1212px;
	}
	.mob-w-1216 {
		width: 1216px;
	}
	.mob-w-1220 {
		width: 1220px;
	}
	.mob-w-1224 {
		width: 1224px;
	}
	.mob-w-1228 {
		width: 1228px;
	}
	.mob-w-1232 {
		width: 1232px;
	}
	.mob-w-1236 {
		width: 1236px;
	}
	.mob-w-1240 {
		width: 1240px;
	}
	.mob-w-1244 {
		width: 1244px;
	}
	.mob-w-1248 {
		width: 1248px;
	}
	.mob-w-1252 {
		width: 1252px;
	}
	.mob-w-1256 {
		width: 1256px;
	}
	.mob-w-1260 {
		width: 1260px;
	}
	.mob-w-1264 {
		width: 1264px;
	}
	.mob-w-1268 {
		width: 1268px;
	}
	.mob-w-1272 {
		width: 1272px;
	}
	.mob-w-1276 {
		width: 1276px;
	}
	.mob-w-1280 {
		width: 1280px;
	}
	.mob-w-1284 {
		width: 1284px;
	}
	.mob-w-1288 {
		width: 1288px;
	}
	.mob-w-1292 {
		width: 1292px;
	}
	.mob-w-1296 {
		width: 1296px;
	}
	.mob-w-1300 {
		width: 1300px;
	}
	.mob-w-1304 {
		width: 1304px;
	}
	.mob-w-1308 {
		width: 1308px;
	}
	.mob-w-1312 {
		width: 1312px;
	}
	.mob-w-1316 {
		width: 1316px;
	}
	.mob-w-1320 {
		width: 1320px;
	}
	.mob-w-1324 {
		width: 1324px;
	}
	.mob-w-1328 {
		width: 1328px;
	}
	.mob-w-1332 {
		width: 1332px;
	}
	.mob-w-1336 {
		width: 1336px;
	}
	.mob-w-1340 {
		width: 1340px;
	}
	.mob-w-1344 {
		width: 1344px;
	}
	.mob-w-1348 {
		width: 1348px;
	}
	.mob-w-1352 {
		width: 1352px;
	}
	.mob-w-1356 {
		width: 1356px;
	}
	.mob-w-1360 {
		width: 1360px;
	}
	.mob-w-1364 {
		width: 1364px;
	}
	.mob-w-1368 {
		width: 1368px;
	}
	.mob-w-1372 {
		width: 1372px;
	}
	.mob-w-1376 {
		width: 1376px;
	}
	.mob-w-1380 {
		width: 1380px;
	}
	.mob-w-1384 {
		width: 1384px;
	}
	.mob-w-1388 {
		width: 1388px;
	}
	.mob-w-1392 {
		width: 1392px;
	}
	.mob-w-1396 {
		width: 1396px;
	}
	.mob-w-1400 {
		width: 1400px;
	}
	.mob-w-1404 {
		width: 1404px;
	}
	.mob-w-1408 {
		width: 1408px;
	}
	.mob-w-1412 {
		width: 1412px;
	}
	.mob-w-1416 {
		width: 1416px;
	}
	.mob-w-1420 {
		width: 1420px;
	}
	.mob-w-1424 {
		width: 1424px;
	}
	.mob-w-1428 {
		width: 1428px;
	}
	.mob-w-1432 {
		width: 1432px;
	}
	.mob-w-1436 {
		width: 1436px;
	}
	.mob-w-1440 {
		width: 1440px;
	}
	.mob-w-1444 {
		width: 1444px;
	}
	.mob-w-1448 {
		width: 1448px;
	}
	.mob-w-1452 {
		width: 1452px;
	}
	.mob-w-1456 {
		width: 1456px;
	}
	.mob-w-1460 {
		width: 1460px;
	}
	.mob-w-1464 {
		width: 1464px;
	}
	.mob-w-1468 {
		width: 1468px;
	}
	.mob-w-1472 {
		width: 1472px;
	}
	.mob-w-1476 {
		width: 1476px;
	}
	.mob-w-1480 {
		width: 1480px;
	}
	.mob-w-1484 {
		width: 1484px;
	}
	.mob-w-1488 {
		width: 1488px;
	}
	.mob-w-1492 {
		width: 1492px;
	}
	.mob-w-1496 {
		width: 1496px;
	}
	.mob-w-1500 {
		width: 1500px;
	}
	.mob-w-1504 {
		width: 1504px;
	}
	.mob-w-1508 {
		width: 1508px;
	}
	.mob-w-1512 {
		width: 1512px;
	}
	.mob-w-1516 {
		width: 1516px;
	}
	.mob-w-1520 {
		width: 1520px;
	}
	.mob-w-1524 {
		width: 1524px;
	}
	.mob-w-1528 {
		width: 1528px;
	}
	.mob-w-1532 {
		width: 1532px;
	}
	.mob-w-1536 {
		width: 1536px;
	}
	.mob-w-1540 {
		width: 1540px;
	}
	.mob-w-1544 {
		width: 1544px;
	}
	.mob-w-1548 {
		width: 1548px;
	}
	.mob-w-1552 {
		width: 1552px;
	}
	.mob-w-1556 {
		width: 1556px;
	}
	.mob-w-1560 {
		width: 1560px;
	}
	.mob-w-1564 {
		width: 1564px;
	}
	.mob-w-1568 {
		width: 1568px;
	}
	.mob-w-1572 {
		width: 1572px;
	}
	.mob-w-1576 {
		width: 1576px;
	}
	.mob-w-1580 {
		width: 1580px;
	}
	.mob-w-1584 {
		width: 1584px;
	}
	.mob-w-1588 {
		width: 1588px;
	}
	.mob-w-1592 {
		width: 1592px;
	}
	.mob-w-1596 {
		width: 1596px;
	}
	.mob-w-1600 {
		width: 1600px;
	}
	.mob-w-1604 {
		width: 1604px;
	}
	.mob-w-1608 {
		width: 1608px;
	}
	.mob-w-1612 {
		width: 1612px;
	}
	.mob-w-1616 {
		width: 1616px;
	}
	.mob-w-1620 {
		width: 1620px;
	}
	.mob-w-1624 {
		width: 1624px;
	}
	.mob-w-1628 {
		width: 1628px;
	}
	.mob-w-1632 {
		width: 1632px;
	}
	.mob-w-1636 {
		width: 1636px;
	}
	.mob-w-1640 {
		width: 1640px;
	}
	.mob-w-1644 {
		width: 1644px;
	}
	.mob-w-1648 {
		width: 1648px;
	}
	.mob-w-1652 {
		width: 1652px;
	}
	.mob-w-1656 {
		width: 1656px;
	}
	.mob-w-1660 {
		width: 1660px;
	}
	.mob-w-1664 {
		width: 1664px;
	}
	.mob-w-1668 {
		width: 1668px;
	}
	.mob-w-1672 {
		width: 1672px;
	}
	.mob-w-1676 {
		width: 1676px;
	}
	.mob-w-1680 {
		width: 1680px;
	}
	.mob-w-1684 {
		width: 1684px;
	}
	.mob-w-1688 {
		width: 1688px;
	}
	.mob-w-1692 {
		width: 1692px;
	}
	.mob-w-1696 {
		width: 1696px;
	}
	.mob-w-1700 {
		width: 1700px;
	}
	.mob-w-1704 {
		width: 1704px;
	}
	.mob-w-1708 {
		width: 1708px;
	}
	.mob-w-1712 {
		width: 1712px;
	}
	.mob-w-1716 {
		width: 1716px;
	}
	.mob-w-1720 {
		width: 1720px;
	}
	.mob-w-1724 {
		width: 1724px;
	}
	.mob-w-1728 {
		width: 1728px;
	}
	.mob-w-1732 {
		width: 1732px;
	}
	.mob-w-1736 {
		width: 1736px;
	}
	.mob-w-1740 {
		width: 1740px;
	}
	.mob-w-1744 {
		width: 1744px;
	}
	.mob-w-1748 {
		width: 1748px;
	}
	.mob-w-1752 {
		width: 1752px;
	}
	.mob-w-1756 {
		width: 1756px;
	}
	.mob-w-1760 {
		width: 1760px;
	}
	.mob-w-1764 {
		width: 1764px;
	}
	.mob-w-1768 {
		width: 1768px;
	}
	.mob-w-1772 {
		width: 1772px;
	}
	.mob-w-1776 {
		width: 1776px;
	}
	.mob-w-1780 {
		width: 1780px;
	}
	.mob-w-1784 {
		width: 1784px;
	}
	.mob-w-1788 {
		width: 1788px;
	}
	.mob-w-1792 {
		width: 1792px;
	}
	.mob-w-1796 {
		width: 1796px;
	}
	.mob-w-1800 {
		width: 1800px;
	}
	.mob-w-1804 {
		width: 1804px;
	}
	.mob-w-1808 {
		width: 1808px;
	}
	.mob-w-1812 {
		width: 1812px;
	}
	.mob-w-1816 {
		width: 1816px;
	}
	.mob-w-1820 {
		width: 1820px;
	}
	.mob-w-1824 {
		width: 1824px;
	}
	.mob-w-1828 {
		width: 1828px;
	}
	.mob-w-1832 {
		width: 1832px;
	}
	.mob-w-1836 {
		width: 1836px;
	}
	.mob-w-1840 {
		width: 1840px;
	}
	.mob-w-1844 {
		width: 1844px;
	}
	.mob-w-1848 {
		width: 1848px;
	}
	.mob-w-1852 {
		width: 1852px;
	}
	.mob-w-1856 {
		width: 1856px;
	}
	.mob-w-1860 {
		width: 1860px;
	}
	.mob-w-1864 {
		width: 1864px;
	}
	.mob-w-1868 {
		width: 1868px;
	}
	.mob-w-1872 {
		width: 1872px;
	}
	.mob-w-1876 {
		width: 1876px;
	}
	.mob-w-1880 {
		width: 1880px;
	}
	.mob-w-1884 {
		width: 1884px;
	}
	.mob-w-1888 {
		width: 1888px;
	}
	.mob-w-1892 {
		width: 1892px;
	}
	.mob-w-1896 {
		width: 1896px;
	}
	.mob-w-1900 {
		width: 1900px;
	}
	.mob-w-1904 {
		width: 1904px;
	}
	.mob-w-1908 {
		width: 1908px;
	}
	.mob-w-1912 {
		width: 1912px;
	}
	.mob-w-1916 {
		width: 1916px;
	}
	.mob-w-1920 {
		width: 1920px;
	}
	.mob-w-1924 {
		width: 1924px;
	}
	.mob-w-1928 {
		width: 1928px;
	}
	.mob-w-1932 {
		width: 1932px;
	}
	.mob-w-1936 {
		width: 1936px;
	}
	.mob-w-1940 {
		width: 1940px;
	}
	.mob-w-1944 {
		width: 1944px;
	}
	.mob-w-1948 {
		width: 1948px;
	}
	.mob-w-1952 {
		width: 1952px;
	}
	.mob-w-1956 {
		width: 1956px;
	}
	.mob-w-1960 {
		width: 1960px;
	}
	.mob-w-1964 {
		width: 1964px;
	}
	.mob-w-1968 {
		width: 1968px;
	}
	.mob-w-1972 {
		width: 1972px;
	}
	.mob-w-1976 {
		width: 1976px;
	}
	.mob-w-1980 {
		width: 1980px;
	}
	.mob-w-1984 {
		width: 1984px;
	}
	.mob-w-1988 {
		width: 1988px;
	}
	.mob-w-1992 {
		width: 1992px;
	}
	.mob-w-1996 {
		width: 1996px;
	}
	.mob-w-2000 {
		width: 2000px;
	}
}
@media screen and (min-width: 1725px) {
	.xl-w-25 {
		width: 25px !important;
	}
	.xl-max-w-25 {
		max-width: 25px !important;
	}
	.xl-min-w-25 {
		min-width: 25px !important;
	}
	.xl-w-50 {
		width: 50px !important;
	}
	.xl-max-w-50 {
		max-width: 50px !important;
	}
	.xl-min-w-50 {
		min-width: 50px !important;
	}
	.xl-w-75 {
		width: 75px !important;
	}
	.xl-max-w-75 {
		max-width: 75px !important;
	}
	.xl-min-w-75 {
		min-width: 75px !important;
	}
	.xl-w-100 {
		width: 100px !important;
	}
	.xl-max-w-100 {
		max-width: 100px !important;
	}
	.xl-min-w-100 {
		min-width: 100px !important;
	}
	.xl-w-125 {
		width: 125px !important;
	}
	.xl-max-w-125 {
		max-width: 125px !important;
	}
	.xl-min-w-125 {
		min-width: 125px !important;
	}
	.xl-w-150 {
		width: 150px !important;
	}
	.xl-max-w-150 {
		max-width: 150px !important;
	}
	.xl-min-w-150 {
		min-width: 150px !important;
	}
	.xl-w-175 {
		width: 175px !important;
	}
	.xl-max-w-175 {
		max-width: 175px !important;
	}
	.xl-min-w-175 {
		min-width: 175px !important;
	}
	.xl-w-200 {
		width: 200px !important;
	}
	.xl-max-w-200 {
		max-width: 200px !important;
	}
	.xl-min-w-200 {
		min-width: 200px !important;
	}
	.xl-w-225 {
		width: 225px !important;
	}
	.xl-max-w-225 {
		max-width: 225px !important;
	}
	.xl-min-w-225 {
		min-width: 225px !important;
	}
	.xl-w-250 {
		width: 250px !important;
	}
	.xl-max-w-250 {
		max-width: 250px !important;
	}
	.xl-min-w-250 {
		min-width: 250px !important;
	}
	.xl-w-275 {
		width: 275px !important;
	}
	.xl-max-w-275 {
		max-width: 275px !important;
	}
	.xl-min-w-275 {
		min-width: 275px !important;
	}
	.xl-w-300 {
		width: 300px !important;
	}
	.xl-max-w-300 {
		max-width: 300px !important;
	}
	.xl-min-w-300 {
		min-width: 300px !important;
	}
	.xl-w-325 {
		width: 325px !important;
	}
	.xl-max-w-325 {
		max-width: 325px !important;
	}
	.xl-min-w-325 {
		min-width: 325px !important;
	}
	.xl-w-350 {
		width: 350px !important;
	}
	.xl-max-w-350 {
		max-width: 350px !important;
	}
	.xl-min-w-350 {
		min-width: 350px !important;
	}
	.xl-w-375 {
		width: 375px !important;
	}
	.xl-max-w-375 {
		max-width: 375px !important;
	}
	.xl-min-w-375 {
		min-width: 375px !important;
	}
	.xl-w-400 {
		width: 400px !important;
	}
	.xl-max-w-400 {
		max-width: 400px !important;
	}
	.xl-min-w-400 {
		min-width: 400px !important;
	}
	.xl-w-425 {
		width: 425px !important;
	}
	.xl-max-w-425 {
		max-width: 425px !important;
	}
	.xl-min-w-425 {
		min-width: 425px !important;
	}
	.xl-w-450 {
		width: 450px !important;
	}
	.xl-max-w-450 {
		max-width: 450px !important;
	}
	.xl-min-w-450 {
		min-width: 450px !important;
	}
	.xl-w-475 {
		width: 475px !important;
	}
	.xl-max-w-475 {
		max-width: 475px !important;
	}
	.xl-min-w-475 {
		min-width: 475px !important;
	}
	.xl-w-500 {
		width: 500px !important;
	}
	.xl-max-w-500 {
		max-width: 500px !important;
	}
	.xl-min-w-500 {
		min-width: 500px !important;
	}
	.xl-w-525 {
		width: 525px !important;
	}
	.xl-max-w-525 {
		max-width: 525px !important;
	}
	.xl-min-w-525 {
		min-width: 525px !important;
	}
	.xl-w-550 {
		width: 550px !important;
	}
	.xl-max-w-550 {
		max-width: 550px !important;
	}
	.xl-min-w-550 {
		min-width: 550px !important;
	}
	.xl-w-575 {
		width: 575px !important;
	}
	.xl-max-w-575 {
		max-width: 575px !important;
	}
	.xl-min-w-575 {
		min-width: 575px !important;
	}
	.xl-w-600 {
		width: 600px !important;
	}
	.xl-max-w-600 {
		max-width: 600px !important;
	}
	.xl-min-w-600 {
		min-width: 600px !important;
	}
	.xl-w-625 {
		width: 625px !important;
	}
	.xl-max-w-625 {
		max-width: 625px !important;
	}
	.xl-min-w-625 {
		min-width: 625px !important;
	}
	.xl-w-650 {
		width: 650px !important;
	}
	.xl-max-w-650 {
		max-width: 650px !important;
	}
	.xl-min-w-650 {
		min-width: 650px !important;
	}
	.xl-w-675 {
		width: 675px !important;
	}
	.xl-max-w-675 {
		max-width: 675px !important;
	}
	.xl-min-w-675 {
		min-width: 675px !important;
	}
	.xl-w-700 {
		width: 700px !important;
	}
	.xl-max-w-700 {
		max-width: 700px !important;
	}
	.xl-min-w-700 {
		min-width: 700px !important;
	}
	.xl-w-725 {
		width: 725px !important;
	}
	.xl-max-w-725 {
		max-width: 725px !important;
	}
	.xl-min-w-725 {
		min-width: 725px !important;
	}
	.xl-w-750 {
		width: 750px !important;
	}
	.xl-max-w-750 {
		max-width: 750px !important;
	}
	.xl-min-w-750 {
		min-width: 750px !important;
	}
	.xl-w-775 {
		width: 775px !important;
	}
	.xl-max-w-775 {
		max-width: 775px !important;
	}
	.xl-min-w-775 {
		min-width: 775px !important;
	}
	.xl-w-800 {
		width: 800px !important;
	}
	.xl-max-w-800 {
		max-width: 800px !important;
	}
	.xl-min-w-800 {
		min-width: 800px !important;
	}
	.xl-w-825 {
		width: 825px !important;
	}
	.xl-max-w-825 {
		max-width: 825px !important;
	}
	.xl-min-w-825 {
		min-width: 825px !important;
	}
	.xl-w-850 {
		width: 850px !important;
	}
	.xl-max-w-850 {
		max-width: 850px !important;
	}
	.xl-min-w-850 {
		min-width: 850px !important;
	}
	.xl-w-875 {
		width: 875px !important;
	}
	.xl-max-w-875 {
		max-width: 875px !important;
	}
	.xl-min-w-875 {
		min-width: 875px !important;
	}
	.xl-w-900 {
		width: 900px !important;
	}
	.xl-max-w-900 {
		max-width: 900px !important;
	}
	.xl-min-w-900 {
		min-width: 900px !important;
	}
	.xl-w-925 {
		width: 925px !important;
	}
	.xl-max-w-925 {
		max-width: 925px !important;
	}
	.xl-min-w-925 {
		min-width: 925px !important;
	}
	.xl-w-950 {
		width: 950px !important;
	}
	.xl-max-w-950 {
		max-width: 950px !important;
	}
	.xl-min-w-950 {
		min-width: 950px !important;
	}
	.xl-w-975 {
		width: 975px !important;
	}
	.xl-max-w-975 {
		max-width: 975px !important;
	}
	.xl-min-w-975 {
		min-width: 975px !important;
	}
	.xl-w-1000 {
		width: 1000px !important;
	}
	.xl-max-w-1000 {
		max-width: 1000px !important;
	}
	.xl-min-w-1000 {
		min-width: 1000px !important;
	}
	.xl-w-1025 {
		width: 1025px !important;
	}
	.xl-max-w-1025 {
		max-width: 1025px !important;
	}
	.xl-min-w-1025 {
		min-width: 1025px !important;
	}
	.xl-w-1050 {
		width: 1050px !important;
	}
	.xl-max-w-1050 {
		max-width: 1050px !important;
	}
	.xl-min-w-1050 {
		min-width: 1050px !important;
	}
	.xl-w-1075 {
		width: 1075px !important;
	}
	.xl-max-w-1075 {
		max-width: 1075px !important;
	}
	.xl-min-w-1075 {
		min-width: 1075px !important;
	}
	.xl-w-1100 {
		width: 1100px !important;
	}
	.xl-max-w-1100 {
		max-width: 1100px !important;
	}
	.xl-min-w-1100 {
		min-width: 1100px !important;
	}
	.xl-w-1125 {
		width: 1125px !important;
	}
	.xl-max-w-1125 {
		max-width: 1125px !important;
	}
	.xl-min-w-1125 {
		min-width: 1125px !important;
	}
	.xl-w-1150 {
		width: 1150px !important;
	}
	.xl-max-w-1150 {
		max-width: 1150px !important;
	}
	.xl-min-w-1150 {
		min-width: 1150px !important;
	}
	.xl-w-1175 {
		width: 1175px !important;
	}
	.xl-max-w-1175 {
		max-width: 1175px !important;
	}
	.xl-min-w-1175 {
		min-width: 1175px !important;
	}
	.xl-w-1200 {
		width: 1200px !important;
	}
	.xl-max-w-1200 {
		max-width: 1200px !important;
	}
	.xl-min-w-1200 {
		min-width: 1200px !important;
	}
	.xl-w-1225 {
		width: 1225px !important;
	}
	.xl-max-w-1225 {
		max-width: 1225px !important;
	}
	.xl-min-w-1225 {
		min-width: 1225px !important;
	}
	.xl-w-1250 {
		width: 1250px !important;
	}
	.xl-max-w-1250 {
		max-width: 1250px !important;
	}
	.xl-min-w-1250 {
		min-width: 1250px !important;
	}
	.xl-w-1275 {
		width: 1275px !important;
	}
	.xl-max-w-1275 {
		max-width: 1275px !important;
	}
	.xl-min-w-1275 {
		min-width: 1275px !important;
	}
	.xl-w-1300 {
		width: 1300px !important;
	}
	.xl-max-w-1300 {
		max-width: 1300px !important;
	}
	.xl-min-w-1300 {
		min-width: 1300px !important;
	}
	.xl-w-1325 {
		width: 1325px !important;
	}
	.xl-max-w-1325 {
		max-width: 1325px !important;
	}
	.xl-min-w-1325 {
		min-width: 1325px !important;
	}
	.xl-w-1350 {
		width: 1350px !important;
	}
	.xl-max-w-1350 {
		max-width: 1350px !important;
	}
	.xl-min-w-1350 {
		min-width: 1350px !important;
	}
	.xl-w-1375 {
		width: 1375px !important;
	}
	.xl-max-w-1375 {
		max-width: 1375px !important;
	}
	.xl-min-w-1375 {
		min-width: 1375px !important;
	}
	.xl-w-1400 {
		width: 1400px !important;
	}
	.xl-max-w-1400 {
		max-width: 1400px !important;
	}
	.xl-min-w-1400 {
		min-width: 1400px !important;
	}
	.xl-w-1425 {
		width: 1425px !important;
	}
	.xl-max-w-1425 {
		max-width: 1425px !important;
	}
	.xl-min-w-1425 {
		min-width: 1425px !important;
	}
	.xl-w-1450 {
		width: 1450px !important;
	}
	.xl-max-w-1450 {
		max-width: 1450px !important;
	}
	.xl-min-w-1450 {
		min-width: 1450px !important;
	}
	.xl-w-1475 {
		width: 1475px !important;
	}
	.xl-max-w-1475 {
		max-width: 1475px !important;
	}
	.xl-min-w-1475 {
		min-width: 1475px !important;
	}
	.xl-w-1500 {
		width: 1500px !important;
	}
	.xl-max-w-1500 {
		max-width: 1500px !important;
	}
	.xl-min-w-1500 {
		min-width: 1500px !important;
	}
	.xl-w-1525 {
		width: 1525px !important;
	}
	.xl-max-w-1525 {
		max-width: 1525px !important;
	}
	.xl-min-w-1525 {
		min-width: 1525px !important;
	}
	.xl-w-1550 {
		width: 1550px !important;
	}
	.xl-max-w-1550 {
		max-width: 1550px !important;
	}
	.xl-min-w-1550 {
		min-width: 1550px !important;
	}
	.xl-w-1575 {
		width: 1575px !important;
	}
	.xl-max-w-1575 {
		max-width: 1575px !important;
	}
	.xl-min-w-1575 {
		min-width: 1575px !important;
	}
	.xl-w-1600 {
		width: 1600px !important;
	}
	.xl-max-w-1600 {
		max-width: 1600px !important;
	}
	.xl-min-w-1600 {
		min-width: 1600px !important;
	}
	.xl-w-1625 {
		width: 1625px !important;
	}
	.xl-max-w-1625 {
		max-width: 1625px !important;
	}
	.xl-min-w-1625 {
		min-width: 1625px !important;
	}
	.xl-w-1650 {
		width: 1650px !important;
	}
	.xl-max-w-1650 {
		max-width: 1650px !important;
	}
	.xl-min-w-1650 {
		min-width: 1650px !important;
	}
	.xl-w-1675 {
		width: 1675px !important;
	}
	.xl-max-w-1675 {
		max-width: 1675px !important;
	}
	.xl-min-w-1675 {
		min-width: 1675px !important;
	}
	.xl-w-1700 {
		width: 1700px !important;
	}
	.xl-max-w-1700 {
		max-width: 1700px !important;
	}
	.xl-min-w-1700 {
		min-width: 1700px !important;
	}
	.xl-w-1725 {
		width: 1725px !important;
	}
	.xl-max-w-1725 {
		max-width: 1725px !important;
	}
	.xl-min-w-1725 {
		min-width: 1725px !important;
	}
	.xl-w-1750 {
		width: 1750px !important;
	}
	.xl-max-w-1750 {
		max-width: 1750px !important;
	}
	.xl-min-w-1750 {
		min-width: 1750px !important;
	}
	.xl-w-1775 {
		width: 1775px !important;
	}
	.xl-max-w-1775 {
		max-width: 1775px !important;
	}
	.xl-min-w-1775 {
		min-width: 1775px !important;
	}
	.xl-w-1800 {
		width: 1800px !important;
	}
	.xl-max-w-1800 {
		max-width: 1800px !important;
	}
	.xl-min-w-1800 {
		min-width: 1800px !important;
	}
	.xl-w-1825 {
		width: 1825px !important;
	}
	.xl-max-w-1825 {
		max-width: 1825px !important;
	}
	.xl-min-w-1825 {
		min-width: 1825px !important;
	}
	.xl-w-1850 {
		width: 1850px !important;
	}
	.xl-max-w-1850 {
		max-width: 1850px !important;
	}
	.xl-min-w-1850 {
		min-width: 1850px !important;
	}
	.xl-w-1875 {
		width: 1875px !important;
	}
	.xl-max-w-1875 {
		max-width: 1875px !important;
	}
	.xl-min-w-1875 {
		min-width: 1875px !important;
	}
	.xl-w-1900 {
		width: 1900px !important;
	}
	.xl-max-w-1900 {
		max-width: 1900px !important;
	}
	.xl-min-w-1900 {
		min-width: 1900px !important;
	}
	.xl-w-1925 {
		width: 1925px !important;
	}
	.xl-max-w-1925 {
		max-width: 1925px !important;
	}
	.xl-min-w-1925 {
		min-width: 1925px !important;
	}
	.xl-w-1950 {
		width: 1950px !important;
	}
	.xl-max-w-1950 {
		max-width: 1950px !important;
	}
	.xl-min-w-1950 {
		min-width: 1950px !important;
	}
	.xl-w-1975 {
		width: 1975px !important;
	}
	.xl-max-w-1975 {
		max-width: 1975px !important;
	}
	.xl-min-w-1975 {
		min-width: 1975px !important;
	}
	.xl-w-2000 {
		width: 2000px !important;
	}
	.xl-max-w-2000 {
		max-width: 2000px !important;
	}
	.xl-min-w-2000 {
		min-width: 2000px !important;
	}
	.xl-w-2025 {
		width: 2025px !important;
	}
	.xl-max-w-2025 {
		max-width: 2025px !important;
	}
	.xl-min-w-2025 {
		min-width: 2025px !important;
	}
	.xl-w-2050 {
		width: 2050px !important;
	}
	.xl-max-w-2050 {
		max-width: 2050px !important;
	}
	.xl-min-w-2050 {
		min-width: 2050px !important;
	}
	.xl-w-2075 {
		width: 2075px !important;
	}
	.xl-max-w-2075 {
		max-width: 2075px !important;
	}
	.xl-min-w-2075 {
		min-width: 2075px !important;
	}
	.xl-w-2100 {
		width: 2100px !important;
	}
	.xl-max-w-2100 {
		max-width: 2100px !important;
	}
	.xl-min-w-2100 {
		min-width: 2100px !important;
	}
	.xl-w-2125 {
		width: 2125px !important;
	}
	.xl-max-w-2125 {
		max-width: 2125px !important;
	}
	.xl-min-w-2125 {
		min-width: 2125px !important;
	}
	.xl-w-2150 {
		width: 2150px !important;
	}
	.xl-max-w-2150 {
		max-width: 2150px !important;
	}
	.xl-min-w-2150 {
		min-width: 2150px !important;
	}
	.xl-w-2175 {
		width: 2175px !important;
	}
	.xl-max-w-2175 {
		max-width: 2175px !important;
	}
	.xl-min-w-2175 {
		min-width: 2175px !important;
	}
	.xl-w-2200 {
		width: 2200px !important;
	}
	.xl-max-w-2200 {
		max-width: 2200px !important;
	}
	.xl-min-w-2200 {
		min-width: 2200px !important;
	}
	.xl-w-2225 {
		width: 2225px !important;
	}
	.xl-max-w-2225 {
		max-width: 2225px !important;
	}
	.xl-min-w-2225 {
		min-width: 2225px !important;
	}
	.xl-w-2250 {
		width: 2250px !important;
	}
	.xl-max-w-2250 {
		max-width: 2250px !important;
	}
	.xl-min-w-2250 {
		min-width: 2250px !important;
	}
	.xl-w-2275 {
		width: 2275px !important;
	}
	.xl-max-w-2275 {
		max-width: 2275px !important;
	}
	.xl-min-w-2275 {
		min-width: 2275px !important;
	}
	.xl-w-2300 {
		width: 2300px !important;
	}
	.xl-max-w-2300 {
		max-width: 2300px !important;
	}
	.xl-min-w-2300 {
		min-width: 2300px !important;
	}
	.xl-w-2325 {
		width: 2325px !important;
	}
	.xl-max-w-2325 {
		max-width: 2325px !important;
	}
	.xl-min-w-2325 {
		min-width: 2325px !important;
	}
	.xl-w-2350 {
		width: 2350px !important;
	}
	.xl-max-w-2350 {
		max-width: 2350px !important;
	}
	.xl-min-w-2350 {
		min-width: 2350px !important;
	}
	.xl-w-2375 {
		width: 2375px !important;
	}
	.xl-max-w-2375 {
		max-width: 2375px !important;
	}
	.xl-min-w-2375 {
		min-width: 2375px !important;
	}
	.xl-w-2400 {
		width: 2400px !important;
	}
	.xl-max-w-2400 {
		max-width: 2400px !important;
	}
	.xl-min-w-2400 {
		min-width: 2400px !important;
	}
	.xl-w-2425 {
		width: 2425px !important;
	}
	.xl-max-w-2425 {
		max-width: 2425px !important;
	}
	.xl-min-w-2425 {
		min-width: 2425px !important;
	}
	.xl-w-2450 {
		width: 2450px !important;
	}
	.xl-max-w-2450 {
		max-width: 2450px !important;
	}
	.xl-min-w-2450 {
		min-width: 2450px !important;
	}
	.xl-w-2475 {
		width: 2475px !important;
	}
	.xl-max-w-2475 {
		max-width: 2475px !important;
	}
	.xl-min-w-2475 {
		min-width: 2475px !important;
	}
	.xl-w-2500 {
		width: 2500px !important;
	}
	.xl-max-w-2500 {
		max-width: 2500px !important;
	}
	.xl-min-w-2500 {
		min-width: 2500px !important;
	}
	.xl-w-2525 {
		width: 2525px !important;
	}
	.xl-max-w-2525 {
		max-width: 2525px !important;
	}
	.xl-min-w-2525 {
		min-width: 2525px !important;
	}
	.xl-w-2550 {
		width: 2550px !important;
	}
	.xl-max-w-2550 {
		max-width: 2550px !important;
	}
	.xl-min-w-2550 {
		min-width: 2550px !important;
	}
	.xl-w-2575 {
		width: 2575px !important;
	}
	.xl-max-w-2575 {
		max-width: 2575px !important;
	}
	.xl-min-w-2575 {
		min-width: 2575px !important;
	}
	.xl-w-2600 {
		width: 2600px !important;
	}
	.xl-max-w-2600 {
		max-width: 2600px !important;
	}
	.xl-min-w-2600 {
		min-width: 2600px !important;
	}
	.xl-w-2625 {
		width: 2625px !important;
	}
	.xl-max-w-2625 {
		max-width: 2625px !important;
	}
	.xl-min-w-2625 {
		min-width: 2625px !important;
	}
	.xl-w-2650 {
		width: 2650px !important;
	}
	.xl-max-w-2650 {
		max-width: 2650px !important;
	}
	.xl-min-w-2650 {
		min-width: 2650px !important;
	}
	.xl-w-2675 {
		width: 2675px !important;
	}
	.xl-max-w-2675 {
		max-width: 2675px !important;
	}
	.xl-min-w-2675 {
		min-width: 2675px !important;
	}
	.xl-w-2700 {
		width: 2700px !important;
	}
	.xl-max-w-2700 {
		max-width: 2700px !important;
	}
	.xl-min-w-2700 {
		min-width: 2700px !important;
	}
	.xl-w-2725 {
		width: 2725px !important;
	}
	.xl-max-w-2725 {
		max-width: 2725px !important;
	}
	.xl-min-w-2725 {
		min-width: 2725px !important;
	}
	.xl-w-2750 {
		width: 2750px !important;
	}
	.xl-max-w-2750 {
		max-width: 2750px !important;
	}
	.xl-min-w-2750 {
		min-width: 2750px !important;
	}
	.xl-w-2775 {
		width: 2775px !important;
	}
	.xl-max-w-2775 {
		max-width: 2775px !important;
	}
	.xl-min-w-2775 {
		min-width: 2775px !important;
	}
	.xl-w-2800 {
		width: 2800px !important;
	}
	.xl-max-w-2800 {
		max-width: 2800px !important;
	}
	.xl-min-w-2800 {
		min-width: 2800px !important;
	}
	.xl-w-2825 {
		width: 2825px !important;
	}
	.xl-max-w-2825 {
		max-width: 2825px !important;
	}
	.xl-min-w-2825 {
		min-width: 2825px !important;
	}
	.xl-w-2850 {
		width: 2850px !important;
	}
	.xl-max-w-2850 {
		max-width: 2850px !important;
	}
	.xl-min-w-2850 {
		min-width: 2850px !important;
	}
	.xl-w-2875 {
		width: 2875px !important;
	}
	.xl-max-w-2875 {
		max-width: 2875px !important;
	}
	.xl-min-w-2875 {
		min-width: 2875px !important;
	}
	.xl-w-2900 {
		width: 2900px !important;
	}
	.xl-max-w-2900 {
		max-width: 2900px !important;
	}
	.xl-min-w-2900 {
		min-width: 2900px !important;
	}
	.xl-w-2925 {
		width: 2925px !important;
	}
	.xl-max-w-2925 {
		max-width: 2925px !important;
	}
	.xl-min-w-2925 {
		min-width: 2925px !important;
	}
	.xl-w-2950 {
		width: 2950px !important;
	}
	.xl-max-w-2950 {
		max-width: 2950px !important;
	}
	.xl-min-w-2950 {
		min-width: 2950px !important;
	}
	.xl-w-2975 {
		width: 2975px !important;
	}
	.xl-max-w-2975 {
		max-width: 2975px !important;
	}
	.xl-min-w-2975 {
		min-width: 2975px !important;
	}
	.xl-w-3000 {
		width: 3000px !important;
	}
	.xl-max-w-3000 {
		max-width: 3000px !important;
	}
	.xl-min-w-3000 {
		min-width: 3000px !important;
	}
	.xl-w-3025 {
		width: 3025px !important;
	}
	.xl-max-w-3025 {
		max-width: 3025px !important;
	}
	.xl-min-w-3025 {
		min-width: 3025px !important;
	}
	.xl-w-3050 {
		width: 3050px !important;
	}
	.xl-max-w-3050 {
		max-width: 3050px !important;
	}
	.xl-min-w-3050 {
		min-width: 3050px !important;
	}
	.xl-w-3075 {
		width: 3075px !important;
	}
	.xl-max-w-3075 {
		max-width: 3075px !important;
	}
	.xl-min-w-3075 {
		min-width: 3075px !important;
	}
	.xl-w-3100 {
		width: 3100px !important;
	}
	.xl-max-w-3100 {
		max-width: 3100px !important;
	}
	.xl-min-w-3100 {
		min-width: 3100px !important;
	}
	.xl-w-3125 {
		width: 3125px !important;
	}
	.xl-max-w-3125 {
		max-width: 3125px !important;
	}
	.xl-min-w-3125 {
		min-width: 3125px !important;
	}
	.xl-w-3150 {
		width: 3150px !important;
	}
	.xl-max-w-3150 {
		max-width: 3150px !important;
	}
	.xl-min-w-3150 {
		min-width: 3150px !important;
	}
	.xl-w-3175 {
		width: 3175px !important;
	}
	.xl-max-w-3175 {
		max-width: 3175px !important;
	}
	.xl-min-w-3175 {
		min-width: 3175px !important;
	}
	.xl-w-3200 {
		width: 3200px !important;
	}
	.xl-max-w-3200 {
		max-width: 3200px !important;
	}
	.xl-min-w-3200 {
		min-width: 3200px !important;
	}
	.xl-w-3225 {
		width: 3225px !important;
	}
	.xl-max-w-3225 {
		max-width: 3225px !important;
	}
	.xl-min-w-3225 {
		min-width: 3225px !important;
	}
	.xl-w-3250 {
		width: 3250px !important;
	}
	.xl-max-w-3250 {
		max-width: 3250px !important;
	}
	.xl-min-w-3250 {
		min-width: 3250px !important;
	}
	.xl-w-3275 {
		width: 3275px !important;
	}
	.xl-max-w-3275 {
		max-width: 3275px !important;
	}
	.xl-min-w-3275 {
		min-width: 3275px !important;
	}
	.xl-w-3300 {
		width: 3300px !important;
	}
	.xl-max-w-3300 {
		max-width: 3300px !important;
	}
	.xl-min-w-3300 {
		min-width: 3300px !important;
	}
	.xl-w-3325 {
		width: 3325px !important;
	}
	.xl-max-w-3325 {
		max-width: 3325px !important;
	}
	.xl-min-w-3325 {
		min-width: 3325px !important;
	}
	.xl-w-3350 {
		width: 3350px !important;
	}
	.xl-max-w-3350 {
		max-width: 3350px !important;
	}
	.xl-min-w-3350 {
		min-width: 3350px !important;
	}
	.xl-w-3375 {
		width: 3375px !important;
	}
	.xl-max-w-3375 {
		max-width: 3375px !important;
	}
	.xl-min-w-3375 {
		min-width: 3375px !important;
	}
	.xl-w-3400 {
		width: 3400px !important;
	}
	.xl-max-w-3400 {
		max-width: 3400px !important;
	}
	.xl-min-w-3400 {
		min-width: 3400px !important;
	}
	.xl-w-3425 {
		width: 3425px !important;
	}
	.xl-max-w-3425 {
		max-width: 3425px !important;
	}
	.xl-min-w-3425 {
		min-width: 3425px !important;
	}
	.xl-w-3450 {
		width: 3450px !important;
	}
	.xl-max-w-3450 {
		max-width: 3450px !important;
	}
	.xl-min-w-3450 {
		min-width: 3450px !important;
	}
	.xl-w-3475 {
		width: 3475px !important;
	}
	.xl-max-w-3475 {
		max-width: 3475px !important;
	}
	.xl-min-w-3475 {
		min-width: 3475px !important;
	}
	.xl-w-3500 {
		width: 3500px !important;
	}
	.xl-max-w-3500 {
		max-width: 3500px !important;
	}
	.xl-min-w-3500 {
		min-width: 3500px !important;
	}
	.xl-w-3525 {
		width: 3525px !important;
	}
	.xl-max-w-3525 {
		max-width: 3525px !important;
	}
	.xl-min-w-3525 {
		min-width: 3525px !important;
	}
	.xl-w-3550 {
		width: 3550px !important;
	}
	.xl-max-w-3550 {
		max-width: 3550px !important;
	}
	.xl-min-w-3550 {
		min-width: 3550px !important;
	}
	.xl-w-3575 {
		width: 3575px !important;
	}
	.xl-max-w-3575 {
		max-width: 3575px !important;
	}
	.xl-min-w-3575 {
		min-width: 3575px !important;
	}
	.xl-w-3600 {
		width: 3600px !important;
	}
	.xl-max-w-3600 {
		max-width: 3600px !important;
	}
	.xl-min-w-3600 {
		min-width: 3600px !important;
	}
	.xl-w-3625 {
		width: 3625px !important;
	}
	.xl-max-w-3625 {
		max-width: 3625px !important;
	}
	.xl-min-w-3625 {
		min-width: 3625px !important;
	}
	.xl-w-3650 {
		width: 3650px !important;
	}
	.xl-max-w-3650 {
		max-width: 3650px !important;
	}
	.xl-min-w-3650 {
		min-width: 3650px !important;
	}
	.xl-w-3675 {
		width: 3675px !important;
	}
	.xl-max-w-3675 {
		max-width: 3675px !important;
	}
	.xl-min-w-3675 {
		min-width: 3675px !important;
	}
	.xl-w-3700 {
		width: 3700px !important;
	}
	.xl-max-w-3700 {
		max-width: 3700px !important;
	}
	.xl-min-w-3700 {
		min-width: 3700px !important;
	}
	.xl-w-3725 {
		width: 3725px !important;
	}
	.xl-max-w-3725 {
		max-width: 3725px !important;
	}
	.xl-min-w-3725 {
		min-width: 3725px !important;
	}
	.xl-w-3750 {
		width: 3750px !important;
	}
	.xl-max-w-3750 {
		max-width: 3750px !important;
	}
	.xl-min-w-3750 {
		min-width: 3750px !important;
	}
	.xl-w-3775 {
		width: 3775px !important;
	}
	.xl-max-w-3775 {
		max-width: 3775px !important;
	}
	.xl-min-w-3775 {
		min-width: 3775px !important;
	}
	.xl-w-3800 {
		width: 3800px !important;
	}
	.xl-max-w-3800 {
		max-width: 3800px !important;
	}
	.xl-min-w-3800 {
		min-width: 3800px !important;
	}
	.xl-w-3825 {
		width: 3825px !important;
	}
	.xl-max-w-3825 {
		max-width: 3825px !important;
	}
	.xl-min-w-3825 {
		min-width: 3825px !important;
	}
	.xl-w-3850 {
		width: 3850px !important;
	}
	.xl-max-w-3850 {
		max-width: 3850px !important;
	}
	.xl-min-w-3850 {
		min-width: 3850px !important;
	}
	.xl-w-3875 {
		width: 3875px !important;
	}
	.xl-max-w-3875 {
		max-width: 3875px !important;
	}
	.xl-min-w-3875 {
		min-width: 3875px !important;
	}
	.xl-w-3900 {
		width: 3900px !important;
	}
	.xl-max-w-3900 {
		max-width: 3900px !important;
	}
	.xl-min-w-3900 {
		min-width: 3900px !important;
	}
	.xl-w-3925 {
		width: 3925px !important;
	}
	.xl-max-w-3925 {
		max-width: 3925px !important;
	}
	.xl-min-w-3925 {
		min-width: 3925px !important;
	}
	.xl-w-3950 {
		width: 3950px !important;
	}
	.xl-max-w-3950 {
		max-width: 3950px !important;
	}
	.xl-min-w-3950 {
		min-width: 3950px !important;
	}
	.xl-w-3975 {
		width: 3975px !important;
	}
	.xl-max-w-3975 {
		max-width: 3975px !important;
	}
	.xl-min-w-3975 {
		min-width: 3975px !important;
	}
	.xl-w-4000 {
		width: 4000px !important;
	}
	.xl-max-w-4000 {
		max-width: 4000px !important;
	}
	.xl-min-w-4000 {
		min-width: 4000px !important;
	}
	.xl-w-4025 {
		width: 4025px !important;
	}
	.xl-max-w-4025 {
		max-width: 4025px !important;
	}
	.xl-min-w-4025 {
		min-width: 4025px !important;
	}
	.xl-w-4050 {
		width: 4050px !important;
	}
	.xl-max-w-4050 {
		max-width: 4050px !important;
	}
	.xl-min-w-4050 {
		min-width: 4050px !important;
	}
	.xl-w-4075 {
		width: 4075px !important;
	}
	.xl-max-w-4075 {
		max-width: 4075px !important;
	}
	.xl-min-w-4075 {
		min-width: 4075px !important;
	}
	.xl-w-4100 {
		width: 4100px !important;
	}
	.xl-max-w-4100 {
		max-width: 4100px !important;
	}
	.xl-min-w-4100 {
		min-width: 4100px !important;
	}
	.xl-w-4125 {
		width: 4125px !important;
	}
	.xl-max-w-4125 {
		max-width: 4125px !important;
	}
	.xl-min-w-4125 {
		min-width: 4125px !important;
	}
	.xl-w-4150 {
		width: 4150px !important;
	}
	.xl-max-w-4150 {
		max-width: 4150px !important;
	}
	.xl-min-w-4150 {
		min-width: 4150px !important;
	}
	.xl-w-4175 {
		width: 4175px !important;
	}
	.xl-max-w-4175 {
		max-width: 4175px !important;
	}
	.xl-min-w-4175 {
		min-width: 4175px !important;
	}
	.xl-w-4200 {
		width: 4200px !important;
	}
	.xl-max-w-4200 {
		max-width: 4200px !important;
	}
	.xl-min-w-4200 {
		min-width: 4200px !important;
	}
	.xl-w-4225 {
		width: 4225px !important;
	}
	.xl-max-w-4225 {
		max-width: 4225px !important;
	}
	.xl-min-w-4225 {
		min-width: 4225px !important;
	}
	.xl-w-4250 {
		width: 4250px !important;
	}
	.xl-max-w-4250 {
		max-width: 4250px !important;
	}
	.xl-min-w-4250 {
		min-width: 4250px !important;
	}
	.xl-w-4275 {
		width: 4275px !important;
	}
	.xl-max-w-4275 {
		max-width: 4275px !important;
	}
	.xl-min-w-4275 {
		min-width: 4275px !important;
	}
	.xl-w-4300 {
		width: 4300px !important;
	}
	.xl-max-w-4300 {
		max-width: 4300px !important;
	}
	.xl-min-w-4300 {
		min-width: 4300px !important;
	}
	.xl-w-4325 {
		width: 4325px !important;
	}
	.xl-max-w-4325 {
		max-width: 4325px !important;
	}
	.xl-min-w-4325 {
		min-width: 4325px !important;
	}
	.xl-w-4350 {
		width: 4350px !important;
	}
	.xl-max-w-4350 {
		max-width: 4350px !important;
	}
	.xl-min-w-4350 {
		min-width: 4350px !important;
	}
	.xl-w-4375 {
		width: 4375px !important;
	}
	.xl-max-w-4375 {
		max-width: 4375px !important;
	}
	.xl-min-w-4375 {
		min-width: 4375px !important;
	}
	.xl-w-4400 {
		width: 4400px !important;
	}
	.xl-max-w-4400 {
		max-width: 4400px !important;
	}
	.xl-min-w-4400 {
		min-width: 4400px !important;
	}
	.xl-w-4425 {
		width: 4425px !important;
	}
	.xl-max-w-4425 {
		max-width: 4425px !important;
	}
	.xl-min-w-4425 {
		min-width: 4425px !important;
	}
	.xl-w-4450 {
		width: 4450px !important;
	}
	.xl-max-w-4450 {
		max-width: 4450px !important;
	}
	.xl-min-w-4450 {
		min-width: 4450px !important;
	}
	.xl-w-4475 {
		width: 4475px !important;
	}
	.xl-max-w-4475 {
		max-width: 4475px !important;
	}
	.xl-min-w-4475 {
		min-width: 4475px !important;
	}
	.xl-w-4500 {
		width: 4500px !important;
	}
	.xl-max-w-4500 {
		max-width: 4500px !important;
	}
	.xl-min-w-4500 {
		min-width: 4500px !important;
	}
	.xl-w-4525 {
		width: 4525px !important;
	}
	.xl-max-w-4525 {
		max-width: 4525px !important;
	}
	.xl-min-w-4525 {
		min-width: 4525px !important;
	}
	.xl-w-4550 {
		width: 4550px !important;
	}
	.xl-max-w-4550 {
		max-width: 4550px !important;
	}
	.xl-min-w-4550 {
		min-width: 4550px !important;
	}
	.xl-w-4575 {
		width: 4575px !important;
	}
	.xl-max-w-4575 {
		max-width: 4575px !important;
	}
	.xl-min-w-4575 {
		min-width: 4575px !important;
	}
	.xl-w-4600 {
		width: 4600px !important;
	}
	.xl-max-w-4600 {
		max-width: 4600px !important;
	}
	.xl-min-w-4600 {
		min-width: 4600px !important;
	}
	.xl-w-4625 {
		width: 4625px !important;
	}
	.xl-max-w-4625 {
		max-width: 4625px !important;
	}
	.xl-min-w-4625 {
		min-width: 4625px !important;
	}
	.xl-w-4650 {
		width: 4650px !important;
	}
	.xl-max-w-4650 {
		max-width: 4650px !important;
	}
	.xl-min-w-4650 {
		min-width: 4650px !important;
	}
	.xl-w-4675 {
		width: 4675px !important;
	}
	.xl-max-w-4675 {
		max-width: 4675px !important;
	}
	.xl-min-w-4675 {
		min-width: 4675px !important;
	}
	.xl-w-4700 {
		width: 4700px !important;
	}
	.xl-max-w-4700 {
		max-width: 4700px !important;
	}
	.xl-min-w-4700 {
		min-width: 4700px !important;
	}
	.xl-w-4725 {
		width: 4725px !important;
	}
	.xl-max-w-4725 {
		max-width: 4725px !important;
	}
	.xl-min-w-4725 {
		min-width: 4725px !important;
	}
	.xl-w-4750 {
		width: 4750px !important;
	}
	.xl-max-w-4750 {
		max-width: 4750px !important;
	}
	.xl-min-w-4750 {
		min-width: 4750px !important;
	}
	.xl-w-4775 {
		width: 4775px !important;
	}
	.xl-max-w-4775 {
		max-width: 4775px !important;
	}
	.xl-min-w-4775 {
		min-width: 4775px !important;
	}
	.xl-w-4800 {
		width: 4800px !important;
	}
	.xl-max-w-4800 {
		max-width: 4800px !important;
	}
	.xl-min-w-4800 {
		min-width: 4800px !important;
	}
	.xl-w-4825 {
		width: 4825px !important;
	}
	.xl-max-w-4825 {
		max-width: 4825px !important;
	}
	.xl-min-w-4825 {
		min-width: 4825px !important;
	}
	.xl-w-4850 {
		width: 4850px !important;
	}
	.xl-max-w-4850 {
		max-width: 4850px !important;
	}
	.xl-min-w-4850 {
		min-width: 4850px !important;
	}
	.xl-w-4875 {
		width: 4875px !important;
	}
	.xl-max-w-4875 {
		max-width: 4875px !important;
	}
	.xl-min-w-4875 {
		min-width: 4875px !important;
	}
	.xl-w-4900 {
		width: 4900px !important;
	}
	.xl-max-w-4900 {
		max-width: 4900px !important;
	}
	.xl-min-w-4900 {
		min-width: 4900px !important;
	}
	.xl-w-4925 {
		width: 4925px !important;
	}
	.xl-max-w-4925 {
		max-width: 4925px !important;
	}
	.xl-min-w-4925 {
		min-width: 4925px !important;
	}
	.xl-w-4950 {
		width: 4950px !important;
	}
	.xl-max-w-4950 {
		max-width: 4950px !important;
	}
	.xl-min-w-4950 {
		min-width: 4950px !important;
	}
	.xl-w-4975 {
		width: 4975px !important;
	}
	.xl-max-w-4975 {
		max-width: 4975px !important;
	}
	.xl-min-w-4975 {
		min-width: 4975px !important;
	}
	.xl-w-5000 {
		width: 5000px !important;
	}
	.xl-max-w-5000 {
		max-width: 5000px !important;
	}
	.xl-min-w-5000 {
		min-width: 5000px !important;
	}
	.xl-w-5025 {
		width: 5025px !important;
	}
	.xl-max-w-5025 {
		max-width: 5025px !important;
	}
	.xl-min-w-5025 {
		min-width: 5025px !important;
	}
	.xl-w-5050 {
		width: 5050px !important;
	}
	.xl-max-w-5050 {
		max-width: 5050px !important;
	}
	.xl-min-w-5050 {
		min-width: 5050px !important;
	}
	.xl-w-5075 {
		width: 5075px !important;
	}
	.xl-max-w-5075 {
		max-width: 5075px !important;
	}
	.xl-min-w-5075 {
		min-width: 5075px !important;
	}
	.xl-w-5100 {
		width: 5100px !important;
	}
	.xl-max-w-5100 {
		max-width: 5100px !important;
	}
	.xl-min-w-5100 {
		min-width: 5100px !important;
	}
	.xl-w-5125 {
		width: 5125px !important;
	}
	.xl-max-w-5125 {
		max-width: 5125px !important;
	}
	.xl-min-w-5125 {
		min-width: 5125px !important;
	}
	.xl-w-5150 {
		width: 5150px !important;
	}
	.xl-max-w-5150 {
		max-width: 5150px !important;
	}
	.xl-min-w-5150 {
		min-width: 5150px !important;
	}
	.xl-w-5175 {
		width: 5175px !important;
	}
	.xl-max-w-5175 {
		max-width: 5175px !important;
	}
	.xl-min-w-5175 {
		min-width: 5175px !important;
	}
	.xl-w-5200 {
		width: 5200px !important;
	}
	.xl-max-w-5200 {
		max-width: 5200px !important;
	}
	.xl-min-w-5200 {
		min-width: 5200px !important;
	}
	.xl-w-5225 {
		width: 5225px !important;
	}
	.xl-max-w-5225 {
		max-width: 5225px !important;
	}
	.xl-min-w-5225 {
		min-width: 5225px !important;
	}
	.xl-w-5250 {
		width: 5250px !important;
	}
	.xl-max-w-5250 {
		max-width: 5250px !important;
	}
	.xl-min-w-5250 {
		min-width: 5250px !important;
	}
	.xl-w-5275 {
		width: 5275px !important;
	}
	.xl-max-w-5275 {
		max-width: 5275px !important;
	}
	.xl-min-w-5275 {
		min-width: 5275px !important;
	}
	.xl-w-5300 {
		width: 5300px !important;
	}
	.xl-max-w-5300 {
		max-width: 5300px !important;
	}
	.xl-min-w-5300 {
		min-width: 5300px !important;
	}
	.xl-w-5325 {
		width: 5325px !important;
	}
	.xl-max-w-5325 {
		max-width: 5325px !important;
	}
	.xl-min-w-5325 {
		min-width: 5325px !important;
	}
	.xl-w-5350 {
		width: 5350px !important;
	}
	.xl-max-w-5350 {
		max-width: 5350px !important;
	}
	.xl-min-w-5350 {
		min-width: 5350px !important;
	}
	.xl-w-5375 {
		width: 5375px !important;
	}
	.xl-max-w-5375 {
		max-width: 5375px !important;
	}
	.xl-min-w-5375 {
		min-width: 5375px !important;
	}
	.xl-w-5400 {
		width: 5400px !important;
	}
	.xl-max-w-5400 {
		max-width: 5400px !important;
	}
	.xl-min-w-5400 {
		min-width: 5400px !important;
	}
	.xl-w-5425 {
		width: 5425px !important;
	}
	.xl-max-w-5425 {
		max-width: 5425px !important;
	}
	.xl-min-w-5425 {
		min-width: 5425px !important;
	}
	.xl-w-5450 {
		width: 5450px !important;
	}
	.xl-max-w-5450 {
		max-width: 5450px !important;
	}
	.xl-min-w-5450 {
		min-width: 5450px !important;
	}
	.xl-w-5475 {
		width: 5475px !important;
	}
	.xl-max-w-5475 {
		max-width: 5475px !important;
	}
	.xl-min-w-5475 {
		min-width: 5475px !important;
	}
	.xl-w-5500 {
		width: 5500px !important;
	}
	.xl-max-w-5500 {
		max-width: 5500px !important;
	}
	.xl-min-w-5500 {
		min-width: 5500px !important;
	}
	.xl-w-5525 {
		width: 5525px !important;
	}
	.xl-max-w-5525 {
		max-width: 5525px !important;
	}
	.xl-min-w-5525 {
		min-width: 5525px !important;
	}
	.xl-w-5550 {
		width: 5550px !important;
	}
	.xl-max-w-5550 {
		max-width: 5550px !important;
	}
	.xl-min-w-5550 {
		min-width: 5550px !important;
	}
	.xl-w-5575 {
		width: 5575px !important;
	}
	.xl-max-w-5575 {
		max-width: 5575px !important;
	}
	.xl-min-w-5575 {
		min-width: 5575px !important;
	}
	.xl-w-5600 {
		width: 5600px !important;
	}
	.xl-max-w-5600 {
		max-width: 5600px !important;
	}
	.xl-min-w-5600 {
		min-width: 5600px !important;
	}
	.xl-w-5625 {
		width: 5625px !important;
	}
	.xl-max-w-5625 {
		max-width: 5625px !important;
	}
	.xl-min-w-5625 {
		min-width: 5625px !important;
	}
	.xl-w-5650 {
		width: 5650px !important;
	}
	.xl-max-w-5650 {
		max-width: 5650px !important;
	}
	.xl-min-w-5650 {
		min-width: 5650px !important;
	}
	.xl-w-5675 {
		width: 5675px !important;
	}
	.xl-max-w-5675 {
		max-width: 5675px !important;
	}
	.xl-min-w-5675 {
		min-width: 5675px !important;
	}
	.xl-w-5700 {
		width: 5700px !important;
	}
	.xl-max-w-5700 {
		max-width: 5700px !important;
	}
	.xl-min-w-5700 {
		min-width: 5700px !important;
	}
	.xl-w-5725 {
		width: 5725px !important;
	}
	.xl-max-w-5725 {
		max-width: 5725px !important;
	}
	.xl-min-w-5725 {
		min-width: 5725px !important;
	}
	.xl-w-5750 {
		width: 5750px !important;
	}
	.xl-max-w-5750 {
		max-width: 5750px !important;
	}
	.xl-min-w-5750 {
		min-width: 5750px !important;
	}
	.xl-w-5775 {
		width: 5775px !important;
	}
	.xl-max-w-5775 {
		max-width: 5775px !important;
	}
	.xl-min-w-5775 {
		min-width: 5775px !important;
	}
	.xl-w-5800 {
		width: 5800px !important;
	}
	.xl-max-w-5800 {
		max-width: 5800px !important;
	}
	.xl-min-w-5800 {
		min-width: 5800px !important;
	}
	.xl-w-5825 {
		width: 5825px !important;
	}
	.xl-max-w-5825 {
		max-width: 5825px !important;
	}
	.xl-min-w-5825 {
		min-width: 5825px !important;
	}
	.xl-w-5850 {
		width: 5850px !important;
	}
	.xl-max-w-5850 {
		max-width: 5850px !important;
	}
	.xl-min-w-5850 {
		min-width: 5850px !important;
	}
	.xl-w-5875 {
		width: 5875px !important;
	}
	.xl-max-w-5875 {
		max-width: 5875px !important;
	}
	.xl-min-w-5875 {
		min-width: 5875px !important;
	}
	.xl-w-5900 {
		width: 5900px !important;
	}
	.xl-max-w-5900 {
		max-width: 5900px !important;
	}
	.xl-min-w-5900 {
		min-width: 5900px !important;
	}
	.xl-w-5925 {
		width: 5925px !important;
	}
	.xl-max-w-5925 {
		max-width: 5925px !important;
	}
	.xl-min-w-5925 {
		min-width: 5925px !important;
	}
	.xl-w-5950 {
		width: 5950px !important;
	}
	.xl-max-w-5950 {
		max-width: 5950px !important;
	}
	.xl-min-w-5950 {
		min-width: 5950px !important;
	}
	.xl-w-5975 {
		width: 5975px !important;
	}
	.xl-max-w-5975 {
		max-width: 5975px !important;
	}
	.xl-min-w-5975 {
		min-width: 5975px !important;
	}
	.xl-w-6000 {
		width: 6000px !important;
	}
	.xl-max-w-6000 {
		max-width: 6000px !important;
	}
	.xl-min-w-6000 {
		min-width: 6000px !important;
	}
	.xl-w-6025 {
		width: 6025px !important;
	}
	.xl-max-w-6025 {
		max-width: 6025px !important;
	}
	.xl-min-w-6025 {
		min-width: 6025px !important;
	}
	.xl-w-6050 {
		width: 6050px !important;
	}
	.xl-max-w-6050 {
		max-width: 6050px !important;
	}
	.xl-min-w-6050 {
		min-width: 6050px !important;
	}
	.xl-w-6075 {
		width: 6075px !important;
	}
	.xl-max-w-6075 {
		max-width: 6075px !important;
	}
	.xl-min-w-6075 {
		min-width: 6075px !important;
	}
	.xl-w-6100 {
		width: 6100px !important;
	}
	.xl-max-w-6100 {
		max-width: 6100px !important;
	}
	.xl-min-w-6100 {
		min-width: 6100px !important;
	}
	.xl-w-6125 {
		width: 6125px !important;
	}
	.xl-max-w-6125 {
		max-width: 6125px !important;
	}
	.xl-min-w-6125 {
		min-width: 6125px !important;
	}
	.xl-w-6150 {
		width: 6150px !important;
	}
	.xl-max-w-6150 {
		max-width: 6150px !important;
	}
	.xl-min-w-6150 {
		min-width: 6150px !important;
	}
	.xl-w-6175 {
		width: 6175px !important;
	}
	.xl-max-w-6175 {
		max-width: 6175px !important;
	}
	.xl-min-w-6175 {
		min-width: 6175px !important;
	}
	.xl-w-6200 {
		width: 6200px !important;
	}
	.xl-max-w-6200 {
		max-width: 6200px !important;
	}
	.xl-min-w-6200 {
		min-width: 6200px !important;
	}
	.xl-w-6225 {
		width: 6225px !important;
	}
	.xl-max-w-6225 {
		max-width: 6225px !important;
	}
	.xl-min-w-6225 {
		min-width: 6225px !important;
	}
	.xl-w-6250 {
		width: 6250px !important;
	}
	.xl-max-w-6250 {
		max-width: 6250px !important;
	}
	.xl-min-w-6250 {
		min-width: 6250px !important;
	}
	.xl-w-6275 {
		width: 6275px !important;
	}
	.xl-max-w-6275 {
		max-width: 6275px !important;
	}
	.xl-min-w-6275 {
		min-width: 6275px !important;
	}
	.xl-w-6300 {
		width: 6300px !important;
	}
	.xl-max-w-6300 {
		max-width: 6300px !important;
	}
	.xl-min-w-6300 {
		min-width: 6300px !important;
	}
	.xl-w-6325 {
		width: 6325px !important;
	}
	.xl-max-w-6325 {
		max-width: 6325px !important;
	}
	.xl-min-w-6325 {
		min-width: 6325px !important;
	}
	.xl-w-6350 {
		width: 6350px !important;
	}
	.xl-max-w-6350 {
		max-width: 6350px !important;
	}
	.xl-min-w-6350 {
		min-width: 6350px !important;
	}
	.xl-w-6375 {
		width: 6375px !important;
	}
	.xl-max-w-6375 {
		max-width: 6375px !important;
	}
	.xl-min-w-6375 {
		min-width: 6375px !important;
	}
	.xl-w-6400 {
		width: 6400px !important;
	}
	.xl-max-w-6400 {
		max-width: 6400px !important;
	}
	.xl-min-w-6400 {
		min-width: 6400px !important;
	}
	.xl-w-6425 {
		width: 6425px !important;
	}
	.xl-max-w-6425 {
		max-width: 6425px !important;
	}
	.xl-min-w-6425 {
		min-width: 6425px !important;
	}
	.xl-w-6450 {
		width: 6450px !important;
	}
	.xl-max-w-6450 {
		max-width: 6450px !important;
	}
	.xl-min-w-6450 {
		min-width: 6450px !important;
	}
	.xl-w-6475 {
		width: 6475px !important;
	}
	.xl-max-w-6475 {
		max-width: 6475px !important;
	}
	.xl-min-w-6475 {
		min-width: 6475px !important;
	}
	.xl-w-6500 {
		width: 6500px !important;
	}
	.xl-max-w-6500 {
		max-width: 6500px !important;
	}
	.xl-min-w-6500 {
		min-width: 6500px !important;
	}
	.xl-w-6525 {
		width: 6525px !important;
	}
	.xl-max-w-6525 {
		max-width: 6525px !important;
	}
	.xl-min-w-6525 {
		min-width: 6525px !important;
	}
	.xl-w-6550 {
		width: 6550px !important;
	}
	.xl-max-w-6550 {
		max-width: 6550px !important;
	}
	.xl-min-w-6550 {
		min-width: 6550px !important;
	}
	.xl-w-6575 {
		width: 6575px !important;
	}
	.xl-max-w-6575 {
		max-width: 6575px !important;
	}
	.xl-min-w-6575 {
		min-width: 6575px !important;
	}
	.xl-w-6600 {
		width: 6600px !important;
	}
	.xl-max-w-6600 {
		max-width: 6600px !important;
	}
	.xl-min-w-6600 {
		min-width: 6600px !important;
	}
	.xl-w-6625 {
		width: 6625px !important;
	}
	.xl-max-w-6625 {
		max-width: 6625px !important;
	}
	.xl-min-w-6625 {
		min-width: 6625px !important;
	}
	.xl-w-6650 {
		width: 6650px !important;
	}
	.xl-max-w-6650 {
		max-width: 6650px !important;
	}
	.xl-min-w-6650 {
		min-width: 6650px !important;
	}
	.xl-w-6675 {
		width: 6675px !important;
	}
	.xl-max-w-6675 {
		max-width: 6675px !important;
	}
	.xl-min-w-6675 {
		min-width: 6675px !important;
	}
	.xl-w-6700 {
		width: 6700px !important;
	}
	.xl-max-w-6700 {
		max-width: 6700px !important;
	}
	.xl-min-w-6700 {
		min-width: 6700px !important;
	}
	.xl-w-6725 {
		width: 6725px !important;
	}
	.xl-max-w-6725 {
		max-width: 6725px !important;
	}
	.xl-min-w-6725 {
		min-width: 6725px !important;
	}
	.xl-w-6750 {
		width: 6750px !important;
	}
	.xl-max-w-6750 {
		max-width: 6750px !important;
	}
	.xl-min-w-6750 {
		min-width: 6750px !important;
	}
	.xl-w-6775 {
		width: 6775px !important;
	}
	.xl-max-w-6775 {
		max-width: 6775px !important;
	}
	.xl-min-w-6775 {
		min-width: 6775px !important;
	}
	.xl-w-6800 {
		width: 6800px !important;
	}
	.xl-max-w-6800 {
		max-width: 6800px !important;
	}
	.xl-min-w-6800 {
		min-width: 6800px !important;
	}
	.xl-w-6825 {
		width: 6825px !important;
	}
	.xl-max-w-6825 {
		max-width: 6825px !important;
	}
	.xl-min-w-6825 {
		min-width: 6825px !important;
	}
	.xl-w-6850 {
		width: 6850px !important;
	}
	.xl-max-w-6850 {
		max-width: 6850px !important;
	}
	.xl-min-w-6850 {
		min-width: 6850px !important;
	}
	.xl-w-6875 {
		width: 6875px !important;
	}
	.xl-max-w-6875 {
		max-width: 6875px !important;
	}
	.xl-min-w-6875 {
		min-width: 6875px !important;
	}
	.xl-w-6900 {
		width: 6900px !important;
	}
	.xl-max-w-6900 {
		max-width: 6900px !important;
	}
	.xl-min-w-6900 {
		min-width: 6900px !important;
	}
	.xl-w-6925 {
		width: 6925px !important;
	}
	.xl-max-w-6925 {
		max-width: 6925px !important;
	}
	.xl-min-w-6925 {
		min-width: 6925px !important;
	}
	.xl-w-6950 {
		width: 6950px !important;
	}
	.xl-max-w-6950 {
		max-width: 6950px !important;
	}
	.xl-min-w-6950 {
		min-width: 6950px !important;
	}
	.xl-w-6975 {
		width: 6975px !important;
	}
	.xl-max-w-6975 {
		max-width: 6975px !important;
	}
	.xl-min-w-6975 {
		min-width: 6975px !important;
	}
	.xl-w-7000 {
		width: 7000px !important;
	}
	.xl-max-w-7000 {
		max-width: 7000px !important;
	}
	.xl-min-w-7000 {
		min-width: 7000px !important;
	}
	.xl-w-7025 {
		width: 7025px !important;
	}
	.xl-max-w-7025 {
		max-width: 7025px !important;
	}
	.xl-min-w-7025 {
		min-width: 7025px !important;
	}
	.xl-w-7050 {
		width: 7050px !important;
	}
	.xl-max-w-7050 {
		max-width: 7050px !important;
	}
	.xl-min-w-7050 {
		min-width: 7050px !important;
	}
	.xl-w-7075 {
		width: 7075px !important;
	}
	.xl-max-w-7075 {
		max-width: 7075px !important;
	}
	.xl-min-w-7075 {
		min-width: 7075px !important;
	}
	.xl-w-7100 {
		width: 7100px !important;
	}
	.xl-max-w-7100 {
		max-width: 7100px !important;
	}
	.xl-min-w-7100 {
		min-width: 7100px !important;
	}
	.xl-w-7125 {
		width: 7125px !important;
	}
	.xl-max-w-7125 {
		max-width: 7125px !important;
	}
	.xl-min-w-7125 {
		min-width: 7125px !important;
	}
	.xl-w-7150 {
		width: 7150px !important;
	}
	.xl-max-w-7150 {
		max-width: 7150px !important;
	}
	.xl-min-w-7150 {
		min-width: 7150px !important;
	}
	.xl-w-7175 {
		width: 7175px !important;
	}
	.xl-max-w-7175 {
		max-width: 7175px !important;
	}
	.xl-min-w-7175 {
		min-width: 7175px !important;
	}
	.xl-w-7200 {
		width: 7200px !important;
	}
	.xl-max-w-7200 {
		max-width: 7200px !important;
	}
	.xl-min-w-7200 {
		min-width: 7200px !important;
	}
	.xl-w-7225 {
		width: 7225px !important;
	}
	.xl-max-w-7225 {
		max-width: 7225px !important;
	}
	.xl-min-w-7225 {
		min-width: 7225px !important;
	}
	.xl-w-7250 {
		width: 7250px !important;
	}
	.xl-max-w-7250 {
		max-width: 7250px !important;
	}
	.xl-min-w-7250 {
		min-width: 7250px !important;
	}
	.xl-w-7275 {
		width: 7275px !important;
	}
	.xl-max-w-7275 {
		max-width: 7275px !important;
	}
	.xl-min-w-7275 {
		min-width: 7275px !important;
	}
	.xl-w-7300 {
		width: 7300px !important;
	}
	.xl-max-w-7300 {
		max-width: 7300px !important;
	}
	.xl-min-w-7300 {
		min-width: 7300px !important;
	}
	.xl-w-7325 {
		width: 7325px !important;
	}
	.xl-max-w-7325 {
		max-width: 7325px !important;
	}
	.xl-min-w-7325 {
		min-width: 7325px !important;
	}
	.xl-w-7350 {
		width: 7350px !important;
	}
	.xl-max-w-7350 {
		max-width: 7350px !important;
	}
	.xl-min-w-7350 {
		min-width: 7350px !important;
	}
	.xl-w-7375 {
		width: 7375px !important;
	}
	.xl-max-w-7375 {
		max-width: 7375px !important;
	}
	.xl-min-w-7375 {
		min-width: 7375px !important;
	}
	.xl-w-7400 {
		width: 7400px !important;
	}
	.xl-max-w-7400 {
		max-width: 7400px !important;
	}
	.xl-min-w-7400 {
		min-width: 7400px !important;
	}
	.xl-w-7425 {
		width: 7425px !important;
	}
	.xl-max-w-7425 {
		max-width: 7425px !important;
	}
	.xl-min-w-7425 {
		min-width: 7425px !important;
	}
	.xl-w-7450 {
		width: 7450px !important;
	}
	.xl-max-w-7450 {
		max-width: 7450px !important;
	}
	.xl-min-w-7450 {
		min-width: 7450px !important;
	}
	.xl-w-7475 {
		width: 7475px !important;
	}
	.xl-max-w-7475 {
		max-width: 7475px !important;
	}
	.xl-min-w-7475 {
		min-width: 7475px !important;
	}
	.xl-w-7500 {
		width: 7500px !important;
	}
	.xl-max-w-7500 {
		max-width: 7500px !important;
	}
	.xl-min-w-7500 {
		min-width: 7500px !important;
	}
	.xl-w-7525 {
		width: 7525px !important;
	}
	.xl-max-w-7525 {
		max-width: 7525px !important;
	}
	.xl-min-w-7525 {
		min-width: 7525px !important;
	}
	.xl-w-7550 {
		width: 7550px !important;
	}
	.xl-max-w-7550 {
		max-width: 7550px !important;
	}
	.xl-min-w-7550 {
		min-width: 7550px !important;
	}
	.xl-w-7575 {
		width: 7575px !important;
	}
	.xl-max-w-7575 {
		max-width: 7575px !important;
	}
	.xl-min-w-7575 {
		min-width: 7575px !important;
	}
	.xl-w-7600 {
		width: 7600px !important;
	}
	.xl-max-w-7600 {
		max-width: 7600px !important;
	}
	.xl-min-w-7600 {
		min-width: 7600px !important;
	}
	.xl-w-7625 {
		width: 7625px !important;
	}
	.xl-max-w-7625 {
		max-width: 7625px !important;
	}
	.xl-min-w-7625 {
		min-width: 7625px !important;
	}
	.xl-w-7650 {
		width: 7650px !important;
	}
	.xl-max-w-7650 {
		max-width: 7650px !important;
	}
	.xl-min-w-7650 {
		min-width: 7650px !important;
	}
	.xl-w-7675 {
		width: 7675px !important;
	}
	.xl-max-w-7675 {
		max-width: 7675px !important;
	}
	.xl-min-w-7675 {
		min-width: 7675px !important;
	}
	.xl-w-7700 {
		width: 7700px !important;
	}
	.xl-max-w-7700 {
		max-width: 7700px !important;
	}
	.xl-min-w-7700 {
		min-width: 7700px !important;
	}
	.xl-w-7725 {
		width: 7725px !important;
	}
	.xl-max-w-7725 {
		max-width: 7725px !important;
	}
	.xl-min-w-7725 {
		min-width: 7725px !important;
	}
	.xl-w-7750 {
		width: 7750px !important;
	}
	.xl-max-w-7750 {
		max-width: 7750px !important;
	}
	.xl-min-w-7750 {
		min-width: 7750px !important;
	}
	.xl-w-7775 {
		width: 7775px !important;
	}
	.xl-max-w-7775 {
		max-width: 7775px !important;
	}
	.xl-min-w-7775 {
		min-width: 7775px !important;
	}
	.xl-w-7800 {
		width: 7800px !important;
	}
	.xl-max-w-7800 {
		max-width: 7800px !important;
	}
	.xl-min-w-7800 {
		min-width: 7800px !important;
	}
	.xl-w-7825 {
		width: 7825px !important;
	}
	.xl-max-w-7825 {
		max-width: 7825px !important;
	}
	.xl-min-w-7825 {
		min-width: 7825px !important;
	}
	.xl-w-7850 {
		width: 7850px !important;
	}
	.xl-max-w-7850 {
		max-width: 7850px !important;
	}
	.xl-min-w-7850 {
		min-width: 7850px !important;
	}
	.xl-w-7875 {
		width: 7875px !important;
	}
	.xl-max-w-7875 {
		max-width: 7875px !important;
	}
	.xl-min-w-7875 {
		min-width: 7875px !important;
	}
	.xl-w-7900 {
		width: 7900px !important;
	}
	.xl-max-w-7900 {
		max-width: 7900px !important;
	}
	.xl-min-w-7900 {
		min-width: 7900px !important;
	}
	.xl-w-7925 {
		width: 7925px !important;
	}
	.xl-max-w-7925 {
		max-width: 7925px !important;
	}
	.xl-min-w-7925 {
		min-width: 7925px !important;
	}
	.xl-w-7950 {
		width: 7950px !important;
	}
	.xl-max-w-7950 {
		max-width: 7950px !important;
	}
	.xl-min-w-7950 {
		min-width: 7950px !important;
	}
	.xl-w-7975 {
		width: 7975px !important;
	}
	.xl-max-w-7975 {
		max-width: 7975px !important;
	}
	.xl-min-w-7975 {
		min-width: 7975px !important;
	}
	.xl-w-8000 {
		width: 8000px !important;
	}
	.xl-max-w-8000 {
		max-width: 8000px !important;
	}
	.xl-min-w-8000 {
		min-width: 8000px !important;
	}
	.xl-w-8025 {
		width: 8025px !important;
	}
	.xl-max-w-8025 {
		max-width: 8025px !important;
	}
	.xl-min-w-8025 {
		min-width: 8025px !important;
	}
	.xl-w-8050 {
		width: 8050px !important;
	}
	.xl-max-w-8050 {
		max-width: 8050px !important;
	}
	.xl-min-w-8050 {
		min-width: 8050px !important;
	}
	.xl-w-8075 {
		width: 8075px !important;
	}
	.xl-max-w-8075 {
		max-width: 8075px !important;
	}
	.xl-min-w-8075 {
		min-width: 8075px !important;
	}
	.xl-w-8100 {
		width: 8100px !important;
	}
	.xl-max-w-8100 {
		max-width: 8100px !important;
	}
	.xl-min-w-8100 {
		min-width: 8100px !important;
	}
	.xl-w-8125 {
		width: 8125px !important;
	}
	.xl-max-w-8125 {
		max-width: 8125px !important;
	}
	.xl-min-w-8125 {
		min-width: 8125px !important;
	}
	.xl-w-8150 {
		width: 8150px !important;
	}
	.xl-max-w-8150 {
		max-width: 8150px !important;
	}
	.xl-min-w-8150 {
		min-width: 8150px !important;
	}
	.xl-w-8175 {
		width: 8175px !important;
	}
	.xl-max-w-8175 {
		max-width: 8175px !important;
	}
	.xl-min-w-8175 {
		min-width: 8175px !important;
	}
	.xl-w-8200 {
		width: 8200px !important;
	}
	.xl-max-w-8200 {
		max-width: 8200px !important;
	}
	.xl-min-w-8200 {
		min-width: 8200px !important;
	}
	.xl-w-8225 {
		width: 8225px !important;
	}
	.xl-max-w-8225 {
		max-width: 8225px !important;
	}
	.xl-min-w-8225 {
		min-width: 8225px !important;
	}
	.xl-w-8250 {
		width: 8250px !important;
	}
	.xl-max-w-8250 {
		max-width: 8250px !important;
	}
	.xl-min-w-8250 {
		min-width: 8250px !important;
	}
	.xl-w-8275 {
		width: 8275px !important;
	}
	.xl-max-w-8275 {
		max-width: 8275px !important;
	}
	.xl-min-w-8275 {
		min-width: 8275px !important;
	}
	.xl-w-8300 {
		width: 8300px !important;
	}
	.xl-max-w-8300 {
		max-width: 8300px !important;
	}
	.xl-min-w-8300 {
		min-width: 8300px !important;
	}
	.xl-w-8325 {
		width: 8325px !important;
	}
	.xl-max-w-8325 {
		max-width: 8325px !important;
	}
	.xl-min-w-8325 {
		min-width: 8325px !important;
	}
	.xl-w-8350 {
		width: 8350px !important;
	}
	.xl-max-w-8350 {
		max-width: 8350px !important;
	}
	.xl-min-w-8350 {
		min-width: 8350px !important;
	}
	.xl-w-8375 {
		width: 8375px !important;
	}
	.xl-max-w-8375 {
		max-width: 8375px !important;
	}
	.xl-min-w-8375 {
		min-width: 8375px !important;
	}
	.xl-w-8400 {
		width: 8400px !important;
	}
	.xl-max-w-8400 {
		max-width: 8400px !important;
	}
	.xl-min-w-8400 {
		min-width: 8400px !important;
	}
	.xl-w-8425 {
		width: 8425px !important;
	}
	.xl-max-w-8425 {
		max-width: 8425px !important;
	}
	.xl-min-w-8425 {
		min-width: 8425px !important;
	}
	.xl-w-8450 {
		width: 8450px !important;
	}
	.xl-max-w-8450 {
		max-width: 8450px !important;
	}
	.xl-min-w-8450 {
		min-width: 8450px !important;
	}
	.xl-w-8475 {
		width: 8475px !important;
	}
	.xl-max-w-8475 {
		max-width: 8475px !important;
	}
	.xl-min-w-8475 {
		min-width: 8475px !important;
	}
	.xl-w-8500 {
		width: 8500px !important;
	}
	.xl-max-w-8500 {
		max-width: 8500px !important;
	}
	.xl-min-w-8500 {
		min-width: 8500px !important;
	}
	.xl-w-8525 {
		width: 8525px !important;
	}
	.xl-max-w-8525 {
		max-width: 8525px !important;
	}
	.xl-min-w-8525 {
		min-width: 8525px !important;
	}
	.xl-w-8550 {
		width: 8550px !important;
	}
	.xl-max-w-8550 {
		max-width: 8550px !important;
	}
	.xl-min-w-8550 {
		min-width: 8550px !important;
	}
	.xl-w-8575 {
		width: 8575px !important;
	}
	.xl-max-w-8575 {
		max-width: 8575px !important;
	}
	.xl-min-w-8575 {
		min-width: 8575px !important;
	}
	.xl-w-8600 {
		width: 8600px !important;
	}
	.xl-max-w-8600 {
		max-width: 8600px !important;
	}
	.xl-min-w-8600 {
		min-width: 8600px !important;
	}
	.xl-w-8625 {
		width: 8625px !important;
	}
	.xl-max-w-8625 {
		max-width: 8625px !important;
	}
	.xl-min-w-8625 {
		min-width: 8625px !important;
	}
	.xl-w-8650 {
		width: 8650px !important;
	}
	.xl-max-w-8650 {
		max-width: 8650px !important;
	}
	.xl-min-w-8650 {
		min-width: 8650px !important;
	}
	.xl-w-8675 {
		width: 8675px !important;
	}
	.xl-max-w-8675 {
		max-width: 8675px !important;
	}
	.xl-min-w-8675 {
		min-width: 8675px !important;
	}
	.xl-w-8700 {
		width: 8700px !important;
	}
	.xl-max-w-8700 {
		max-width: 8700px !important;
	}
	.xl-min-w-8700 {
		min-width: 8700px !important;
	}
	.xl-w-8725 {
		width: 8725px !important;
	}
	.xl-max-w-8725 {
		max-width: 8725px !important;
	}
	.xl-min-w-8725 {
		min-width: 8725px !important;
	}
	.xl-w-8750 {
		width: 8750px !important;
	}
	.xl-max-w-8750 {
		max-width: 8750px !important;
	}
	.xl-min-w-8750 {
		min-width: 8750px !important;
	}
	.xl-w-8775 {
		width: 8775px !important;
	}
	.xl-max-w-8775 {
		max-width: 8775px !important;
	}
	.xl-min-w-8775 {
		min-width: 8775px !important;
	}
	.xl-w-8800 {
		width: 8800px !important;
	}
	.xl-max-w-8800 {
		max-width: 8800px !important;
	}
	.xl-min-w-8800 {
		min-width: 8800px !important;
	}
	.xl-w-8825 {
		width: 8825px !important;
	}
	.xl-max-w-8825 {
		max-width: 8825px !important;
	}
	.xl-min-w-8825 {
		min-width: 8825px !important;
	}
	.xl-w-8850 {
		width: 8850px !important;
	}
	.xl-max-w-8850 {
		max-width: 8850px !important;
	}
	.xl-min-w-8850 {
		min-width: 8850px !important;
	}
	.xl-w-8875 {
		width: 8875px !important;
	}
	.xl-max-w-8875 {
		max-width: 8875px !important;
	}
	.xl-min-w-8875 {
		min-width: 8875px !important;
	}
	.xl-w-8900 {
		width: 8900px !important;
	}
	.xl-max-w-8900 {
		max-width: 8900px !important;
	}
	.xl-min-w-8900 {
		min-width: 8900px !important;
	}
	.xl-w-8925 {
		width: 8925px !important;
	}
	.xl-max-w-8925 {
		max-width: 8925px !important;
	}
	.xl-min-w-8925 {
		min-width: 8925px !important;
	}
	.xl-w-8950 {
		width: 8950px !important;
	}
	.xl-max-w-8950 {
		max-width: 8950px !important;
	}
	.xl-min-w-8950 {
		min-width: 8950px !important;
	}
	.xl-w-8975 {
		width: 8975px !important;
	}
	.xl-max-w-8975 {
		max-width: 8975px !important;
	}
	.xl-min-w-8975 {
		min-width: 8975px !important;
	}
	.xl-w-9000 {
		width: 9000px !important;
	}
	.xl-max-w-9000 {
		max-width: 9000px !important;
	}
	.xl-min-w-9000 {
		min-width: 9000px !important;
	}
	.xl-w-9025 {
		width: 9025px !important;
	}
	.xl-max-w-9025 {
		max-width: 9025px !important;
	}
	.xl-min-w-9025 {
		min-width: 9025px !important;
	}
	.xl-w-9050 {
		width: 9050px !important;
	}
	.xl-max-w-9050 {
		max-width: 9050px !important;
	}
	.xl-min-w-9050 {
		min-width: 9050px !important;
	}
	.xl-w-9075 {
		width: 9075px !important;
	}
	.xl-max-w-9075 {
		max-width: 9075px !important;
	}
	.xl-min-w-9075 {
		min-width: 9075px !important;
	}
	.xl-w-9100 {
		width: 9100px !important;
	}
	.xl-max-w-9100 {
		max-width: 9100px !important;
	}
	.xl-min-w-9100 {
		min-width: 9100px !important;
	}
	.xl-w-9125 {
		width: 9125px !important;
	}
	.xl-max-w-9125 {
		max-width: 9125px !important;
	}
	.xl-min-w-9125 {
		min-width: 9125px !important;
	}
	.xl-w-9150 {
		width: 9150px !important;
	}
	.xl-max-w-9150 {
		max-width: 9150px !important;
	}
	.xl-min-w-9150 {
		min-width: 9150px !important;
	}
	.xl-w-9175 {
		width: 9175px !important;
	}
	.xl-max-w-9175 {
		max-width: 9175px !important;
	}
	.xl-min-w-9175 {
		min-width: 9175px !important;
	}
	.xl-w-9200 {
		width: 9200px !important;
	}
	.xl-max-w-9200 {
		max-width: 9200px !important;
	}
	.xl-min-w-9200 {
		min-width: 9200px !important;
	}
	.xl-w-9225 {
		width: 9225px !important;
	}
	.xl-max-w-9225 {
		max-width: 9225px !important;
	}
	.xl-min-w-9225 {
		min-width: 9225px !important;
	}
	.xl-w-9250 {
		width: 9250px !important;
	}
	.xl-max-w-9250 {
		max-width: 9250px !important;
	}
	.xl-min-w-9250 {
		min-width: 9250px !important;
	}
	.xl-w-9275 {
		width: 9275px !important;
	}
	.xl-max-w-9275 {
		max-width: 9275px !important;
	}
	.xl-min-w-9275 {
		min-width: 9275px !important;
	}
	.xl-w-9300 {
		width: 9300px !important;
	}
	.xl-max-w-9300 {
		max-width: 9300px !important;
	}
	.xl-min-w-9300 {
		min-width: 9300px !important;
	}
	.xl-w-9325 {
		width: 9325px !important;
	}
	.xl-max-w-9325 {
		max-width: 9325px !important;
	}
	.xl-min-w-9325 {
		min-width: 9325px !important;
	}
	.xl-w-9350 {
		width: 9350px !important;
	}
	.xl-max-w-9350 {
		max-width: 9350px !important;
	}
	.xl-min-w-9350 {
		min-width: 9350px !important;
	}
	.xl-w-9375 {
		width: 9375px !important;
	}
	.xl-max-w-9375 {
		max-width: 9375px !important;
	}
	.xl-min-w-9375 {
		min-width: 9375px !important;
	}
	.xl-w-9400 {
		width: 9400px !important;
	}
	.xl-max-w-9400 {
		max-width: 9400px !important;
	}
	.xl-min-w-9400 {
		min-width: 9400px !important;
	}
	.xl-w-9425 {
		width: 9425px !important;
	}
	.xl-max-w-9425 {
		max-width: 9425px !important;
	}
	.xl-min-w-9425 {
		min-width: 9425px !important;
	}
	.xl-w-9450 {
		width: 9450px !important;
	}
	.xl-max-w-9450 {
		max-width: 9450px !important;
	}
	.xl-min-w-9450 {
		min-width: 9450px !important;
	}
	.xl-w-9475 {
		width: 9475px !important;
	}
	.xl-max-w-9475 {
		max-width: 9475px !important;
	}
	.xl-min-w-9475 {
		min-width: 9475px !important;
	}
	.xl-w-9500 {
		width: 9500px !important;
	}
	.xl-max-w-9500 {
		max-width: 9500px !important;
	}
	.xl-min-w-9500 {
		min-width: 9500px !important;
	}
	.xl-w-9525 {
		width: 9525px !important;
	}
	.xl-max-w-9525 {
		max-width: 9525px !important;
	}
	.xl-min-w-9525 {
		min-width: 9525px !important;
	}
	.xl-w-9550 {
		width: 9550px !important;
	}
	.xl-max-w-9550 {
		max-width: 9550px !important;
	}
	.xl-min-w-9550 {
		min-width: 9550px !important;
	}
	.xl-w-9575 {
		width: 9575px !important;
	}
	.xl-max-w-9575 {
		max-width: 9575px !important;
	}
	.xl-min-w-9575 {
		min-width: 9575px !important;
	}
	.xl-w-9600 {
		width: 9600px !important;
	}
	.xl-max-w-9600 {
		max-width: 9600px !important;
	}
	.xl-min-w-9600 {
		min-width: 9600px !important;
	}
	.xl-w-9625 {
		width: 9625px !important;
	}
	.xl-max-w-9625 {
		max-width: 9625px !important;
	}
	.xl-min-w-9625 {
		min-width: 9625px !important;
	}
	.xl-w-9650 {
		width: 9650px !important;
	}
	.xl-max-w-9650 {
		max-width: 9650px !important;
	}
	.xl-min-w-9650 {
		min-width: 9650px !important;
	}
	.xl-w-9675 {
		width: 9675px !important;
	}
	.xl-max-w-9675 {
		max-width: 9675px !important;
	}
	.xl-min-w-9675 {
		min-width: 9675px !important;
	}
	.xl-w-9700 {
		width: 9700px !important;
	}
	.xl-max-w-9700 {
		max-width: 9700px !important;
	}
	.xl-min-w-9700 {
		min-width: 9700px !important;
	}
	.xl-w-9725 {
		width: 9725px !important;
	}
	.xl-max-w-9725 {
		max-width: 9725px !important;
	}
	.xl-min-w-9725 {
		min-width: 9725px !important;
	}
	.xl-w-9750 {
		width: 9750px !important;
	}
	.xl-max-w-9750 {
		max-width: 9750px !important;
	}
	.xl-min-w-9750 {
		min-width: 9750px !important;
	}
	.xl-w-9775 {
		width: 9775px !important;
	}
	.xl-max-w-9775 {
		max-width: 9775px !important;
	}
	.xl-min-w-9775 {
		min-width: 9775px !important;
	}
	.xl-w-9800 {
		width: 9800px !important;
	}
	.xl-max-w-9800 {
		max-width: 9800px !important;
	}
	.xl-min-w-9800 {
		min-width: 9800px !important;
	}
	.xl-w-9825 {
		width: 9825px !important;
	}
	.xl-max-w-9825 {
		max-width: 9825px !important;
	}
	.xl-min-w-9825 {
		min-width: 9825px !important;
	}
	.xl-w-9850 {
		width: 9850px !important;
	}
	.xl-max-w-9850 {
		max-width: 9850px !important;
	}
	.xl-min-w-9850 {
		min-width: 9850px !important;
	}
	.xl-w-9875 {
		width: 9875px !important;
	}
	.xl-max-w-9875 {
		max-width: 9875px !important;
	}
	.xl-min-w-9875 {
		min-width: 9875px !important;
	}
	.xl-w-9900 {
		width: 9900px !important;
	}
	.xl-max-w-9900 {
		max-width: 9900px !important;
	}
	.xl-min-w-9900 {
		min-width: 9900px !important;
	}
	.xl-w-9925 {
		width: 9925px !important;
	}
	.xl-max-w-9925 {
		max-width: 9925px !important;
	}
	.xl-min-w-9925 {
		min-width: 9925px !important;
	}
	.xl-w-9950 {
		width: 9950px !important;
	}
	.xl-max-w-9950 {
		max-width: 9950px !important;
	}
	.xl-min-w-9950 {
		min-width: 9950px !important;
	}
	.xl-w-9975 {
		width: 9975px !important;
	}
	.xl-max-w-9975 {
		max-width: 9975px !important;
	}
	.xl-min-w-9975 {
		min-width: 9975px !important;
	}
	.xl-w-10000 {
		width: 10000px !important;
	}
	.xl-max-w-10000 {
		max-width: 10000px !important;
	}
	.xl-min-w-10000 {
		min-width: 10000px !important;
	}
	.xl-w-10025 {
		width: 10025px !important;
	}
	.xl-max-w-10025 {
		max-width: 10025px !important;
	}
	.xl-min-w-10025 {
		min-width: 10025px !important;
	}
	.xl-w-10050 {
		width: 10050px !important;
	}
	.xl-max-w-10050 {
		max-width: 10050px !important;
	}
	.xl-min-w-10050 {
		min-width: 10050px !important;
	}
	.xl-w-10075 {
		width: 10075px !important;
	}
	.xl-max-w-10075 {
		max-width: 10075px !important;
	}
	.xl-min-w-10075 {
		min-width: 10075px !important;
	}
	.xl-w-10100 {
		width: 10100px !important;
	}
	.xl-max-w-10100 {
		max-width: 10100px !important;
	}
	.xl-min-w-10100 {
		min-width: 10100px !important;
	}
	.xl-w-10125 {
		width: 10125px !important;
	}
	.xl-max-w-10125 {
		max-width: 10125px !important;
	}
	.xl-min-w-10125 {
		min-width: 10125px !important;
	}
	.xl-w-10150 {
		width: 10150px !important;
	}
	.xl-max-w-10150 {
		max-width: 10150px !important;
	}
	.xl-min-w-10150 {
		min-width: 10150px !important;
	}
	.xl-w-10175 {
		width: 10175px !important;
	}
	.xl-max-w-10175 {
		max-width: 10175px !important;
	}
	.xl-min-w-10175 {
		min-width: 10175px !important;
	}
	.xl-w-10200 {
		width: 10200px !important;
	}
	.xl-max-w-10200 {
		max-width: 10200px !important;
	}
	.xl-min-w-10200 {
		min-width: 10200px !important;
	}
	.xl-w-10225 {
		width: 10225px !important;
	}
	.xl-max-w-10225 {
		max-width: 10225px !important;
	}
	.xl-min-w-10225 {
		min-width: 10225px !important;
	}
	.xl-w-10250 {
		width: 10250px !important;
	}
	.xl-max-w-10250 {
		max-width: 10250px !important;
	}
	.xl-min-w-10250 {
		min-width: 10250px !important;
	}
	.xl-w-10275 {
		width: 10275px !important;
	}
	.xl-max-w-10275 {
		max-width: 10275px !important;
	}
	.xl-min-w-10275 {
		min-width: 10275px !important;
	}
	.xl-w-10300 {
		width: 10300px !important;
	}
	.xl-max-w-10300 {
		max-width: 10300px !important;
	}
	.xl-min-w-10300 {
		min-width: 10300px !important;
	}
	.xl-w-10325 {
		width: 10325px !important;
	}
	.xl-max-w-10325 {
		max-width: 10325px !important;
	}
	.xl-min-w-10325 {
		min-width: 10325px !important;
	}
	.xl-w-10350 {
		width: 10350px !important;
	}
	.xl-max-w-10350 {
		max-width: 10350px !important;
	}
	.xl-min-w-10350 {
		min-width: 10350px !important;
	}
	.xl-w-10375 {
		width: 10375px !important;
	}
	.xl-max-w-10375 {
		max-width: 10375px !important;
	}
	.xl-min-w-10375 {
		min-width: 10375px !important;
	}
	.xl-w-10400 {
		width: 10400px !important;
	}
	.xl-max-w-10400 {
		max-width: 10400px !important;
	}
	.xl-min-w-10400 {
		min-width: 10400px !important;
	}
	.xl-w-10425 {
		width: 10425px !important;
	}
	.xl-max-w-10425 {
		max-width: 10425px !important;
	}
	.xl-min-w-10425 {
		min-width: 10425px !important;
	}
	.xl-w-10450 {
		width: 10450px !important;
	}
	.xl-max-w-10450 {
		max-width: 10450px !important;
	}
	.xl-min-w-10450 {
		min-width: 10450px !important;
	}
	.xl-w-10475 {
		width: 10475px !important;
	}
	.xl-max-w-10475 {
		max-width: 10475px !important;
	}
	.xl-min-w-10475 {
		min-width: 10475px !important;
	}
	.xl-w-10500 {
		width: 10500px !important;
	}
	.xl-max-w-10500 {
		max-width: 10500px !important;
	}
	.xl-min-w-10500 {
		min-width: 10500px !important;
	}
	.xl-w-10525 {
		width: 10525px !important;
	}
	.xl-max-w-10525 {
		max-width: 10525px !important;
	}
	.xl-min-w-10525 {
		min-width: 10525px !important;
	}
	.xl-w-10550 {
		width: 10550px !important;
	}
	.xl-max-w-10550 {
		max-width: 10550px !important;
	}
	.xl-min-w-10550 {
		min-width: 10550px !important;
	}
	.xl-w-10575 {
		width: 10575px !important;
	}
	.xl-max-w-10575 {
		max-width: 10575px !important;
	}
	.xl-min-w-10575 {
		min-width: 10575px !important;
	}
	.xl-w-10600 {
		width: 10600px !important;
	}
	.xl-max-w-10600 {
		max-width: 10600px !important;
	}
	.xl-min-w-10600 {
		min-width: 10600px !important;
	}
	.xl-w-10625 {
		width: 10625px !important;
	}
	.xl-max-w-10625 {
		max-width: 10625px !important;
	}
	.xl-min-w-10625 {
		min-width: 10625px !important;
	}
	.xl-w-10650 {
		width: 10650px !important;
	}
	.xl-max-w-10650 {
		max-width: 10650px !important;
	}
	.xl-min-w-10650 {
		min-width: 10650px !important;
	}
	.xl-w-10675 {
		width: 10675px !important;
	}
	.xl-max-w-10675 {
		max-width: 10675px !important;
	}
	.xl-min-w-10675 {
		min-width: 10675px !important;
	}
	.xl-w-10700 {
		width: 10700px !important;
	}
	.xl-max-w-10700 {
		max-width: 10700px !important;
	}
	.xl-min-w-10700 {
		min-width: 10700px !important;
	}
	.xl-w-10725 {
		width: 10725px !important;
	}
	.xl-max-w-10725 {
		max-width: 10725px !important;
	}
	.xl-min-w-10725 {
		min-width: 10725px !important;
	}
	.xl-w-10750 {
		width: 10750px !important;
	}
	.xl-max-w-10750 {
		max-width: 10750px !important;
	}
	.xl-min-w-10750 {
		min-width: 10750px !important;
	}
	.xl-w-10775 {
		width: 10775px !important;
	}
	.xl-max-w-10775 {
		max-width: 10775px !important;
	}
	.xl-min-w-10775 {
		min-width: 10775px !important;
	}
	.xl-w-10800 {
		width: 10800px !important;
	}
	.xl-max-w-10800 {
		max-width: 10800px !important;
	}
	.xl-min-w-10800 {
		min-width: 10800px !important;
	}
	.xl-w-10825 {
		width: 10825px !important;
	}
	.xl-max-w-10825 {
		max-width: 10825px !important;
	}
	.xl-min-w-10825 {
		min-width: 10825px !important;
	}
	.xl-w-10850 {
		width: 10850px !important;
	}
	.xl-max-w-10850 {
		max-width: 10850px !important;
	}
	.xl-min-w-10850 {
		min-width: 10850px !important;
	}
	.xl-w-10875 {
		width: 10875px !important;
	}
	.xl-max-w-10875 {
		max-width: 10875px !important;
	}
	.xl-min-w-10875 {
		min-width: 10875px !important;
	}
	.xl-w-10900 {
		width: 10900px !important;
	}
	.xl-max-w-10900 {
		max-width: 10900px !important;
	}
	.xl-min-w-10900 {
		min-width: 10900px !important;
	}
	.xl-w-10925 {
		width: 10925px !important;
	}
	.xl-max-w-10925 {
		max-width: 10925px !important;
	}
	.xl-min-w-10925 {
		min-width: 10925px !important;
	}
	.xl-w-10950 {
		width: 10950px !important;
	}
	.xl-max-w-10950 {
		max-width: 10950px !important;
	}
	.xl-min-w-10950 {
		min-width: 10950px !important;
	}
	.xl-w-10975 {
		width: 10975px !important;
	}
	.xl-max-w-10975 {
		max-width: 10975px !important;
	}
	.xl-min-w-10975 {
		min-width: 10975px !important;
	}
	.xl-w-11000 {
		width: 11000px !important;
	}
	.xl-max-w-11000 {
		max-width: 11000px !important;
	}
	.xl-min-w-11000 {
		min-width: 11000px !important;
	}
	.xl-w-11025 {
		width: 11025px !important;
	}
	.xl-max-w-11025 {
		max-width: 11025px !important;
	}
	.xl-min-w-11025 {
		min-width: 11025px !important;
	}
	.xl-w-11050 {
		width: 11050px !important;
	}
	.xl-max-w-11050 {
		max-width: 11050px !important;
	}
	.xl-min-w-11050 {
		min-width: 11050px !important;
	}
	.xl-w-11075 {
		width: 11075px !important;
	}
	.xl-max-w-11075 {
		max-width: 11075px !important;
	}
	.xl-min-w-11075 {
		min-width: 11075px !important;
	}
	.xl-w-11100 {
		width: 11100px !important;
	}
	.xl-max-w-11100 {
		max-width: 11100px !important;
	}
	.xl-min-w-11100 {
		min-width: 11100px !important;
	}
	.xl-w-11125 {
		width: 11125px !important;
	}
	.xl-max-w-11125 {
		max-width: 11125px !important;
	}
	.xl-min-w-11125 {
		min-width: 11125px !important;
	}
	.xl-w-11150 {
		width: 11150px !important;
	}
	.xl-max-w-11150 {
		max-width: 11150px !important;
	}
	.xl-min-w-11150 {
		min-width: 11150px !important;
	}
	.xl-w-11175 {
		width: 11175px !important;
	}
	.xl-max-w-11175 {
		max-width: 11175px !important;
	}
	.xl-min-w-11175 {
		min-width: 11175px !important;
	}
	.xl-w-11200 {
		width: 11200px !important;
	}
	.xl-max-w-11200 {
		max-width: 11200px !important;
	}
	.xl-min-w-11200 {
		min-width: 11200px !important;
	}
	.xl-w-11225 {
		width: 11225px !important;
	}
	.xl-max-w-11225 {
		max-width: 11225px !important;
	}
	.xl-min-w-11225 {
		min-width: 11225px !important;
	}
	.xl-w-11250 {
		width: 11250px !important;
	}
	.xl-max-w-11250 {
		max-width: 11250px !important;
	}
	.xl-min-w-11250 {
		min-width: 11250px !important;
	}
	.xl-w-11275 {
		width: 11275px !important;
	}
	.xl-max-w-11275 {
		max-width: 11275px !important;
	}
	.xl-min-w-11275 {
		min-width: 11275px !important;
	}
	.xl-w-11300 {
		width: 11300px !important;
	}
	.xl-max-w-11300 {
		max-width: 11300px !important;
	}
	.xl-min-w-11300 {
		min-width: 11300px !important;
	}
	.xl-w-11325 {
		width: 11325px !important;
	}
	.xl-max-w-11325 {
		max-width: 11325px !important;
	}
	.xl-min-w-11325 {
		min-width: 11325px !important;
	}
	.xl-w-11350 {
		width: 11350px !important;
	}
	.xl-max-w-11350 {
		max-width: 11350px !important;
	}
	.xl-min-w-11350 {
		min-width: 11350px !important;
	}
	.xl-w-11375 {
		width: 11375px !important;
	}
	.xl-max-w-11375 {
		max-width: 11375px !important;
	}
	.xl-min-w-11375 {
		min-width: 11375px !important;
	}
	.xl-w-11400 {
		width: 11400px !important;
	}
	.xl-max-w-11400 {
		max-width: 11400px !important;
	}
	.xl-min-w-11400 {
		min-width: 11400px !important;
	}
	.xl-w-11425 {
		width: 11425px !important;
	}
	.xl-max-w-11425 {
		max-width: 11425px !important;
	}
	.xl-min-w-11425 {
		min-width: 11425px !important;
	}
	.xl-w-11450 {
		width: 11450px !important;
	}
	.xl-max-w-11450 {
		max-width: 11450px !important;
	}
	.xl-min-w-11450 {
		min-width: 11450px !important;
	}
	.xl-w-11475 {
		width: 11475px !important;
	}
	.xl-max-w-11475 {
		max-width: 11475px !important;
	}
	.xl-min-w-11475 {
		min-width: 11475px !important;
	}
	.xl-w-11500 {
		width: 11500px !important;
	}
	.xl-max-w-11500 {
		max-width: 11500px !important;
	}
	.xl-min-w-11500 {
		min-width: 11500px !important;
	}
	.xl-w-11525 {
		width: 11525px !important;
	}
	.xl-max-w-11525 {
		max-width: 11525px !important;
	}
	.xl-min-w-11525 {
		min-width: 11525px !important;
	}
	.xl-w-11550 {
		width: 11550px !important;
	}
	.xl-max-w-11550 {
		max-width: 11550px !important;
	}
	.xl-min-w-11550 {
		min-width: 11550px !important;
	}
	.xl-w-11575 {
		width: 11575px !important;
	}
	.xl-max-w-11575 {
		max-width: 11575px !important;
	}
	.xl-min-w-11575 {
		min-width: 11575px !important;
	}
	.xl-w-11600 {
		width: 11600px !important;
	}
	.xl-max-w-11600 {
		max-width: 11600px !important;
	}
	.xl-min-w-11600 {
		min-width: 11600px !important;
	}
	.xl-w-11625 {
		width: 11625px !important;
	}
	.xl-max-w-11625 {
		max-width: 11625px !important;
	}
	.xl-min-w-11625 {
		min-width: 11625px !important;
	}
	.xl-w-11650 {
		width: 11650px !important;
	}
	.xl-max-w-11650 {
		max-width: 11650px !important;
	}
	.xl-min-w-11650 {
		min-width: 11650px !important;
	}
	.xl-w-11675 {
		width: 11675px !important;
	}
	.xl-max-w-11675 {
		max-width: 11675px !important;
	}
	.xl-min-w-11675 {
		min-width: 11675px !important;
	}
	.xl-w-11700 {
		width: 11700px !important;
	}
	.xl-max-w-11700 {
		max-width: 11700px !important;
	}
	.xl-min-w-11700 {
		min-width: 11700px !important;
	}
	.xl-w-11725 {
		width: 11725px !important;
	}
	.xl-max-w-11725 {
		max-width: 11725px !important;
	}
	.xl-min-w-11725 {
		min-width: 11725px !important;
	}
	.xl-w-11750 {
		width: 11750px !important;
	}
	.xl-max-w-11750 {
		max-width: 11750px !important;
	}
	.xl-min-w-11750 {
		min-width: 11750px !important;
	}
	.xl-w-11775 {
		width: 11775px !important;
	}
	.xl-max-w-11775 {
		max-width: 11775px !important;
	}
	.xl-min-w-11775 {
		min-width: 11775px !important;
	}
	.xl-w-11800 {
		width: 11800px !important;
	}
	.xl-max-w-11800 {
		max-width: 11800px !important;
	}
	.xl-min-w-11800 {
		min-width: 11800px !important;
	}
	.xl-w-11825 {
		width: 11825px !important;
	}
	.xl-max-w-11825 {
		max-width: 11825px !important;
	}
	.xl-min-w-11825 {
		min-width: 11825px !important;
	}
	.xl-w-11850 {
		width: 11850px !important;
	}
	.xl-max-w-11850 {
		max-width: 11850px !important;
	}
	.xl-min-w-11850 {
		min-width: 11850px !important;
	}
	.xl-w-11875 {
		width: 11875px !important;
	}
	.xl-max-w-11875 {
		max-width: 11875px !important;
	}
	.xl-min-w-11875 {
		min-width: 11875px !important;
	}
	.xl-w-11900 {
		width: 11900px !important;
	}
	.xl-max-w-11900 {
		max-width: 11900px !important;
	}
	.xl-min-w-11900 {
		min-width: 11900px !important;
	}
	.xl-w-11925 {
		width: 11925px !important;
	}
	.xl-max-w-11925 {
		max-width: 11925px !important;
	}
	.xl-min-w-11925 {
		min-width: 11925px !important;
	}
	.xl-w-11950 {
		width: 11950px !important;
	}
	.xl-max-w-11950 {
		max-width: 11950px !important;
	}
	.xl-min-w-11950 {
		min-width: 11950px !important;
	}
	.xl-w-11975 {
		width: 11975px !important;
	}
	.xl-max-w-11975 {
		max-width: 11975px !important;
	}
	.xl-min-w-11975 {
		min-width: 11975px !important;
	}
	.xl-w-12000 {
		width: 12000px !important;
	}
	.xl-max-w-12000 {
		max-width: 12000px !important;
	}
	.xl-min-w-12000 {
		min-width: 12000px !important;
	}
	.xl-w-12025 {
		width: 12025px !important;
	}
	.xl-max-w-12025 {
		max-width: 12025px !important;
	}
	.xl-min-w-12025 {
		min-width: 12025px !important;
	}
	.xl-w-12050 {
		width: 12050px !important;
	}
	.xl-max-w-12050 {
		max-width: 12050px !important;
	}
	.xl-min-w-12050 {
		min-width: 12050px !important;
	}
	.xl-w-12075 {
		width: 12075px !important;
	}
	.xl-max-w-12075 {
		max-width: 12075px !important;
	}
	.xl-min-w-12075 {
		min-width: 12075px !important;
	}
	.xl-w-12100 {
		width: 12100px !important;
	}
	.xl-max-w-12100 {
		max-width: 12100px !important;
	}
	.xl-min-w-12100 {
		min-width: 12100px !important;
	}
	.xl-w-12125 {
		width: 12125px !important;
	}
	.xl-max-w-12125 {
		max-width: 12125px !important;
	}
	.xl-min-w-12125 {
		min-width: 12125px !important;
	}
	.xl-w-12150 {
		width: 12150px !important;
	}
	.xl-max-w-12150 {
		max-width: 12150px !important;
	}
	.xl-min-w-12150 {
		min-width: 12150px !important;
	}
	.xl-w-12175 {
		width: 12175px !important;
	}
	.xl-max-w-12175 {
		max-width: 12175px !important;
	}
	.xl-min-w-12175 {
		min-width: 12175px !important;
	}
	.xl-w-12200 {
		width: 12200px !important;
	}
	.xl-max-w-12200 {
		max-width: 12200px !important;
	}
	.xl-min-w-12200 {
		min-width: 12200px !important;
	}
	.xl-w-12225 {
		width: 12225px !important;
	}
	.xl-max-w-12225 {
		max-width: 12225px !important;
	}
	.xl-min-w-12225 {
		min-width: 12225px !important;
	}
	.xl-w-12250 {
		width: 12250px !important;
	}
	.xl-max-w-12250 {
		max-width: 12250px !important;
	}
	.xl-min-w-12250 {
		min-width: 12250px !important;
	}
	.xl-w-12275 {
		width: 12275px !important;
	}
	.xl-max-w-12275 {
		max-width: 12275px !important;
	}
	.xl-min-w-12275 {
		min-width: 12275px !important;
	}
	.xl-w-12300 {
		width: 12300px !important;
	}
	.xl-max-w-12300 {
		max-width: 12300px !important;
	}
	.xl-min-w-12300 {
		min-width: 12300px !important;
	}
	.xl-w-12325 {
		width: 12325px !important;
	}
	.xl-max-w-12325 {
		max-width: 12325px !important;
	}
	.xl-min-w-12325 {
		min-width: 12325px !important;
	}
	.xl-w-12350 {
		width: 12350px !important;
	}
	.xl-max-w-12350 {
		max-width: 12350px !important;
	}
	.xl-min-w-12350 {
		min-width: 12350px !important;
	}
	.xl-w-12375 {
		width: 12375px !important;
	}
	.xl-max-w-12375 {
		max-width: 12375px !important;
	}
	.xl-min-w-12375 {
		min-width: 12375px !important;
	}
	.xl-w-12400 {
		width: 12400px !important;
	}
	.xl-max-w-12400 {
		max-width: 12400px !important;
	}
	.xl-min-w-12400 {
		min-width: 12400px !important;
	}
	.xl-w-12425 {
		width: 12425px !important;
	}
	.xl-max-w-12425 {
		max-width: 12425px !important;
	}
	.xl-min-w-12425 {
		min-width: 12425px !important;
	}
	.xl-w-12450 {
		width: 12450px !important;
	}
	.xl-max-w-12450 {
		max-width: 12450px !important;
	}
	.xl-min-w-12450 {
		min-width: 12450px !important;
	}
	.xl-w-12475 {
		width: 12475px !important;
	}
	.xl-max-w-12475 {
		max-width: 12475px !important;
	}
	.xl-min-w-12475 {
		min-width: 12475px !important;
	}
	.xl-w-12500 {
		width: 12500px !important;
	}
	.xl-max-w-12500 {
		max-width: 12500px !important;
	}
	.xl-min-w-12500 {
		min-width: 12500px !important;
	}
}
.max-ht-25 {
	max-height: 25px;
}
.min-ht-25 {
	min-height: 25px;
}
.max-ht-50 {
	max-height: 50px;
}
.min-ht-50 {
	min-height: 50px;
}
.max-ht-75 {
	max-height: 75px;
}
.min-ht-75 {
	min-height: 75px;
}
.max-ht-100 {
	max-height: 100px;
}
.min-ht-100 {
	min-height: 100px;
}
.max-ht-125 {
	max-height: 125px;
}
.min-ht-125 {
	min-height: 125px;
}
.max-ht-150 {
	max-height: 150px;
}
.min-ht-150 {
	min-height: 150px;
}
.max-ht-175 {
	max-height: 175px;
}
.min-ht-175 {
	min-height: 175px;
}
.max-ht-200 {
	max-height: 200px;
}
.min-ht-200 {
	min-height: 200px;
}
.max-ht-225 {
	max-height: 225px;
}
.min-ht-225 {
	min-height: 225px;
}
.max-ht-250 {
	max-height: 250px;
}
.min-ht-250 {
	min-height: 250px;
}
.max-ht-275 {
	max-height: 275px;
}
.min-ht-275 {
	min-height: 275px;
}
.max-ht-300 {
	max-height: 300px;
}
.min-ht-300 {
	min-height: 300px;
}
.max-ht-325 {
	max-height: 325px;
}
.min-ht-325 {
	min-height: 325px;
}
.max-ht-350 {
	max-height: 350px;
}
.min-ht-350 {
	min-height: 350px;
}
.max-ht-375 {
	max-height: 375px;
}
.min-ht-375 {
	min-height: 375px;
}
.max-ht-400 {
	max-height: 400px;
}
.min-ht-400 {
	min-height: 400px;
}
.max-ht-425 {
	max-height: 425px;
}
.min-ht-425 {
	min-height: 425px;
}
.max-ht-450 {
	max-height: 450px;
}
.min-ht-450 {
	min-height: 450px;
}
.max-ht-475 {
	max-height: 475px;
}
.min-ht-475 {
	min-height: 475px;
}
.max-ht-500 {
	max-height: 500px;
}
.min-ht-500 {
	min-height: 500px;
}
.max-ht-525 {
	max-height: 525px;
}
.min-ht-525 {
	min-height: 525px;
}
.max-ht-550 {
	max-height: 550px;
}
.min-ht-550 {
	min-height: 550px;
}
.max-ht-575 {
	max-height: 575px;
}
.min-ht-575 {
	min-height: 575px;
}
.max-ht-600 {
	max-height: 600px;
}
.min-ht-600 {
	min-height: 600px;
}
.max-ht-625 {
	max-height: 625px;
}
.min-ht-625 {
	min-height: 625px;
}
.max-ht-650 {
	max-height: 650px;
}
.min-ht-650 {
	min-height: 650px;
}
.max-ht-675 {
	max-height: 675px;
}
.min-ht-675 {
	min-height: 675px;
}
.max-ht-700 {
	max-height: 700px;
}
.min-ht-700 {
	min-height: 700px;
}
.max-ht-725 {
	max-height: 725px;
}
.min-ht-725 {
	min-height: 725px;
}
.max-ht-750 {
	max-height: 750px;
}
.min-ht-750 {
	min-height: 750px;
}
.max-ht-775 {
	max-height: 775px;
}
.min-ht-775 {
	min-height: 775px;
}
.max-ht-800 {
	max-height: 800px;
}
.min-ht-800 {
	min-height: 800px;
}
.max-ht-825 {
	max-height: 825px;
}
.min-ht-825 {
	min-height: 825px;
}
.max-ht-850 {
	max-height: 850px;
}
.min-ht-850 {
	min-height: 850px;
}
.max-ht-875 {
	max-height: 875px;
}
.min-ht-875 {
	min-height: 875px;
}
.max-ht-900 {
	max-height: 900px;
}
.min-ht-900 {
	min-height: 900px;
}
.max-ht-925 {
	max-height: 925px;
}
.min-ht-925 {
	min-height: 925px;
}
.max-ht-950 {
	max-height: 950px;
}
.min-ht-950 {
	min-height: 950px;
}
.max-ht-975 {
	max-height: 975px;
}
.min-ht-975 {
	min-height: 975px;
}
.max-ht-1000 {
	max-height: 1000px;
}
.min-ht-1000 {
	min-height: 1000px;
}
.max-ht-1025 {
	max-height: 1025px;
}
.min-ht-1025 {
	min-height: 1025px;
}
.max-ht-1050 {
	max-height: 1050px;
}
.min-ht-1050 {
	min-height: 1050px;
}
.max-ht-1075 {
	max-height: 1075px;
}
.min-ht-1075 {
	min-height: 1075px;
}
.max-ht-1100 {
	max-height: 1100px;
}
.min-ht-1100 {
	min-height: 1100px;
}
.max-ht-1125 {
	max-height: 1125px;
}
.min-ht-1125 {
	min-height: 1125px;
}
.max-ht-1150 {
	max-height: 1150px;
}
.min-ht-1150 {
	min-height: 1150px;
}
.max-ht-1175 {
	max-height: 1175px;
}
.min-ht-1175 {
	min-height: 1175px;
}
.max-ht-1200 {
	max-height: 1200px;
}
.min-ht-1200 {
	min-height: 1200px;
}
.max-ht-1225 {
	max-height: 1225px;
}
.min-ht-1225 {
	min-height: 1225px;
}
.max-ht-1250 {
	max-height: 1250px;
}
.min-ht-1250 {
	min-height: 1250px;
}
.max-ht-1275 {
	max-height: 1275px;
}
.min-ht-1275 {
	min-height: 1275px;
}
.max-ht-1300 {
	max-height: 1300px;
}
.min-ht-1300 {
	min-height: 1300px;
}
.max-ht-1325 {
	max-height: 1325px;
}
.min-ht-1325 {
	min-height: 1325px;
}
.max-ht-1350 {
	max-height: 1350px;
}
.min-ht-1350 {
	min-height: 1350px;
}
.max-ht-1375 {
	max-height: 1375px;
}
.min-ht-1375 {
	min-height: 1375px;
}
.max-ht-1400 {
	max-height: 1400px;
}
.min-ht-1400 {
	min-height: 1400px;
}
.max-ht-1425 {
	max-height: 1425px;
}
.min-ht-1425 {
	min-height: 1425px;
}
.max-ht-1450 {
	max-height: 1450px;
}
.min-ht-1450 {
	min-height: 1450px;
}
.max-ht-1475 {
	max-height: 1475px;
}
.min-ht-1475 {
	min-height: 1475px;
}
.max-ht-1500 {
	max-height: 1500px;
}
.min-ht-1500 {
	min-height: 1500px;
}
@media screen and (max-width: 994px) {
	.mob-max-ht-25 {
		max-height: 25px !important;
	}
	.mob-min-ht-25 {
		min-height: 25px !important;
	}
	.mob-max-ht-50 {
		max-height: 50px !important;
	}
	.mob-min-ht-50 {
		min-height: 50px !important;
	}
	.mob-max-ht-75 {
		max-height: 75px !important;
	}
	.mob-min-ht-75 {
		min-height: 75px !important;
	}
	.mob-max-ht-100 {
		max-height: 100px !important;
	}
	.mob-min-ht-100 {
		min-height: 100px !important;
	}
	.mob-max-ht-125 {
		max-height: 125px !important;
	}
	.mob-min-ht-125 {
		min-height: 125px !important;
	}
	.mob-max-ht-150 {
		max-height: 150px !important;
	}
	.mob-min-ht-150 {
		min-height: 150px !important;
	}
	.mob-max-ht-175 {
		max-height: 175px !important;
	}
	.mob-min-ht-175 {
		min-height: 175px !important;
	}
	.mob-max-ht-200 {
		max-height: 200px !important;
	}
	.mob-min-ht-200 {
		min-height: 200px !important;
	}
	.mob-max-ht-225 {
		max-height: 225px !important;
	}
	.mob-min-ht-225 {
		min-height: 225px !important;
	}
	.mob-max-ht-250 {
		max-height: 250px !important;
	}
	.mob-min-ht-250 {
		min-height: 250px !important;
	}
	.mob-max-ht-275 {
		max-height: 275px !important;
	}
	.mob-min-ht-275 {
		min-height: 275px !important;
	}
	.mob-max-ht-300 {
		max-height: 300px !important;
	}
	.mob-min-ht-300 {
		min-height: 300px !important;
	}
	.mob-max-ht-325 {
		max-height: 325px !important;
	}
	.mob-min-ht-325 {
		min-height: 325px !important;
	}
	.mob-max-ht-350 {
		max-height: 350px !important;
	}
	.mob-min-ht-350 {
		min-height: 350px !important;
	}
	.mob-max-ht-375 {
		max-height: 375px !important;
	}
	.mob-min-ht-375 {
		min-height: 375px !important;
	}
	.mob-max-ht-400 {
		max-height: 400px !important;
	}
	.mob-min-ht-400 {
		min-height: 400px !important;
	}
	.mob-max-ht-425 {
		max-height: 425px !important;
	}
	.mob-min-ht-425 {
		min-height: 425px !important;
	}
	.mob-max-ht-450 {
		max-height: 450px !important;
	}
	.mob-min-ht-450 {
		min-height: 450px !important;
	}
	.mob-max-ht-475 {
		max-height: 475px !important;
	}
	.mob-min-ht-475 {
		min-height: 475px !important;
	}
	.mob-max-ht-500 {
		max-height: 500px !important;
	}
	.mob-min-ht-500 {
		min-height: 500px !important;
	}
	.mob-max-ht-525 {
		max-height: 525px !important;
	}
	.mob-min-ht-525 {
		min-height: 525px !important;
	}
	.mob-max-ht-550 {
		max-height: 550px !important;
	}
	.mob-min-ht-550 {
		min-height: 550px !important;
	}
	.mob-max-ht-575 {
		max-height: 575px !important;
	}
	.mob-min-ht-575 {
		min-height: 575px !important;
	}
	.mob-max-ht-600 {
		max-height: 600px !important;
	}
	.mob-min-ht-600 {
		min-height: 600px !important;
	}
	.mob-max-ht-625 {
		max-height: 625px !important;
	}
	.mob-min-ht-625 {
		min-height: 625px !important;
	}
	.mob-max-ht-650 {
		max-height: 650px !important;
	}
	.mob-min-ht-650 {
		min-height: 650px !important;
	}
	.mob-max-ht-675 {
		max-height: 675px !important;
	}
	.mob-min-ht-675 {
		min-height: 675px !important;
	}
	.mob-max-ht-700 {
		max-height: 700px !important;
	}
	.mob-min-ht-700 {
		min-height: 700px !important;
	}
	.mob-max-ht-725 {
		max-height: 725px !important;
	}
	.mob-min-ht-725 {
		min-height: 725px !important;
	}
	.mob-max-ht-750 {
		max-height: 750px !important;
	}
	.mob-min-ht-750 {
		min-height: 750px !important;
	}
	.mob-max-ht-775 {
		max-height: 775px !important;
	}
	.mob-min-ht-775 {
		min-height: 775px !important;
	}
	.mob-max-ht-800 {
		max-height: 800px !important;
	}
	.mob-min-ht-800 {
		min-height: 800px !important;
	}
	.mob-max-ht-825 {
		max-height: 825px !important;
	}
	.mob-min-ht-825 {
		min-height: 825px !important;
	}
	.mob-max-ht-850 {
		max-height: 850px !important;
	}
	.mob-min-ht-850 {
		min-height: 850px !important;
	}
	.mob-max-ht-875 {
		max-height: 875px !important;
	}
	.mob-min-ht-875 {
		min-height: 875px !important;
	}
	.mob-max-ht-900 {
		max-height: 900px !important;
	}
	.mob-min-ht-900 {
		min-height: 900px !important;
	}
	.mob-max-ht-925 {
		max-height: 925px !important;
	}
	.mob-min-ht-925 {
		min-height: 925px !important;
	}
	.mob-max-ht-950 {
		max-height: 950px !important;
	}
	.mob-min-ht-950 {
		min-height: 950px !important;
	}
	.mob-max-ht-975 {
		max-height: 975px !important;
	}
	.mob-min-ht-975 {
		min-height: 975px !important;
	}
	.mob-max-ht-1000 {
		max-height: 1000px !important;
	}
	.mob-min-ht-1000 {
		min-height: 1000px !important;
	}
	.mob-max-ht-1025 {
		max-height: 1025px !important;
	}
	.mob-min-ht-1025 {
		min-height: 1025px !important;
	}
	.mob-max-ht-1050 {
		max-height: 1050px !important;
	}
	.mob-min-ht-1050 {
		min-height: 1050px !important;
	}
	.mob-max-ht-1075 {
		max-height: 1075px !important;
	}
	.mob-min-ht-1075 {
		min-height: 1075px !important;
	}
	.mob-max-ht-1100 {
		max-height: 1100px !important;
	}
	.mob-min-ht-1100 {
		min-height: 1100px !important;
	}
	.mob-max-ht-1125 {
		max-height: 1125px !important;
	}
	.mob-min-ht-1125 {
		min-height: 1125px !important;
	}
	.mob-max-ht-1150 {
		max-height: 1150px !important;
	}
	.mob-min-ht-1150 {
		min-height: 1150px !important;
	}
	.mob-max-ht-1175 {
		max-height: 1175px !important;
	}
	.mob-min-ht-1175 {
		min-height: 1175px !important;
	}
	.mob-max-ht-1200 {
		max-height: 1200px !important;
	}
	.mob-min-ht-1200 {
		min-height: 1200px !important;
	}
	.mob-max-ht-1225 {
		max-height: 1225px !important;
	}
	.mob-min-ht-1225 {
		min-height: 1225px !important;
	}
	.mob-max-ht-1250 {
		max-height: 1250px !important;
	}
	.mob-min-ht-1250 {
		min-height: 1250px !important;
	}
	.mob-max-ht-1275 {
		max-height: 1275px !important;
	}
	.mob-min-ht-1275 {
		min-height: 1275px !important;
	}
	.mob-max-ht-1300 {
		max-height: 1300px !important;
	}
	.mob-min-ht-1300 {
		min-height: 1300px !important;
	}
	.mob-max-ht-1325 {
		max-height: 1325px !important;
	}
	.mob-min-ht-1325 {
		min-height: 1325px !important;
	}
	.mob-max-ht-1350 {
		max-height: 1350px !important;
	}
	.mob-min-ht-1350 {
		min-height: 1350px !important;
	}
	.mob-max-ht-1375 {
		max-height: 1375px !important;
	}
	.mob-min-ht-1375 {
		min-height: 1375px !important;
	}
	.mob-max-ht-1400 {
		max-height: 1400px !important;
	}
	.mob-min-ht-1400 {
		min-height: 1400px !important;
	}
	.mob-max-ht-1425 {
		max-height: 1425px !important;
	}
	.mob-min-ht-1425 {
		min-height: 1425px !important;
	}
	.mob-max-ht-1450 {
		max-height: 1450px !important;
	}
	.mob-min-ht-1450 {
		min-height: 1450px !important;
	}
	.mob-max-ht-1475 {
		max-height: 1475px !important;
	}
	.mob-min-ht-1475 {
		min-height: 1475px !important;
	}
	.mob-max-ht-1500 {
		max-height: 1500px !important;
	}
	.mob-min-ht-1500 {
		min-height: 1500px !important;
	}
}
.ht-4 {
	height: 4px;
}
.ht-8 {
	height: 8px;
}
.ht-12 {
	height: 12px;
}
.ht-16 {
	height: 16px;
}
.ht-20 {
	height: 20px;
}
.ht-24 {
	height: 24px;
}
.ht-28 {
	height: 28px;
}
.ht-32 {
	height: 32px;
}
.ht-36 {
	height: 36px;
}
.ht-40 {
	height: 40px;
}
.ht-44 {
	height: 44px;
}
.ht-48 {
	height: 48px;
}
.ht-52 {
	height: 52px;
}
.ht-56 {
	height: 56px;
}
.ht-60 {
	height: 60px;
}
.ht-64 {
	height: 64px;
}
.ht-68 {
	height: 68px;
}
.ht-72 {
	height: 72px;
}
.ht-76 {
	height: 76px;
}
.ht-80 {
	height: 80px;
}
.ht-84 {
	height: 84px;
}
.ht-88 {
	height: 88px;
}
.ht-92 {
	height: 92px;
}
.ht-96 {
	height: 96px;
}
.ht-100 {
	height: 100px;
}
.ht-104 {
	height: 104px;
}
.ht-108 {
	height: 108px;
}
.ht-112 {
	height: 112px;
}
.ht-116 {
	height: 116px;
}
.ht-120 {
	height: 120px;
}
.ht-124 {
	height: 124px;
}
.ht-128 {
	height: 128px;
}
.ht-132 {
	height: 132px;
}
.ht-136 {
	height: 136px;
}
.ht-140 {
	height: 140px;
}
.ht-144 {
	height: 144px;
}
.ht-148 {
	height: 148px;
}
.ht-152 {
	height: 152px;
}
.ht-156 {
	height: 156px;
}
.ht-160 {
	height: 160px;
}
.ht-164 {
	height: 164px;
}
.ht-168 {
	height: 168px;
}
.ht-172 {
	height: 172px;
}
.ht-176 {
	height: 176px;
}
.ht-180 {
	height: 180px;
}
.ht-184 {
	height: 184px;
}
.ht-188 {
	height: 188px;
}
.ht-192 {
	height: 192px;
}
.ht-196 {
	height: 196px;
}
.ht-200 {
	height: 200px;
}
.ht-204 {
	height: 204px;
}
.ht-208 {
	height: 208px;
}
.ht-212 {
	height: 212px;
}
.ht-216 {
	height: 216px;
}
.ht-220 {
	height: 220px;
}
.ht-224 {
	height: 224px;
}
.ht-228 {
	height: 228px;
}
.ht-232 {
	height: 232px;
}
.ht-236 {
	height: 236px;
}
.ht-240 {
	height: 240px;
}
.ht-244 {
	height: 244px;
}
.ht-248 {
	height: 248px;
}
.ht-252 {
	height: 252px;
}
.ht-256 {
	height: 256px;
}
.ht-260 {
	height: 260px;
}
.ht-264 {
	height: 264px;
}
.ht-268 {
	height: 268px;
}
.ht-272 {
	height: 272px;
}
.ht-276 {
	height: 276px;
}
.ht-280 {
	height: 280px;
}
.ht-284 {
	height: 284px;
}
.ht-288 {
	height: 288px;
}
.ht-292 {
	height: 292px;
}
.ht-296 {
	height: 296px;
}
.ht-300 {
	height: 300px;
}
.ht-304 {
	height: 304px;
}
.ht-308 {
	height: 308px;
}
.ht-312 {
	height: 312px;
}
.ht-316 {
	height: 316px;
}
.ht-320 {
	height: 320px;
}
.ht-324 {
	height: 324px;
}
.ht-328 {
	height: 328px;
}
.ht-332 {
	height: 332px;
}
.ht-336 {
	height: 336px;
}
.ht-340 {
	height: 340px;
}
.ht-344 {
	height: 344px;
}
.ht-348 {
	height: 348px;
}
.ht-352 {
	height: 352px;
}
.ht-356 {
	height: 356px;
}
.ht-360 {
	height: 360px;
}
.ht-364 {
	height: 364px;
}
.ht-368 {
	height: 368px;
}
.ht-372 {
	height: 372px;
}
.ht-376 {
	height: 376px;
}
.ht-380 {
	height: 380px;
}
.ht-384 {
	height: 384px;
}
.ht-388 {
	height: 388px;
}
.ht-392 {
	height: 392px;
}
.ht-396 {
	height: 396px;
}
.ht-400 {
	height: 400px;
}
.ht-404 {
	height: 404px;
}
.ht-408 {
	height: 408px;
}
.ht-412 {
	height: 412px;
}
.ht-416 {
	height: 416px;
}
.ht-420 {
	height: 420px;
}
.ht-424 {
	height: 424px;
}
.ht-428 {
	height: 428px;
}
.ht-432 {
	height: 432px;
}
.ht-436 {
	height: 436px;
}
.ht-440 {
	height: 440px;
}
.ht-444 {
	height: 444px;
}
.ht-448 {
	height: 448px;
}
.ht-452 {
	height: 452px;
}
.ht-456 {
	height: 456px;
}
.ht-460 {
	height: 460px;
}
.ht-464 {
	height: 464px;
}
.ht-468 {
	height: 468px;
}
.ht-472 {
	height: 472px;
}
.ht-476 {
	height: 476px;
}
.ht-480 {
	height: 480px;
}
.ht-484 {
	height: 484px;
}
.ht-488 {
	height: 488px;
}
.ht-492 {
	height: 492px;
}
.ht-496 {
	height: 496px;
}
.ht-500 {
	height: 500px;
}
.ht-504 {
	height: 504px;
}
.ht-508 {
	height: 508px;
}
.ht-512 {
	height: 512px;
}
.ht-516 {
	height: 516px;
}
.ht-520 {
	height: 520px;
}
.ht-524 {
	height: 524px;
}
.ht-528 {
	height: 528px;
}
.ht-532 {
	height: 532px;
}
.ht-536 {
	height: 536px;
}
.ht-540 {
	height: 540px;
}
.ht-544 {
	height: 544px;
}
.ht-548 {
	height: 548px;
}
.ht-552 {
	height: 552px;
}
.ht-556 {
	height: 556px;
}
.ht-560 {
	height: 560px;
}
.ht-564 {
	height: 564px;
}
.ht-568 {
	height: 568px;
}
.ht-572 {
	height: 572px;
}
.ht-576 {
	height: 576px;
}
.ht-580 {
	height: 580px;
}
.ht-584 {
	height: 584px;
}
.ht-588 {
	height: 588px;
}
.ht-592 {
	height: 592px;
}
.ht-596 {
	height: 596px;
}
.ht-600 {
	height: 600px;
}
.ht-604 {
	height: 604px;
}
.ht-608 {
	height: 608px;
}
.ht-612 {
	height: 612px;
}
.ht-616 {
	height: 616px;
}
.ht-620 {
	height: 620px;
}
.ht-624 {
	height: 624px;
}
.ht-628 {
	height: 628px;
}
.ht-632 {
	height: 632px;
}
.ht-636 {
	height: 636px;
}
.ht-640 {
	height: 640px;
}
.ht-644 {
	height: 644px;
}
.ht-648 {
	height: 648px;
}
.ht-652 {
	height: 652px;
}
.ht-656 {
	height: 656px;
}
.ht-660 {
	height: 660px;
}
.ht-664 {
	height: 664px;
}
.ht-668 {
	height: 668px;
}
.ht-672 {
	height: 672px;
}
.ht-676 {
	height: 676px;
}
.ht-680 {
	height: 680px;
}
.ht-684 {
	height: 684px;
}
.ht-688 {
	height: 688px;
}
.ht-692 {
	height: 692px;
}
.ht-696 {
	height: 696px;
}
.ht-700 {
	height: 700px;
}
.ht-704 {
	height: 704px;
}
.ht-708 {
	height: 708px;
}
.ht-712 {
	height: 712px;
}
.ht-716 {
	height: 716px;
}
.ht-720 {
	height: 720px;
}
.ht-724 {
	height: 724px;
}
.ht-728 {
	height: 728px;
}
.ht-732 {
	height: 732px;
}
.ht-736 {
	height: 736px;
}
.ht-740 {
	height: 740px;
}
.ht-744 {
	height: 744px;
}
.ht-748 {
	height: 748px;
}
.ht-752 {
	height: 752px;
}
.ht-756 {
	height: 756px;
}
.ht-760 {
	height: 760px;
}
.ht-764 {
	height: 764px;
}
.ht-768 {
	height: 768px;
}
.ht-772 {
	height: 772px;
}
.ht-776 {
	height: 776px;
}
.ht-780 {
	height: 780px;
}
.ht-784 {
	height: 784px;
}
.ht-788 {
	height: 788px;
}
.ht-792 {
	height: 792px;
}
.ht-796 {
	height: 796px;
}
.ht-800 {
	height: 800px;
}
.ht-804 {
	height: 804px;
}
.ht-808 {
	height: 808px;
}
.ht-812 {
	height: 812px;
}
.ht-816 {
	height: 816px;
}
.ht-820 {
	height: 820px;
}
.ht-824 {
	height: 824px;
}
.ht-828 {
	height: 828px;
}
.ht-832 {
	height: 832px;
}
.ht-836 {
	height: 836px;
}
.ht-840 {
	height: 840px;
}
.ht-844 {
	height: 844px;
}
.ht-848 {
	height: 848px;
}
.ht-852 {
	height: 852px;
}
.ht-856 {
	height: 856px;
}
.ht-860 {
	height: 860px;
}
.ht-864 {
	height: 864px;
}
.ht-868 {
	height: 868px;
}
.ht-872 {
	height: 872px;
}
.ht-876 {
	height: 876px;
}
.ht-880 {
	height: 880px;
}
.ht-884 {
	height: 884px;
}
.ht-888 {
	height: 888px;
}
.ht-892 {
	height: 892px;
}
.ht-896 {
	height: 896px;
}
.ht-900 {
	height: 900px;
}
.ht-904 {
	height: 904px;
}
.ht-908 {
	height: 908px;
}
.ht-912 {
	height: 912px;
}
.ht-916 {
	height: 916px;
}
.ht-920 {
	height: 920px;
}
.ht-924 {
	height: 924px;
}
.ht-928 {
	height: 928px;
}
.ht-932 {
	height: 932px;
}
.ht-936 {
	height: 936px;
}
.ht-940 {
	height: 940px;
}
.ht-944 {
	height: 944px;
}
.ht-948 {
	height: 948px;
}
.ht-952 {
	height: 952px;
}
.ht-956 {
	height: 956px;
}
.ht-960 {
	height: 960px;
}
.ht-964 {
	height: 964px;
}
.ht-968 {
	height: 968px;
}
.ht-972 {
	height: 972px;
}
.ht-976 {
	height: 976px;
}
.ht-980 {
	height: 980px;
}
.ht-984 {
	height: 984px;
}
.ht-988 {
	height: 988px;
}
.ht-992 {
	height: 992px;
}
.ht-996 {
	height: 996px;
}
.ht-1000 {
	height: 1000px;
}
.ht-1004 {
	height: 1004px;
}
.ht-1008 {
	height: 1008px;
}
.ht-1012 {
	height: 1012px;
}
.ht-1016 {
	height: 1016px;
}
.ht-1020 {
	height: 1020px;
}
.ht-1024 {
	height: 1024px;
}
.ht-1028 {
	height: 1028px;
}
.ht-1032 {
	height: 1032px;
}
.ht-1036 {
	height: 1036px;
}
.ht-1040 {
	height: 1040px;
}
.ht-1044 {
	height: 1044px;
}
.ht-1048 {
	height: 1048px;
}
.ht-1052 {
	height: 1052px;
}
.ht-1056 {
	height: 1056px;
}
.ht-1060 {
	height: 1060px;
}
.ht-1064 {
	height: 1064px;
}
.ht-1068 {
	height: 1068px;
}
.ht-1072 {
	height: 1072px;
}
.ht-1076 {
	height: 1076px;
}
.ht-1080 {
	height: 1080px;
}
.ht-1084 {
	height: 1084px;
}
.ht-1088 {
	height: 1088px;
}
.ht-1092 {
	height: 1092px;
}
.ht-1096 {
	height: 1096px;
}
.ht-1100 {
	height: 1100px;
}
.ht-1104 {
	height: 1104px;
}
.ht-1108 {
	height: 1108px;
}
.ht-1112 {
	height: 1112px;
}
.ht-1116 {
	height: 1116px;
}
.ht-1120 {
	height: 1120px;
}
.ht-1124 {
	height: 1124px;
}
.ht-1128 {
	height: 1128px;
}
.ht-1132 {
	height: 1132px;
}
.ht-1136 {
	height: 1136px;
}
.ht-1140 {
	height: 1140px;
}
.ht-1144 {
	height: 1144px;
}
.ht-1148 {
	height: 1148px;
}
.ht-1152 {
	height: 1152px;
}
.ht-1156 {
	height: 1156px;
}
.ht-1160 {
	height: 1160px;
}
.ht-1164 {
	height: 1164px;
}
.ht-1168 {
	height: 1168px;
}
.ht-1172 {
	height: 1172px;
}
.ht-1176 {
	height: 1176px;
}
.ht-1180 {
	height: 1180px;
}
.ht-1184 {
	height: 1184px;
}
.ht-1188 {
	height: 1188px;
}
.ht-1192 {
	height: 1192px;
}
.ht-1196 {
	height: 1196px;
}
.ht-1200 {
	height: 1200px;
}
.ht-1204 {
	height: 1204px;
}
.ht-1208 {
	height: 1208px;
}
.ht-1212 {
	height: 1212px;
}
.ht-1216 {
	height: 1216px;
}
.ht-1220 {
	height: 1220px;
}
.ht-1224 {
	height: 1224px;
}
.ht-1228 {
	height: 1228px;
}
.ht-1232 {
	height: 1232px;
}
.ht-1236 {
	height: 1236px;
}
.ht-1240 {
	height: 1240px;
}
.ht-1244 {
	height: 1244px;
}
.ht-1248 {
	height: 1248px;
}
.ht-1252 {
	height: 1252px;
}
.ht-1256 {
	height: 1256px;
}
.ht-1260 {
	height: 1260px;
}
.ht-1264 {
	height: 1264px;
}
.ht-1268 {
	height: 1268px;
}
.ht-1272 {
	height: 1272px;
}
.ht-1276 {
	height: 1276px;
}
.ht-1280 {
	height: 1280px;
}
.ht-1284 {
	height: 1284px;
}
.ht-1288 {
	height: 1288px;
}
.ht-1292 {
	height: 1292px;
}
.ht-1296 {
	height: 1296px;
}
.ht-1300 {
	height: 1300px;
}
.ht-1304 {
	height: 1304px;
}
.ht-1308 {
	height: 1308px;
}
.ht-1312 {
	height: 1312px;
}
.ht-1316 {
	height: 1316px;
}
.ht-1320 {
	height: 1320px;
}
.ht-1324 {
	height: 1324px;
}
.ht-1328 {
	height: 1328px;
}
.ht-1332 {
	height: 1332px;
}
.ht-1336 {
	height: 1336px;
}
.ht-1340 {
	height: 1340px;
}
.ht-1344 {
	height: 1344px;
}
.ht-1348 {
	height: 1348px;
}
.ht-1352 {
	height: 1352px;
}
.ht-1356 {
	height: 1356px;
}
.ht-1360 {
	height: 1360px;
}
.ht-1364 {
	height: 1364px;
}
.ht-1368 {
	height: 1368px;
}
.ht-1372 {
	height: 1372px;
}
.ht-1376 {
	height: 1376px;
}
.ht-1380 {
	height: 1380px;
}
.ht-1384 {
	height: 1384px;
}
.ht-1388 {
	height: 1388px;
}
.ht-1392 {
	height: 1392px;
}
.ht-1396 {
	height: 1396px;
}
.ht-1400 {
	height: 1400px;
}
.ht-1404 {
	height: 1404px;
}
.ht-1408 {
	height: 1408px;
}
.ht-1412 {
	height: 1412px;
}
.ht-1416 {
	height: 1416px;
}
.ht-1420 {
	height: 1420px;
}
.ht-1424 {
	height: 1424px;
}
.ht-1428 {
	height: 1428px;
}
.ht-1432 {
	height: 1432px;
}
.ht-1436 {
	height: 1436px;
}
.ht-1440 {
	height: 1440px;
}
.ht-1444 {
	height: 1444px;
}
.ht-1448 {
	height: 1448px;
}
.ht-1452 {
	height: 1452px;
}
.ht-1456 {
	height: 1456px;
}
.ht-1460 {
	height: 1460px;
}
.ht-1464 {
	height: 1464px;
}
.ht-1468 {
	height: 1468px;
}
.ht-1472 {
	height: 1472px;
}
.ht-1476 {
	height: 1476px;
}
.ht-1480 {
	height: 1480px;
}
.ht-1484 {
	height: 1484px;
}
.ht-1488 {
	height: 1488px;
}
.ht-1492 {
	height: 1492px;
}
.ht-1496 {
	height: 1496px;
}
.ht-1500 {
	height: 1500px;
}
.ht-1504 {
	height: 1504px;
}
.ht-1508 {
	height: 1508px;
}
.ht-1512 {
	height: 1512px;
}
.ht-1516 {
	height: 1516px;
}
.ht-1520 {
	height: 1520px;
}
.ht-1524 {
	height: 1524px;
}
.ht-1528 {
	height: 1528px;
}
.ht-1532 {
	height: 1532px;
}
.ht-1536 {
	height: 1536px;
}
.ht-1540 {
	height: 1540px;
}
.ht-1544 {
	height: 1544px;
}
.ht-1548 {
	height: 1548px;
}
.ht-1552 {
	height: 1552px;
}
.ht-1556 {
	height: 1556px;
}
.ht-1560 {
	height: 1560px;
}
.ht-1564 {
	height: 1564px;
}
.ht-1568 {
	height: 1568px;
}
.ht-1572 {
	height: 1572px;
}
.ht-1576 {
	height: 1576px;
}
.ht-1580 {
	height: 1580px;
}
.ht-1584 {
	height: 1584px;
}
.ht-1588 {
	height: 1588px;
}
.ht-1592 {
	height: 1592px;
}
.ht-1596 {
	height: 1596px;
}
.ht-1600 {
	height: 1600px;
}
.ht-1604 {
	height: 1604px;
}
.ht-1608 {
	height: 1608px;
}
.ht-1612 {
	height: 1612px;
}
.ht-1616 {
	height: 1616px;
}
.ht-1620 {
	height: 1620px;
}
.ht-1624 {
	height: 1624px;
}
.ht-1628 {
	height: 1628px;
}
.ht-1632 {
	height: 1632px;
}
.ht-1636 {
	height: 1636px;
}
.ht-1640 {
	height: 1640px;
}
.ht-1644 {
	height: 1644px;
}
.ht-1648 {
	height: 1648px;
}
.ht-1652 {
	height: 1652px;
}
.ht-1656 {
	height: 1656px;
}
.ht-1660 {
	height: 1660px;
}
.ht-1664 {
	height: 1664px;
}
.ht-1668 {
	height: 1668px;
}
.ht-1672 {
	height: 1672px;
}
.ht-1676 {
	height: 1676px;
}
.ht-1680 {
	height: 1680px;
}
.ht-1684 {
	height: 1684px;
}
.ht-1688 {
	height: 1688px;
}
.ht-1692 {
	height: 1692px;
}
.ht-1696 {
	height: 1696px;
}
.ht-1700 {
	height: 1700px;
}
.ht-1704 {
	height: 1704px;
}
.ht-1708 {
	height: 1708px;
}
.ht-1712 {
	height: 1712px;
}
.ht-1716 {
	height: 1716px;
}
.ht-1720 {
	height: 1720px;
}
.ht-1724 {
	height: 1724px;
}
.ht-1728 {
	height: 1728px;
}
.ht-1732 {
	height: 1732px;
}
.ht-1736 {
	height: 1736px;
}
.ht-1740 {
	height: 1740px;
}
.ht-1744 {
	height: 1744px;
}
.ht-1748 {
	height: 1748px;
}
.ht-1752 {
	height: 1752px;
}
.ht-1756 {
	height: 1756px;
}
.ht-1760 {
	height: 1760px;
}
.ht-1764 {
	height: 1764px;
}
.ht-1768 {
	height: 1768px;
}
.ht-1772 {
	height: 1772px;
}
.ht-1776 {
	height: 1776px;
}
.ht-1780 {
	height: 1780px;
}
.ht-1784 {
	height: 1784px;
}
.ht-1788 {
	height: 1788px;
}
.ht-1792 {
	height: 1792px;
}
.ht-1796 {
	height: 1796px;
}
.ht-1800 {
	height: 1800px;
}
.ht-1804 {
	height: 1804px;
}
.ht-1808 {
	height: 1808px;
}
.ht-1812 {
	height: 1812px;
}
.ht-1816 {
	height: 1816px;
}
.ht-1820 {
	height: 1820px;
}
.ht-1824 {
	height: 1824px;
}
.ht-1828 {
	height: 1828px;
}
.ht-1832 {
	height: 1832px;
}
.ht-1836 {
	height: 1836px;
}
.ht-1840 {
	height: 1840px;
}
.ht-1844 {
	height: 1844px;
}
.ht-1848 {
	height: 1848px;
}
.ht-1852 {
	height: 1852px;
}
.ht-1856 {
	height: 1856px;
}
.ht-1860 {
	height: 1860px;
}
.ht-1864 {
	height: 1864px;
}
.ht-1868 {
	height: 1868px;
}
.ht-1872 {
	height: 1872px;
}
.ht-1876 {
	height: 1876px;
}
.ht-1880 {
	height: 1880px;
}
.ht-1884 {
	height: 1884px;
}
.ht-1888 {
	height: 1888px;
}
.ht-1892 {
	height: 1892px;
}
.ht-1896 {
	height: 1896px;
}
.ht-1900 {
	height: 1900px;
}
.ht-1904 {
	height: 1904px;
}
.ht-1908 {
	height: 1908px;
}
.ht-1912 {
	height: 1912px;
}
.ht-1916 {
	height: 1916px;
}
.ht-1920 {
	height: 1920px;
}
.ht-1924 {
	height: 1924px;
}
.ht-1928 {
	height: 1928px;
}
.ht-1932 {
	height: 1932px;
}
.ht-1936 {
	height: 1936px;
}
.ht-1940 {
	height: 1940px;
}
.ht-1944 {
	height: 1944px;
}
.ht-1948 {
	height: 1948px;
}
.ht-1952 {
	height: 1952px;
}
.ht-1956 {
	height: 1956px;
}
.ht-1960 {
	height: 1960px;
}
.ht-1964 {
	height: 1964px;
}
.ht-1968 {
	height: 1968px;
}
.ht-1972 {
	height: 1972px;
}
.ht-1976 {
	height: 1976px;
}
.ht-1980 {
	height: 1980px;
}
.ht-1984 {
	height: 1984px;
}
.ht-1988 {
	height: 1988px;
}
.ht-1992 {
	height: 1992px;
}
.ht-1996 {
	height: 1996px;
}
.ht-2000 {
	height: 2000px;
}
@media screen and (max-width: 994px) {
	.mob-ht-4 {
		height: 4px;
	}
	.mob-ht-8 {
		height: 8px;
	}
	.mob-ht-12 {
		height: 12px;
	}
	.mob-ht-16 {
		height: 16px;
	}
	.mob-ht-20 {
		height: 20px;
	}
	.mob-ht-24 {
		height: 24px;
	}
	.mob-ht-28 {
		height: 28px;
	}
	.mob-ht-32 {
		height: 32px;
	}
	.mob-ht-36 {
		height: 36px;
	}
	.mob-ht-40 {
		height: 40px;
	}
	.mob-ht-44 {
		height: 44px;
	}
	.mob-ht-48 {
		height: 48px;
	}
	.mob-ht-52 {
		height: 52px;
	}
	.mob-ht-56 {
		height: 56px;
	}
	.mob-ht-60 {
		height: 60px;
	}
	.mob-ht-64 {
		height: 64px;
	}
	.mob-ht-68 {
		height: 68px;
	}
	.mob-ht-72 {
		height: 72px;
	}
	.mob-ht-76 {
		height: 76px;
	}
	.mob-ht-80 {
		height: 80px;
	}
	.mob-ht-84 {
		height: 84px;
	}
	.mob-ht-88 {
		height: 88px;
	}
	.mob-ht-92 {
		height: 92px;
	}
	.mob-ht-96 {
		height: 96px;
	}
	.mob-ht-100 {
		height: 100px;
	}
	.mob-ht-104 {
		height: 104px;
	}
	.mob-ht-108 {
		height: 108px;
	}
	.mob-ht-112 {
		height: 112px;
	}
	.mob-ht-116 {
		height: 116px;
	}
	.mob-ht-120 {
		height: 120px;
	}
	.mob-ht-124 {
		height: 124px;
	}
	.mob-ht-128 {
		height: 128px;
	}
	.mob-ht-132 {
		height: 132px;
	}
	.mob-ht-136 {
		height: 136px;
	}
	.mob-ht-140 {
		height: 140px;
	}
	.mob-ht-144 {
		height: 144px;
	}
	.mob-ht-148 {
		height: 148px;
	}
	.mob-ht-152 {
		height: 152px;
	}
	.mob-ht-156 {
		height: 156px;
	}
	.mob-ht-160 {
		height: 160px;
	}
	.mob-ht-164 {
		height: 164px;
	}
	.mob-ht-168 {
		height: 168px;
	}
	.mob-ht-172 {
		height: 172px;
	}
	.mob-ht-176 {
		height: 176px;
	}
	.mob-ht-180 {
		height: 180px;
	}
	.mob-ht-184 {
		height: 184px;
	}
	.mob-ht-188 {
		height: 188px;
	}
	.mob-ht-192 {
		height: 192px;
	}
	.mob-ht-196 {
		height: 196px;
	}
	.mob-ht-200 {
		height: 200px;
	}
	.mob-ht-204 {
		height: 204px;
	}
	.mob-ht-208 {
		height: 208px;
	}
	.mob-ht-212 {
		height: 212px;
	}
	.mob-ht-216 {
		height: 216px;
	}
	.mob-ht-220 {
		height: 220px;
	}
	.mob-ht-224 {
		height: 224px;
	}
	.mob-ht-228 {
		height: 228px;
	}
	.mob-ht-232 {
		height: 232px;
	}
	.mob-ht-236 {
		height: 236px;
	}
	.mob-ht-240 {
		height: 240px;
	}
	.mob-ht-244 {
		height: 244px;
	}
	.mob-ht-248 {
		height: 248px;
	}
	.mob-ht-252 {
		height: 252px;
	}
	.mob-ht-256 {
		height: 256px;
	}
	.mob-ht-260 {
		height: 260px;
	}
	.mob-ht-264 {
		height: 264px;
	}
	.mob-ht-268 {
		height: 268px;
	}
	.mob-ht-272 {
		height: 272px;
	}
	.mob-ht-276 {
		height: 276px;
	}
	.mob-ht-280 {
		height: 280px;
	}
	.mob-ht-284 {
		height: 284px;
	}
	.mob-ht-288 {
		height: 288px;
	}
	.mob-ht-292 {
		height: 292px;
	}
	.mob-ht-296 {
		height: 296px;
	}
	.mob-ht-300 {
		height: 300px;
	}
	.mob-ht-304 {
		height: 304px;
	}
	.mob-ht-308 {
		height: 308px;
	}
	.mob-ht-312 {
		height: 312px;
	}
	.mob-ht-316 {
		height: 316px;
	}
	.mob-ht-320 {
		height: 320px;
	}
	.mob-ht-324 {
		height: 324px;
	}
	.mob-ht-328 {
		height: 328px;
	}
	.mob-ht-332 {
		height: 332px;
	}
	.mob-ht-336 {
		height: 336px;
	}
	.mob-ht-340 {
		height: 340px;
	}
	.mob-ht-344 {
		height: 344px;
	}
	.mob-ht-348 {
		height: 348px;
	}
	.mob-ht-352 {
		height: 352px;
	}
	.mob-ht-356 {
		height: 356px;
	}
	.mob-ht-360 {
		height: 360px;
	}
	.mob-ht-364 {
		height: 364px;
	}
	.mob-ht-368 {
		height: 368px;
	}
	.mob-ht-372 {
		height: 372px;
	}
	.mob-ht-376 {
		height: 376px;
	}
	.mob-ht-380 {
		height: 380px;
	}
	.mob-ht-384 {
		height: 384px;
	}
	.mob-ht-388 {
		height: 388px;
	}
	.mob-ht-392 {
		height: 392px;
	}
	.mob-ht-396 {
		height: 396px;
	}
	.mob-ht-400 {
		height: 400px;
	}
	.mob-ht-404 {
		height: 404px;
	}
	.mob-ht-408 {
		height: 408px;
	}
	.mob-ht-412 {
		height: 412px;
	}
	.mob-ht-416 {
		height: 416px;
	}
	.mob-ht-420 {
		height: 420px;
	}
	.mob-ht-424 {
		height: 424px;
	}
	.mob-ht-428 {
		height: 428px;
	}
	.mob-ht-432 {
		height: 432px;
	}
	.mob-ht-436 {
		height: 436px;
	}
	.mob-ht-440 {
		height: 440px;
	}
	.mob-ht-444 {
		height: 444px;
	}
	.mob-ht-448 {
		height: 448px;
	}
	.mob-ht-452 {
		height: 452px;
	}
	.mob-ht-456 {
		height: 456px;
	}
	.mob-ht-460 {
		height: 460px;
	}
	.mob-ht-464 {
		height: 464px;
	}
	.mob-ht-468 {
		height: 468px;
	}
	.mob-ht-472 {
		height: 472px;
	}
	.mob-ht-476 {
		height: 476px;
	}
	.mob-ht-480 {
		height: 480px;
	}
	.mob-ht-484 {
		height: 484px;
	}
	.mob-ht-488 {
		height: 488px;
	}
	.mob-ht-492 {
		height: 492px;
	}
	.mob-ht-496 {
		height: 496px;
	}
	.mob-ht-500 {
		height: 500px;
	}
	.mob-ht-504 {
		height: 504px;
	}
	.mob-ht-508 {
		height: 508px;
	}
	.mob-ht-512 {
		height: 512px;
	}
	.mob-ht-516 {
		height: 516px;
	}
	.mob-ht-520 {
		height: 520px;
	}
	.mob-ht-524 {
		height: 524px;
	}
	.mob-ht-528 {
		height: 528px;
	}
	.mob-ht-532 {
		height: 532px;
	}
	.mob-ht-536 {
		height: 536px;
	}
	.mob-ht-540 {
		height: 540px;
	}
	.mob-ht-544 {
		height: 544px;
	}
	.mob-ht-548 {
		height: 548px;
	}
	.mob-ht-552 {
		height: 552px;
	}
	.mob-ht-556 {
		height: 556px;
	}
	.mob-ht-560 {
		height: 560px;
	}
	.mob-ht-564 {
		height: 564px;
	}
	.mob-ht-568 {
		height: 568px;
	}
	.mob-ht-572 {
		height: 572px;
	}
	.mob-ht-576 {
		height: 576px;
	}
	.mob-ht-580 {
		height: 580px;
	}
	.mob-ht-584 {
		height: 584px;
	}
	.mob-ht-588 {
		height: 588px;
	}
	.mob-ht-592 {
		height: 592px;
	}
	.mob-ht-596 {
		height: 596px;
	}
	.mob-ht-600 {
		height: 600px;
	}
	.mob-ht-604 {
		height: 604px;
	}
	.mob-ht-608 {
		height: 608px;
	}
	.mob-ht-612 {
		height: 612px;
	}
	.mob-ht-616 {
		height: 616px;
	}
	.mob-ht-620 {
		height: 620px;
	}
	.mob-ht-624 {
		height: 624px;
	}
	.mob-ht-628 {
		height: 628px;
	}
	.mob-ht-632 {
		height: 632px;
	}
	.mob-ht-636 {
		height: 636px;
	}
	.mob-ht-640 {
		height: 640px;
	}
	.mob-ht-644 {
		height: 644px;
	}
	.mob-ht-648 {
		height: 648px;
	}
	.mob-ht-652 {
		height: 652px;
	}
	.mob-ht-656 {
		height: 656px;
	}
	.mob-ht-660 {
		height: 660px;
	}
	.mob-ht-664 {
		height: 664px;
	}
	.mob-ht-668 {
		height: 668px;
	}
	.mob-ht-672 {
		height: 672px;
	}
	.mob-ht-676 {
		height: 676px;
	}
	.mob-ht-680 {
		height: 680px;
	}
	.mob-ht-684 {
		height: 684px;
	}
	.mob-ht-688 {
		height: 688px;
	}
	.mob-ht-692 {
		height: 692px;
	}
	.mob-ht-696 {
		height: 696px;
	}
	.mob-ht-700 {
		height: 700px;
	}
	.mob-ht-704 {
		height: 704px;
	}
	.mob-ht-708 {
		height: 708px;
	}
	.mob-ht-712 {
		height: 712px;
	}
	.mob-ht-716 {
		height: 716px;
	}
	.mob-ht-720 {
		height: 720px;
	}
	.mob-ht-724 {
		height: 724px;
	}
	.mob-ht-728 {
		height: 728px;
	}
	.mob-ht-732 {
		height: 732px;
	}
	.mob-ht-736 {
		height: 736px;
	}
	.mob-ht-740 {
		height: 740px;
	}
	.mob-ht-744 {
		height: 744px;
	}
	.mob-ht-748 {
		height: 748px;
	}
	.mob-ht-752 {
		height: 752px;
	}
	.mob-ht-756 {
		height: 756px;
	}
	.mob-ht-760 {
		height: 760px;
	}
	.mob-ht-764 {
		height: 764px;
	}
	.mob-ht-768 {
		height: 768px;
	}
	.mob-ht-772 {
		height: 772px;
	}
	.mob-ht-776 {
		height: 776px;
	}
	.mob-ht-780 {
		height: 780px;
	}
	.mob-ht-784 {
		height: 784px;
	}
	.mob-ht-788 {
		height: 788px;
	}
	.mob-ht-792 {
		height: 792px;
	}
	.mob-ht-796 {
		height: 796px;
	}
	.mob-ht-800 {
		height: 800px;
	}
	.mob-ht-804 {
		height: 804px;
	}
	.mob-ht-808 {
		height: 808px;
	}
	.mob-ht-812 {
		height: 812px;
	}
	.mob-ht-816 {
		height: 816px;
	}
	.mob-ht-820 {
		height: 820px;
	}
	.mob-ht-824 {
		height: 824px;
	}
	.mob-ht-828 {
		height: 828px;
	}
	.mob-ht-832 {
		height: 832px;
	}
	.mob-ht-836 {
		height: 836px;
	}
	.mob-ht-840 {
		height: 840px;
	}
	.mob-ht-844 {
		height: 844px;
	}
	.mob-ht-848 {
		height: 848px;
	}
	.mob-ht-852 {
		height: 852px;
	}
	.mob-ht-856 {
		height: 856px;
	}
	.mob-ht-860 {
		height: 860px;
	}
	.mob-ht-864 {
		height: 864px;
	}
	.mob-ht-868 {
		height: 868px;
	}
	.mob-ht-872 {
		height: 872px;
	}
	.mob-ht-876 {
		height: 876px;
	}
	.mob-ht-880 {
		height: 880px;
	}
	.mob-ht-884 {
		height: 884px;
	}
	.mob-ht-888 {
		height: 888px;
	}
	.mob-ht-892 {
		height: 892px;
	}
	.mob-ht-896 {
		height: 896px;
	}
	.mob-ht-900 {
		height: 900px;
	}
	.mob-ht-904 {
		height: 904px;
	}
	.mob-ht-908 {
		height: 908px;
	}
	.mob-ht-912 {
		height: 912px;
	}
	.mob-ht-916 {
		height: 916px;
	}
	.mob-ht-920 {
		height: 920px;
	}
	.mob-ht-924 {
		height: 924px;
	}
	.mob-ht-928 {
		height: 928px;
	}
	.mob-ht-932 {
		height: 932px;
	}
	.mob-ht-936 {
		height: 936px;
	}
	.mob-ht-940 {
		height: 940px;
	}
	.mob-ht-944 {
		height: 944px;
	}
	.mob-ht-948 {
		height: 948px;
	}
	.mob-ht-952 {
		height: 952px;
	}
	.mob-ht-956 {
		height: 956px;
	}
	.mob-ht-960 {
		height: 960px;
	}
	.mob-ht-964 {
		height: 964px;
	}
	.mob-ht-968 {
		height: 968px;
	}
	.mob-ht-972 {
		height: 972px;
	}
	.mob-ht-976 {
		height: 976px;
	}
	.mob-ht-980 {
		height: 980px;
	}
	.mob-ht-984 {
		height: 984px;
	}
	.mob-ht-988 {
		height: 988px;
	}
	.mob-ht-992 {
		height: 992px;
	}
	.mob-ht-996 {
		height: 996px;
	}
	.mob-ht-1000 {
		height: 1000px;
	}
	.mob-ht-1004 {
		height: 1004px;
	}
	.mob-ht-1008 {
		height: 1008px;
	}
	.mob-ht-1012 {
		height: 1012px;
	}
	.mob-ht-1016 {
		height: 1016px;
	}
	.mob-ht-1020 {
		height: 1020px;
	}
	.mob-ht-1024 {
		height: 1024px;
	}
	.mob-ht-1028 {
		height: 1028px;
	}
	.mob-ht-1032 {
		height: 1032px;
	}
	.mob-ht-1036 {
		height: 1036px;
	}
	.mob-ht-1040 {
		height: 1040px;
	}
	.mob-ht-1044 {
		height: 1044px;
	}
	.mob-ht-1048 {
		height: 1048px;
	}
	.mob-ht-1052 {
		height: 1052px;
	}
	.mob-ht-1056 {
		height: 1056px;
	}
	.mob-ht-1060 {
		height: 1060px;
	}
	.mob-ht-1064 {
		height: 1064px;
	}
	.mob-ht-1068 {
		height: 1068px;
	}
	.mob-ht-1072 {
		height: 1072px;
	}
	.mob-ht-1076 {
		height: 1076px;
	}
	.mob-ht-1080 {
		height: 1080px;
	}
	.mob-ht-1084 {
		height: 1084px;
	}
	.mob-ht-1088 {
		height: 1088px;
	}
	.mob-ht-1092 {
		height: 1092px;
	}
	.mob-ht-1096 {
		height: 1096px;
	}
	.mob-ht-1100 {
		height: 1100px;
	}
	.mob-ht-1104 {
		height: 1104px;
	}
	.mob-ht-1108 {
		height: 1108px;
	}
	.mob-ht-1112 {
		height: 1112px;
	}
	.mob-ht-1116 {
		height: 1116px;
	}
	.mob-ht-1120 {
		height: 1120px;
	}
	.mob-ht-1124 {
		height: 1124px;
	}
	.mob-ht-1128 {
		height: 1128px;
	}
	.mob-ht-1132 {
		height: 1132px;
	}
	.mob-ht-1136 {
		height: 1136px;
	}
	.mob-ht-1140 {
		height: 1140px;
	}
	.mob-ht-1144 {
		height: 1144px;
	}
	.mob-ht-1148 {
		height: 1148px;
	}
	.mob-ht-1152 {
		height: 1152px;
	}
	.mob-ht-1156 {
		height: 1156px;
	}
	.mob-ht-1160 {
		height: 1160px;
	}
	.mob-ht-1164 {
		height: 1164px;
	}
	.mob-ht-1168 {
		height: 1168px;
	}
	.mob-ht-1172 {
		height: 1172px;
	}
	.mob-ht-1176 {
		height: 1176px;
	}
	.mob-ht-1180 {
		height: 1180px;
	}
	.mob-ht-1184 {
		height: 1184px;
	}
	.mob-ht-1188 {
		height: 1188px;
	}
	.mob-ht-1192 {
		height: 1192px;
	}
	.mob-ht-1196 {
		height: 1196px;
	}
	.mob-ht-1200 {
		height: 1200px;
	}
	.mob-ht-1204 {
		height: 1204px;
	}
	.mob-ht-1208 {
		height: 1208px;
	}
	.mob-ht-1212 {
		height: 1212px;
	}
	.mob-ht-1216 {
		height: 1216px;
	}
	.mob-ht-1220 {
		height: 1220px;
	}
	.mob-ht-1224 {
		height: 1224px;
	}
	.mob-ht-1228 {
		height: 1228px;
	}
	.mob-ht-1232 {
		height: 1232px;
	}
	.mob-ht-1236 {
		height: 1236px;
	}
	.mob-ht-1240 {
		height: 1240px;
	}
	.mob-ht-1244 {
		height: 1244px;
	}
	.mob-ht-1248 {
		height: 1248px;
	}
	.mob-ht-1252 {
		height: 1252px;
	}
	.mob-ht-1256 {
		height: 1256px;
	}
	.mob-ht-1260 {
		height: 1260px;
	}
	.mob-ht-1264 {
		height: 1264px;
	}
	.mob-ht-1268 {
		height: 1268px;
	}
	.mob-ht-1272 {
		height: 1272px;
	}
	.mob-ht-1276 {
		height: 1276px;
	}
	.mob-ht-1280 {
		height: 1280px;
	}
	.mob-ht-1284 {
		height: 1284px;
	}
	.mob-ht-1288 {
		height: 1288px;
	}
	.mob-ht-1292 {
		height: 1292px;
	}
	.mob-ht-1296 {
		height: 1296px;
	}
	.mob-ht-1300 {
		height: 1300px;
	}
	.mob-ht-1304 {
		height: 1304px;
	}
	.mob-ht-1308 {
		height: 1308px;
	}
	.mob-ht-1312 {
		height: 1312px;
	}
	.mob-ht-1316 {
		height: 1316px;
	}
	.mob-ht-1320 {
		height: 1320px;
	}
	.mob-ht-1324 {
		height: 1324px;
	}
	.mob-ht-1328 {
		height: 1328px;
	}
	.mob-ht-1332 {
		height: 1332px;
	}
	.mob-ht-1336 {
		height: 1336px;
	}
	.mob-ht-1340 {
		height: 1340px;
	}
	.mob-ht-1344 {
		height: 1344px;
	}
	.mob-ht-1348 {
		height: 1348px;
	}
	.mob-ht-1352 {
		height: 1352px;
	}
	.mob-ht-1356 {
		height: 1356px;
	}
	.mob-ht-1360 {
		height: 1360px;
	}
	.mob-ht-1364 {
		height: 1364px;
	}
	.mob-ht-1368 {
		height: 1368px;
	}
	.mob-ht-1372 {
		height: 1372px;
	}
	.mob-ht-1376 {
		height: 1376px;
	}
	.mob-ht-1380 {
		height: 1380px;
	}
	.mob-ht-1384 {
		height: 1384px;
	}
	.mob-ht-1388 {
		height: 1388px;
	}
	.mob-ht-1392 {
		height: 1392px;
	}
	.mob-ht-1396 {
		height: 1396px;
	}
	.mob-ht-1400 {
		height: 1400px;
	}
	.mob-ht-1404 {
		height: 1404px;
	}
	.mob-ht-1408 {
		height: 1408px;
	}
	.mob-ht-1412 {
		height: 1412px;
	}
	.mob-ht-1416 {
		height: 1416px;
	}
	.mob-ht-1420 {
		height: 1420px;
	}
	.mob-ht-1424 {
		height: 1424px;
	}
	.mob-ht-1428 {
		height: 1428px;
	}
	.mob-ht-1432 {
		height: 1432px;
	}
	.mob-ht-1436 {
		height: 1436px;
	}
	.mob-ht-1440 {
		height: 1440px;
	}
	.mob-ht-1444 {
		height: 1444px;
	}
	.mob-ht-1448 {
		height: 1448px;
	}
	.mob-ht-1452 {
		height: 1452px;
	}
	.mob-ht-1456 {
		height: 1456px;
	}
	.mob-ht-1460 {
		height: 1460px;
	}
	.mob-ht-1464 {
		height: 1464px;
	}
	.mob-ht-1468 {
		height: 1468px;
	}
	.mob-ht-1472 {
		height: 1472px;
	}
	.mob-ht-1476 {
		height: 1476px;
	}
	.mob-ht-1480 {
		height: 1480px;
	}
	.mob-ht-1484 {
		height: 1484px;
	}
	.mob-ht-1488 {
		height: 1488px;
	}
	.mob-ht-1492 {
		height: 1492px;
	}
	.mob-ht-1496 {
		height: 1496px;
	}
	.mob-ht-1500 {
		height: 1500px;
	}
	.mob-ht-1504 {
		height: 1504px;
	}
	.mob-ht-1508 {
		height: 1508px;
	}
	.mob-ht-1512 {
		height: 1512px;
	}
	.mob-ht-1516 {
		height: 1516px;
	}
	.mob-ht-1520 {
		height: 1520px;
	}
	.mob-ht-1524 {
		height: 1524px;
	}
	.mob-ht-1528 {
		height: 1528px;
	}
	.mob-ht-1532 {
		height: 1532px;
	}
	.mob-ht-1536 {
		height: 1536px;
	}
	.mob-ht-1540 {
		height: 1540px;
	}
	.mob-ht-1544 {
		height: 1544px;
	}
	.mob-ht-1548 {
		height: 1548px;
	}
	.mob-ht-1552 {
		height: 1552px;
	}
	.mob-ht-1556 {
		height: 1556px;
	}
	.mob-ht-1560 {
		height: 1560px;
	}
	.mob-ht-1564 {
		height: 1564px;
	}
	.mob-ht-1568 {
		height: 1568px;
	}
	.mob-ht-1572 {
		height: 1572px;
	}
	.mob-ht-1576 {
		height: 1576px;
	}
	.mob-ht-1580 {
		height: 1580px;
	}
	.mob-ht-1584 {
		height: 1584px;
	}
	.mob-ht-1588 {
		height: 1588px;
	}
	.mob-ht-1592 {
		height: 1592px;
	}
	.mob-ht-1596 {
		height: 1596px;
	}
	.mob-ht-1600 {
		height: 1600px;
	}
	.mob-ht-1604 {
		height: 1604px;
	}
	.mob-ht-1608 {
		height: 1608px;
	}
	.mob-ht-1612 {
		height: 1612px;
	}
	.mob-ht-1616 {
		height: 1616px;
	}
	.mob-ht-1620 {
		height: 1620px;
	}
	.mob-ht-1624 {
		height: 1624px;
	}
	.mob-ht-1628 {
		height: 1628px;
	}
	.mob-ht-1632 {
		height: 1632px;
	}
	.mob-ht-1636 {
		height: 1636px;
	}
	.mob-ht-1640 {
		height: 1640px;
	}
	.mob-ht-1644 {
		height: 1644px;
	}
	.mob-ht-1648 {
		height: 1648px;
	}
	.mob-ht-1652 {
		height: 1652px;
	}
	.mob-ht-1656 {
		height: 1656px;
	}
	.mob-ht-1660 {
		height: 1660px;
	}
	.mob-ht-1664 {
		height: 1664px;
	}
	.mob-ht-1668 {
		height: 1668px;
	}
	.mob-ht-1672 {
		height: 1672px;
	}
	.mob-ht-1676 {
		height: 1676px;
	}
	.mob-ht-1680 {
		height: 1680px;
	}
	.mob-ht-1684 {
		height: 1684px;
	}
	.mob-ht-1688 {
		height: 1688px;
	}
	.mob-ht-1692 {
		height: 1692px;
	}
	.mob-ht-1696 {
		height: 1696px;
	}
	.mob-ht-1700 {
		height: 1700px;
	}
	.mob-ht-1704 {
		height: 1704px;
	}
	.mob-ht-1708 {
		height: 1708px;
	}
	.mob-ht-1712 {
		height: 1712px;
	}
	.mob-ht-1716 {
		height: 1716px;
	}
	.mob-ht-1720 {
		height: 1720px;
	}
	.mob-ht-1724 {
		height: 1724px;
	}
	.mob-ht-1728 {
		height: 1728px;
	}
	.mob-ht-1732 {
		height: 1732px;
	}
	.mob-ht-1736 {
		height: 1736px;
	}
	.mob-ht-1740 {
		height: 1740px;
	}
	.mob-ht-1744 {
		height: 1744px;
	}
	.mob-ht-1748 {
		height: 1748px;
	}
	.mob-ht-1752 {
		height: 1752px;
	}
	.mob-ht-1756 {
		height: 1756px;
	}
	.mob-ht-1760 {
		height: 1760px;
	}
	.mob-ht-1764 {
		height: 1764px;
	}
	.mob-ht-1768 {
		height: 1768px;
	}
	.mob-ht-1772 {
		height: 1772px;
	}
	.mob-ht-1776 {
		height: 1776px;
	}
	.mob-ht-1780 {
		height: 1780px;
	}
	.mob-ht-1784 {
		height: 1784px;
	}
	.mob-ht-1788 {
		height: 1788px;
	}
	.mob-ht-1792 {
		height: 1792px;
	}
	.mob-ht-1796 {
		height: 1796px;
	}
	.mob-ht-1800 {
		height: 1800px;
	}
	.mob-ht-1804 {
		height: 1804px;
	}
	.mob-ht-1808 {
		height: 1808px;
	}
	.mob-ht-1812 {
		height: 1812px;
	}
	.mob-ht-1816 {
		height: 1816px;
	}
	.mob-ht-1820 {
		height: 1820px;
	}
	.mob-ht-1824 {
		height: 1824px;
	}
	.mob-ht-1828 {
		height: 1828px;
	}
	.mob-ht-1832 {
		height: 1832px;
	}
	.mob-ht-1836 {
		height: 1836px;
	}
	.mob-ht-1840 {
		height: 1840px;
	}
	.mob-ht-1844 {
		height: 1844px;
	}
	.mob-ht-1848 {
		height: 1848px;
	}
	.mob-ht-1852 {
		height: 1852px;
	}
	.mob-ht-1856 {
		height: 1856px;
	}
	.mob-ht-1860 {
		height: 1860px;
	}
	.mob-ht-1864 {
		height: 1864px;
	}
	.mob-ht-1868 {
		height: 1868px;
	}
	.mob-ht-1872 {
		height: 1872px;
	}
	.mob-ht-1876 {
		height: 1876px;
	}
	.mob-ht-1880 {
		height: 1880px;
	}
	.mob-ht-1884 {
		height: 1884px;
	}
	.mob-ht-1888 {
		height: 1888px;
	}
	.mob-ht-1892 {
		height: 1892px;
	}
	.mob-ht-1896 {
		height: 1896px;
	}
	.mob-ht-1900 {
		height: 1900px;
	}
	.mob-ht-1904 {
		height: 1904px;
	}
	.mob-ht-1908 {
		height: 1908px;
	}
	.mob-ht-1912 {
		height: 1912px;
	}
	.mob-ht-1916 {
		height: 1916px;
	}
	.mob-ht-1920 {
		height: 1920px;
	}
	.mob-ht-1924 {
		height: 1924px;
	}
	.mob-ht-1928 {
		height: 1928px;
	}
	.mob-ht-1932 {
		height: 1932px;
	}
	.mob-ht-1936 {
		height: 1936px;
	}
	.mob-ht-1940 {
		height: 1940px;
	}
	.mob-ht-1944 {
		height: 1944px;
	}
	.mob-ht-1948 {
		height: 1948px;
	}
	.mob-ht-1952 {
		height: 1952px;
	}
	.mob-ht-1956 {
		height: 1956px;
	}
	.mob-ht-1960 {
		height: 1960px;
	}
	.mob-ht-1964 {
		height: 1964px;
	}
	.mob-ht-1968 {
		height: 1968px;
	}
	.mob-ht-1972 {
		height: 1972px;
	}
	.mob-ht-1976 {
		height: 1976px;
	}
	.mob-ht-1980 {
		height: 1980px;
	}
	.mob-ht-1984 {
		height: 1984px;
	}
	.mob-ht-1988 {
		height: 1988px;
	}
	.mob-ht-1992 {
		height: 1992px;
	}
	.mob-ht-1996 {
		height: 1996px;
	}
	.mob-ht-2000 {
		height: 2000px;
	}
}
@media screen and (min-width: 1725px) {
	.xl-ht-25 {
		height: 25px !important;
	}
	.xl-max-ht-25 {
		max-height: 25px !important;
	}
	.xl-min-ht-25 {
		min-height: 25px !important;
	}
	.xl-ht-50 {
		height: 50px !important;
	}
	.xl-max-ht-50 {
		max-height: 50px !important;
	}
	.xl-min-ht-50 {
		min-height: 50px !important;
	}
	.xl-ht-75 {
		height: 75px !important;
	}
	.xl-max-ht-75 {
		max-height: 75px !important;
	}
	.xl-min-ht-75 {
		min-height: 75px !important;
	}
	.xl-ht-100 {
		height: 100px !important;
	}
	.xl-max-ht-100 {
		max-height: 100px !important;
	}
	.xl-min-ht-100 {
		min-height: 100px !important;
	}
	.xl-ht-125 {
		height: 125px !important;
	}
	.xl-max-ht-125 {
		max-height: 125px !important;
	}
	.xl-min-ht-125 {
		min-height: 125px !important;
	}
	.xl-ht-150 {
		height: 150px !important;
	}
	.xl-max-ht-150 {
		max-height: 150px !important;
	}
	.xl-min-ht-150 {
		min-height: 150px !important;
	}
	.xl-ht-175 {
		height: 175px !important;
	}
	.xl-max-ht-175 {
		max-height: 175px !important;
	}
	.xl-min-ht-175 {
		min-height: 175px !important;
	}
	.xl-ht-200 {
		height: 200px !important;
	}
	.xl-max-ht-200 {
		max-height: 200px !important;
	}
	.xl-min-ht-200 {
		min-height: 200px !important;
	}
	.xl-ht-225 {
		height: 225px !important;
	}
	.xl-max-ht-225 {
		max-height: 225px !important;
	}
	.xl-min-ht-225 {
		min-height: 225px !important;
	}
	.xl-ht-250 {
		height: 250px !important;
	}
	.xl-max-ht-250 {
		max-height: 250px !important;
	}
	.xl-min-ht-250 {
		min-height: 250px !important;
	}
	.xl-ht-275 {
		height: 275px !important;
	}
	.xl-max-ht-275 {
		max-height: 275px !important;
	}
	.xl-min-ht-275 {
		min-height: 275px !important;
	}
	.xl-ht-300 {
		height: 300px !important;
	}
	.xl-max-ht-300 {
		max-height: 300px !important;
	}
	.xl-min-ht-300 {
		min-height: 300px !important;
	}
	.xl-ht-325 {
		height: 325px !important;
	}
	.xl-max-ht-325 {
		max-height: 325px !important;
	}
	.xl-min-ht-325 {
		min-height: 325px !important;
	}
	.xl-ht-350 {
		height: 350px !important;
	}
	.xl-max-ht-350 {
		max-height: 350px !important;
	}
	.xl-min-ht-350 {
		min-height: 350px !important;
	}
	.xl-ht-375 {
		height: 375px !important;
	}
	.xl-max-ht-375 {
		max-height: 375px !important;
	}
	.xl-min-ht-375 {
		min-height: 375px !important;
	}
	.xl-ht-400 {
		height: 400px !important;
	}
	.xl-max-ht-400 {
		max-height: 400px !important;
	}
	.xl-min-ht-400 {
		min-height: 400px !important;
	}
	.xl-ht-425 {
		height: 425px !important;
	}
	.xl-max-ht-425 {
		max-height: 425px !important;
	}
	.xl-min-ht-425 {
		min-height: 425px !important;
	}
	.xl-ht-450 {
		height: 450px !important;
	}
	.xl-max-ht-450 {
		max-height: 450px !important;
	}
	.xl-min-ht-450 {
		min-height: 450px !important;
	}
	.xl-ht-475 {
		height: 475px !important;
	}
	.xl-max-ht-475 {
		max-height: 475px !important;
	}
	.xl-min-ht-475 {
		min-height: 475px !important;
	}
	.xl-ht-500 {
		height: 500px !important;
	}
	.xl-max-ht-500 {
		max-height: 500px !important;
	}
	.xl-min-ht-500 {
		min-height: 500px !important;
	}
	.xl-ht-525 {
		height: 525px !important;
	}
	.xl-max-ht-525 {
		max-height: 525px !important;
	}
	.xl-min-ht-525 {
		min-height: 525px !important;
	}
	.xl-ht-550 {
		height: 550px !important;
	}
	.xl-max-ht-550 {
		max-height: 550px !important;
	}
	.xl-min-ht-550 {
		min-height: 550px !important;
	}
	.xl-ht-575 {
		height: 575px !important;
	}
	.xl-max-ht-575 {
		max-height: 575px !important;
	}
	.xl-min-ht-575 {
		min-height: 575px !important;
	}
	.xl-ht-600 {
		height: 600px !important;
	}
	.xl-max-ht-600 {
		max-height: 600px !important;
	}
	.xl-min-ht-600 {
		min-height: 600px !important;
	}
	.xl-ht-625 {
		height: 625px !important;
	}
	.xl-max-ht-625 {
		max-height: 625px !important;
	}
	.xl-min-ht-625 {
		min-height: 625px !important;
	}
	.xl-ht-650 {
		height: 650px !important;
	}
	.xl-max-ht-650 {
		max-height: 650px !important;
	}
	.xl-min-ht-650 {
		min-height: 650px !important;
	}
	.xl-ht-675 {
		height: 675px !important;
	}
	.xl-max-ht-675 {
		max-height: 675px !important;
	}
	.xl-min-ht-675 {
		min-height: 675px !important;
	}
	.xl-ht-700 {
		height: 700px !important;
	}
	.xl-max-ht-700 {
		max-height: 700px !important;
	}
	.xl-min-ht-700 {
		min-height: 700px !important;
	}
	.xl-ht-725 {
		height: 725px !important;
	}
	.xl-max-ht-725 {
		max-height: 725px !important;
	}
	.xl-min-ht-725 {
		min-height: 725px !important;
	}
	.xl-ht-750 {
		height: 750px !important;
	}
	.xl-max-ht-750 {
		max-height: 750px !important;
	}
	.xl-min-ht-750 {
		min-height: 750px !important;
	}
	.xl-ht-775 {
		height: 775px !important;
	}
	.xl-max-ht-775 {
		max-height: 775px !important;
	}
	.xl-min-ht-775 {
		min-height: 775px !important;
	}
	.xl-ht-800 {
		height: 800px !important;
	}
	.xl-max-ht-800 {
		max-height: 800px !important;
	}
	.xl-min-ht-800 {
		min-height: 800px !important;
	}
	.xl-ht-825 {
		height: 825px !important;
	}
	.xl-max-ht-825 {
		max-height: 825px !important;
	}
	.xl-min-ht-825 {
		min-height: 825px !important;
	}
	.xl-ht-850 {
		height: 850px !important;
	}
	.xl-max-ht-850 {
		max-height: 850px !important;
	}
	.xl-min-ht-850 {
		min-height: 850px !important;
	}
	.xl-ht-875 {
		height: 875px !important;
	}
	.xl-max-ht-875 {
		max-height: 875px !important;
	}
	.xl-min-ht-875 {
		min-height: 875px !important;
	}
	.xl-ht-900 {
		height: 900px !important;
	}
	.xl-max-ht-900 {
		max-height: 900px !important;
	}
	.xl-min-ht-900 {
		min-height: 900px !important;
	}
	.xl-ht-925 {
		height: 925px !important;
	}
	.xl-max-ht-925 {
		max-height: 925px !important;
	}
	.xl-min-ht-925 {
		min-height: 925px !important;
	}
	.xl-ht-950 {
		height: 950px !important;
	}
	.xl-max-ht-950 {
		max-height: 950px !important;
	}
	.xl-min-ht-950 {
		min-height: 950px !important;
	}
	.xl-ht-975 {
		height: 975px !important;
	}
	.xl-max-ht-975 {
		max-height: 975px !important;
	}
	.xl-min-ht-975 {
		min-height: 975px !important;
	}
	.xl-ht-1000 {
		height: 1000px !important;
	}
	.xl-max-ht-1000 {
		max-height: 1000px !important;
	}
	.xl-min-ht-1000 {
		min-height: 1000px !important;
	}
	.xl-ht-1025 {
		height: 1025px !important;
	}
	.xl-max-ht-1025 {
		max-height: 1025px !important;
	}
	.xl-min-ht-1025 {
		min-height: 1025px !important;
	}
	.xl-ht-1050 {
		height: 1050px !important;
	}
	.xl-max-ht-1050 {
		max-height: 1050px !important;
	}
	.xl-min-ht-1050 {
		min-height: 1050px !important;
	}
	.xl-ht-1075 {
		height: 1075px !important;
	}
	.xl-max-ht-1075 {
		max-height: 1075px !important;
	}
	.xl-min-ht-1075 {
		min-height: 1075px !important;
	}
	.xl-ht-1100 {
		height: 1100px !important;
	}
	.xl-max-ht-1100 {
		max-height: 1100px !important;
	}
	.xl-min-ht-1100 {
		min-height: 1100px !important;
	}
	.xl-ht-1125 {
		height: 1125px !important;
	}
	.xl-max-ht-1125 {
		max-height: 1125px !important;
	}
	.xl-min-ht-1125 {
		min-height: 1125px !important;
	}
	.xl-ht-1150 {
		height: 1150px !important;
	}
	.xl-max-ht-1150 {
		max-height: 1150px !important;
	}
	.xl-min-ht-1150 {
		min-height: 1150px !important;
	}
	.xl-ht-1175 {
		height: 1175px !important;
	}
	.xl-max-ht-1175 {
		max-height: 1175px !important;
	}
	.xl-min-ht-1175 {
		min-height: 1175px !important;
	}
	.xl-ht-1200 {
		height: 1200px !important;
	}
	.xl-max-ht-1200 {
		max-height: 1200px !important;
	}
	.xl-min-ht-1200 {
		min-height: 1200px !important;
	}
	.xl-ht-1225 {
		height: 1225px !important;
	}
	.xl-max-ht-1225 {
		max-height: 1225px !important;
	}
	.xl-min-ht-1225 {
		min-height: 1225px !important;
	}
	.xl-ht-1250 {
		height: 1250px !important;
	}
	.xl-max-ht-1250 {
		max-height: 1250px !important;
	}
	.xl-min-ht-1250 {
		min-height: 1250px !important;
	}
	.xl-ht-1275 {
		height: 1275px !important;
	}
	.xl-max-ht-1275 {
		max-height: 1275px !important;
	}
	.xl-min-ht-1275 {
		min-height: 1275px !important;
	}
	.xl-ht-1300 {
		height: 1300px !important;
	}
	.xl-max-ht-1300 {
		max-height: 1300px !important;
	}
	.xl-min-ht-1300 {
		min-height: 1300px !important;
	}
	.xl-ht-1325 {
		height: 1325px !important;
	}
	.xl-max-ht-1325 {
		max-height: 1325px !important;
	}
	.xl-min-ht-1325 {
		min-height: 1325px !important;
	}
	.xl-ht-1350 {
		height: 1350px !important;
	}
	.xl-max-ht-1350 {
		max-height: 1350px !important;
	}
	.xl-min-ht-1350 {
		min-height: 1350px !important;
	}
	.xl-ht-1375 {
		height: 1375px !important;
	}
	.xl-max-ht-1375 {
		max-height: 1375px !important;
	}
	.xl-min-ht-1375 {
		min-height: 1375px !important;
	}
	.xl-ht-1400 {
		height: 1400px !important;
	}
	.xl-max-ht-1400 {
		max-height: 1400px !important;
	}
	.xl-min-ht-1400 {
		min-height: 1400px !important;
	}
	.xl-ht-1425 {
		height: 1425px !important;
	}
	.xl-max-ht-1425 {
		max-height: 1425px !important;
	}
	.xl-min-ht-1425 {
		min-height: 1425px !important;
	}
	.xl-ht-1450 {
		height: 1450px !important;
	}
	.xl-max-ht-1450 {
		max-height: 1450px !important;
	}
	.xl-min-ht-1450 {
		min-height: 1450px !important;
	}
	.xl-ht-1475 {
		height: 1475px !important;
	}
	.xl-max-ht-1475 {
		max-height: 1475px !important;
	}
	.xl-min-ht-1475 {
		min-height: 1475px !important;
	}
	.xl-ht-1500 {
		height: 1500px !important;
	}
	.xl-max-ht-1500 {
		max-height: 1500px !important;
	}
	.xl-min-ht-1500 {
		min-height: 1500px !important;
	}
}
.font-size-2 {
	font-size: 2px;
}
.font-size-4 {
	font-size: 4px;
}
.font-size-6 {
	font-size: 6px;
}
.font-size-8 {
	font-size: 8px;
}
.font-size-10 {
	font-size: 10px;
}
.font-size-12 {
	font-size: 12px;
}
.font-size-14 {
	font-size: 14px;
}
.font-size-16 {
	font-size: 16px;
}
.font-size-18 {
	font-size: 18px;
}
.font-size-20 {
	font-size: 20px;
}
.font-size-22 {
	font-size: 22px;
}
.font-size-24 {
	font-size: 24px;
}
.font-size-26 {
	font-size: 26px;
}
.font-size-28 {
	font-size: 28px;
}
.font-size-30 {
	font-size: 30px;
}
.font-size-32 {
	font-size: 32px;
}
.font-size-34 {
	font-size: 34px;
}
.font-size-36 {
	font-size: 36px;
}
.font-size-38 {
	font-size: 38px;
}
.font-size-40 {
	font-size: 40px;
}
.font-size-42 {
	font-size: 42px;
}
.font-size-44 {
	font-size: 44px;
}
.font-size-46 {
	font-size: 46px;
}
.font-size-48 {
	font-size: 48px;
}
.font-size-50 {
	font-size: 50px;
}
.font-size-52 {
	font-size: 52px;
}
.font-size-54 {
	font-size: 54px;
}
.font-size-56 {
	font-size: 56px;
}
.font-size-58 {
	font-size: 58px;
}
.font-size-60 {
	font-size: 60px;
}
.font-size-62 {
	font-size: 62px;
}
.font-size-64 {
	font-size: 64px;
}
.font-size-66 {
	font-size: 66px;
}
.font-size-68 {
	font-size: 68px;
}
.font-size-70 {
	font-size: 70px;
}
.font-size-72 {
	font-size: 72px;
}
.font-size-74 {
	font-size: 74px;
}
.font-size-76 {
	font-size: 76px;
}
.font-size-78 {
	font-size: 78px;
}
.font-size-80 {
	font-size: 80px;
}
.font-size-82 {
	font-size: 82px;
}
.font-size-84 {
	font-size: 84px;
}
.font-size-86 {
	font-size: 86px;
}
.font-size-88 {
	font-size: 88px;
}
.font-size-90 {
	font-size: 90px;
}
.font-size-92 {
	font-size: 92px;
}
.font-size-94 {
	font-size: 94px;
}
.font-size-96 {
	font-size: 96px;
}
.font-size-98 {
	font-size: 98px;
}
.font-size-100 {
	font-size: 100px;
}
.font-size-102 {
	font-size: 102px;
}
.font-size-104 {
	font-size: 104px;
}
.font-size-106 {
	font-size: 106px;
}
.font-size-108 {
	font-size: 108px;
}
.font-size-110 {
	font-size: 110px;
}
.font-size-112 {
	font-size: 112px;
}
.font-size-114 {
	font-size: 114px;
}
.font-size-116 {
	font-size: 116px;
}
.font-size-118 {
	font-size: 118px;
}
.font-size-120 {
	font-size: 120px;
}
.font-size-122 {
	font-size: 122px;
}
.font-size-124 {
	font-size: 124px;
}
.font-size-126 {
	font-size: 126px;
}
.font-size-128 {
	font-size: 128px;
}
.font-size-130 {
	font-size: 130px;
}
.font-size-132 {
	font-size: 132px;
}
.font-size-134 {
	font-size: 134px;
}
.font-size-136 {
	font-size: 136px;
}
.font-size-138 {
	font-size: 138px;
}
.font-size-140 {
	font-size: 140px;
}
.font-size-142 {
	font-size: 142px;
}
.font-size-144 {
	font-size: 144px;
}
.font-size-146 {
	font-size: 146px;
}
.font-size-148 {
	font-size: 148px;
}
.font-size-150 {
	font-size: 150px;
}
.font-size-152 {
	font-size: 152px;
}
.font-size-154 {
	font-size: 154px;
}
.font-size-156 {
	font-size: 156px;
}
.font-size-158 {
	font-size: 158px;
}
.font-size-160 {
	font-size: 160px;
}
.font-size-162 {
	font-size: 162px;
}
.font-size-164 {
	font-size: 164px;
}
.font-size-166 {
	font-size: 166px;
}
.font-size-168 {
	font-size: 168px;
}
.font-size-170 {
	font-size: 170px;
}
.font-size-172 {
	font-size: 172px;
}
.font-size-174 {
	font-size: 174px;
}
.font-size-176 {
	font-size: 176px;
}
.font-size-178 {
	font-size: 178px;
}
.font-size-180 {
	font-size: 180px;
}
.font-size-182 {
	font-size: 182px;
}
.font-size-184 {
	font-size: 184px;
}
.font-size-186 {
	font-size: 186px;
}
.font-size-188 {
	font-size: 188px;
}
.font-size-190 {
	font-size: 190px;
}
.font-size-192 {
	font-size: 192px;
}
.font-size-194 {
	font-size: 194px;
}
.font-size-196 {
	font-size: 196px;
}
.font-size-198 {
	font-size: 198px;
}
.font-size-200 {
	font-size: 200px;
}
.font-size-202 {
	font-size: 202px;
}
.font-size-204 {
	font-size: 204px;
}
.font-size-206 {
	font-size: 206px;
}
.font-size-208 {
	font-size: 208px;
}
.font-size-210 {
	font-size: 210px;
}
.font-size-212 {
	font-size: 212px;
}
.font-size-214 {
	font-size: 214px;
}
.font-size-216 {
	font-size: 216px;
}
.font-size-218 {
	font-size: 218px;
}
.font-size-220 {
	font-size: 220px;
}
.font-size-222 {
	font-size: 222px;
}
.font-size-224 {
	font-size: 224px;
}
.font-size-226 {
	font-size: 226px;
}
.font-size-228 {
	font-size: 228px;
}
.font-size-230 {
	font-size: 230px;
}
.font-size-232 {
	font-size: 232px;
}
.font-size-234 {
	font-size: 234px;
}
.font-size-236 {
	font-size: 236px;
}
.font-size-238 {
	font-size: 238px;
}
.font-size-240 {
	font-size: 240px;
}
.font-size-242 {
	font-size: 242px;
}
.font-size-244 {
	font-size: 244px;
}
.font-size-246 {
	font-size: 246px;
}
.font-size-248 {
	font-size: 248px;
}
.font-size-250 {
	font-size: 250px;
}
.font-size-252 {
	font-size: 252px;
}
.font-size-254 {
	font-size: 254px;
}
.font-size-256 {
	font-size: 256px;
}
.font-size-258 {
	font-size: 258px;
}
.font-size-260 {
	font-size: 260px;
}
.font-size-262 {
	font-size: 262px;
}
.font-size-264 {
	font-size: 264px;
}
.font-size-266 {
	font-size: 266px;
}
.font-size-268 {
	font-size: 268px;
}
.font-size-270 {
	font-size: 270px;
}
.font-size-272 {
	font-size: 272px;
}
.font-size-274 {
	font-size: 274px;
}
.font-size-276 {
	font-size: 276px;
}
.font-size-278 {
	font-size: 278px;
}
.font-size-280 {
	font-size: 280px;
}
.font-size-282 {
	font-size: 282px;
}
.font-size-284 {
	font-size: 284px;
}
.font-size-286 {
	font-size: 286px;
}
.font-size-288 {
	font-size: 288px;
}
.font-size-290 {
	font-size: 290px;
}
.font-size-292 {
	font-size: 292px;
}
.font-size-294 {
	font-size: 294px;
}
.font-size-296 {
	font-size: 296px;
}
.font-size-298 {
	font-size: 298px;
}
.font-size-300 {
	font-size: 300px;
}
@media screen and (max-width: 994px) {
	.mob-font-size-2 {
		font-size: 2px !important;
	}
	.mob-font-size-4 {
		font-size: 4px !important;
	}
	.mob-font-size-6 {
		font-size: 6px !important;
	}
	.mob-font-size-8 {
		font-size: 8px !important;
	}
	.mob-font-size-10 {
		font-size: 10px !important;
	}
	.mob-font-size-12 {
		font-size: 12px !important;
	}
	.mob-font-size-14 {
		font-size: 14px !important;
	}
	.mob-font-size-16 {
		font-size: 16px !important;
	}
	.mob-font-size-18 {
		font-size: 18px !important;
	}
	.mob-font-size-20 {
		font-size: 20px !important;
	}
	.mob-font-size-22 {
		font-size: 22px !important;
	}
	.mob-font-size-24 {
		font-size: 24px !important;
	}
	.mob-font-size-26 {
		font-size: 26px !important;
	}
	.mob-font-size-28 {
		font-size: 28px !important;
	}
	.mob-font-size-30 {
		font-size: 30px !important;
	}
	.mob-font-size-32 {
		font-size: 32px !important;
	}
	.mob-font-size-34 {
		font-size: 34px !important;
	}
	.mob-font-size-36 {
		font-size: 36px !important;
	}
	.mob-font-size-38 {
		font-size: 38px !important;
	}
	.mob-font-size-40 {
		font-size: 40px !important;
	}
	.mob-font-size-42 {
		font-size: 42px !important;
	}
	.mob-font-size-44 {
		font-size: 44px !important;
	}
	.mob-font-size-46 {
		font-size: 46px !important;
	}
	.mob-font-size-48 {
		font-size: 48px !important;
	}
	.mob-font-size-50 {
		font-size: 50px !important;
	}
	.mob-font-size-52 {
		font-size: 52px !important;
	}
	.mob-font-size-54 {
		font-size: 54px !important;
	}
	.mob-font-size-56 {
		font-size: 56px !important;
	}
	.mob-font-size-58 {
		font-size: 58px !important;
	}
	.mob-font-size-60 {
		font-size: 60px !important;
	}
	.mob-font-size-62 {
		font-size: 62px !important;
	}
	.mob-font-size-64 {
		font-size: 64px !important;
	}
	.mob-font-size-66 {
		font-size: 66px !important;
	}
	.mob-font-size-68 {
		font-size: 68px !important;
	}
	.mob-font-size-70 {
		font-size: 70px !important;
	}
	.mob-font-size-72 {
		font-size: 72px !important;
	}
	.mob-font-size-74 {
		font-size: 74px !important;
	}
	.mob-font-size-76 {
		font-size: 76px !important;
	}
	.mob-font-size-78 {
		font-size: 78px !important;
	}
	.mob-font-size-80 {
		font-size: 80px !important;
	}
	.mob-font-size-82 {
		font-size: 82px !important;
	}
	.mob-font-size-84 {
		font-size: 84px !important;
	}
	.mob-font-size-86 {
		font-size: 86px !important;
	}
	.mob-font-size-88 {
		font-size: 88px !important;
	}
	.mob-font-size-90 {
		font-size: 90px !important;
	}
	.mob-font-size-92 {
		font-size: 92px !important;
	}
	.mob-font-size-94 {
		font-size: 94px !important;
	}
	.mob-font-size-96 {
		font-size: 96px !important;
	}
	.mob-font-size-98 {
		font-size: 98px !important;
	}
	.mob-font-size-100 {
		font-size: 100px !important;
	}
	.mob-font-size-102 {
		font-size: 102px !important;
	}
	.mob-font-size-104 {
		font-size: 104px !important;
	}
	.mob-font-size-106 {
		font-size: 106px !important;
	}
	.mob-font-size-108 {
		font-size: 108px !important;
	}
	.mob-font-size-110 {
		font-size: 110px !important;
	}
	.mob-font-size-112 {
		font-size: 112px !important;
	}
	.mob-font-size-114 {
		font-size: 114px !important;
	}
	.mob-font-size-116 {
		font-size: 116px !important;
	}
	.mob-font-size-118 {
		font-size: 118px !important;
	}
	.mob-font-size-120 {
		font-size: 120px !important;
	}
	.mob-font-size-122 {
		font-size: 122px !important;
	}
	.mob-font-size-124 {
		font-size: 124px !important;
	}
	.mob-font-size-126 {
		font-size: 126px !important;
	}
	.mob-font-size-128 {
		font-size: 128px !important;
	}
	.mob-font-size-130 {
		font-size: 130px !important;
	}
	.mob-font-size-132 {
		font-size: 132px !important;
	}
	.mob-font-size-134 {
		font-size: 134px !important;
	}
	.mob-font-size-136 {
		font-size: 136px !important;
	}
	.mob-font-size-138 {
		font-size: 138px !important;
	}
	.mob-font-size-140 {
		font-size: 140px !important;
	}
	.mob-font-size-142 {
		font-size: 142px !important;
	}
	.mob-font-size-144 {
		font-size: 144px !important;
	}
	.mob-font-size-146 {
		font-size: 146px !important;
	}
	.mob-font-size-148 {
		font-size: 148px !important;
	}
	.mob-font-size-150 {
		font-size: 150px !important;
	}
	.mob-font-size-152 {
		font-size: 152px !important;
	}
	.mob-font-size-154 {
		font-size: 154px !important;
	}
	.mob-font-size-156 {
		font-size: 156px !important;
	}
	.mob-font-size-158 {
		font-size: 158px !important;
	}
	.mob-font-size-160 {
		font-size: 160px !important;
	}
	.mob-font-size-162 {
		font-size: 162px !important;
	}
	.mob-font-size-164 {
		font-size: 164px !important;
	}
	.mob-font-size-166 {
		font-size: 166px !important;
	}
	.mob-font-size-168 {
		font-size: 168px !important;
	}
	.mob-font-size-170 {
		font-size: 170px !important;
	}
	.mob-font-size-172 {
		font-size: 172px !important;
	}
	.mob-font-size-174 {
		font-size: 174px !important;
	}
	.mob-font-size-176 {
		font-size: 176px !important;
	}
	.mob-font-size-178 {
		font-size: 178px !important;
	}
	.mob-font-size-180 {
		font-size: 180px !important;
	}
	.mob-font-size-182 {
		font-size: 182px !important;
	}
	.mob-font-size-184 {
		font-size: 184px !important;
	}
	.mob-font-size-186 {
		font-size: 186px !important;
	}
	.mob-font-size-188 {
		font-size: 188px !important;
	}
	.mob-font-size-190 {
		font-size: 190px !important;
	}
	.mob-font-size-192 {
		font-size: 192px !important;
	}
	.mob-font-size-194 {
		font-size: 194px !important;
	}
	.mob-font-size-196 {
		font-size: 196px !important;
	}
	.mob-font-size-198 {
		font-size: 198px !important;
	}
	.mob-font-size-200 {
		font-size: 200px !important;
	}
	.mob-font-size-202 {
		font-size: 202px !important;
	}
	.mob-font-size-204 {
		font-size: 204px !important;
	}
	.mob-font-size-206 {
		font-size: 206px !important;
	}
	.mob-font-size-208 {
		font-size: 208px !important;
	}
	.mob-font-size-210 {
		font-size: 210px !important;
	}
	.mob-font-size-212 {
		font-size: 212px !important;
	}
	.mob-font-size-214 {
		font-size: 214px !important;
	}
	.mob-font-size-216 {
		font-size: 216px !important;
	}
	.mob-font-size-218 {
		font-size: 218px !important;
	}
	.mob-font-size-220 {
		font-size: 220px !important;
	}
	.mob-font-size-222 {
		font-size: 222px !important;
	}
	.mob-font-size-224 {
		font-size: 224px !important;
	}
	.mob-font-size-226 {
		font-size: 226px !important;
	}
	.mob-font-size-228 {
		font-size: 228px !important;
	}
	.mob-font-size-230 {
		font-size: 230px !important;
	}
	.mob-font-size-232 {
		font-size: 232px !important;
	}
	.mob-font-size-234 {
		font-size: 234px !important;
	}
	.mob-font-size-236 {
		font-size: 236px !important;
	}
	.mob-font-size-238 {
		font-size: 238px !important;
	}
	.mob-font-size-240 {
		font-size: 240px !important;
	}
	.mob-font-size-242 {
		font-size: 242px !important;
	}
	.mob-font-size-244 {
		font-size: 244px !important;
	}
	.mob-font-size-246 {
		font-size: 246px !important;
	}
	.mob-font-size-248 {
		font-size: 248px !important;
	}
	.mob-font-size-250 {
		font-size: 250px !important;
	}
	.mob-font-size-252 {
		font-size: 252px !important;
	}
	.mob-font-size-254 {
		font-size: 254px !important;
	}
	.mob-font-size-256 {
		font-size: 256px !important;
	}
	.mob-font-size-258 {
		font-size: 258px !important;
	}
	.mob-font-size-260 {
		font-size: 260px !important;
	}
	.mob-font-size-262 {
		font-size: 262px !important;
	}
	.mob-font-size-264 {
		font-size: 264px !important;
	}
	.mob-font-size-266 {
		font-size: 266px !important;
	}
	.mob-font-size-268 {
		font-size: 268px !important;
	}
	.mob-font-size-270 {
		font-size: 270px !important;
	}
	.mob-font-size-272 {
		font-size: 272px !important;
	}
	.mob-font-size-274 {
		font-size: 274px !important;
	}
	.mob-font-size-276 {
		font-size: 276px !important;
	}
	.mob-font-size-278 {
		font-size: 278px !important;
	}
	.mob-font-size-280 {
		font-size: 280px !important;
	}
	.mob-font-size-282 {
		font-size: 282px !important;
	}
	.mob-font-size-284 {
		font-size: 284px !important;
	}
	.mob-font-size-286 {
		font-size: 286px !important;
	}
	.mob-font-size-288 {
		font-size: 288px !important;
	}
	.mob-font-size-290 {
		font-size: 290px !important;
	}
	.mob-font-size-292 {
		font-size: 292px !important;
	}
	.mob-font-size-294 {
		font-size: 294px !important;
	}
	.mob-font-size-296 {
		font-size: 296px !important;
	}
	.mob-font-size-298 {
		font-size: 298px !important;
	}
	.mob-font-size-300 {
		font-size: 300px !important;
	}
}
.vw-1 {
	width: 1vw;
}
.max-vw-1 {
	max-width: 1vw !important;
}
.min-vw-1 {
	min-width: 1vw !important;
}
.vw-2 {
	width: 2vw;
}
.max-vw-2 {
	max-width: 2vw !important;
}
.min-vw-2 {
	min-width: 2vw !important;
}
.vw-3 {
	width: 3vw;
}
.max-vw-3 {
	max-width: 3vw !important;
}
.min-vw-3 {
	min-width: 3vw !important;
}
.vw-4 {
	width: 4vw;
}
.max-vw-4 {
	max-width: 4vw !important;
}
.min-vw-4 {
	min-width: 4vw !important;
}
.vw-5 {
	width: 5vw;
}
.max-vw-5 {
	max-width: 5vw !important;
}
.min-vw-5 {
	min-width: 5vw !important;
}
.vw-6 {
	width: 6vw;
}
.max-vw-6 {
	max-width: 6vw !important;
}
.min-vw-6 {
	min-width: 6vw !important;
}
.vw-7 {
	width: 7vw;
}
.max-vw-7 {
	max-width: 7vw !important;
}
.min-vw-7 {
	min-width: 7vw !important;
}
.vw-8 {
	width: 8vw;
}
.max-vw-8 {
	max-width: 8vw !important;
}
.min-vw-8 {
	min-width: 8vw !important;
}
.vw-9 {
	width: 9vw;
}
.max-vw-9 {
	max-width: 9vw !important;
}
.min-vw-9 {
	min-width: 9vw !important;
}
.vw-10 {
	width: 10vw;
}
.max-vw-10 {
	max-width: 10vw !important;
}
.min-vw-10 {
	min-width: 10vw !important;
}
.vw-11 {
	width: 11vw;
}
.max-vw-11 {
	max-width: 11vw !important;
}
.min-vw-11 {
	min-width: 11vw !important;
}
.vw-12 {
	width: 12vw;
}
.max-vw-12 {
	max-width: 12vw !important;
}
.min-vw-12 {
	min-width: 12vw !important;
}
.vw-13 {
	width: 13vw;
}
.max-vw-13 {
	max-width: 13vw !important;
}
.min-vw-13 {
	min-width: 13vw !important;
}
.vw-14 {
	width: 14vw;
}
.max-vw-14 {
	max-width: 14vw !important;
}
.min-vw-14 {
	min-width: 14vw !important;
}
.vw-15 {
	width: 15vw;
}
.max-vw-15 {
	max-width: 15vw !important;
}
.min-vw-15 {
	min-width: 15vw !important;
}
.vw-16 {
	width: 16vw;
}
.max-vw-16 {
	max-width: 16vw !important;
}
.min-vw-16 {
	min-width: 16vw !important;
}
.vw-17 {
	width: 17vw;
}
.max-vw-17 {
	max-width: 17vw !important;
}
.min-vw-17 {
	min-width: 17vw !important;
}
.vw-18 {
	width: 18vw;
}
.max-vw-18 {
	max-width: 18vw !important;
}
.min-vw-18 {
	min-width: 18vw !important;
}
.vw-19 {
	width: 19vw;
}
.max-vw-19 {
	max-width: 19vw !important;
}
.min-vw-19 {
	min-width: 19vw !important;
}
.vw-20 {
	width: 20vw;
}
.max-vw-20 {
	max-width: 20vw !important;
}
.min-vw-20 {
	min-width: 20vw !important;
}
.vw-21 {
	width: 21vw;
}
.max-vw-21 {
	max-width: 21vw !important;
}
.min-vw-21 {
	min-width: 21vw !important;
}
.vw-22 {
	width: 22vw;
}
.max-vw-22 {
	max-width: 22vw !important;
}
.min-vw-22 {
	min-width: 22vw !important;
}
.vw-23 {
	width: 23vw;
}
.max-vw-23 {
	max-width: 23vw !important;
}
.min-vw-23 {
	min-width: 23vw !important;
}
.vw-24 {
	width: 24vw;
}
.max-vw-24 {
	max-width: 24vw !important;
}
.min-vw-24 {
	min-width: 24vw !important;
}
.vw-25 {
	width: 25vw;
}
.max-vw-25 {
	max-width: 25vw !important;
}
.min-vw-25 {
	min-width: 25vw !important;
}
.vw-26 {
	width: 26vw;
}
.max-vw-26 {
	max-width: 26vw !important;
}
.min-vw-26 {
	min-width: 26vw !important;
}
.vw-27 {
	width: 27vw;
}
.max-vw-27 {
	max-width: 27vw !important;
}
.min-vw-27 {
	min-width: 27vw !important;
}
.vw-28 {
	width: 28vw;
}
.max-vw-28 {
	max-width: 28vw !important;
}
.min-vw-28 {
	min-width: 28vw !important;
}
.vw-29 {
	width: 29vw;
}
.max-vw-29 {
	max-width: 29vw !important;
}
.min-vw-29 {
	min-width: 29vw !important;
}
.vw-30 {
	width: 30vw;
}
.max-vw-30 {
	max-width: 30vw !important;
}
.min-vw-30 {
	min-width: 30vw !important;
}
.vw-31 {
	width: 31vw;
}
.max-vw-31 {
	max-width: 31vw !important;
}
.min-vw-31 {
	min-width: 31vw !important;
}
.vw-32 {
	width: 32vw;
}
.max-vw-32 {
	max-width: 32vw !important;
}
.min-vw-32 {
	min-width: 32vw !important;
}
.vw-33 {
	width: 33vw;
}
.max-vw-33 {
	max-width: 33vw !important;
}
.min-vw-33 {
	min-width: 33vw !important;
}
.vw-34 {
	width: 34vw;
}
.max-vw-34 {
	max-width: 34vw !important;
}
.min-vw-34 {
	min-width: 34vw !important;
}
.vw-35 {
	width: 35vw;
}
.max-vw-35 {
	max-width: 35vw !important;
}
.min-vw-35 {
	min-width: 35vw !important;
}
.vw-36 {
	width: 36vw;
}
.max-vw-36 {
	max-width: 36vw !important;
}
.min-vw-36 {
	min-width: 36vw !important;
}
.vw-37 {
	width: 37vw;
}
.max-vw-37 {
	max-width: 37vw !important;
}
.min-vw-37 {
	min-width: 37vw !important;
}
.vw-38 {
	width: 38vw;
}
.max-vw-38 {
	max-width: 38vw !important;
}
.min-vw-38 {
	min-width: 38vw !important;
}
.vw-39 {
	width: 39vw;
}
.max-vw-39 {
	max-width: 39vw !important;
}
.min-vw-39 {
	min-width: 39vw !important;
}
.vw-40 {
	width: 40vw;
}
.max-vw-40 {
	max-width: 40vw !important;
}
.min-vw-40 {
	min-width: 40vw !important;
}
.vw-41 {
	width: 41vw;
}
.max-vw-41 {
	max-width: 41vw !important;
}
.min-vw-41 {
	min-width: 41vw !important;
}
.vw-42 {
	width: 42vw;
}
.max-vw-42 {
	max-width: 42vw !important;
}
.min-vw-42 {
	min-width: 42vw !important;
}
.vw-43 {
	width: 43vw;
}
.max-vw-43 {
	max-width: 43vw !important;
}
.min-vw-43 {
	min-width: 43vw !important;
}
.vw-44 {
	width: 44vw;
}
.max-vw-44 {
	max-width: 44vw !important;
}
.min-vw-44 {
	min-width: 44vw !important;
}
.vw-45 {
	width: 45vw;
}
.max-vw-45 {
	max-width: 45vw !important;
}
.min-vw-45 {
	min-width: 45vw !important;
}
.vw-46 {
	width: 46vw;
}
.max-vw-46 {
	max-width: 46vw !important;
}
.min-vw-46 {
	min-width: 46vw !important;
}
.vw-47 {
	width: 47vw;
}
.max-vw-47 {
	max-width: 47vw !important;
}
.min-vw-47 {
	min-width: 47vw !important;
}
.vw-48 {
	width: 48vw;
}
.max-vw-48 {
	max-width: 48vw !important;
}
.min-vw-48 {
	min-width: 48vw !important;
}
.vw-49 {
	width: 49vw;
}
.max-vw-49 {
	max-width: 49vw !important;
}
.min-vw-49 {
	min-width: 49vw !important;
}
.vw-50 {
	width: 50vw;
}
.max-vw-50 {
	max-width: 50vw !important;
}
.min-vw-50 {
	min-width: 50vw !important;
}
.vw-51 {
	width: 51vw;
}
.max-vw-51 {
	max-width: 51vw !important;
}
.min-vw-51 {
	min-width: 51vw !important;
}
.vw-52 {
	width: 52vw;
}
.max-vw-52 {
	max-width: 52vw !important;
}
.min-vw-52 {
	min-width: 52vw !important;
}
.vw-53 {
	width: 53vw;
}
.max-vw-53 {
	max-width: 53vw !important;
}
.min-vw-53 {
	min-width: 53vw !important;
}
.vw-54 {
	width: 54vw;
}
.max-vw-54 {
	max-width: 54vw !important;
}
.min-vw-54 {
	min-width: 54vw !important;
}
.vw-55 {
	width: 55vw;
}
.max-vw-55 {
	max-width: 55vw !important;
}
.min-vw-55 {
	min-width: 55vw !important;
}
.vw-56 {
	width: 56vw;
}
.max-vw-56 {
	max-width: 56vw !important;
}
.min-vw-56 {
	min-width: 56vw !important;
}
.vw-57 {
	width: 57vw;
}
.max-vw-57 {
	max-width: 57vw !important;
}
.min-vw-57 {
	min-width: 57vw !important;
}
.vw-58 {
	width: 58vw;
}
.max-vw-58 {
	max-width: 58vw !important;
}
.min-vw-58 {
	min-width: 58vw !important;
}
.vw-59 {
	width: 59vw;
}
.max-vw-59 {
	max-width: 59vw !important;
}
.min-vw-59 {
	min-width: 59vw !important;
}
.vw-60 {
	width: 60vw;
}
.max-vw-60 {
	max-width: 60vw !important;
}
.min-vw-60 {
	min-width: 60vw !important;
}
.vw-61 {
	width: 61vw;
}
.max-vw-61 {
	max-width: 61vw !important;
}
.min-vw-61 {
	min-width: 61vw !important;
}
.vw-62 {
	width: 62vw;
}
.max-vw-62 {
	max-width: 62vw !important;
}
.min-vw-62 {
	min-width: 62vw !important;
}
.vw-63 {
	width: 63vw;
}
.max-vw-63 {
	max-width: 63vw !important;
}
.min-vw-63 {
	min-width: 63vw !important;
}
.vw-64 {
	width: 64vw;
}
.max-vw-64 {
	max-width: 64vw !important;
}
.min-vw-64 {
	min-width: 64vw !important;
}
.vw-65 {
	width: 65vw;
}
.max-vw-65 {
	max-width: 65vw !important;
}
.min-vw-65 {
	min-width: 65vw !important;
}
.vw-66 {
	width: 66vw;
}
.max-vw-66 {
	max-width: 66vw !important;
}
.min-vw-66 {
	min-width: 66vw !important;
}
.vw-67 {
	width: 67vw;
}
.max-vw-67 {
	max-width: 67vw !important;
}
.min-vw-67 {
	min-width: 67vw !important;
}
.vw-68 {
	width: 68vw;
}
.max-vw-68 {
	max-width: 68vw !important;
}
.min-vw-68 {
	min-width: 68vw !important;
}
.vw-69 {
	width: 69vw;
}
.max-vw-69 {
	max-width: 69vw !important;
}
.min-vw-69 {
	min-width: 69vw !important;
}
.vw-70 {
	width: 70vw;
}
.max-vw-70 {
	max-width: 70vw !important;
}
.min-vw-70 {
	min-width: 70vw !important;
}
.vw-71 {
	width: 71vw;
}
.max-vw-71 {
	max-width: 71vw !important;
}
.min-vw-71 {
	min-width: 71vw !important;
}
.vw-72 {
	width: 72vw;
}
.max-vw-72 {
	max-width: 72vw !important;
}
.min-vw-72 {
	min-width: 72vw !important;
}
.vw-73 {
	width: 73vw;
}
.max-vw-73 {
	max-width: 73vw !important;
}
.min-vw-73 {
	min-width: 73vw !important;
}
.vw-74 {
	width: 74vw;
}
.max-vw-74 {
	max-width: 74vw !important;
}
.min-vw-74 {
	min-width: 74vw !important;
}
.vw-75 {
	width: 75vw;
}
.max-vw-75 {
	max-width: 75vw !important;
}
.min-vw-75 {
	min-width: 75vw !important;
}
.vw-76 {
	width: 76vw;
}
.max-vw-76 {
	max-width: 76vw !important;
}
.min-vw-76 {
	min-width: 76vw !important;
}
.vw-77 {
	width: 77vw;
}
.max-vw-77 {
	max-width: 77vw !important;
}
.min-vw-77 {
	min-width: 77vw !important;
}
.vw-78 {
	width: 78vw;
}
.max-vw-78 {
	max-width: 78vw !important;
}
.min-vw-78 {
	min-width: 78vw !important;
}
.vw-79 {
	width: 79vw;
}
.max-vw-79 {
	max-width: 79vw !important;
}
.min-vw-79 {
	min-width: 79vw !important;
}
.vw-80 {
	width: 80vw;
}
.max-vw-80 {
	max-width: 80vw !important;
}
.min-vw-80 {
	min-width: 80vw !important;
}
.vw-81 {
	width: 81vw;
}
.max-vw-81 {
	max-width: 81vw !important;
}
.min-vw-81 {
	min-width: 81vw !important;
}
.vw-82 {
	width: 82vw;
}
.max-vw-82 {
	max-width: 82vw !important;
}
.min-vw-82 {
	min-width: 82vw !important;
}
.vw-83 {
	width: 83vw;
}
.max-vw-83 {
	max-width: 83vw !important;
}
.min-vw-83 {
	min-width: 83vw !important;
}
.vw-84 {
	width: 84vw;
}
.max-vw-84 {
	max-width: 84vw !important;
}
.min-vw-84 {
	min-width: 84vw !important;
}
.vw-85 {
	width: 85vw;
}
.max-vw-85 {
	max-width: 85vw !important;
}
.min-vw-85 {
	min-width: 85vw !important;
}
.vw-86 {
	width: 86vw;
}
.max-vw-86 {
	max-width: 86vw !important;
}
.min-vw-86 {
	min-width: 86vw !important;
}
.vw-87 {
	width: 87vw;
}
.max-vw-87 {
	max-width: 87vw !important;
}
.min-vw-87 {
	min-width: 87vw !important;
}
.vw-88 {
	width: 88vw;
}
.max-vw-88 {
	max-width: 88vw !important;
}
.min-vw-88 {
	min-width: 88vw !important;
}
.vw-89 {
	width: 89vw;
}
.max-vw-89 {
	max-width: 89vw !important;
}
.min-vw-89 {
	min-width: 89vw !important;
}
.vw-90 {
	width: 90vw;
}
.max-vw-90 {
	max-width: 90vw !important;
}
.min-vw-90 {
	min-width: 90vw !important;
}
.vw-91 {
	width: 91vw;
}
.max-vw-91 {
	max-width: 91vw !important;
}
.min-vw-91 {
	min-width: 91vw !important;
}
.vw-92 {
	width: 92vw;
}
.max-vw-92 {
	max-width: 92vw !important;
}
.min-vw-92 {
	min-width: 92vw !important;
}
.vw-93 {
	width: 93vw;
}
.max-vw-93 {
	max-width: 93vw !important;
}
.min-vw-93 {
	min-width: 93vw !important;
}
.vw-94 {
	width: 94vw;
}
.max-vw-94 {
	max-width: 94vw !important;
}
.min-vw-94 {
	min-width: 94vw !important;
}
.vw-95 {
	width: 95vw;
}
.max-vw-95 {
	max-width: 95vw !important;
}
.min-vw-95 {
	min-width: 95vw !important;
}
.vw-96 {
	width: 96vw;
}
.max-vw-96 {
	max-width: 96vw !important;
}
.min-vw-96 {
	min-width: 96vw !important;
}
.vw-97 {
	width: 97vw;
}
.max-vw-97 {
	max-width: 97vw !important;
}
.min-vw-97 {
	min-width: 97vw !important;
}
.vw-98 {
	width: 98vw;
}
.max-vw-98 {
	max-width: 98vw !important;
}
.min-vw-98 {
	min-width: 98vw !important;
}
.vw-99 {
	width: 99vw;
}
.max-vw-99 {
	max-width: 99vw !important;
}
.min-vw-99 {
	min-width: 99vw !important;
}
.vw-100 {
	width: 100vw;
}
.max-vw-100 {
	max-width: 100vw !important;
}
.min-vw-100 {
	min-width: 100vw !important;
}
@media screen and (max-width: 994px) {
	.mob-vw-1 {
		width: 1vw;
	}
	.mob-max-vw-1 {
		max-width: 1vw !important;
	}
	.mob-min-vw-1 {
		min-width: 1vw !important;
	}
	.mob-vw-2 {
		width: 2vw;
	}
	.mob-max-vw-2 {
		max-width: 2vw !important;
	}
	.mob-min-vw-2 {
		min-width: 2vw !important;
	}
	.mob-vw-3 {
		width: 3vw;
	}
	.mob-max-vw-3 {
		max-width: 3vw !important;
	}
	.mob-min-vw-3 {
		min-width: 3vw !important;
	}
	.mob-vw-4 {
		width: 4vw;
	}
	.mob-max-vw-4 {
		max-width: 4vw !important;
	}
	.mob-min-vw-4 {
		min-width: 4vw !important;
	}
	.mob-vw-5 {
		width: 5vw;
	}
	.mob-max-vw-5 {
		max-width: 5vw !important;
	}
	.mob-min-vw-5 {
		min-width: 5vw !important;
	}
	.mob-vw-6 {
		width: 6vw;
	}
	.mob-max-vw-6 {
		max-width: 6vw !important;
	}
	.mob-min-vw-6 {
		min-width: 6vw !important;
	}
	.mob-vw-7 {
		width: 7vw;
	}
	.mob-max-vw-7 {
		max-width: 7vw !important;
	}
	.mob-min-vw-7 {
		min-width: 7vw !important;
	}
	.mob-vw-8 {
		width: 8vw;
	}
	.mob-max-vw-8 {
		max-width: 8vw !important;
	}
	.mob-min-vw-8 {
		min-width: 8vw !important;
	}
	.mob-vw-9 {
		width: 9vw;
	}
	.mob-max-vw-9 {
		max-width: 9vw !important;
	}
	.mob-min-vw-9 {
		min-width: 9vw !important;
	}
	.mob-vw-10 {
		width: 10vw;
	}
	.mob-max-vw-10 {
		max-width: 10vw !important;
	}
	.mob-min-vw-10 {
		min-width: 10vw !important;
	}
	.mob-vw-11 {
		width: 11vw;
	}
	.mob-max-vw-11 {
		max-width: 11vw !important;
	}
	.mob-min-vw-11 {
		min-width: 11vw !important;
	}
	.mob-vw-12 {
		width: 12vw;
	}
	.mob-max-vw-12 {
		max-width: 12vw !important;
	}
	.mob-min-vw-12 {
		min-width: 12vw !important;
	}
	.mob-vw-13 {
		width: 13vw;
	}
	.mob-max-vw-13 {
		max-width: 13vw !important;
	}
	.mob-min-vw-13 {
		min-width: 13vw !important;
	}
	.mob-vw-14 {
		width: 14vw;
	}
	.mob-max-vw-14 {
		max-width: 14vw !important;
	}
	.mob-min-vw-14 {
		min-width: 14vw !important;
	}
	.mob-vw-15 {
		width: 15vw;
	}
	.mob-max-vw-15 {
		max-width: 15vw !important;
	}
	.mob-min-vw-15 {
		min-width: 15vw !important;
	}
	.mob-vw-16 {
		width: 16vw;
	}
	.mob-max-vw-16 {
		max-width: 16vw !important;
	}
	.mob-min-vw-16 {
		min-width: 16vw !important;
	}
	.mob-vw-17 {
		width: 17vw;
	}
	.mob-max-vw-17 {
		max-width: 17vw !important;
	}
	.mob-min-vw-17 {
		min-width: 17vw !important;
	}
	.mob-vw-18 {
		width: 18vw;
	}
	.mob-max-vw-18 {
		max-width: 18vw !important;
	}
	.mob-min-vw-18 {
		min-width: 18vw !important;
	}
	.mob-vw-19 {
		width: 19vw;
	}
	.mob-max-vw-19 {
		max-width: 19vw !important;
	}
	.mob-min-vw-19 {
		min-width: 19vw !important;
	}
	.mob-vw-20 {
		width: 20vw;
	}
	.mob-max-vw-20 {
		max-width: 20vw !important;
	}
	.mob-min-vw-20 {
		min-width: 20vw !important;
	}
	.mob-vw-21 {
		width: 21vw;
	}
	.mob-max-vw-21 {
		max-width: 21vw !important;
	}
	.mob-min-vw-21 {
		min-width: 21vw !important;
	}
	.mob-vw-22 {
		width: 22vw;
	}
	.mob-max-vw-22 {
		max-width: 22vw !important;
	}
	.mob-min-vw-22 {
		min-width: 22vw !important;
	}
	.mob-vw-23 {
		width: 23vw;
	}
	.mob-max-vw-23 {
		max-width: 23vw !important;
	}
	.mob-min-vw-23 {
		min-width: 23vw !important;
	}
	.mob-vw-24 {
		width: 24vw;
	}
	.mob-max-vw-24 {
		max-width: 24vw !important;
	}
	.mob-min-vw-24 {
		min-width: 24vw !important;
	}
	.mob-vw-25 {
		width: 25vw;
	}
	.mob-max-vw-25 {
		max-width: 25vw !important;
	}
	.mob-min-vw-25 {
		min-width: 25vw !important;
	}
	.mob-vw-26 {
		width: 26vw;
	}
	.mob-max-vw-26 {
		max-width: 26vw !important;
	}
	.mob-min-vw-26 {
		min-width: 26vw !important;
	}
	.mob-vw-27 {
		width: 27vw;
	}
	.mob-max-vw-27 {
		max-width: 27vw !important;
	}
	.mob-min-vw-27 {
		min-width: 27vw !important;
	}
	.mob-vw-28 {
		width: 28vw;
	}
	.mob-max-vw-28 {
		max-width: 28vw !important;
	}
	.mob-min-vw-28 {
		min-width: 28vw !important;
	}
	.mob-vw-29 {
		width: 29vw;
	}
	.mob-max-vw-29 {
		max-width: 29vw !important;
	}
	.mob-min-vw-29 {
		min-width: 29vw !important;
	}
	.mob-vw-30 {
		width: 30vw;
	}
	.mob-max-vw-30 {
		max-width: 30vw !important;
	}
	.mob-min-vw-30 {
		min-width: 30vw !important;
	}
	.mob-vw-31 {
		width: 31vw;
	}
	.mob-max-vw-31 {
		max-width: 31vw !important;
	}
	.mob-min-vw-31 {
		min-width: 31vw !important;
	}
	.mob-vw-32 {
		width: 32vw;
	}
	.mob-max-vw-32 {
		max-width: 32vw !important;
	}
	.mob-min-vw-32 {
		min-width: 32vw !important;
	}
	.mob-vw-33 {
		width: 33vw;
	}
	.mob-max-vw-33 {
		max-width: 33vw !important;
	}
	.mob-min-vw-33 {
		min-width: 33vw !important;
	}
	.mob-vw-34 {
		width: 34vw;
	}
	.mob-max-vw-34 {
		max-width: 34vw !important;
	}
	.mob-min-vw-34 {
		min-width: 34vw !important;
	}
	.mob-vw-35 {
		width: 35vw;
	}
	.mob-max-vw-35 {
		max-width: 35vw !important;
	}
	.mob-min-vw-35 {
		min-width: 35vw !important;
	}
	.mob-vw-36 {
		width: 36vw;
	}
	.mob-max-vw-36 {
		max-width: 36vw !important;
	}
	.mob-min-vw-36 {
		min-width: 36vw !important;
	}
	.mob-vw-37 {
		width: 37vw;
	}
	.mob-max-vw-37 {
		max-width: 37vw !important;
	}
	.mob-min-vw-37 {
		min-width: 37vw !important;
	}
	.mob-vw-38 {
		width: 38vw;
	}
	.mob-max-vw-38 {
		max-width: 38vw !important;
	}
	.mob-min-vw-38 {
		min-width: 38vw !important;
	}
	.mob-vw-39 {
		width: 39vw;
	}
	.mob-max-vw-39 {
		max-width: 39vw !important;
	}
	.mob-min-vw-39 {
		min-width: 39vw !important;
	}
	.mob-vw-40 {
		width: 40vw;
	}
	.mob-max-vw-40 {
		max-width: 40vw !important;
	}
	.mob-min-vw-40 {
		min-width: 40vw !important;
	}
	.mob-vw-41 {
		width: 41vw;
	}
	.mob-max-vw-41 {
		max-width: 41vw !important;
	}
	.mob-min-vw-41 {
		min-width: 41vw !important;
	}
	.mob-vw-42 {
		width: 42vw;
	}
	.mob-max-vw-42 {
		max-width: 42vw !important;
	}
	.mob-min-vw-42 {
		min-width: 42vw !important;
	}
	.mob-vw-43 {
		width: 43vw;
	}
	.mob-max-vw-43 {
		max-width: 43vw !important;
	}
	.mob-min-vw-43 {
		min-width: 43vw !important;
	}
	.mob-vw-44 {
		width: 44vw;
	}
	.mob-max-vw-44 {
		max-width: 44vw !important;
	}
	.mob-min-vw-44 {
		min-width: 44vw !important;
	}
	.mob-vw-45 {
		width: 45vw;
	}
	.mob-max-vw-45 {
		max-width: 45vw !important;
	}
	.mob-min-vw-45 {
		min-width: 45vw !important;
	}
	.mob-vw-46 {
		width: 46vw;
	}
	.mob-max-vw-46 {
		max-width: 46vw !important;
	}
	.mob-min-vw-46 {
		min-width: 46vw !important;
	}
	.mob-vw-47 {
		width: 47vw;
	}
	.mob-max-vw-47 {
		max-width: 47vw !important;
	}
	.mob-min-vw-47 {
		min-width: 47vw !important;
	}
	.mob-vw-48 {
		width: 48vw;
	}
	.mob-max-vw-48 {
		max-width: 48vw !important;
	}
	.mob-min-vw-48 {
		min-width: 48vw !important;
	}
	.mob-vw-49 {
		width: 49vw;
	}
	.mob-max-vw-49 {
		max-width: 49vw !important;
	}
	.mob-min-vw-49 {
		min-width: 49vw !important;
	}
	.mob-vw-50 {
		width: 50vw;
	}
	.mob-max-vw-50 {
		max-width: 50vw !important;
	}
	.mob-min-vw-50 {
		min-width: 50vw !important;
	}
	.mob-vw-51 {
		width: 51vw;
	}
	.mob-max-vw-51 {
		max-width: 51vw !important;
	}
	.mob-min-vw-51 {
		min-width: 51vw !important;
	}
	.mob-vw-52 {
		width: 52vw;
	}
	.mob-max-vw-52 {
		max-width: 52vw !important;
	}
	.mob-min-vw-52 {
		min-width: 52vw !important;
	}
	.mob-vw-53 {
		width: 53vw;
	}
	.mob-max-vw-53 {
		max-width: 53vw !important;
	}
	.mob-min-vw-53 {
		min-width: 53vw !important;
	}
	.mob-vw-54 {
		width: 54vw;
	}
	.mob-max-vw-54 {
		max-width: 54vw !important;
	}
	.mob-min-vw-54 {
		min-width: 54vw !important;
	}
	.mob-vw-55 {
		width: 55vw;
	}
	.mob-max-vw-55 {
		max-width: 55vw !important;
	}
	.mob-min-vw-55 {
		min-width: 55vw !important;
	}
	.mob-vw-56 {
		width: 56vw;
	}
	.mob-max-vw-56 {
		max-width: 56vw !important;
	}
	.mob-min-vw-56 {
		min-width: 56vw !important;
	}
	.mob-vw-57 {
		width: 57vw;
	}
	.mob-max-vw-57 {
		max-width: 57vw !important;
	}
	.mob-min-vw-57 {
		min-width: 57vw !important;
	}
	.mob-vw-58 {
		width: 58vw;
	}
	.mob-max-vw-58 {
		max-width: 58vw !important;
	}
	.mob-min-vw-58 {
		min-width: 58vw !important;
	}
	.mob-vw-59 {
		width: 59vw;
	}
	.mob-max-vw-59 {
		max-width: 59vw !important;
	}
	.mob-min-vw-59 {
		min-width: 59vw !important;
	}
	.mob-vw-60 {
		width: 60vw;
	}
	.mob-max-vw-60 {
		max-width: 60vw !important;
	}
	.mob-min-vw-60 {
		min-width: 60vw !important;
	}
	.mob-vw-61 {
		width: 61vw;
	}
	.mob-max-vw-61 {
		max-width: 61vw !important;
	}
	.mob-min-vw-61 {
		min-width: 61vw !important;
	}
	.mob-vw-62 {
		width: 62vw;
	}
	.mob-max-vw-62 {
		max-width: 62vw !important;
	}
	.mob-min-vw-62 {
		min-width: 62vw !important;
	}
	.mob-vw-63 {
		width: 63vw;
	}
	.mob-max-vw-63 {
		max-width: 63vw !important;
	}
	.mob-min-vw-63 {
		min-width: 63vw !important;
	}
	.mob-vw-64 {
		width: 64vw;
	}
	.mob-max-vw-64 {
		max-width: 64vw !important;
	}
	.mob-min-vw-64 {
		min-width: 64vw !important;
	}
	.mob-vw-65 {
		width: 65vw;
	}
	.mob-max-vw-65 {
		max-width: 65vw !important;
	}
	.mob-min-vw-65 {
		min-width: 65vw !important;
	}
	.mob-vw-66 {
		width: 66vw;
	}
	.mob-max-vw-66 {
		max-width: 66vw !important;
	}
	.mob-min-vw-66 {
		min-width: 66vw !important;
	}
	.mob-vw-67 {
		width: 67vw;
	}
	.mob-max-vw-67 {
		max-width: 67vw !important;
	}
	.mob-min-vw-67 {
		min-width: 67vw !important;
	}
	.mob-vw-68 {
		width: 68vw;
	}
	.mob-max-vw-68 {
		max-width: 68vw !important;
	}
	.mob-min-vw-68 {
		min-width: 68vw !important;
	}
	.mob-vw-69 {
		width: 69vw;
	}
	.mob-max-vw-69 {
		max-width: 69vw !important;
	}
	.mob-min-vw-69 {
		min-width: 69vw !important;
	}
	.mob-vw-70 {
		width: 70vw;
	}
	.mob-max-vw-70 {
		max-width: 70vw !important;
	}
	.mob-min-vw-70 {
		min-width: 70vw !important;
	}
	.mob-vw-71 {
		width: 71vw;
	}
	.mob-max-vw-71 {
		max-width: 71vw !important;
	}
	.mob-min-vw-71 {
		min-width: 71vw !important;
	}
	.mob-vw-72 {
		width: 72vw;
	}
	.mob-max-vw-72 {
		max-width: 72vw !important;
	}
	.mob-min-vw-72 {
		min-width: 72vw !important;
	}
	.mob-vw-73 {
		width: 73vw;
	}
	.mob-max-vw-73 {
		max-width: 73vw !important;
	}
	.mob-min-vw-73 {
		min-width: 73vw !important;
	}
	.mob-vw-74 {
		width: 74vw;
	}
	.mob-max-vw-74 {
		max-width: 74vw !important;
	}
	.mob-min-vw-74 {
		min-width: 74vw !important;
	}
	.mob-vw-75 {
		width: 75vw;
	}
	.mob-max-vw-75 {
		max-width: 75vw !important;
	}
	.mob-min-vw-75 {
		min-width: 75vw !important;
	}
	.mob-vw-76 {
		width: 76vw;
	}
	.mob-max-vw-76 {
		max-width: 76vw !important;
	}
	.mob-min-vw-76 {
		min-width: 76vw !important;
	}
	.mob-vw-77 {
		width: 77vw;
	}
	.mob-max-vw-77 {
		max-width: 77vw !important;
	}
	.mob-min-vw-77 {
		min-width: 77vw !important;
	}
	.mob-vw-78 {
		width: 78vw;
	}
	.mob-max-vw-78 {
		max-width: 78vw !important;
	}
	.mob-min-vw-78 {
		min-width: 78vw !important;
	}
	.mob-vw-79 {
		width: 79vw;
	}
	.mob-max-vw-79 {
		max-width: 79vw !important;
	}
	.mob-min-vw-79 {
		min-width: 79vw !important;
	}
	.mob-vw-80 {
		width: 80vw;
	}
	.mob-max-vw-80 {
		max-width: 80vw !important;
	}
	.mob-min-vw-80 {
		min-width: 80vw !important;
	}
	.mob-vw-81 {
		width: 81vw;
	}
	.mob-max-vw-81 {
		max-width: 81vw !important;
	}
	.mob-min-vw-81 {
		min-width: 81vw !important;
	}
	.mob-vw-82 {
		width: 82vw;
	}
	.mob-max-vw-82 {
		max-width: 82vw !important;
	}
	.mob-min-vw-82 {
		min-width: 82vw !important;
	}
	.mob-vw-83 {
		width: 83vw;
	}
	.mob-max-vw-83 {
		max-width: 83vw !important;
	}
	.mob-min-vw-83 {
		min-width: 83vw !important;
	}
	.mob-vw-84 {
		width: 84vw;
	}
	.mob-max-vw-84 {
		max-width: 84vw !important;
	}
	.mob-min-vw-84 {
		min-width: 84vw !important;
	}
	.mob-vw-85 {
		width: 85vw;
	}
	.mob-max-vw-85 {
		max-width: 85vw !important;
	}
	.mob-min-vw-85 {
		min-width: 85vw !important;
	}
	.mob-vw-86 {
		width: 86vw;
	}
	.mob-max-vw-86 {
		max-width: 86vw !important;
	}
	.mob-min-vw-86 {
		min-width: 86vw !important;
	}
	.mob-vw-87 {
		width: 87vw;
	}
	.mob-max-vw-87 {
		max-width: 87vw !important;
	}
	.mob-min-vw-87 {
		min-width: 87vw !important;
	}
	.mob-vw-88 {
		width: 88vw;
	}
	.mob-max-vw-88 {
		max-width: 88vw !important;
	}
	.mob-min-vw-88 {
		min-width: 88vw !important;
	}
	.mob-vw-89 {
		width: 89vw;
	}
	.mob-max-vw-89 {
		max-width: 89vw !important;
	}
	.mob-min-vw-89 {
		min-width: 89vw !important;
	}
	.mob-vw-90 {
		width: 90vw;
	}
	.mob-max-vw-90 {
		max-width: 90vw !important;
	}
	.mob-min-vw-90 {
		min-width: 90vw !important;
	}
	.mob-vw-91 {
		width: 91vw;
	}
	.mob-max-vw-91 {
		max-width: 91vw !important;
	}
	.mob-min-vw-91 {
		min-width: 91vw !important;
	}
	.mob-vw-92 {
		width: 92vw;
	}
	.mob-max-vw-92 {
		max-width: 92vw !important;
	}
	.mob-min-vw-92 {
		min-width: 92vw !important;
	}
	.mob-vw-93 {
		width: 93vw;
	}
	.mob-max-vw-93 {
		max-width: 93vw !important;
	}
	.mob-min-vw-93 {
		min-width: 93vw !important;
	}
	.mob-vw-94 {
		width: 94vw;
	}
	.mob-max-vw-94 {
		max-width: 94vw !important;
	}
	.mob-min-vw-94 {
		min-width: 94vw !important;
	}
	.mob-vw-95 {
		width: 95vw;
	}
	.mob-max-vw-95 {
		max-width: 95vw !important;
	}
	.mob-min-vw-95 {
		min-width: 95vw !important;
	}
	.mob-vw-96 {
		width: 96vw;
	}
	.mob-max-vw-96 {
		max-width: 96vw !important;
	}
	.mob-min-vw-96 {
		min-width: 96vw !important;
	}
	.mob-vw-97 {
		width: 97vw;
	}
	.mob-max-vw-97 {
		max-width: 97vw !important;
	}
	.mob-min-vw-97 {
		min-width: 97vw !important;
	}
	.mob-vw-98 {
		width: 98vw;
	}
	.mob-max-vw-98 {
		max-width: 98vw !important;
	}
	.mob-min-vw-98 {
		min-width: 98vw !important;
	}
	.mob-vw-99 {
		width: 99vw;
	}
	.mob-max-vw-99 {
		max-width: 99vw !important;
	}
	.mob-min-vw-99 {
		min-width: 99vw !important;
	}
	.mob-vw-100 {
		width: 100vw;
	}
	.mob-max-vw-100 {
		max-width: 100vw !important;
	}
	.mob-min-vw-100 {
		min-width: 100vw !important;
	}
}
.vh-1 {
	height: 1vh;
}
.max-vh-1 {
	max-height: 1vh;
}
.min-vh-1 {
	min-height: 1vh;
}
.vh-2 {
	height: 2vh;
}
.max-vh-2 {
	max-height: 2vh;
}
.min-vh-2 {
	min-height: 2vh;
}
.vh-3 {
	height: 3vh;
}
.max-vh-3 {
	max-height: 3vh;
}
.min-vh-3 {
	min-height: 3vh;
}
.vh-4 {
	height: 4vh;
}
.max-vh-4 {
	max-height: 4vh;
}
.min-vh-4 {
	min-height: 4vh;
}
.vh-5 {
	height: 5vh;
}
.max-vh-5 {
	max-height: 5vh;
}
.min-vh-5 {
	min-height: 5vh;
}
.vh-6 {
	height: 6vh;
}
.max-vh-6 {
	max-height: 6vh;
}
.min-vh-6 {
	min-height: 6vh;
}
.vh-7 {
	height: 7vh;
}
.max-vh-7 {
	max-height: 7vh;
}
.min-vh-7 {
	min-height: 7vh;
}
.vh-8 {
	height: 8vh;
}
.max-vh-8 {
	max-height: 8vh;
}
.min-vh-8 {
	min-height: 8vh;
}
.vh-9 {
	height: 9vh;
}
.max-vh-9 {
	max-height: 9vh;
}
.min-vh-9 {
	min-height: 9vh;
}
.vh-10 {
	height: 10vh;
}
.max-vh-10 {
	max-height: 10vh;
}
.min-vh-10 {
	min-height: 10vh;
}
.vh-11 {
	height: 11vh;
}
.max-vh-11 {
	max-height: 11vh;
}
.min-vh-11 {
	min-height: 11vh;
}
.vh-12 {
	height: 12vh;
}
.max-vh-12 {
	max-height: 12vh;
}
.min-vh-12 {
	min-height: 12vh;
}
.vh-13 {
	height: 13vh;
}
.max-vh-13 {
	max-height: 13vh;
}
.min-vh-13 {
	min-height: 13vh;
}
.vh-14 {
	height: 14vh;
}
.max-vh-14 {
	max-height: 14vh;
}
.min-vh-14 {
	min-height: 14vh;
}
.vh-15 {
	height: 15vh;
}
.max-vh-15 {
	max-height: 15vh;
}
.min-vh-15 {
	min-height: 15vh;
}
.vh-16 {
	height: 16vh;
}
.max-vh-16 {
	max-height: 16vh;
}
.min-vh-16 {
	min-height: 16vh;
}
.vh-17 {
	height: 17vh;
}
.max-vh-17 {
	max-height: 17vh;
}
.min-vh-17 {
	min-height: 17vh;
}
.vh-18 {
	height: 18vh;
}
.max-vh-18 {
	max-height: 18vh;
}
.min-vh-18 {
	min-height: 18vh;
}
.vh-19 {
	height: 19vh;
}
.max-vh-19 {
	max-height: 19vh;
}
.min-vh-19 {
	min-height: 19vh;
}
.vh-20 {
	height: 20vh;
}
.max-vh-20 {
	max-height: 20vh;
}
.min-vh-20 {
	min-height: 20vh;
}
.vh-21 {
	height: 21vh;
}
.max-vh-21 {
	max-height: 21vh;
}
.min-vh-21 {
	min-height: 21vh;
}
.vh-22 {
	height: 22vh;
}
.max-vh-22 {
	max-height: 22vh;
}
.min-vh-22 {
	min-height: 22vh;
}
.vh-23 {
	height: 23vh;
}
.max-vh-23 {
	max-height: 23vh;
}
.min-vh-23 {
	min-height: 23vh;
}
.vh-24 {
	height: 24vh;
}
.max-vh-24 {
	max-height: 24vh;
}
.min-vh-24 {
	min-height: 24vh;
}
.vh-25 {
	height: 25vh;
}
.max-vh-25 {
	max-height: 25vh;
}
.min-vh-25 {
	min-height: 25vh;
}
.vh-26 {
	height: 26vh;
}
.max-vh-26 {
	max-height: 26vh;
}
.min-vh-26 {
	min-height: 26vh;
}
.vh-27 {
	height: 27vh;
}
.max-vh-27 {
	max-height: 27vh;
}
.min-vh-27 {
	min-height: 27vh;
}
.vh-28 {
	height: 28vh;
}
.max-vh-28 {
	max-height: 28vh;
}
.min-vh-28 {
	min-height: 28vh;
}
.vh-29 {
	height: 29vh;
}
.max-vh-29 {
	max-height: 29vh;
}
.min-vh-29 {
	min-height: 29vh;
}
.vh-30 {
	height: 30vh;
}
.max-vh-30 {
	max-height: 30vh;
}
.min-vh-30 {
	min-height: 30vh;
}
.vh-31 {
	height: 31vh;
}
.max-vh-31 {
	max-height: 31vh;
}
.min-vh-31 {
	min-height: 31vh;
}
.vh-32 {
	height: 32vh;
}
.max-vh-32 {
	max-height: 32vh;
}
.min-vh-32 {
	min-height: 32vh;
}
.vh-33 {
	height: 33vh;
}
.max-vh-33 {
	max-height: 33vh;
}
.min-vh-33 {
	min-height: 33vh;
}
.vh-34 {
	height: 34vh;
}
.max-vh-34 {
	max-height: 34vh;
}
.min-vh-34 {
	min-height: 34vh;
}
.vh-35 {
	height: 35vh;
}
.max-vh-35 {
	max-height: 35vh;
}
.min-vh-35 {
	min-height: 35vh;
}
.vh-36 {
	height: 36vh;
}
.max-vh-36 {
	max-height: 36vh;
}
.min-vh-36 {
	min-height: 36vh;
}
.vh-37 {
	height: 37vh;
}
.max-vh-37 {
	max-height: 37vh;
}
.min-vh-37 {
	min-height: 37vh;
}
.vh-38 {
	height: 38vh;
}
.max-vh-38 {
	max-height: 38vh;
}
.min-vh-38 {
	min-height: 38vh;
}
.vh-39 {
	height: 39vh;
}
.max-vh-39 {
	max-height: 39vh;
}
.min-vh-39 {
	min-height: 39vh;
}
.vh-40 {
	height: 40vh;
}
.max-vh-40 {
	max-height: 40vh;
}
.min-vh-40 {
	min-height: 40vh;
}
.vh-41 {
	height: 41vh;
}
.max-vh-41 {
	max-height: 41vh;
}
.min-vh-41 {
	min-height: 41vh;
}
.vh-42 {
	height: 42vh;
}
.max-vh-42 {
	max-height: 42vh;
}
.min-vh-42 {
	min-height: 42vh;
}
.vh-43 {
	height: 43vh;
}
.max-vh-43 {
	max-height: 43vh;
}
.min-vh-43 {
	min-height: 43vh;
}
.vh-44 {
	height: 44vh;
}
.max-vh-44 {
	max-height: 44vh;
}
.min-vh-44 {
	min-height: 44vh;
}
.vh-45 {
	height: 45vh;
}
.max-vh-45 {
	max-height: 45vh;
}
.min-vh-45 {
	min-height: 45vh;
}
.vh-46 {
	height: 46vh;
}
.max-vh-46 {
	max-height: 46vh;
}
.min-vh-46 {
	min-height: 46vh;
}
.vh-47 {
	height: 47vh;
}
.max-vh-47 {
	max-height: 47vh;
}
.min-vh-47 {
	min-height: 47vh;
}
.vh-48 {
	height: 48vh;
}
.max-vh-48 {
	max-height: 48vh;
}
.min-vh-48 {
	min-height: 48vh;
}
.vh-49 {
	height: 49vh;
}
.max-vh-49 {
	max-height: 49vh;
}
.min-vh-49 {
	min-height: 49vh;
}
.vh-50 {
	height: 50vh;
}
.max-vh-50 {
	max-height: 50vh;
}
.min-vh-50 {
	min-height: 50vh;
}
.vh-51 {
	height: 51vh;
}
.max-vh-51 {
	max-height: 51vh;
}
.min-vh-51 {
	min-height: 51vh;
}
.vh-52 {
	height: 52vh;
}
.max-vh-52 {
	max-height: 52vh;
}
.min-vh-52 {
	min-height: 52vh;
}
.vh-53 {
	height: 53vh;
}
.max-vh-53 {
	max-height: 53vh;
}
.min-vh-53 {
	min-height: 53vh;
}
.vh-54 {
	height: 54vh;
}
.max-vh-54 {
	max-height: 54vh;
}
.min-vh-54 {
	min-height: 54vh;
}
.vh-55 {
	height: 55vh;
}
.max-vh-55 {
	max-height: 55vh;
}
.min-vh-55 {
	min-height: 55vh;
}
.vh-56 {
	height: 56vh;
}
.max-vh-56 {
	max-height: 56vh;
}
.min-vh-56 {
	min-height: 56vh;
}
.vh-57 {
	height: 57vh;
}
.max-vh-57 {
	max-height: 57vh;
}
.min-vh-57 {
	min-height: 57vh;
}
.vh-58 {
	height: 58vh;
}
.max-vh-58 {
	max-height: 58vh;
}
.min-vh-58 {
	min-height: 58vh;
}
.vh-59 {
	height: 59vh;
}
.max-vh-59 {
	max-height: 59vh;
}
.min-vh-59 {
	min-height: 59vh;
}
.vh-60 {
	height: 60vh;
}
.max-vh-60 {
	max-height: 60vh;
}
.min-vh-60 {
	min-height: 60vh;
}
.vh-61 {
	height: 61vh;
}
.max-vh-61 {
	max-height: 61vh;
}
.min-vh-61 {
	min-height: 61vh;
}
.vh-62 {
	height: 62vh;
}
.max-vh-62 {
	max-height: 62vh;
}
.min-vh-62 {
	min-height: 62vh;
}
.vh-63 {
	height: 63vh;
}
.max-vh-63 {
	max-height: 63vh;
}
.min-vh-63 {
	min-height: 63vh;
}
.vh-64 {
	height: 64vh;
}
.max-vh-64 {
	max-height: 64vh;
}
.min-vh-64 {
	min-height: 64vh;
}
.vh-65 {
	height: 65vh;
}
.max-vh-65 {
	max-height: 65vh;
}
.min-vh-65 {
	min-height: 65vh;
}
.vh-66 {
	height: 66vh;
}
.max-vh-66 {
	max-height: 66vh;
}
.min-vh-66 {
	min-height: 66vh;
}
.vh-67 {
	height: 67vh;
}
.max-vh-67 {
	max-height: 67vh;
}
.min-vh-67 {
	min-height: 67vh;
}
.vh-68 {
	height: 68vh;
}
.max-vh-68 {
	max-height: 68vh;
}
.min-vh-68 {
	min-height: 68vh;
}
.vh-69 {
	height: 69vh;
}
.max-vh-69 {
	max-height: 69vh;
}
.min-vh-69 {
	min-height: 69vh;
}
.vh-70 {
	height: 70vh;
}
.max-vh-70 {
	max-height: 70vh;
}
.min-vh-70 {
	min-height: 70vh;
}
.vh-71 {
	height: 71vh;
}
.max-vh-71 {
	max-height: 71vh;
}
.min-vh-71 {
	min-height: 71vh;
}
.vh-72 {
	height: 72vh;
}
.max-vh-72 {
	max-height: 72vh;
}
.min-vh-72 {
	min-height: 72vh;
}
.vh-73 {
	height: 73vh;
}
.max-vh-73 {
	max-height: 73vh;
}
.min-vh-73 {
	min-height: 73vh;
}
.vh-74 {
	height: 74vh;
}
.max-vh-74 {
	max-height: 74vh;
}
.min-vh-74 {
	min-height: 74vh;
}
.vh-75 {
	height: 75vh;
}
.max-vh-75 {
	max-height: 75vh;
}
.min-vh-75 {
	min-height: 75vh;
}
.vh-76 {
	height: 76vh;
}
.max-vh-76 {
	max-height: 76vh;
}
.min-vh-76 {
	min-height: 76vh;
}
.vh-77 {
	height: 77vh;
}
.max-vh-77 {
	max-height: 77vh;
}
.min-vh-77 {
	min-height: 77vh;
}
.vh-78 {
	height: 78vh;
}
.max-vh-78 {
	max-height: 78vh;
}
.min-vh-78 {
	min-height: 78vh;
}
.vh-79 {
	height: 79vh;
}
.max-vh-79 {
	max-height: 79vh;
}
.min-vh-79 {
	min-height: 79vh;
}
.vh-80 {
	height: 80vh;
}
.max-vh-80 {
	max-height: 80vh;
}
.min-vh-80 {
	min-height: 80vh;
}
.vh-81 {
	height: 81vh;
}
.max-vh-81 {
	max-height: 81vh;
}
.min-vh-81 {
	min-height: 81vh;
}
.vh-82 {
	height: 82vh;
}
.max-vh-82 {
	max-height: 82vh;
}
.min-vh-82 {
	min-height: 82vh;
}
.vh-83 {
	height: 83vh;
}
.max-vh-83 {
	max-height: 83vh;
}
.min-vh-83 {
	min-height: 83vh;
}
.vh-84 {
	height: 84vh;
}
.max-vh-84 {
	max-height: 84vh;
}
.min-vh-84 {
	min-height: 84vh;
}
.vh-85 {
	height: 85vh;
}
.max-vh-85 {
	max-height: 85vh;
}
.min-vh-85 {
	min-height: 85vh;
}
.vh-86 {
	height: 86vh;
}
.max-vh-86 {
	max-height: 86vh;
}
.min-vh-86 {
	min-height: 86vh;
}
.vh-87 {
	height: 87vh;
}
.max-vh-87 {
	max-height: 87vh;
}
.min-vh-87 {
	min-height: 87vh;
}
.vh-88 {
	height: 88vh;
}
.max-vh-88 {
	max-height: 88vh;
}
.min-vh-88 {
	min-height: 88vh;
}
.vh-89 {
	height: 89vh;
}
.max-vh-89 {
	max-height: 89vh;
}
.min-vh-89 {
	min-height: 89vh;
}
.vh-90 {
	height: 90vh;
}
.max-vh-90 {
	max-height: 90vh;
}
.min-vh-90 {
	min-height: 90vh;
}
.vh-91 {
	height: 91vh;
}
.max-vh-91 {
	max-height: 91vh;
}
.min-vh-91 {
	min-height: 91vh;
}
.vh-92 {
	height: 92vh;
}
.max-vh-92 {
	max-height: 92vh;
}
.min-vh-92 {
	min-height: 92vh;
}
.vh-93 {
	height: 93vh;
}
.max-vh-93 {
	max-height: 93vh;
}
.min-vh-93 {
	min-height: 93vh;
}
.vh-94 {
	height: 94vh;
}
.max-vh-94 {
	max-height: 94vh;
}
.min-vh-94 {
	min-height: 94vh;
}
.vh-95 {
	height: 95vh;
}
.max-vh-95 {
	max-height: 95vh;
}
.min-vh-95 {
	min-height: 95vh;
}
.vh-96 {
	height: 96vh;
}
.max-vh-96 {
	max-height: 96vh;
}
.min-vh-96 {
	min-height: 96vh;
}
.vh-97 {
	height: 97vh;
}
.max-vh-97 {
	max-height: 97vh;
}
.min-vh-97 {
	min-height: 97vh;
}
.vh-98 {
	height: 98vh;
}
.max-vh-98 {
	max-height: 98vh;
}
.min-vh-98 {
	min-height: 98vh;
}
.vh-99 {
	height: 99vh;
}
.max-vh-99 {
	max-height: 99vh;
}
.min-vh-99 {
	min-height: 99vh;
}
.vh-100 {
	height: 100vh;
}
.max-vh-100 {
	max-height: 100vh;
}
.min-vh-100 {
	min-height: 100vh;
}
@media screen and (max-width: 994px) {
	.mob-vh-1 {
		height: 1vh;
	}
	.mob-max-vh-1 {
		max-height: 1vh !important;
	}
	.mob-min-vh-1 {
		min-height: 1vh !important;
	}
	.mob-vh-2 {
		height: 2vh;
	}
	.mob-max-vh-2 {
		max-height: 2vh !important;
	}
	.mob-min-vh-2 {
		min-height: 2vh !important;
	}
	.mob-vh-3 {
		height: 3vh;
	}
	.mob-max-vh-3 {
		max-height: 3vh !important;
	}
	.mob-min-vh-3 {
		min-height: 3vh !important;
	}
	.mob-vh-4 {
		height: 4vh;
	}
	.mob-max-vh-4 {
		max-height: 4vh !important;
	}
	.mob-min-vh-4 {
		min-height: 4vh !important;
	}
	.mob-vh-5 {
		height: 5vh;
	}
	.mob-max-vh-5 {
		max-height: 5vh !important;
	}
	.mob-min-vh-5 {
		min-height: 5vh !important;
	}
	.mob-vh-6 {
		height: 6vh;
	}
	.mob-max-vh-6 {
		max-height: 6vh !important;
	}
	.mob-min-vh-6 {
		min-height: 6vh !important;
	}
	.mob-vh-7 {
		height: 7vh;
	}
	.mob-max-vh-7 {
		max-height: 7vh !important;
	}
	.mob-min-vh-7 {
		min-height: 7vh !important;
	}
	.mob-vh-8 {
		height: 8vh;
	}
	.mob-max-vh-8 {
		max-height: 8vh !important;
	}
	.mob-min-vh-8 {
		min-height: 8vh !important;
	}
	.mob-vh-9 {
		height: 9vh;
	}
	.mob-max-vh-9 {
		max-height: 9vh !important;
	}
	.mob-min-vh-9 {
		min-height: 9vh !important;
	}
	.mob-vh-10 {
		height: 10vh;
	}
	.mob-max-vh-10 {
		max-height: 10vh !important;
	}
	.mob-min-vh-10 {
		min-height: 10vh !important;
	}
	.mob-vh-11 {
		height: 11vh;
	}
	.mob-max-vh-11 {
		max-height: 11vh !important;
	}
	.mob-min-vh-11 {
		min-height: 11vh !important;
	}
	.mob-vh-12 {
		height: 12vh;
	}
	.mob-max-vh-12 {
		max-height: 12vh !important;
	}
	.mob-min-vh-12 {
		min-height: 12vh !important;
	}
	.mob-vh-13 {
		height: 13vh;
	}
	.mob-max-vh-13 {
		max-height: 13vh !important;
	}
	.mob-min-vh-13 {
		min-height: 13vh !important;
	}
	.mob-vh-14 {
		height: 14vh;
	}
	.mob-max-vh-14 {
		max-height: 14vh !important;
	}
	.mob-min-vh-14 {
		min-height: 14vh !important;
	}
	.mob-vh-15 {
		height: 15vh;
	}
	.mob-max-vh-15 {
		max-height: 15vh !important;
	}
	.mob-min-vh-15 {
		min-height: 15vh !important;
	}
	.mob-vh-16 {
		height: 16vh;
	}
	.mob-max-vh-16 {
		max-height: 16vh !important;
	}
	.mob-min-vh-16 {
		min-height: 16vh !important;
	}
	.mob-vh-17 {
		height: 17vh;
	}
	.mob-max-vh-17 {
		max-height: 17vh !important;
	}
	.mob-min-vh-17 {
		min-height: 17vh !important;
	}
	.mob-vh-18 {
		height: 18vh;
	}
	.mob-max-vh-18 {
		max-height: 18vh !important;
	}
	.mob-min-vh-18 {
		min-height: 18vh !important;
	}
	.mob-vh-19 {
		height: 19vh;
	}
	.mob-max-vh-19 {
		max-height: 19vh !important;
	}
	.mob-min-vh-19 {
		min-height: 19vh !important;
	}
	.mob-vh-20 {
		height: 20vh;
	}
	.mob-max-vh-20 {
		max-height: 20vh !important;
	}
	.mob-min-vh-20 {
		min-height: 20vh !important;
	}
	.mob-vh-21 {
		height: 21vh;
	}
	.mob-max-vh-21 {
		max-height: 21vh !important;
	}
	.mob-min-vh-21 {
		min-height: 21vh !important;
	}
	.mob-vh-22 {
		height: 22vh;
	}
	.mob-max-vh-22 {
		max-height: 22vh !important;
	}
	.mob-min-vh-22 {
		min-height: 22vh !important;
	}
	.mob-vh-23 {
		height: 23vh;
	}
	.mob-max-vh-23 {
		max-height: 23vh !important;
	}
	.mob-min-vh-23 {
		min-height: 23vh !important;
	}
	.mob-vh-24 {
		height: 24vh;
	}
	.mob-max-vh-24 {
		max-height: 24vh !important;
	}
	.mob-min-vh-24 {
		min-height: 24vh !important;
	}
	.mob-vh-25 {
		height: 25vh;
	}
	.mob-max-vh-25 {
		max-height: 25vh !important;
	}
	.mob-min-vh-25 {
		min-height: 25vh !important;
	}
	.mob-vh-26 {
		height: 26vh;
	}
	.mob-max-vh-26 {
		max-height: 26vh !important;
	}
	.mob-min-vh-26 {
		min-height: 26vh !important;
	}
	.mob-vh-27 {
		height: 27vh;
	}
	.mob-max-vh-27 {
		max-height: 27vh !important;
	}
	.mob-min-vh-27 {
		min-height: 27vh !important;
	}
	.mob-vh-28 {
		height: 28vh;
	}
	.mob-max-vh-28 {
		max-height: 28vh !important;
	}
	.mob-min-vh-28 {
		min-height: 28vh !important;
	}
	.mob-vh-29 {
		height: 29vh;
	}
	.mob-max-vh-29 {
		max-height: 29vh !important;
	}
	.mob-min-vh-29 {
		min-height: 29vh !important;
	}
	.mob-vh-30 {
		height: 30vh;
	}
	.mob-max-vh-30 {
		max-height: 30vh !important;
	}
	.mob-min-vh-30 {
		min-height: 30vh !important;
	}
	.mob-vh-31 {
		height: 31vh;
	}
	.mob-max-vh-31 {
		max-height: 31vh !important;
	}
	.mob-min-vh-31 {
		min-height: 31vh !important;
	}
	.mob-vh-32 {
		height: 32vh;
	}
	.mob-max-vh-32 {
		max-height: 32vh !important;
	}
	.mob-min-vh-32 {
		min-height: 32vh !important;
	}
	.mob-vh-33 {
		height: 33vh;
	}
	.mob-max-vh-33 {
		max-height: 33vh !important;
	}
	.mob-min-vh-33 {
		min-height: 33vh !important;
	}
	.mob-vh-34 {
		height: 34vh;
	}
	.mob-max-vh-34 {
		max-height: 34vh !important;
	}
	.mob-min-vh-34 {
		min-height: 34vh !important;
	}
	.mob-vh-35 {
		height: 35vh;
	}
	.mob-max-vh-35 {
		max-height: 35vh !important;
	}
	.mob-min-vh-35 {
		min-height: 35vh !important;
	}
	.mob-vh-36 {
		height: 36vh;
	}
	.mob-max-vh-36 {
		max-height: 36vh !important;
	}
	.mob-min-vh-36 {
		min-height: 36vh !important;
	}
	.mob-vh-37 {
		height: 37vh;
	}
	.mob-max-vh-37 {
		max-height: 37vh !important;
	}
	.mob-min-vh-37 {
		min-height: 37vh !important;
	}
	.mob-vh-38 {
		height: 38vh;
	}
	.mob-max-vh-38 {
		max-height: 38vh !important;
	}
	.mob-min-vh-38 {
		min-height: 38vh !important;
	}
	.mob-vh-39 {
		height: 39vh;
	}
	.mob-max-vh-39 {
		max-height: 39vh !important;
	}
	.mob-min-vh-39 {
		min-height: 39vh !important;
	}
	.mob-vh-40 {
		height: 40vh;
	}
	.mob-max-vh-40 {
		max-height: 40vh !important;
	}
	.mob-min-vh-40 {
		min-height: 40vh !important;
	}
	.mob-vh-41 {
		height: 41vh;
	}
	.mob-max-vh-41 {
		max-height: 41vh !important;
	}
	.mob-min-vh-41 {
		min-height: 41vh !important;
	}
	.mob-vh-42 {
		height: 42vh;
	}
	.mob-max-vh-42 {
		max-height: 42vh !important;
	}
	.mob-min-vh-42 {
		min-height: 42vh !important;
	}
	.mob-vh-43 {
		height: 43vh;
	}
	.mob-max-vh-43 {
		max-height: 43vh !important;
	}
	.mob-min-vh-43 {
		min-height: 43vh !important;
	}
	.mob-vh-44 {
		height: 44vh;
	}
	.mob-max-vh-44 {
		max-height: 44vh !important;
	}
	.mob-min-vh-44 {
		min-height: 44vh !important;
	}
	.mob-vh-45 {
		height: 45vh;
	}
	.mob-max-vh-45 {
		max-height: 45vh !important;
	}
	.mob-min-vh-45 {
		min-height: 45vh !important;
	}
	.mob-vh-46 {
		height: 46vh;
	}
	.mob-max-vh-46 {
		max-height: 46vh !important;
	}
	.mob-min-vh-46 {
		min-height: 46vh !important;
	}
	.mob-vh-47 {
		height: 47vh;
	}
	.mob-max-vh-47 {
		max-height: 47vh !important;
	}
	.mob-min-vh-47 {
		min-height: 47vh !important;
	}
	.mob-vh-48 {
		height: 48vh;
	}
	.mob-max-vh-48 {
		max-height: 48vh !important;
	}
	.mob-min-vh-48 {
		min-height: 48vh !important;
	}
	.mob-vh-49 {
		height: 49vh;
	}
	.mob-max-vh-49 {
		max-height: 49vh !important;
	}
	.mob-min-vh-49 {
		min-height: 49vh !important;
	}
	.mob-vh-50 {
		height: 50vh;
	}
	.mob-max-vh-50 {
		max-height: 50vh !important;
	}
	.mob-min-vh-50 {
		min-height: 50vh !important;
	}
	.mob-vh-51 {
		height: 51vh;
	}
	.mob-max-vh-51 {
		max-height: 51vh !important;
	}
	.mob-min-vh-51 {
		min-height: 51vh !important;
	}
	.mob-vh-52 {
		height: 52vh;
	}
	.mob-max-vh-52 {
		max-height: 52vh !important;
	}
	.mob-min-vh-52 {
		min-height: 52vh !important;
	}
	.mob-vh-53 {
		height: 53vh;
	}
	.mob-max-vh-53 {
		max-height: 53vh !important;
	}
	.mob-min-vh-53 {
		min-height: 53vh !important;
	}
	.mob-vh-54 {
		height: 54vh;
	}
	.mob-max-vh-54 {
		max-height: 54vh !important;
	}
	.mob-min-vh-54 {
		min-height: 54vh !important;
	}
	.mob-vh-55 {
		height: 55vh;
	}
	.mob-max-vh-55 {
		max-height: 55vh !important;
	}
	.mob-min-vh-55 {
		min-height: 55vh !important;
	}
	.mob-vh-56 {
		height: 56vh;
	}
	.mob-max-vh-56 {
		max-height: 56vh !important;
	}
	.mob-min-vh-56 {
		min-height: 56vh !important;
	}
	.mob-vh-57 {
		height: 57vh;
	}
	.mob-max-vh-57 {
		max-height: 57vh !important;
	}
	.mob-min-vh-57 {
		min-height: 57vh !important;
	}
	.mob-vh-58 {
		height: 58vh;
	}
	.mob-max-vh-58 {
		max-height: 58vh !important;
	}
	.mob-min-vh-58 {
		min-height: 58vh !important;
	}
	.mob-vh-59 {
		height: 59vh;
	}
	.mob-max-vh-59 {
		max-height: 59vh !important;
	}
	.mob-min-vh-59 {
		min-height: 59vh !important;
	}
	.mob-vh-60 {
		height: 60vh;
	}
	.mob-max-vh-60 {
		max-height: 60vh !important;
	}
	.mob-min-vh-60 {
		min-height: 60vh !important;
	}
	.mob-vh-61 {
		height: 61vh;
	}
	.mob-max-vh-61 {
		max-height: 61vh !important;
	}
	.mob-min-vh-61 {
		min-height: 61vh !important;
	}
	.mob-vh-62 {
		height: 62vh;
	}
	.mob-max-vh-62 {
		max-height: 62vh !important;
	}
	.mob-min-vh-62 {
		min-height: 62vh !important;
	}
	.mob-vh-63 {
		height: 63vh;
	}
	.mob-max-vh-63 {
		max-height: 63vh !important;
	}
	.mob-min-vh-63 {
		min-height: 63vh !important;
	}
	.mob-vh-64 {
		height: 64vh;
	}
	.mob-max-vh-64 {
		max-height: 64vh !important;
	}
	.mob-min-vh-64 {
		min-height: 64vh !important;
	}
	.mob-vh-65 {
		height: 65vh;
	}
	.mob-max-vh-65 {
		max-height: 65vh !important;
	}
	.mob-min-vh-65 {
		min-height: 65vh !important;
	}
	.mob-vh-66 {
		height: 66vh;
	}
	.mob-max-vh-66 {
		max-height: 66vh !important;
	}
	.mob-min-vh-66 {
		min-height: 66vh !important;
	}
	.mob-vh-67 {
		height: 67vh;
	}
	.mob-max-vh-67 {
		max-height: 67vh !important;
	}
	.mob-min-vh-67 {
		min-height: 67vh !important;
	}
	.mob-vh-68 {
		height: 68vh;
	}
	.mob-max-vh-68 {
		max-height: 68vh !important;
	}
	.mob-min-vh-68 {
		min-height: 68vh !important;
	}
	.mob-vh-69 {
		height: 69vh;
	}
	.mob-max-vh-69 {
		max-height: 69vh !important;
	}
	.mob-min-vh-69 {
		min-height: 69vh !important;
	}
	.mob-vh-70 {
		height: 70vh;
	}
	.mob-max-vh-70 {
		max-height: 70vh !important;
	}
	.mob-min-vh-70 {
		min-height: 70vh !important;
	}
	.mob-vh-71 {
		height: 71vh;
	}
	.mob-max-vh-71 {
		max-height: 71vh !important;
	}
	.mob-min-vh-71 {
		min-height: 71vh !important;
	}
	.mob-vh-72 {
		height: 72vh;
	}
	.mob-max-vh-72 {
		max-height: 72vh !important;
	}
	.mob-min-vh-72 {
		min-height: 72vh !important;
	}
	.mob-vh-73 {
		height: 73vh;
	}
	.mob-max-vh-73 {
		max-height: 73vh !important;
	}
	.mob-min-vh-73 {
		min-height: 73vh !important;
	}
	.mob-vh-74 {
		height: 74vh;
	}
	.mob-max-vh-74 {
		max-height: 74vh !important;
	}
	.mob-min-vh-74 {
		min-height: 74vh !important;
	}
	.mob-vh-75 {
		height: 75vh;
	}
	.mob-max-vh-75 {
		max-height: 75vh !important;
	}
	.mob-min-vh-75 {
		min-height: 75vh !important;
	}
	.mob-vh-76 {
		height: 76vh;
	}
	.mob-max-vh-76 {
		max-height: 76vh !important;
	}
	.mob-min-vh-76 {
		min-height: 76vh !important;
	}
	.mob-vh-77 {
		height: 77vh;
	}
	.mob-max-vh-77 {
		max-height: 77vh !important;
	}
	.mob-min-vh-77 {
		min-height: 77vh !important;
	}
	.mob-vh-78 {
		height: 78vh;
	}
	.mob-max-vh-78 {
		max-height: 78vh !important;
	}
	.mob-min-vh-78 {
		min-height: 78vh !important;
	}
	.mob-vh-79 {
		height: 79vh;
	}
	.mob-max-vh-79 {
		max-height: 79vh !important;
	}
	.mob-min-vh-79 {
		min-height: 79vh !important;
	}
	.mob-vh-80 {
		height: 80vh;
	}
	.mob-max-vh-80 {
		max-height: 80vh !important;
	}
	.mob-min-vh-80 {
		min-height: 80vh !important;
	}
	.mob-vh-81 {
		height: 81vh;
	}
	.mob-max-vh-81 {
		max-height: 81vh !important;
	}
	.mob-min-vh-81 {
		min-height: 81vh !important;
	}
	.mob-vh-82 {
		height: 82vh;
	}
	.mob-max-vh-82 {
		max-height: 82vh !important;
	}
	.mob-min-vh-82 {
		min-height: 82vh !important;
	}
	.mob-vh-83 {
		height: 83vh;
	}
	.mob-max-vh-83 {
		max-height: 83vh !important;
	}
	.mob-min-vh-83 {
		min-height: 83vh !important;
	}
	.mob-vh-84 {
		height: 84vh;
	}
	.mob-max-vh-84 {
		max-height: 84vh !important;
	}
	.mob-min-vh-84 {
		min-height: 84vh !important;
	}
	.mob-vh-85 {
		height: 85vh;
	}
	.mob-max-vh-85 {
		max-height: 85vh !important;
	}
	.mob-min-vh-85 {
		min-height: 85vh !important;
	}
	.mob-vh-86 {
		height: 86vh;
	}
	.mob-max-vh-86 {
		max-height: 86vh !important;
	}
	.mob-min-vh-86 {
		min-height: 86vh !important;
	}
	.mob-vh-87 {
		height: 87vh;
	}
	.mob-max-vh-87 {
		max-height: 87vh !important;
	}
	.mob-min-vh-87 {
		min-height: 87vh !important;
	}
	.mob-vh-88 {
		height: 88vh;
	}
	.mob-max-vh-88 {
		max-height: 88vh !important;
	}
	.mob-min-vh-88 {
		min-height: 88vh !important;
	}
	.mob-vh-89 {
		height: 89vh;
	}
	.mob-max-vh-89 {
		max-height: 89vh !important;
	}
	.mob-min-vh-89 {
		min-height: 89vh !important;
	}
	.mob-vh-90 {
		height: 90vh;
	}
	.mob-max-vh-90 {
		max-height: 90vh !important;
	}
	.mob-min-vh-90 {
		min-height: 90vh !important;
	}
	.mob-vh-91 {
		height: 91vh;
	}
	.mob-max-vh-91 {
		max-height: 91vh !important;
	}
	.mob-min-vh-91 {
		min-height: 91vh !important;
	}
	.mob-vh-92 {
		height: 92vh;
	}
	.mob-max-vh-92 {
		max-height: 92vh !important;
	}
	.mob-min-vh-92 {
		min-height: 92vh !important;
	}
	.mob-vh-93 {
		height: 93vh;
	}
	.mob-max-vh-93 {
		max-height: 93vh !important;
	}
	.mob-min-vh-93 {
		min-height: 93vh !important;
	}
	.mob-vh-94 {
		height: 94vh;
	}
	.mob-max-vh-94 {
		max-height: 94vh !important;
	}
	.mob-min-vh-94 {
		min-height: 94vh !important;
	}
	.mob-vh-95 {
		height: 95vh;
	}
	.mob-max-vh-95 {
		max-height: 95vh !important;
	}
	.mob-min-vh-95 {
		min-height: 95vh !important;
	}
	.mob-vh-96 {
		height: 96vh;
	}
	.mob-max-vh-96 {
		max-height: 96vh !important;
	}
	.mob-min-vh-96 {
		min-height: 96vh !important;
	}
	.mob-vh-97 {
		height: 97vh;
	}
	.mob-max-vh-97 {
		max-height: 97vh !important;
	}
	.mob-min-vh-97 {
		min-height: 97vh !important;
	}
	.mob-vh-98 {
		height: 98vh;
	}
	.mob-max-vh-98 {
		max-height: 98vh !important;
	}
	.mob-min-vh-98 {
		min-height: 98vh !important;
	}
	.mob-vh-99 {
		height: 99vh;
	}
	.mob-max-vh-99 {
		max-height: 99vh !important;
	}
	.mob-min-vh-99 {
		min-height: 99vh !important;
	}
	.mob-vh-100 {
		height: 100vh;
	}
	.mob-max-vh-100 {
		max-height: 100vh !important;
	}
	.mob-min-vh-100 {
		min-height: 100vh !important;
	}
}
body {
	min-height: 100vh;
}
.bold {
	font-weight: 700;
}
.mont-bold {
	font-weight: 600;
}
.regular,
.dkpdf-button,
.regular p,
.dkpdf-button p {
	font-weight: 400;
}
.let-sp-reg,
#menu-top-nav .menu-item a {
	letter-spacing: 0.10938rem;
}
.ln-height-reset {
	line-height: 1;
}
.sgl-ln-height,
.sgl-ln-height p {
	line-height: 1.5;
}
.dbl-ln-height {
	line-height: 1.7;
}
.icon-2xl {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 1rem;
}
.icon-2xl.small-card-arrow-push {
	right: 2rem;
}
.scrolling {
	overflow: scroll;
}
.box {
	height: 3rem;
	width: 3rem;
}
.small-box {
	height: 4.6875rem;
	width: 4.6875rem;
}
.large-box {
	height: 21.875rem;
	width: 21.875rem;
}
.ghost {
	visibility: hidden;
}
.no-outline {
	outline: none;
}
.almost-here {
	opacity: 75%;
}
.half-height {
	max-height: 100%;
	height: 50%;
}
.min-ht-100vh {
	min-height: 100vh;
}
.max-ht-100vh {
	max-height: 100vh;
}
.max-w-100vw {
	max-width: 100vw;
}
.flex-grow-shrink {
	flex: 1 1 auto;
}
.flex-grow-noshrink {
	flex: 1 0 auto;
}
.flex-nogrow-noshrink {
	flex: 0 0 auto;
}
.flex-nogrow {
	flex-grow: 0;
}
.flex-grow-full {
	flex-grow: 1;
}
.flex-noshrink {
	flex-shrink: 0;
}
.flex-shrink-full {
	flex-shrink: 1;
}
.flex-two-column {
	flex-basis: 100%;
}
@media (min-width: 992px) {
	.flex-two-column {
		flex-basis: 49.25%;
	}
	.flex-two-column.increase-gap {
		flex-basis: 47%;
	}
}
.flex-three-column {
	flex-basis: 100%;
}
@media (min-width: 992px) {
	.flex-three-column {
		flex-basis: 32.25%;
	}
}
@media (max-width: 991px) {
	.mob-bas-75 {
		flex-basis: 75%;
	}
}
@media (min-width: 992px) {
	.desktop-hide {
		display: none;
	}
}
.max-w-90 {
	max-width: 90%;
}
.max-w-75 {
	max-width: 100%;
}
@media (min-width: 992px) {
	.max-w-75 {
		max-width: 74%;
	}
}
.max-w-65 {
	max-width: 65%;
}
.max-w-50 {
	max-width: 49%;
}
.max-w-33 {
	max-width: 28%;
}
.max-w-25 {
	max-width: 25%;
}
@media (min-width: 992px) {
	.max-w-20 {
		max-width: 20%;
	}
}
.max-w-15 {
	max-width: 15%;
}
.max-vh-75 {
	max-height: 75vh;
}
.quarter-width {
	max-width: 25%;
}
.half-width {
	max-width: 50%;
}
.threeQuartersWidth {
	max-width: 100%;
}
@media (min-width: 992px) {
	.threeQuartersWidth {
		max-width: 75%;
	}
}
.mostlyFullWidth {
	max-width: 100%;
}
@media (min-width: 992px) {
	.mostlyFullWidth {
		max-width: 90%;
	}
}
.mostlyFullHeight {
	max-height: 100%;
}
@media (min-width: 992px) {
	.mostlyFullHeight {
		max-height: 90%;
		height: 100%;
	}
}
.mostlyFullvh {
	max-height: 90vh;
}
@media (min-width: 992px) {
	.mostlyFullvh {
		max-height: 90vh;
		height: 90vh;
	}
}
.b-1 {
	border-width: 0.0625rem;
}
.b-2 {
	border-width: 0.125rem;
}
.b-3 {
	border-width: 0.1875rem;
}
.b-4 {
	border-width: 0.25rem;
}
.ec-border-radius > * {
	border-radius: 8px;
}
.main-box-shadow,
.hover-shadow:hover {
	-webkit-box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.2);
}
.medium-shadow {
	box-shadow: 0 -5px 25px -5px rgba(0, 0, 0, 0.3);
}
.heavy-shadow {
	box-shadow: 0 4px 15px 0 #000;
}
.white-gradient-mask {
	-webkit-mask-image: -webkit-linear-gradient(
		to top,
		rgba(0, 0, 0, 0),
		#fff 30%
	);
	-moz-mask-image: -moz-linear-gradient(to top, rgba(0, 0, 0, 0), #fff 30%);
	-ms-mask-image: -ms-linear-gradient(to top, rgba(0, 0, 0, 0), #fff 30%);
	-o-mask-image: -o-linear-gradient(to top, rgba(0, 0, 0, 0), #fff 30%);
	mask-image: linear-gradient(to top, rgba(0, 0, 0, 0), #fff 30%);
}
.dark-gradient-background {
	-webkit-background: -webkit-linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0),
		#000 100%
	);
	-moz-background: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0), #000 100%);
	-ms-background: -ms-linear-gradient(to bottom, rgba(0, 0, 0, 0), #000 100%);
	-o-background: -o-linear-gradient(to bottom, rgba(0, 0, 0, 0), #000 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000 100%);
}
.medium-gradient-background {
	background: linear-gradient(to bottom, transparent, #000 150%);
}
.background-white,
.slick-next,
.slick-prev,
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	background-color: #fff;
}
.background-off-white {
	background-color: #f4f5f7;
}
.background-trans-white {
	background-color: rgba(255, 255, 255, 0.25);
}
.background-light-grey {
	background-color: #efefef;
}
.background-grey {
	background-color: #d7dacf;
}
.background-dark {
	background-color: #000;
}
.background-dark-grey {
	background-color: #181818;
}
.background-trans-dark-grey {
	background-color: rgba(24, 24, 24, 0.15);
}
.background-trans-dark {
	background-color: rgba(0, 0, 0, 0.82);
}
.background-trans-light-grey {
	background-color: rgba(244, 245, 247, 0.5);
}
.background-alt-light-grey {
	background-color: #919193;
}
.background-alt-dark-grey {
	background-color: #18181c;
}
.background-orange {
	background-color: #ff671f;
}
.background-green {
	background-color: #bfd440;
}
.background-red {
	background-color: #ff0048;
}
.background-youtube-red {
	background-color: #ff0800;
}
.background-light-blue {
	background-color: #1da1f2;
}
.background-alt-light-blue {
	background-color: #7ac2f7;
}
.background-blue {
	background-color: #3b5998;
}
.text-white {
	color: #fff;
}
.text-off-white {
	color: #f4f5f7;
}
.text-trans-white {
	color: rgba(255, 255, 255, 0.25);
}
.text-light-grey {
	color: #efefef;
}
.text-grey {
	color: #d7dacf;
}
.text-dark,
.single-curriculum li {
	color: #000;
}
.text-dark-grey {
	color: #181818;
}
.text-trans-dark-grey {
	color: rgba(24, 24, 24, 0.15);
}
.text-trans-light-grey {
	color: rgba(244, 245, 247, 0.5);
}
.text-alt-light-grey {
	color: #919193;
}
.text-alt-dark-grey,
.slick-next,
.slick-prev,
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus,
footer .widget ul li a,
.footer-social-icon svg {
	color: #18181c;
}
.text-orange {
	color: #ff671f;
}
.text-green {
	color: #bfd440;
}
.text-red {
	color: #ff0048;
}
.text-youtube-red {
	color: #ff0800;
}
.text-light-blue {
	color: #1da1f2;
}
.text-blue {
	color: #3b5998;
}
.border-white {
	border-color: #fff;
}
.border-off-white {
	border-color: #f4f5f7;
}
.border-trans-white {
	border-color: rgba(255, 255, 255, 0.25);
}
.border-light-grey {
	border-color: #efefef;
}
.border-grey {
	border-color: #d7dacf;
}
.border-dark {
	border-color: #000;
}
.border-dark-grey {
	border-color: #181818;
}
.border-trans-dark-grey {
	border-color: rgba(24, 24, 24, 0.15);
}
.border-trans-light-grey {
	border-color: rgba(244, 245, 247, 0.5);
}
.border-alt-light-grey {
	border-color: #919193;
}
.border-alt-dark-grey {
	border-color: #18181c;
}
.border-orange {
	border-color: #ff671f;
}
.border-green {
	border-color: #bfd440;
}
.border-red {
	border-color: #ff0048;
}
.border-youtube-red {
	border-color: #ff0800;
}
.border-light-blue {
	border-color: #1da1f2;
}
.border-blue {
	border-color: #3b5998;
}
.sm-img {
	max-width: 1.5625rem;
}
@media (min-width: 992px) {
	.sm-img {
		max-width: 2.1875rem;
	}
}
.md-img {
	max-width: 18.75rem;
}
.custom-ordered {
	counter-reset: item;
}
.custom-ordered li {
	counter-increment: item;
}
.custom-ordered li::before {
	color: #d7dacf;
	content: counter(item);
	display: inline-block;
	width: 1.125rem;
	margin-right: 1rem;
}
.animatable {
	visibility: hidden;
	-webkit-animation-play-state: paused;
	-moz-animation-play-state: paused;
	-ms-animation-play-state: paused;
	-o-animation-play-state: paused;
	animation-play-state: paused;
}
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-ms-keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-ms-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-o-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	20% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}
	60% {
		transform: translateX(20px);
	}
	80% {
		transform: translateX(-5px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-moz-keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}
	60% {
		transform: translateX(20px);
	}
	80% {
		transform: translateX(-5px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-ms-keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}
	60% {
		transform: translateX(20px);
	}
	80% {
		transform: translateX(-5px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-o-keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}
	60% {
		transform: translateX(20px);
	}
	80% {
		transform: translateX(-5px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}
	60% {
		transform: translateX(20px);
	}
	80% {
		transform: translateX(-5px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-webkit-keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}
	60% {
		transform: translateX(-20px);
	}
	80% {
		transform: translateX(5px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-moz-keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}
	60% {
		transform: translateX(-20px);
	}
	80% {
		transform: translateX(5px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-ms-keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}
	60% {
		transform: translateX(-20px);
	}
	80% {
		transform: translateX(5px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-o-keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}
	60% {
		transform: translateX(-20px);
	}
	80% {
		transform: translateX(5px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}
	60% {
		transform: translateX(-20px);
	}
	80% {
		transform: translateX(5px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-ms-keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@-moz-keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@-ms-keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@-o-keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	50% {
		transform: scale(1.05);
	}
	70% {
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@-webkit-keyframes moveUp {
	0% {
		opacity: 1;
		transform: translateY(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-moz-keyframes moveUp {
	0% {
		opacity: 1;
		transform: translateY(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-ms-keyframes moveUp {
	0% {
		opacity: 1;
		transform: translateY(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-o-keyframes moveUp {
	0% {
		opacity: 1;
		transform: translateY(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes moveUp {
	0% {
		opacity: 1;
		transform: translateY(40px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@-webkit-keyframes fadeBgColor {
	0% {
		background: none;
	}
	70% {
		background: none;
	}
	100% {
		background: #464646;
	}
}
@-moz-keyframes fadeBgColor {
	0% {
		background: none;
	}
	70% {
		background: none;
	}
	100% {
		background: #464646;
	}
}
@-ms-keyframes fadeBgColor {
	0% {
		background: none;
	}
	70% {
		background: none;
	}
	100% {
		background: #464646;
	}
}
@-o-keyframes fadeBgColor {
	0% {
		background: none;
	}
	70% {
		background: none;
	}
	100% {
		background: #464646;
	}
}
@keyframes fadeBgColor {
	0% {
		background: none;
	}
	70% {
		background: none;
	}
	100% {
		background: #464646;
	}
}
.animated {
	visibility: visible;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-play-state: running;
	-moz-animation-play-state: running;
	-ms-animation-play-state: running;
	-o-animation-play-state: running;
	animation-play-state: running;
}
.animated.fadeBgColor {
	-webkit-animation: fadeBgColor 1s 1;
	-moz-animation: fadeBgColor 1s 1;
	-ms-animation: fadeBgColor 1s 1;
	-o-animation: fadeBgColor 1s 1;
	animation: fadeBgColor 1s 1;
}
.animated.bounceIn {
	-webkit-animation: bounceIn 1s 1;
	-moz-animation: bounceIn 1s 1;
	-ms-animation: bounceIn 1s 1;
	-o-animation: bounceIn 1s 1;
	animation: bounceIn 1s 1;
}
.animated.bounceInRight {
	-webkit-animation: bounceInRight 1s 1;
	-moz-animation: bounceInRight 1s 1;
	-ms-animation: bounceInRight 1s 1;
	-o-animation: bounceInRight 1s 1;
	animation: bounceInRight 1s 1;
}
.animated.bounceInLeft {
	-webkit-animation: bounceInLeft 1s 1;
	-moz-animation: bounceInLeft 1s 1;
	-ms-animation: bounceInLeft 1s 1;
	-o-animation: bounceInLeft 1s 1;
	animation: bounceInLeft 1s 1;
}
.animated.fadeIn {
	-webkit-animation: fadeIn 1s 1;
	-moz-animation: fadeIn 1s 1;
	-ms-animation: fadeIn 1s 1;
	-o-animation: fadeIn 1s 1;
	animation: fadeIn 1s 1;
}
.animated.fadeInDown {
	-webkit-animation: fadeInDown 1s 1;
	-moz-animation: fadeInDown 1s 1;
	-ms-animation: fadeInDown 1s 1;
	-o-animation: fadeInDown 1s 1;
	animation: fadeInDown 1s 1;
}
.animated.fadeInUp {
	-webkit-animation: fadeInUp 1s 1;
	-moz-animation: fadeInUp 1s 1;
	-ms-animation: fadeInUp 1s 1;
	-o-animation: fadeInUp 1s 1;
	animation: fadeInUp 1s 1;
}
.animated.moveUp {
	-webkit-animation: moveUp 1s 1;
	-moz-animation: moveUp 1s 1;
	-ms-animation: moveUp 1s 1;
	-o-animation: moveUp 1s 1;
	animation: moveUp 1s 1;
}
.hover-grow {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hover-grow:hover {
	-webkit-transform: scale(1.03);
	-moz-transform: scale(1.03);
	-ms-transform: scale(1.03);
	-o-transform: scale(1.03);
	transform: scale(1.03);
}
.hover-invert {
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.hover-invert.background-lightgrey:hover,
.hover-invert.ec-no-background:hover {
	background-color: #000;
	color: #fff;
}
.hover-shadow {
	-webkit-transition: box-shadow 0.3 ease-in;
	-moz-transition: box-shadow 0.3 ease-in;
	-ms-transition: box-shadow 0.3 ease-in;
	-o-transition: box-shadow 0.3 ease-in;
	transition: box-shadow 0.3 ease-in;
}
.btn {
	text-transform: uppercase;
}
.btn.btn-orange {
	background-color: #ff671f;
	color: #fff;
	font-family: montserrat, sans-serif;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1.75px;
	line-height: 18px;
	text-align: center;
	padding: 15px;
}
.btn.btn-orange span {
	font-family: montserrat, sans-serif;
}
.rounded-icon-wrapper {
	width: 45px;
	text-align: center;
	position: relative;
}
.search-filter-icon {
	position: relative;
	text-align: center;
	width: 0;
	height: 0;
	padding: 20px;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
	-moz-border-radius: 20px 20px 20px 20px;
	-webkit-border-radius: 20px 20px 20px 20px;
	-khtml-border-radius: 20px 20px 20px 20px;
	color: #fff;
}
.search-filter-icon i {
	font-size: 20px;
	position: absolute;
	left: 9px;
	top: 10px;
}
.search-filter-icon.inner-rounded-icon {
	float: left;
	margin: 0 5px 0 0;
	cursor: pointer;
	background: #fff;
	color: #919193;
	transition: 0.5s;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
}
.search-filter-icon.inner-rounded-icon.filter-icon i {
	left: 10px;
	top: 12px;
}
.filter-icon svg.svg-inline--fa.fa-filter.fa-w-16 {
	font-size: 20px;
	left: 10px;
	top: 12px;
	position: absolute;
}
.search-filter-icon.inner-rounded-icon.mic-icon i {
	left: 13px;
	top: 11px;
}
.filter-icon {
	margin-left: 10px;
}
.filter-wrapper {
	display: none;
}
@media (max-width: 767px) {
	.filter-wrapper {
		display: block;
	}
}
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.search-input {
	display: flex;
	align-items: center;
}
.search-field {
	position: relative;
	z-index: 1;
}
.search-field::before {
	content: "f002";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	display: none;
}
.search-field svg {
	display: none;
	position: relative;
	left: 17px;
	font-size: 16px;
	font-size: 1rem;
}
.aa-input,
.aa-input:focus,
.ais-SearchBox-input,
.ais-SearchBox-input:focus {
	outline: none;
}
.search-bar {
	height: 48px;
	border: none;
	border-radius: 24px;
	margin-left: -23px;
	width: 200px;
}
.sermon-search-wrapper .search-bar {
	margin-left: 0 !important;
	width: 250px;
}
.sermon-search-wrapper span#algolia-autocomplete-listbox-2 {
	width: 250px;
}
@media (max-width: 767px) {
	.search-field {
		margin-right: 5px;
	}
}
.slick-disabled {
	display: none !important;
}
.slick-1-centered .slick-slide {
	position: relative;
	max-height: 176px;
	height: 100%;
	min-height: 176px;
}
.slick-1-centered .slick-slide img {
	position: absolute;
	transform: translateY(30%);
	max-width: 75%;
}
.slick-next,
.slick-prev {
	box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	top: 42%;
	height: 40px;
	width: 40px;
	font-size: 16px;
}
.slick-next::before,
.slick-prev::before {
	font-size: 16px;
	font-size: 1rem;
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	color: #18181c;
	display: none;
}
.slick-next svg,
.slick-prev svg {
	position: absolute;
	bottom: 12px;
	height: 16px;
	left: 12px;
	width: 16px !important;
}
.slick-prev {
	left: 0;
	z-index: 1;
}
.slick-prev::before {
	content: "f060" !important;
}
.slick-next {
	right: 0;
}
.slick-next::before {
	content: "f061" !important;
}
.slick-3 .slick-next,
.slick-3 .slick-prev {
	top: 50%;
}
.slick-3 .slick-slide > div {
	margin-left: 1.4ex;
	margin-right: 1.4ex;
}
@media (min-width: 768px) {
	.slick-3 .slick-slide > div {
		margin-left: 2ex;
		margin-right: 2ex;
	}
}
.small-sermon-slide {
	min-height: 6.25rem;
}
.small-sermon-slide-img {
	max-width: 100%;
}
@media (min-width: 992px) {
	.small-sermon-slide-img {
		max-width: 28%;
	}
}
.small-sermon-slide-title {
	max-width: 100%;
	margin-top: 1em;
}
@media (min-width: 992px) {
	.small-sermon-slide-title {
		max-width: 65%;
		margin-top: 0;
	}
}
.slick-dots li button::before {
	content: "";
	background-color: #000;
	border-radius: 50px;
	width: 6.25rem;
}
.slick-dots li button::before,
.slick-dots li.slick-active button::before {
	height: 0.25rem;
}
.slick-dots li,
.slick-dots li button {
	width: 6.25rem;
}
.slick-dots li {
	height: 0.5rem;
}
.slick-dots li button {
	height: 0.125rem;
}
@-webkit-keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0);
	}
}
@-moz-keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0);
	}
}
@-ms-keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0);
	}
}
@-o-keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-40px);
	}
	100% {
		transform: translateY(0);
	}
}
.external-link a {
	position: relative;
}
.external-link a::after {
	content: "f061";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	display: none;
}
.external-link a svg {
	opacity: 0.5;
	position: absolute;
	bottom: 7px;
	right: -1em;
	font-size: 10px;
	font-size: 0.625rem;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
nav.text-dark a {
	color: #000;
}
nav.text-white a {
	color: #fff;
}
.country-selector {
	margin-right: 2.8ex;
}
@media (min-width: 768px) {
	.country-selector {
		margin-right: 4ex;
	}
}
.country-selector.weglot-dropdown {
	background-color: rgba(0, 0, 0, 0);
}
.country-selector.weglot-dropdown svg {
	display: inline-block;
	position: absolute;
	height: 20px;
	line-height: 1;
	top: 9px;
	right: 5px;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	image-rendering: auto;
	font-size: 20px;
	font-size: 1.25rem;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	-ms-transition: all 200ms;
	-o-transition: all 200ms;
	transition: all 200ms;
}
.country-selector.weglot-dropdown a,
.country-selector.weglot-dropdown span {
	font-family: montserrat, sans-serif;
	font-weight: 600;
	text-transform: capitalize;
}
.country-selector.weglot-dropdown .wgcurrent {
	border: none;
}
.country-selector.weglot-dropdown .wgcurrent a,
.country-selector.weglot-dropdown .wgcurrent span {
	padding-right: 25px;
}
.country-selector.weglot-dropdown .wgcurrent::after {
	content: "f107";
	background: none;
	visibility: hidden;
	position: absolute;
	height: 20px;
	line-height: 1;
	top: 9px;
	right: 5px;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	font-family: "Font Awesome 5 Pro";
	image-rendering: auto;
	font-size: 18px;
	font-size: 1.125rem;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	-ms-transition: all 200ms;
	-o-transition: all 200ms;
	transition: all 200ms;
}
.country-selector.weglot-dropdown ul .wg-li.flag-3 a {
	text-align: center;
	transition: opacity 0.5s ease;
	opacity: 0.5;
}
.country-selector.weglot-dropdown ul .wg-li.flag-3 a:hover {
	opacity: 1;
	text-align: center;
	color: black;
}
.country-selector.weglot-dropdown input:checked ~ .wgcurrent svg {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
#menu-top-nav .menu-item {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	padding-left: 0.7ex;
	padding-right: 0.7ex;
}
@media (min-width: 768px) {
	#menu-top-nav .menu-item {
		padding-left: 1ex;
		padding-right: 1ex;
	}
}
#menu-top-nav .menu-item a {
	display: inline-block;
	font-weight: 600;
	font-size: 14px;
	font-size: 0.875rem;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
#menu-top-nav .menu-giving a {
	color: #ff671f;
}
#menu-top-nav:hover .menu-item a,
#menu-top-nav:hover .subnav-menu-item a {
	opacity: 0.5;
}
#menu-top-nav:hover .menu-item:hover a,
#menu-top-nav:hover .subnav-menu-item:hover a {
	opacity: 1;
}
.brand img {
	max-width: 128px;
}
.hamburger-inner.text-white,
.hamburger-inner.text-white::before,
.hamburger-inner.text-white::after {
	background-color: #fff !important;
}
.hamburger-inner.text-dark,
.hamburger-inner.text-dark::before,
.hamburger-inner.text-dark::after {
	background-color: #000 !important;
}
.hamburger:focus {
	outline: none;
}
.hamburger-box {
	width: 25px;
	height: 10px;
}
.is-active {
	height: 20px;
}
.is-active .hamburger-inner,
.is-active .hamburger-inner::after {
	width: 17px;
	height: 2px;
}
.user-image-div {
	width: 40px;
	height: 40px;
	position: relative;
	overflow: hidden;
	border-radius: 50%;
}
.user-image {
	display: inline;
	margin: 0 auto;
	margin-left: -25%;
	height: 100%;
	width: auto;
}
#menu-wrapper {
	position: absolute;
	right: 0;
	z-index: 101;
}
#menu-wrapper .hamburger {
	margin-top: 28px;
	margin-right: 35px;
	position: relative;
	z-index: 101;
}
#menu-wrapper.opened {
	width: 100%;
}
#menu-wrapper.opened .hamburger {
	position: absolute;
	right: 0;
}
#menu {
	position: absolute;
	right: 0;
	top: 0;
	background: #fff;
	bottom: 0;
	z-index: 100;
	width: 100vw;
	height: 100vh;
	display: none;
}
@media (max-width: 991px) {
	#menu {
		width: 30%;
		min-width: 400px;
		max-width: 600px;
	}
}
#menu h2 {
	margin-bottom: 0;
}
#menu .nav-tabs {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	margin-left: -15px;
	margin-right: -15px;
	margin-top: 10px;
	height: 50px;
	overflow: hidden;
}
#menu .nav-tabs .nav-item {
	width: 33%;
	text-align: center;
	margin-bottom: 0;
}
#menu .nav-tabs .nav-item a {
	font-size: 14px;
	font-size: 0.875rem;
	color: #18181c;
	font-family: montserrat, sans-serif;
	font-weight: bold;
	letter-spacing: 1.75px;
	line-height: 18px;
}
#menu .nav-tabs .nav-item a.active {
	border-bottom: 3px solid #ff671f;
	margin-bottom: -2px;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	color: #ff671f;
}
#menu .menu-header-wrapper {
	height: 125px;
	padding-top: 20px;
	overflow: visible;
}
@media (max-width: 991px) {
	#menu .menu-header-wrapper {
		height: 90px;
	}
}
#menu .menu-header-wrapper .header-content-wrapper {
	text-align: left;
	font-size: 30px;
	font-size: 1.875rem;
	padding-top: 0;
	padding-bottom: 0;
	padding-right: 55px;
	min-height: 35px;
}
@media (max-width: 991px) {
	#menu .menu-header-wrapper .header-content-wrapper {
		text-align: right;
		font-size: 24px;
		font-size: 1.5rem;
	}
}
#menu .menu-header-wrapper .logo {
	font-size: 28px;
	font-size: 1.75rem;
	text-align: center;
}
#menu .menu-header-wrapper .logo i,
#menu .menu-header-wrapper .logo svg {
	vertical-align: middle;
	display: inline-block;
}
#menu .menu-header-wrapper .search input {
	background-color: rgba(24, 24, 24, 0.05);
	color: #18181c;
	padding: 13px 8px;
	border-radius: 8px;
	border: 0;
	height: auto;
}
#menu .menu-header-wrapper .live-banner {
	color: #fff;
	font-family: montserrat, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 15px;
	text-align: center;
	border-radius: 4px;
	background-color: #ff0048;
	display: inline-block;
	vertical-align: middle;
	padding: 0 10px;
	margin-left: 5px;
}
@media (max-width: 991px) {
	#menu .menu-header-wrapper .live-banner {
		display: none;
	}
}
#menu .content-wrapper {
	height: calc(100% - 175px);
	overflow-y: auto;
	overflow-x: hidden;
}
@media (max-width: 991px) {
	#menu .content-wrapper {
		height: calc(100% - 140px);
	}
}
#menu .content-wrapper .tab-content {
	overflow-x: hidden;
}
#menu .content-wrapper .tab-content .home .submenu {
	padding-top: 40px;
	margin-bottom: 14px;
}
#menu .content-wrapper .tab-content .home .submenu-item {
	margin-bottom: 36px;
}
#menu .content-wrapper .tab-content .home .submenu-item a {
	text-decoration: none;
	text-align: center;
	color: #18181c;
	font-family: montserrat, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: bold;
	line-height: 15px;
	display: block;
}
#menu .content-wrapper .tab-content .home .submenu-item a .icon {
	background-color: #efefef;
	border-radius: 50%;
	width: 100%;
	max-width: 64px;
	height: 64px;
	margin: 0 auto;
	color: #181818;
	position: relative;
	font-size: 30px;
	font-size: 1.875rem;
	line-height: 30px;
	margin-bottom: 10px;
}
#menu .content-wrapper .tab-content .home .submenu-item a .icon svg,
#menu .content-wrapper .tab-content .home .submenu-item a .icon i {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -15px;
	margin-left: -15px;
	width: 30px;
	text-align: center;
}
#menu .content-wrapper .tab-content .home .submenu-item a .icon.store i,
#menu .content-wrapper .tab-content .home .submenu-item a .icon.store svg {
	width: 35px;
	margin-left: -17px;
}
#menu .content-wrapper .tab-content .home .navbar-nav li {
	padding-top: 25px;
	padding-bottom: 24px;
	margin: 0;
	font-size: 20px;
	font-size: 1.25rem;
	border-top: 1px solid rgba(24, 24, 24, 0.15);
}
#menu .content-wrapper .tab-content .home .navbar-nav li:last-of-type {
	border-bottom: 1px solid rgba(24, 24, 24, 0.15);
}
#menu .content-wrapper .tab-content .home .navbar-nav li a {
	font-size: 20px;
	font-size: 1.25rem;
	letter-spacing: -0.5px;
	line-height: 27px;
	color: #18181c;
	text-transform: capitalize;
	font-weight: normal;
}
#menu .content-wrapper .tab-content .home .navbar-nav li.no-transform a {
	text-transform: none;
}
#menu .content-wrapper .tab-content .home .admin-menu ul {
	list-style: none;
	padding: 0;
}
#menu .content-wrapper .tab-content .home .admin-menu ul li {
	padding-top: 25px;
	padding-bottom: 24px;
	margin: 0;
	font-size: 20px;
	font-size: 1.25rem;
	border-top: 1px solid rgba(24, 24, 24, 0.15);
}
#menu .content-wrapper .tab-content .home .admin-menu ul li:first-of-type {
	border-top: 0;
}
#menu .content-wrapper .tab-content .home .admin-menu ul li:last-of-type {
	border-bottom: 1px solid rgba(24, 24, 24, 0.15);
}
#menu .content-wrapper .tab-content .home .admin-menu ul li a {
	font-size: 20px;
	font-size: 1.25rem;
	letter-spacing: -0.5px;
	line-height: 27px;
	color: #717171;
	text-transform: capitalize;
}
#menu .content-wrapper .tab-content .home .admin-menu ul li a span {
	line-height: 27px;
	width: 28px;
	height: 28px;
}
#menu .content-wrapper .tab-content .campus .campus-selection {
	color: #18181c;
	font-family: montserrat, sans-serif;
	font-size: 20px;
	font-size: 1.25rem;
	line-height: 24px;
	margin-bottom: 10px;
	margin-top: 34px;
}
#menu .content-wrapper .tab-content .campus .campus-selection button {
	border: 0;
	background: transparent;
	color: #18181c;
	font-family: montserrat, sans-serif;
	font-size: 20px;
	font-size: 1.25rem;
	line-height: 24px;
	padding: 0;
}
#menu .content-wrapper .tab-content .campus .campus-selection button svg {
	margin-left: 10px;
	font-weight: 100;
	display: inline-block;
}
#menu .content-wrapper .tab-content .campus .campus-selection button:focus {
	outline: none;
}
#menu .content-wrapper .tab-content .campus .campus-links {
	list-style: none;
	padding: 0;
	margin: 0;
}
#menu .content-wrapper .tab-content .campus .campus-links li {
	padding: 24px 0;
	border-bottom: 1px solid rgba(24, 24, 24, 0.15);
	color: #18181c;
	font-size: 20px;
	font-size: 1.25rem;
	letter-spacing: -0.5px;
	font-family: "Open Sans";
}
#menu .content-wrapper .tab-content .campus .campus-links li a {
	color: #18181c;
}
#menu .content-wrapper .tab-content .campus .campus-links li a:hover,
#menu .content-wrapper .tab-content .campus .campus-links li a:active {
	color: #18181c;
	text-transform: none;
	text-decoration: none;
}
#menu .content-wrapper .tab-content .campus .campus-links li i,
#menu .content-wrapper .tab-content .campus .campus-links li svg {
	margin-right: 8px;
}
#menu .content-wrapper .tab-content .campus .campus-select-modal {
	position: absolute;
	top: 10px;
}
#menu .content-wrapper .tab-content .campus .campus-select-modal-content {
	border-radius: 8px;
	background-color: #fff;
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
	padding: 30px;
	text-align: center;
	margin: 0 10px;
	margin-top: 70px;
}
@media (max-width: 991px) {
	#menu .content-wrapper .tab-content .campus .campus-select-modal-content {
		margin: 0 20px;
	}
}
#menu
	.content-wrapper
	.tab-content
	.campus
	.campus-select-modal-content
	.campus-selection-wrapper {
	margin-bottom: 20px;
	margin-top: 13px;
	position: relative;
}
#menu
	.content-wrapper
	.tab-content
	.campus
	.campus-select-modal-content
	.campus-selection-wrapper
	select {
	background-color: rgba(24, 24, 24, 0.05);
	padding: 13px 8px;
	background-position: right 15px center;
	border: 0;
	color: rgba(24, 24, 28, 0.5);
	font-family: "Open Sans";
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: -0.25px;
	line-height: 22px;
	background-image: none;
	padding-right: 15px;
	appearance: listbox;
}
#menu
	.content-wrapper
	.tab-content
	.campus
	.campus-select-modal-content
	.campus-selection-wrapper
	svg {
	position: absolute;
	right: 16px;
	top: 16px;
	line-height: 22px;
	color: #181818;
}
#menu
	.content-wrapper
	.tab-content
	.campus
	.campus-select-modal-content
	.login-with-myelevation {
	color: #ff671f;
	margin-bottom: 20px;
}
#menu
	.content-wrapper
	.tab-content
	.campus
	.campus-select-modal-content
	.login-with-myelevation
	a {
	color: #ff671f;
}
#menu .content-wrapper .tab-content .campus .campus-select-modal-title {
	color: rgba(24, 24, 28, 0.5);
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: -0.25px;
	line-height: 22px;
	text-align: center;
	padding: 0 20px;
}
#menu .content-wrapper .tab-content .campus .campus-select-modal-title i,
#menu .content-wrapper .tab-content .campus .campus-select-modal-title svg {
	font-size: 100px;
	font-size: 6.25rem;
	color: #ff671f;
	margin-bottom: 20px;
}
#menu .content-wrapper .tab-content .campus .campus-select-modal-title span {
	color: #18181c;
	font-family: montserrat, sans-serif;
	font-size: 20px;
	font-size: 1.25rem;
	line-height: 24px;
	text-align: center;
	border-bottom: 0;
}
#menu .content-wrapper .tab-content .efam-links {
	list-style: none;
	padding: 0;
	margin: 0;
}
#menu .content-wrapper .tab-content .efam-links li {
	padding: 24px 0;
	border-bottom: 1px solid rgba(24, 24, 24, 0.15);
	color: #18181c;
	font-size: 20px;
	font-size: 1.25rem;
	letter-spacing: -0.5px;
	font-family: "Open Sans";
}
#menu .content-wrapper .tab-content .efam-links li a {
	color: #18181c;
}
#menu .content-wrapper .tab-content .efam-links li a:hover,
#menu .content-wrapper .tab-content .efam-links li a:active {
	color: #18181c;
	text-transform: none;
	text-decoration: none;
}
#menu .content-wrapper .tab-content .efam-links li i,
#menu .content-wrapper .tab-content .efam-links li svg {
	margin-right: 8px;
}
#menu li.menu-item.external a {
	position: relative;
	padding-right: 20px;
	display: block;
}
#menu li.menu-item.external a::after {
	content: "f061";
	font-family: "Font Awesome 5 Pro";
	font-weight: 400;
	display: none;
}
#menu li.menu-item.external a svg {
	opacity: 0.5;
	position: absolute;
	bottom: 7px;
	right: 0;
	color: rgba(0, 0, 0, 0.25);
	padding-top: 4px;
	font-size: 20px;
	font-size: 1.25rem;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#menu a {
	font-family: "Open Sans", sans-serif;
	color: #18181c;
}
.aa-input-container {
	display: inline-block;
	position: relative;
}
.aa-input-search {
	width: 300px;
	padding: 12px 28px 12px 12px;
	border: 1px solid #e4e4e4;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.aa-input-search::-webkit-search-decoration,
.aa-input-search::-webkit-search-cancel-button,
.aa-input-search::-webkit-search-results-button,
.aa-input-search::-webkit-search-results-decoration {
	display: none;
}
.aa-input-icon {
	height: 16px;
	width: 16px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	fill: #e4e4e4;
	pointer-events: none;
	margin-top: -4px;
	right: 22px;
}
@media (min-width: 768px) {
	.aa-input-icon {
		margin-top: -2px;
		right: 9px;
	}
}
.aa-dropdown-menu {
	background-color: #fff;
	border: 1px solid rgba(228, 228, 228, 0.6);
	width: 300px;
	margin-top: 10px;
	box-sizing: border-box;
}
.aa-suggestion {
	padding: 6px 12px;
	cursor: pointer;
}
.aa-suggestions-category {
	border-bottom: 1px solid rgba(228, 228, 228, 0.6);
	border-top: 1px solid rgba(228, 228, 228, 0.6);
	padding: 6px 12px;
}
.aa-dropdown-menu > div {
	display: inline-block;
	width: 100%;
	vertical-align: top;
}
.aa-empty {
	padding: 6px 12px;
}
.search .algolia-autocomplete {
	width: 100%;
}
footer .widget ul {
	list-style-type: none;
	padding-left: 0;
	margin-bottom: 0;
}
@media (min-width: 768px) {
	footer .widget ul {
		padding-left: 0;
	}
}
@media (min-width: 768px) {
	footer .widget ul {
		margin-bottom: 0;
	}
}
footer .widget ul li {
	margin-bottom: 0.63ex;
}
@media (min-width: 768px) {
	footer .widget ul li {
		margin-bottom: 0.9ex;
	}
}
footer .widget ul li a {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	font-size: 1rem;
}
.footer-social-icon {
	font-size: 24px;
	font-size: 1.5rem;
}
.footer-info .meta {
	display: block;
}
.footer-info .meta div {
	width: 100%;
	text-align: center;
}
@media (min-width: 1040px) {
	.footer-info .meta {
		display: flex;
	}
	.footer-info .meta div {
		width: auto;
		text-align: left;
	}
}
.max-w-200 {
	max-width: 12.5rem;
}
.max-w-500 {
	max-width: 31.25rem;
}
.large-card {
	min-height: 40.625rem;
}
.medium-card {
	min-height: 34.375rem;
}
.small-card {
	min-height: 25rem;
}
.xsmall-card {
	min-height: 17.5rem;
}
.announcement-card {
	min-height: 7.5rem;
}
.cut-column {
	-webkit-column-count: 1;
	-moz-column-count: 1;
	column-count: 1;
	-webkit-column-gap: 0;
	-moz-column-gap: 0;
	column-gap: 0;
}
@media (min-width: 992px) {
	.cut-column {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 75px;
		-moz-column-gap: 75px;
		column-gap: 75px;
	}
}
