/*
Theme Name: CEE Equity Partners
Author: creatio:net
Author URI: http://creationet.pl/
Description: CEE Equity Partners theme
Text Domain: cee-equity-partners
Version: 1.0
*/


:root {
	--app-height: 100%;

    --white: #fff;
    --black: #000;

    --azure: #088395;
    --blue: #597999;
    --dark-blue: #081852;
    --light-blue: #EAF3F6;
    --extralight-blue: #F4F9FA;
    --orange: #FF781D;
    --light-orange: #FFF8F4;
	

    --link: #38B8C2;

	
}



html {
	scroll-behavior:smooth;
	overflow-x: hidden;
}

body {
	font-family: "Work Sans",sans-serif;
	font-size:16px;
	font-weight:400;
	color:var(--blue);
	line-height:1.2;
	padding:0;
	margin:0;
	position: relative;
   /*  word-break: normal;
	word-wrap: break-word; */
	/* overflow-x: hidden;  */

 overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  
}
@media (min-width:768px) {
	body {
		font-size:14px;
		line-height:1.2;
	}
}
@media (min-width:1800px) {
	body {
		font-size:16px;
		line-height:1.4;
	}
}


a {
	color:var(--link);
	font-weight: 400;
	text-decoration: underline;
	text-decoration-thickness: 1px;
  	text-underline-offset: 4px;
	transition:.2s all;
}

a:hover {
	color:var(--orange);
	text-decoration: underline;
	text-decoration-thickness: 1px;
  	text-underline-offset: 4px;
}


p {
	font-size:16px;
	font-weight:400;
	color:var(--blue);
	line-height:1.2;
	padding:0;
	margin:0 0 1.4em 0;
   
}
@media (min-width:768px) {
	p {
		font-size:14px;
		line-height:1.2;
	margin:0 0 1.2em 0;
	}
}
@media (min-width:1800px) {
	p {
		font-size:16px;
		line-height:1.2;
		margin:0 0 1.4em 0;
	}
}







.container, .container-fluid {
	padding-left: 24px;
	padding-right: 24px;
}


.container {
	max-width: 1280px;
}
@media (min-width:768px) {
	.container {
		padding-left: 40px;
		padding-right:40px;
	}
}
@media (min-width:1460px) {
	.container {
		max-width: 1760px;
        padding-left: 100px;
        padding-right: 100px;
	}
}
@media (min-width:1700px) {
	.container {
        padding-left: 180px;
        padding-right: 180px;
	}
}



.row-20 {
    height: 100%;
    margin-left: -10px;
    margin-right: -10px;
}

.row-20 > [class*="col-"] {
    padding-left:10px;
    padding-right:10px;
}

.row-30 {
    height: 100%;
    margin-left: -15px;
    margin-right: -15px;
}

.row-30 > [class*="col-"] {
    padding-left:15px;
    padding-right:15px;
}

.row-16 {
    height: 100%;
    margin-left: -8px;
    margin-right: -8px;
}

.row-16 > [class*="col-"] {
    padding-left:8px;
    padding-right:8px;
}



h1,h2,h3,h4,h5,h6 {
	font-weight: 500;
	color: var(--azure);
	padding: 0;
	margin: 0 0 12px 0;
	line-height: 1.2;
	/* letter-spacing: -.05em; */
	position: relative;
}

h1 {
	font-size: 64px;
	line-height: 80px;
}


h2 {
	font-size:32px;
}

h3 {
	font-size: 20px;
	font-weight: 400;
	letter-spacing: -.02em; 
}
@media (min-width:768px) {
	h3 {
		font-size: 28px;
	}
}


h4 {
	font-size: 24px
}


h5 {
	font-size: 20px
}


h6 {
	font-size: 18px
}

/*
.subtitle {
	font-size: 20px;
	font-weight: 600;
	color: var(--black);
	line-height: 1.3;
	margin: 0 0 1.8em 0;
}
@media (min-width:768px) {
	.subtitle {
		font-size: 18px;
		line-height: 1.5;
	}
}
@media (min-width:1800px) {
	.subtitle {
		font-size: 20px;
		line-height: 1.3;
	}
}
 */

.btn-primary {
	font-size:16px;
	font-weight:600;
	color: var(--white);
	text-decoration: none;
	text-align:center;
	text-transform: uppercase;
	line-height:20px;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
    width: auto;
    margin: 0;
	background:var(--orange);
    border:none;
	border-radius:0;
    outline: 0;
	padding:11px 47px;
	gap:10px;
    cursor: pointer;
	transition: .4s ease-in-out;
	overflow: hidden;
}


.btn-primary:hover {
	color: var(--white);
	background:var(--azure);
	text-decoration: none;
}

.btn-primary:focus, .btn-primary:active {
	color: var(--white);
	background:var(--blue);
	text-decoration: none;
}

.btn-primary:disabled {
	color: var(--white);
	background:var(--orange);
	text-decoration: none;
	opacity: .5;
}




/* 


.btn-secondary {
	font-size:16px;
	font-weight:800;
	color: var(--black);
	text-decoration: none;
	text-align:center;
	text-transform: uppercase;
	line-height:20px;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
    width: auto;
    margin: 0;
	background:var(--white);
    border:1.4px solid var(--white);
	border-radius:50em;
    outline: 0;
	padding:12px 23px;
	gap:10px;
    cursor: pointer;
	transition: .4s ease-in-out;
	overflow: hidden;
}
@media (min-width:768px) {
	.btn-secondary {
		font-size:14px;
		padding:9px 20px;
	}
}
@media (min-width:1800px) {
	.btn-secondary {
		font-size:16px;
		padding:12px 23px;
	}
}

.btn-secondary:hover {
	color: var(--white);
	background:transparent;
	text-decoration: none;
}

.btn-secondary:focus, .btn-secondary:active {
	color: var(--white);
	background:var(--graphite);
	border-color: var(--graphite);
	text-decoration: none;
}

.btn-secondary:disabled {
	color: var(--black);
	background:var(--white);
	text-decoration: none;
	opacity: .5;
}

.btn-secondary img {
	max-width: 20px;
	max-height: 20px;
	transition: .4s ease-in-out;
}
 */



 


/* header */

.header {
	width: 100%;
	background: var(--white);
	position: fixed;
	z-index: 998;
	transition: .4s all;
}
.home:not(.site-scrolled) .header {
	background: transparent;
}

.header .container {
	min-height:112px;
	position: relative;
	transition: .4s all;
}

.site-scrolled .header .container {
	min-height: 70px;
}

.top-brand {
	width: 203px;
	height: auto;
	margin:0;
	display: block;
}

.site-scrolled .top-brand {
	width: 170px;
}

.top-brand img {
	width: 100%;
	height: auto;
}

.top-brand-home {
	display: none;
}

.home:not(.site-scrolled) .top-brand-home {
	display: block;
}

.home:not(.site-scrolled) .top-brand-page {
	display: none;
}



.main-menu {
	width: 100%;
	max-width:460px;
	margin: 0 auto;
	transition: .2s all;
	padding:30px 20px;
}
@media (min-width:992px) {
	.main-menu {
		max-width: unset;
		width: 100%;
		height: 100%;
		padding:0;
		margin: 0;
		display: flex;
		gap:0 40px;
	}
}
@media (min-width:1200px) {
	.main-menu {
		gap:0 50px;
	}
}
@media (min-width:1400px) {
	.main-menu {
		gap:0 70px;
	}
}

.main-menu > li {
	padding: 0px;
	margin: 0;
	list-style: none;
	position: relative;
}
@media (min-width:992px) {
	.main-menu > li {
		height:100%;
	}
}

.main-menu > li > a {
	font-size:18px;
	font-weight:500;
	color:var(--dark-blue);
	text-align: center;
	text-decoration: none;
	margin: 0;
	padding:10px 0;
	position: relative;
	transition: .2s all;	
	display: block;
}
@media (min-width:992px) {
	.main-menu > li > a {
		padding: 0;
	}
}

@media (min-width:992px) {
	.home:not(.site-scrolled) .main-menu > li:not(:hover) > a {
		color: var(--white);
	}
}

.main-menu > li:hover > a, .main-menu > li.current-menu-item > a {
	color:var(--azure);
	text-decoration: none;
}




.unclickable > a {
	pointer-events: none;
}

@media (min-width:992px) {
	.only-mobile > a, .mobile-only {
		display: none !important;
	}
}



.burger {
	width: 36px;
	height: 36px;
	background:none;
	border:none;
	border-radius:0px;
	margin:0;
	padding:0px;
	z-index: 994 !important;
	display: block;
}
@media (min-width:992px) {
	.burger {
		display: none;
	}
}

.burger:after,
.burger:before,
.burger div {
	background-color:var(--link);
	border-radius: 2px;
	content: '';
	display: block;
	height: 4px;
	margin: 6px 0;
	transition: all .2s ease-in-out;
}

.home:not(.site-scrolled) .burger:after, .home:not(.site-scrolled) .burger:before, .home:not(.site-scrolled) .burger div {
	background-color:var(--link);
}


.responsive .burger:before {
	background-color:var(--link);
	transform: translateY(8px) rotate(135deg);
}

.responsive .burger:after {
	width: 100%;
	background-color:var(--link);
	transform: translateY(-12px) rotate(-135deg);
}

.responsive .burger div {
	background-color:var(--link);
	transform: scale(0);
}


@media (max-width:991.98px) {
	.topnav {
		display: none !important;
	}

	.responsive .topnav {
		width:100%;
		height: 100vh;
		padding:140px 20px 60px 20px;
		top:0px;
		left:0px;
		right:0px;
		position: fixed;
		display: flex !important;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		z-index: 978;
		background: var(--white);
		overflow-y: auto;
		animation:top .5s;

		visibility: visible;
	}
	@keyframes top {
		0% {
			top: -100vh;
			opacity: 0;
		}
		100% {
			top: 0;
			opacity: 1;
		}	
	}
}

.topnav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap:20px;
}
@media (min-width:992px) {
	.topnav {
	/* 	width: 100%; */
		gap:20px;
	}
}




/* 404 */

.page-404 {
	min-height: 60vh;
	padding-top: 140px;
	padding-bottom: 140px;
	margin-bottom: 0;
}




/* page / blog all */

article h1, article h2, article h3, article h4, article h5, article h6 {
	/* margin-top:62px; */
	margin-top:52px;
	margin-bottom:.8em;
}

article > h1:first-child, article > h2:first-child, article > h3:first-child, article > h4:first-child, article > h5:first-child, article > h6:first-child {
	padding-top: 0;
	margin-top: 0;
}

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

article strong {
	font-weight: 600;
}



article p {
	margin: 0 0 1em 0;
}

.fonts-large article, .fonts-large article p {
	font-size: 16px;
}
@media (min-width: 992px) {
	.fonts-large article, .fonts-large article p {
		font-size: 20px;
	}
}
 

 
article *:last-child {
	margin-bottom: 0;
}

article hr {
	border-color: var(--light-blue);
	opacity: 1;
	margin: 36px 0;
}

article img {
	max-width: 100%;
	height: auto;
	margin:1em 0 !important;
	border-radius:0;
}
@media (min-width: 768px) {
	article img {
		margin:3em 0 !important;
	}
}

@media (min-width: 576px) {
	article img.alignleft {
		max-width: 50%;
		float: left;
		margin:0px 20px 20px 0px;
	}
}

@media (min-width: 576px) {
	article img.alignright {
		max-width: 50%;
		float: right;
		margin:0px 0px 20px 20px;
	}
}

article img.aligncenter {
	margin:2em 0;
	margin-left: 50%;
	transform: translateX(-50%);
}



article ul {
	padding:0;
	margin:0px 0px 18px 0px;
}

article ul > li {
	font-size: 16px;
	line-height:1.5;
	margin:0px 0px 4px 0px;
	padding:0px 0px 0px 42px;
	list-style: none;
	position: relative; 
}
@media (min-width: 768px) {
	article ul > li {
		font-size: 14px;
	}
}
@media (min-width:1800px) {
	article ul > li {
		font-size: 16px;
	}
}

article ul > li:last-child {
	margin: 0;
}

article ul > li::before {
	content: '';
	width: 4px;
	height: 4px;
	background:var(--blue);
	border-radius: 50%;
	left:10px;
	top:10px;
	position: absolute;
}
@media (min-width: 768px) {
	article ul > li::before {
		top:8px;
	}
}

article ul > li:last-child {
	margin-bottom: 0;
}


article ol {
	padding: 0;
	margin:0px 0px 18px 16px;
}

article ol > li {
	font-size: 16px;
	font-weight: 400;
	line-height:1.5;
	margin:0px 0px 18px 0px;
	padding:0px 0px 0px 3px;
}
@media (min-width: 768px) {
	article ol > li {
		font-size: 14px;
	}
}
@media (min-width:1800px) {
	article ol > li {
		font-size: 16px;
	}
}
	



article blockquote {
	font-size:18px;
	font-weight:400;
	color: var(--azure);
	font-style: italic;
	line-height: 1.5;
	margin:0 0 16px 0;
	padding:14px 24px;
	border-left: 3px solid var(--orange);
}
@media (min-width:768px) {
	article blockquote {
		font-size:16px;
	}
}
@media (min-width:1800px) {
	article blockquote {
		font-size:168px;
	}
}

article blockquote p {
	font-size:18px;
	font-weight:400;
	color: var(--azure);
	font-style: italic;
	line-height: 1.5;
}
@media (min-width:768px) {
	article blockquote p {
		font-size:16px;
	}
}
@media (min-width:1800px) {
	article blockquote p {
		font-size:18px;
	}
}


article > *:first-child {
	margin-top: 0;
}

article > p:last-child, article > ul:last-child, article > img:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
}

article table {
	margin: 22px 0;
}

article table td, article table th, article table tr {
	border-width: 1px;
	padding: 5px;
}


/* youtube responsive */
article .embed-responsive {
	position: relative;
	display: block;
	height: 0;
	padding: 0;
	margin-bottom:40px;
	overflow: hidden;
	border-radius:0;
}
article .embed-responsive .embed-responsive-item,
article .embed-responsive iframe {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
article .embed-responsive-16by9 {
	padding-bottom: 56.25%;
}


/* page privacy */

.page-id-325 article {
	letter-spacing: -.02em;
}

.page-id-325 article h4 {
	font-size: 20px;
	font-weight: 500;
	color: var(--dark-blue);
	letter-spacing: -.02em;
}

.page-id-325 article p, .page-id-325 article li {
	font-size: 14px
}


/* page about us */

.page-id-316 article p {
	line-height: 1.4em;
	margin: 0 0 1.6em 0;
	letter-spacing: -.02em;
}

@media (min-width: 768px) {
    .page-id-316 .section-contentimage-short .section-contentimage-image img {
		width: 90%;
	}
}


/* sections */

section {
	margin-bottom:48px;
	position: relative;
	z-index: 990;
}
@media (min-width:768px) {
	section {
		margin-bottom:64px;
	}
}

@media (max-width:767.98px) {
	.z-index-mobile {
		z-index: 994 !important;
	}
}
@media (min-width:768px) {
	.z-index-desktop {
		z-index: 994 !important;
	}
}



body:not(.home) main {
	padding:112px 0 0 0;
}



/* section-hero */

.section-hero {
	height: 90vh;
	min-height: 400px;
	background: var(--dark-blue);
	margin: 0;
}
@media (min-width:992px) {
	.section-hero {
		min-height: 600px;
	}
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	left:0;
	top:0;
	position: absolute;
	display: block;
	z-index: 900;
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	left:0;
	top:0;
	position: absolute;
}

.section-hero::before {
	content: '';
	width: 100%;
	height: 100%;
	background: #081852;
	background: linear-gradient(0deg, rgba(8, 24, 82, 0) 0%, rgba(8, 24, 82, 1) 90%, rgba(8, 24, 82, 1) 100%);
	left:0;
	top:0;
	position: absolute;
	z-index: 910;
}

.section-hero::after {
	content: '';
	width: 100%;
	height: 100%;
	background: url('images/hero-cover.svg') no-repeat right;
	background-size: contain;
	right:0;
	top:0;
	position: absolute;
	z-index: 920;
}

.section-hero .container {
	position: relative;
	z-index: 990;
	padding-top: 120px;
	padding-bottom: 80px;
	margin-bottom:60px;
}

.section-hero h1 {
	width:90%;
	max-width: 600px;
	font-size:34px;
	font-weight: 400;
	color: var(--white);
	letter-spacing: .0em;
	line-height: 1.2;
	margin: 0 0 5px 0;
}
@media (min-width:576px) {
	.section-hero h1 {
		width: 70%;
		font-size: 54px;
	}
}
@media (min-width:992px) {
	.section-hero h1 {
		width: 50%;
		font-size: 64px;
	}
}

.section-hero h3 {
	width:90%;
	max-width: 600px;
	font-size: 20px;
	font-weight: 500;
	color: var(--white);
	letter-spacing: .0em;
	line-height: 1.2;
	margin: 0;
}
@media (min-width:576px) {
	.section-hero h3 {
		width: 70%;
		font-size: 24px;
	}
}
@media (min-width:992px) {
	.section-hero h3 {
		width: 50%;
	}
}





/* page-header */

.page-header {
	min-height: 339px;
	margin-bottom:48px;
	background: var(--dark-blue);
}
@media (min-width:768px) {
	.page-header {
		margin-bottom:64px;
	}
}

@media (min-width:992px) {
	.page-header::after {
		content: '';
		width: 100%;
		height: 100%;
		background: url('images/hero-page-cover.svg') no-repeat right;
		background-size: contain;
		right:0;
		top:0;
		position: absolute;
	}
}

.page-header-image {
	width: 100%;
	height: 100%;
	left:0;
	top:0;
	position: absolute;
}

.page-header-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	left:0;
	top:0;
	position: absolute;
}

.page-header-image::after {
	content: '';
	width: 100%;
	height: 100%;
	background: #081852;
	background: radial-gradient(circle, rgba(8, 24, 82, 1) 0%, rgba(8, 24, 82, 0) 100%);
	left:0;
	top:0;
	position: absolute;
	opacity: .8;
}

.page-header .container {
	position: relative;
	z-index: 990;
}

.page-header h1 {
	font-size:64px;
	font-weight: 400;
	color: var(--white);
	letter-spacing: -.02em;
	line-height: 1.2;
	margin: 0 0 5px 0;
}

.page-header h3 {
	font-size: 24px;
	font-weight: 500;
	color: var(--white);
	letter-spacing: -.02em;
	line-height: 1.2;
	margin: 0;
}


/* section-breadcrumbs */

.section-breadcrumbs {
	margin-bottom:48px;
}
@media (min-width:768px) {
	.page-header {
		margin-bottom:64px;
	}
}


.breadcrumbs {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap:5px;
}

.breadcrumbs li {
	font-size: 16px;
	font-weight: 400;
	color:var(--black);
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumbs li strong {
	font-weight: 400;
}

.breadcrumbs li a {
	font-size: 16px;
	font-weight: 400;
	color:var(--black);
	text-decoration: none;
}

.breadcrumbs li a:hover {
	color:var(--dark-blue);
	text-decoration: none;
}

.breadcrumbs li.item-current {
	color: var(--azure);
}


 
/* section-content */


/* section-contentimage */

.section-contentimage-light {
	background: var(--light-blue);
}

.section-contentimage-wrapper {
	gap:60px 40px;
}

.section-contentimage-light .section-contentimage-content {
	padding: 46px 0 0 0;
}
@media (min-width:768px) {
	.section-contentimage-content {
		flex: 0 0 50%;
	}
}

@media (min-width:768px) {
	.section-contentimage-light .section-contentimage-content {
		padding: 46px 0;
	}
}
@media (min-width:992px) {
	.section-contentimage-light .section-contentimage-content {
		padding: 80px 0;
	}
}

.section-contentimage-image {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 990;
}
@media (min-width:768px) {
	.section-contentimage-image {
		flex: 0 0 calc(50% - 40px);
	}
}

@media (min-width:768px) {
	.section-contentimage-wrapper:not(.flex-md-row-reverse) .section-contentimage-image {
		display: flex;
		justify-content: flex-end;
	}
}

.section-contentimage-edge .section-contentimage-image {
		width: 100vw;
		margin: 0 0 0 -24px;
	}
@media (min-width:768px) {
	.section-contentimage-edge .section-contentimage-image {
		flex: 0 0 calc(50vw - 40px);
		margin: 0;
	}
}

.section-contentimage-image img {
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 0;
	z-index: 990;
	margin: 0;
	padding: 0;
}

@media (min-width:768px) {
	.section-contentimage-short .section-contentimage-image img {
		width: 75%;
	}
}


/* section-numbers */

.section-numbers {
	background: var(--extralight-blue);
}

.section-numbers-wrapper {
	gap:26px;
}

.section-numbers-inner {
	width: 100%;
	padding: 8px 24px 30px 24px;
	font-size: 20px;
	font-weight: 400;
	color: var(--blue);
	border-bottom: 1px solid #CFDAE3;
}
@media (min-width: 576px) {
	.section-numbers-inner {
		flex:0 0 calc(50% - 13px);
		padding: 8px 24px 50px 24px;
		border-right: 1px solid #CFDAE3;
		border-bottom: none;
	}
}
@media (min-width: 768px) {
	.section-numbers-inner {
		padding: 8px 14px 50px 14px;
		flex:0 0 calc(25% - 19.5px);
	}
}
@media (min-width: 992px) {
	.section-numbers-inner {
		font-size: 24px;
		padding: 8px 24px 50px 24px;
	}
}

.section-numbers-inner:last-child {
	border: none;
}

.section-numbers-list-number {
	font-size: 72px;
	font-weight: 300;
	color: var(--azure);
}
@media (min-width: 992px) {
	.section-numbers-list-number {
		font-size: 96px;
	}
}


/* section-numbersorange */

.section-numbersorange-wrapper {
	gap:26px;
}

.section-numbersorange-inner {
	width: 100%;
	padding: 0 8px 30px 0;
	font-size: 16px;
	font-weight: 400;
	color: var(--blue);
	background: var(--light-orange);
}
@media (min-width: 576px) {
	.section-numbersorange-inner  {
		flex:0 0 calc(50% - 13px);
		padding: 8px 24px 65px 24px;
	}
}
@media (min-width: 768px) {
	.section-numbersorange-inner  {
		flex:0 0 calc(33.3333% - 17.3333333px);
	}
}
@media (min-width: 992px) {
	.section-numbersorange-inner  {
		font-size: 20px;
	}
}

.section-numbersorange-list-number {
	font-size: 72px;
	font-weight: 300;
	color: var(--orange);
	line-height: 1;
}
@media (min-width: 992px) {
	.section-numbersorange-list-number {
		font-size: 96px;
	}
}

.section-numbersorange-list-heading {
	font-size: 20px;
	font-weight: 400;
	color: var(--orange);
	margin: -10px 0 14px 0;
}
@media (min-width: 992px) {
	.section-numbersorange-list-heading {
		font-size:32px;
	margin: -14px 0 14px 0;
	}
}


/* section-tiles */

.section-tiles-light {
	background: var(--extralight-blue);
}

.section-tiles-heading {
	gap:35px;
	margin: 0 0 48px 0;
}
@media (min-width: 768px) {
	.section-tiles-heading {
		margin: 0 0 64px 0;
	}
}

.section-tiles-heading h3 {
	font-size:24px;
	font-weight: 400;
	color: var(--azure);
	letter-spacing: -.02em;
	margin: 0;
}
@media (min-width: 768px) {
	.section-tiles-heading h3 {
		max-width: 80%;
		font-size:28px;
	}
}
@media (min-width: 992px) {
	.section-tiles-heading h3 {
		max-width: 70%;
	}
}
@media (min-width: 1400px) {
	.section-tiles-heading h3 {
		max-width: 62%;
	}
}

.section-tiles-heading h4 {
	font-size:18px;
	font-weight: 400;
	color: var(--blue);
	letter-spacing: -.02em;
	margin: 0;
}
@media (min-width: 768px) {
	.section-tiles-heading h4 {
		font-size:20px;
	}
}

.section-tiles-wrapper {
	gap:30px 20px;
}

.section-tiles-inner {
	width: 100%;
}
@media (min-width: 576px) {
	.section-tiles-inner {
		flex:0 0 calc(50% - 10px);
	}
}
@media (min-width: 768px) {
	.section-tiles-inner {
		flex:0 0 calc(33.3333% - 13.33334px);
	}
}
@media (min-width: 992px) {
	.section-tiles-inner {
		flex:0 0 calc(25% - 15px);
	}
}
@media (min-width: 1200px) {
	.section-tiles-inner {
		flex:0 0 calc(20% - 16px);
	}
}

.section-tiles-inner.section-tiles-inner-has {

}




.section-tiles-inner-image {
	width: 100%;
	background:url('images/cee.svg') center no-repeat var(--light-blue);
	background-size: 30%;
	border-bottom: 4px solid var(--azure);
	aspect-ratio: 1 / 1;
	position: relative;
}

.section-tiles-inner-has .section-tiles-inner-image {
	border-bottom: none;
}

.section-tiles-inner-image::after {
	content: '';
	width: 100%;
	height: 100%;
	background: #ffffff;
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	top:0;
	left: 0;
	position: absolute;
}

.section-tiles-inner-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-tiles-inner h3 {
	font-size: 20px;
	font-weight: 500;
	color: var(--azure);
	margin: 0;
	padding: 14px 14px 0 14px;
}
@media (min-width: 768px) {
	.section-tiles-inner h3 {
		font-size: 24px;
		padding: 24px 20px 0 30px;
	}
}

.section-tiles-inner-has.section-tiles-inner h3 {
	font-size: 20px;
	font-weight:400;
	padding: 24px 0 16px 0;
	margin: 0 8px;
	border-bottom: 1px solid var(--azure);
	line-height: 1;
}
@media (min-width: 992px) {
	.section-tiles-inner-has.section-tiles-inner h3 {
		font-size: 26px;
	}
}
@media (min-width: 1400px) {
	.section-tiles-inner-has.section-tiles-inner h3 {
		font-size: 30px;
	}
}

.section-tiles-inner ul {
	padding: 16px 8px 0 8px;
	margin:0;
}

.section-tiles-inner ul li {
	font-size: 16px;
	padding:0;
	margin:0 0 16px 0;
	list-style: none;
	line-height: 1;
}
@media (min-width: 992px) {
	.section-tiles-inner ul li {
		font-size: 20px;
	}
}

.section-tiles-inner ul li:last-child {
	margin: 0;
}

.section-tiles-bottom {
	margin:80px 0 0 0;
}

.section-tiles-btn {
	margin: 48px 0 0 0;
}
@media (min-width: 768px) {
	.section-tiles-btn {
		margin: 64px 0 0 0;
	}
}


/* section-quote */

.section-quote {
	background: url('images/img-quote.jpg') no-repeat;
	background-size: cover;
}

.section-quote h2 {
	font-size: 24px;
	font-weight: 400;
	color: var(--azure);
	letter-spacing: -.02em;
	margin: 0;
}
@media (min-width: 768px) {
	.section-quote h2 {
		flex: 0 0 70%;
		font-size: 28px;
	}
}
@media (min-width:992px) {
	.section-quote h2 {
		flex: 0 0 50%;
	}
}


/* section-funds */

.section-funds-sec {
	background: var(--extralight-blue);
}

.section-funds-sec h2 {
	letter-spacing: -.02em;
	margin: 0 0 48px 0;
}

.section-funds-sec-wrapper {
	gap:26px;
}

.section-funds-sec-inner {
	width: 100%;
	padding: 8px 24px 14px 24px;
	background: var(--white);
	border: 1px solid #DEE4EB;
	text-decoration: dashed;
}
@media (min-width: 576px) {
	.section-funds-sec-inner {
		flex: 0 0 calc(50% - 13px);
	}
}
@media (min-width:768px) {
	.section-funds-sec-inner {
		flex: 0 0 calc(33.3333% - 17.33333px);
	}
}
@media (min-width:992px) {
	.section-funds-sec-inner {
		flex: 0 0 calc(25% - 19.5px);
	}
}

.section-funds-sec-inner:hover {
	text-decoration: none;
}

.section-funds-sec-inner-logo {
	width: 100%;
	height: auto;
	aspect-ratio: 1.6 / 1;
	margin-bottom: 16px;
}

.section-funds-sec-inner-logo img {
	width: auto;
	height: auto;
	max-width: 90%;
	max-height: 90%;
}

.section-funds-sec-inner h3 {
	font-size: 20px;
	color: var(--dark-blue);
	margin:0 0 14px 0;
	line-height: 1;
}
@media (min-width:992px) {
	.section-funds-sec-inner h3 {
		font-size: 24px;
	}
}

.section-funds-sec-inner-keys-item {
	font-size: 12px;
	font-weight: 400;
	color: var(--blue);
	padding: 11px 0;
	border-bottom: 1px solid #DEE4EB;
	gap:10px;
}

.section-funds-sec-inner-keys-item:last-child {
	border-bottom: none;
}

.section-funds-sec-inner-keys-item strong {
	font-size: 14px;
	font-weight: 500;
	color: var(--dark-blue);
	text-decoration: none;
}


/* section-keyinfodoc */

.section-keyinfodoc-wrapper  {
	gap:40px;
}

.section-keyinfodoc-wrapper h3 {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -.02em;
	margin: 0 0 20px 0;
}
@media (min-width:768px) {
	.section-keyinfodoc-wrapper h3 {
		font-size: 24px;
	}
}

.section-keyinfodoc-inner-info {
	width: 100%;
}
@media (min-width:768px) {
	.section-keyinfodoc-inner-info {
		flex:0 0 51.5%;
		padding: 0 0 0 24px;
	}	
}

.section-keyinfodoc-inner-info-item {
	font-size: 14px;
	font-weight: 400;
	color: var(--blue);
	padding:24px 0 23px 0;
	border-bottom: 1px solid #DEE4EB;
	gap:10px;
}
@media (min-width:768px) {
	.section-keyinfodoc-inner-info-item {
		font-size: 16px;
	}
}

.section-keyinfodoc-inner-info-item:last-child {
	border-bottom: none;
}

.section-keyinfodoc-inner-info-item strong {
	font-size: 14px;
	font-weight: 500;
	color: var(--dark-blue);
	text-decoration: none;
}
@media (min-width:768px) {
	.section-keyinfodoc-inner-info-item strong {
		font-size: 16px;
	}
}

.section-keyinfodoc-inner-docs {
	width: 100%;
}
@media (min-width:768px) {
	.section-keyinfodoc-inner-docs {
		flex:0 31%;
	}	
}
@media (min-width:1200px) {
	.section-keyinfodoc-inner-docs {
		padding: 0 55px 0 0;
	}	
}

.section-keyinfodoc-inner-docs-keys {
	padding:27px 0 0  0;
	margin: 0;
}

.section-keyinfodoc-inner-docs-keys li {
	margin: 0 0 32px 0;
	padding: 0;
	list-style: none;
}

.section-keyinfodoc-inner-docs-keys li a {
	font-size: 16px;
	font-weight: 400;
	color: var(--blue);
	letter-spacing: -.02em;
	padding: 0 0 0 40px;
	text-decoration:underline;
	text-decoration-thickness: 1px;
  	text-underline-offset: 2px;
	position: relative;
}
@media (min-width:992px) {
	.section-keyinfodoc-inner-docs-keys li a {
		font-size: 20px;
	}
}

.section-keyinfodoc-inner-docs-keys li a:hover {
	color: var(--link);
	text-decoration:underline;
	text-decoration-thickness: 1px;
  	text-underline-offset: 2px;
}

.section-keyinfodoc-inner-docs-keys li a svg {
	left:3px;
	top:-1px;
	position: absolute;
}


/* section-people */

.section-people {
	background: var(--extralight-blue);
}

.section-people-list {
	gap:25px;
}

.section-people-list a {
	width: 100%;
	padding: 16px 16px 54px 16px;
	background: var(--white);
	display: block;
	text-decoration: none;
	position: relative;
}
@media (min-width:576px) {
	.section-people-list a {
		flex:0 0 calc(50% - 12.5px);
	}
}
@media (min-width:768px) {
	.section-people-list a {
		flex:0 0 calc(33.3333% - 16.66667px);
	}
}
@media (min-width:992px) {
	.section-people-list a {
		flex:0 0 calc(25% - 18.75px);
	}
}
@media (min-width:1200px) {
	.section-people-list a {
		flex:0 0 calc(20% - 20px);
	}
}

.section-people-list a:hover {
	text-decoration: none;
}

.section-people-list-photo {
	width: 100%;
	height: auto;
	background: url('images/cee.svg') center no-repeat var(--extralight-blue);
	background-size: 30%;
	aspect-ratio: 1 / 1;
	margin: 0 0 14px 0;
}

.section-people-list-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-people-list a h3 {
	font-size: 20px;
	color: var(--dark-blue);
	margin: 0 0 8px 0;
	letter-spacing: -.02em;
	line-height: 1;
}

.section-people-list a h4 {
	font-size: 14px;
	font-weight: 400;
	color: var(--azure);
	letter-spacing: -.02em;
	margin: 0;
	line-height: 1;
}

.section-people-list-arrow {
	width: 24px;
	height: 24px;
	right: 16px;
	bottom: 16px;
	position: absolute;
}



/* section-contact */

.section-contact h2 {
	font-size: 28px;
	letter-spacing: -.02em;
	margin: 0 0 48px 0;
}
@media (min-width: 768px) {
	.section-contact h2 {
		font-size: 32px;
		margin:0 0 64px 0;
	}
}

.section-contact-wrapper {
	gap:26px;
}

.section-contact-offices {
	width: 100%;
}
@media (min-width: 768px) {
	.section-contact-offices {
		flex:0 0 calc(50% - 13px);
	}
}

.section-contact-offices h3 {
	font-size: 20px;
	font-weight: 500;
	color: var(--orange);
	letter-spacing: -.02em;
	margin: 0 0 16px 0;
}
@media (min-width: 768px) {
	.section-contact-offices h3 {
		font-size: 24px;
		margin: 0 0 16px 0;
	}
}

.section-contact-offices-inner {
	font-size: 16px;
	color: var(--dark-blue);
	letter-spacing: -.02em;
		margin: 0 0 20px 0;
}
@media (min-width: 768px) {
	.section-contact-offices-inner {
		font-size: 20px;
		margin: 0 0 68px 0;
	}
}

.section-contact-offices-inner:last-child {
	margin: 0;
}

.section-contact-offices-inner p {
	font-size: 16px;
	color: var(--dark-blue);
	letter-spacing: -.02em;
	margin: 0 0 1.2em 0;
}
@media (min-width: 768px) {
	.section-contact-offices-inner p {
		font-size: 20px;
	}
}

.section-contact-offices-inner p:last-child {
	margin: 0;
}

.section-contact-offices-inner p a {
	color: var(--azure);
}

.section-contact-offices-2 {
	width: 100%;
	gap:26px;
}
@media (min-width: 768px) {
	.section-contact-offices-2 {
		flex:0 0 calc(50% - 13px);
	}
}

.section-contact-offices-2 h3 {
	font-size: 20px;
	font-weight: 500;
	color: var(--azure);
	letter-spacing: -.02em;
	margin: 0 0 16px 0;
}
@media (min-width: 768px) {
	.section-contact-offices-2 h3 {
		font-size: 24px;
		margin: 0 0 16px 0;
	}
}

.section-contact-offices-2-inner {
	font-size: 16px;
	color: var(--dark-blue);
	letter-spacing: -.02em;
	padding:30px 0 0 0;
	border-top: 1px solid #D7DFE7;
}
@media (min-width: 576px) {
	.section-contact-offices-2-inner {
		flex:0 0 calc(50% - 13px);
	}
}
@media (min-width: 768px) {
	.section-contact-offices-2-inner {
		font-size: 20px;
		flex:0 0 100%;
		border-left: 1px solid #D7DFE7;
		border-top: none;
		padding:0 24px 32px 24px;
	}
}
@media (min-width: 1200px) {
	.section-contact-offices-2-inner {
		flex:0 0 calc(50% - 13px);
	}
}

@media (min-width: 768px) {
	.section-contact-offices-2-inner:last-child {
		margin: 0;
	}
}

.section-contact-offices-2-inner p {
	font-size: 16px;
	color: var(--dark-blue);
	letter-spacing: -.02em;
	margin: 0;
}
@media (min-width: 768px) {
	.section-contact-offices-2-inner p {
		font-size: 20px;
	margin: 0 0 .8em 0;
	}
}

.section-contact-offices--2inner p:last-child {
	margin: 0;
}

.section-contact-offices-2-inner p a {
	color: var(--azure);
}



/* funds single */

.section-funds {
	padding: 48px 0;
	background: var(--extralight-blue);
}

.section-funds-wrapper {
	gap:50px;
	font-size: 16px;
}
@media (min-width: 768px) {
	.section-funds-wrapper {
		font-size: 20px;
	}
}

.section-funds-wrapper-info {
	width: 100vw;
	margin: 0 0 0 -24px;
	background: var(--white);
	padding: 16px;
}
@media (min-width: 768px) {
	.section-funds-wrapper-info {
		width: 100%;
		flex:0 0 calc(38% - 50px);
		margin: 0;
	}
}

.section-funds-wrapper-info-logo {
	margin-bottom: 16px;
	aspect-ratio: 1.5 / 1;
}

.section-funds-wrapper-info-logo img {
	width: auto;
	height: auto;
	max-width: 90%;
	max-height: 90%;
	object-fit: contain;
}

.section-funds-wrapper-info table {
	width: 100%;
}

.section-funds-wrapper-info table td {
	font-size: 14px;
	font-weight: 400;
	color: var(--blue);
	padding: 17px 7px;
	border-bottom: 1px solid #DEE4EB;
}

@media (min-width: 768px) {
	.section-funds-wrapper-info table td {
		font-size: 16px;
	}
}

.section-funds-wrapper-info table tr:last-child td {
	border-bottom: none;
}

.section-funds-wrapper-info table td strong, .section-funds-wrapper-info table td a {
	font-size: 14px;
	font-weight: 500;
	color: var(--dark-blue);
	text-decoration: none;
}
@media (min-width: 992px) {
	.section-funds-wrapper-info table td strong, .section-funds-wrapper-info table td a {
		font-size: 16px;
	}
}

.section-funds article {
	width: 100%;
}
@media (min-width: 768px) {
	.section-funds article {
		width: 100%;
		flex:0 0 62%;
		padding: 20px 0 0 0;
	}
}

.section-funds-title {
	font-size: 28px;
	margin: 0 0 -10px 0;
}
@media (min-width: 992px) {
	.section-funds-title {
		font-size: 32px;
		margin: 0 0 50px 0;
	}
}

.section-funds article h3 {
	color: var(--dark-blue);
}

.section-funds article p {
	font-size: 16px;
}
@media (min-width: 992px) {
	.section-funds article p {
		font-size: 20px;
	}
}


/* people single */

.section-people-single {
	padding: 48px 0;
}

.section-people-single-wrapper {
	font-size: 16px;
	gap:50px;
}
@media (min-width: 768px) {
	.section-people-single-wrapper {
		font-size: 20px;
	}
}

.section-people-single-wrapper-photo {
	width: 100%;
}
@media (min-width: 768px) {
	.section-people-single-wrapper-photo {
		flex:0 0 calc(39% - 50px);
	}
}

.section-people-single-wrapper-photo img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.section-people-single-wrapper article {
	width: 100%;
}
@media (min-width: 768px) {
	.section-people-single-wrapper article {
		width: 100%;
		flex:0 0 61%;
		padding: 20px 0 0 0;
	}
}

.section-people-single-title {
	letter-spacing: -.02em;
	color: var(--dark-blue);
	margin: 0 0 4px 0;
}

.section-people-single-subtitle {
	font-size: 20px;
	font-weight: 400;
	margin: 0 0 20px 0
}
@media (min-width: 768px) {
	.section-people-single-subtitle {
		margin: 0 0 50px 0
	}
}








/* footer */

footer {
	background: var(--dark-blue);
	padding: 55px 0;
}

.footer-menus {
	gap:30px 54px;
	padding: 0 0 35px 0;
	border-bottom: 1px solid var(--azure);
}
@media (min-width: 768px) {
	.footer-menus {
		padding: 0 0 45px 0;
	}
}

.footer-menu {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap:10px 30px;
}
@media (min-width: 768px) {
	.footer-menu {
		gap:10px 40px;
	}
}

.footer-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu li a {
	font-size: 12px;
	font-weight: 400;
	color: var(--white);
	text-decoration: none;
}
@media (min-width: 768px) {
	.footer-menu li a {
		font-size: 16px;
	}
}

.footer-menu li a:hover {
	color: var(--orange);
	text-decoration: none;
}

.social-media-menu {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap:10px;
}

.social-media-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.social-media-menu li a, .social-media-menu li a:hover {
	height: 36px;
	font-size: 0;
	color: transparent;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-media-menu li a img {
	max-width: 36px;
	max-height: 36px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.footer-copy {
	padding-top: 32px;
	font-size: 12px;
	color:var(--white);
	line-height: 1.2;
	gap:32px;
}

@media (min-width: 768px) {
	.footer-copy {
		font-size: 16px;
		padding-top: 60px;
	}
}

@media (min-width: 768px) {
	.footer-copy div {
		max-width: 50%;
	}
} 



/* popup */

input[type="radio"] {
    accent-color: var(--azure);
}

.cee-popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.55);
	z-index: 99998;
}

.cee-popup {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.cee-popup-box {
	background: #fff;
	border-radius: 12px;
	width: 100%;
	box-shadow: 0 20px 60px rgba(0,0,0,0.2);
	text-align: center;
	padding: 60px 66px;
	letter-spacing: -.02em;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}


.cee-popup-box--small {
	max-width:960px;
}

.cee-popup-box--large {
	max-width:960px;
}

.cee-popup-box h2 {
	margin: 0 0 48px 0;
	font-size: 40px;
	font-weight: 500;
	line-height: 1.1;
	color:var(--azure);
}


.cee-popup-box h3 {
	margin: 0 0 15px;
	font-size: 28px;
	color:var(--azure);
	font-weight: 400;
}

.cee-popup-box h4 {
	margin: 30px 0 15px;
	font-size: 28px;
	font-weight: 400;
	color:var(--azure);
	text-align: left;
}


.cee-popup-box p {
	color: var(--blue);
	font-size: 20px;
	line-height: 1.4;
	margin: 0 0 25px;
}



.cee-radio-group {
	display: flex;
	justify-content: center;
	gap: 20px 100px;
	margin:110px 0 42px;
	flex-wrap: wrap;
}
@media (max-width: 767px) {
	.cee-radio-group {
		margin:42px 0;
	}
}

.cee-radio-group label {
	font-size: 24px;
	color: var(--azure);
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}
@media (max-width: 767px) {
	.cee-radio-group label {
		font-size: 20px;
	}
}

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

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


.cee-popup-scroll {
	max-height: 420px;
	overflow-y: auto;
	text-align: left;
	padding-right: 10px;
	margin: 45px 0 20px 0;
}

.cee-popup-scroll hr,
.cee-popup-box > hr {
	border: 0;
	border-top: 1px solid #85C2D3;
	margin: 25px 0;
	opacity: 1;
}

.cee-popup-smalltext {
	font-size: 16px !important;
	color: var(--azure) !important;
	line-height: 1.4 !important;
	text-align: left !important;
	margin-bottom: 50px !important;
}

body.cee-popup-open {
	overflow: hidden;
}



@media (max-width: 767px) {
	.cee-popup-box {
		padding: 28px 20px;
	}

	.cee-popup-box h2 {
		font-size: 34px;
	}

	.cee-popup-box h3 {
		font-size: 22px;
	}

	.cee-popup-box p {
		font-size: 15px;
	}

	.cee-popup-scroll {
		max-height: 320px;
	}
}









@media (max-width:767.98px) {
	.margin-bottom--200 { margin-bottom: -200px !important; }
	.margin-bottom--199 { margin-bottom: -199px !important; }
	.margin-bottom--198 { margin-bottom: -198px !important; }
	.margin-bottom--197 { margin-bottom: -197px !important; }
	.margin-bottom--196 { margin-bottom: -196px !important; }
	.margin-bottom--195 { margin-bottom: -195px !important; }
	.margin-bottom--194 { margin-bottom: -194px !important; }
	.margin-bottom--193 { margin-bottom: -193px !important; }
	.margin-bottom--192 { margin-bottom: -192px !important; }
	.margin-bottom--191 { margin-bottom: -191px !important; }
	.margin-bottom--190 { margin-bottom: -190px !important; }
	.margin-bottom--189 { margin-bottom: -189px !important; }
	.margin-bottom--188 { margin-bottom: -188px !important; }
	.margin-bottom--187 { margin-bottom: -187px !important; }
	.margin-bottom--186 { margin-bottom: -186px !important; }
	.margin-bottom--185 { margin-bottom: -185px !important; }
	.margin-bottom--184 { margin-bottom: -184px !important; }
	.margin-bottom--183 { margin-bottom: -183px !important; }
	.margin-bottom--182 { margin-bottom: -182px !important; }
	.margin-bottom--181 { margin-bottom: -181px !important; }
	.margin-bottom--180 { margin-bottom: -180px !important; }
	.margin-bottom--179 { margin-bottom: -179px !important; }
	.margin-bottom--178 { margin-bottom: -178px !important; }
	.margin-bottom--177 { margin-bottom: -177px !important; }
	.margin-bottom--176 { margin-bottom: -176px !important; }
	.margin-bottom--175 { margin-bottom: -175px !important; }
	.margin-bottom--174 { margin-bottom: -174px !important; }
	.margin-bottom--173 { margin-bottom: -173px !important; }
	.margin-bottom--172 { margin-bottom: -172px !important; }
	.margin-bottom--171 { margin-bottom: -171px !important; }
	.margin-bottom--170 { margin-bottom: -170px !important; }
	.margin-bottom--169 { margin-bottom: -169px !important; }
	.margin-bottom--168 { margin-bottom: -168px !important; }
	.margin-bottom--167 { margin-bottom: -167px !important; }
	.margin-bottom--166 { margin-bottom: -166px !important; }
	.margin-bottom--165 { margin-bottom: -165px !important; }
	.margin-bottom--164 { margin-bottom: -164px !important; }
	.margin-bottom--163 { margin-bottom: -163px !important; }
	.margin-bottom--162 { margin-bottom: -162px !important; }
	.margin-bottom--161 { margin-bottom: -161px !important; }
	.margin-bottom--160 { margin-bottom: -160px !important; }
	.margin-bottom--159 { margin-bottom: -159px !important; }
	.margin-bottom--158 { margin-bottom: -158px !important; }
	.margin-bottom--157 { margin-bottom: -157px !important; }
	.margin-bottom--156 { margin-bottom: -156px !important; }
	.margin-bottom--155 { margin-bottom: -155px !important; }
	.margin-bottom--154 { margin-bottom: -154px !important; }
	.margin-bottom--153 { margin-bottom: -153px !important; }
	.margin-bottom--152 { margin-bottom: -152px !important; }
	.margin-bottom--151 { margin-bottom: -151px !important; }
	.margin-bottom--150 { margin-bottom: -150px !important; }
	.margin-bottom--149 { margin-bottom: -149px !important; }
	.margin-bottom--148 { margin-bottom: -148px !important; }
	.margin-bottom--147 { margin-bottom: -147px !important; }
	.margin-bottom--146 { margin-bottom: -146px !important; }
	.margin-bottom--145 { margin-bottom: -145px !important; }
	.margin-bottom--144 { margin-bottom: -144px !important; }
	.margin-bottom--143 { margin-bottom: -143px !important; }
	.margin-bottom--142 { margin-bottom: -142px !important; }
	.margin-bottom--141 { margin-bottom: -141px !important; }
	.margin-bottom--140 { margin-bottom: -140px !important; }
	.margin-bottom--139 { margin-bottom: -139px !important; }
	.margin-bottom--138 { margin-bottom: -138px !important; }
	.margin-bottom--137 { margin-bottom: -137px !important; }
	.margin-bottom--136 { margin-bottom: -136px !important; }
	.margin-bottom--135 { margin-bottom: -135px !important; }
	.margin-bottom--134 { margin-bottom: -134px !important; }
	.margin-bottom--133 { margin-bottom: -133px !important; }
	.margin-bottom--132 { margin-bottom: -132px !important; }
	.margin-bottom--131 { margin-bottom: -131px !important; }
	.margin-bottom--130 { margin-bottom: -130px !important; }
	.margin-bottom--129 { margin-bottom: -129px !important; }
	.margin-bottom--128 { margin-bottom: -128px !important; }
	.margin-bottom--127 { margin-bottom: -127px !important; }
	.margin-bottom--126 { margin-bottom: -126px !important; }
	.margin-bottom--125 { margin-bottom: -125px !important; }
	.margin-bottom--124 { margin-bottom: -124px !important; }
	.margin-bottom--123 { margin-bottom: -123px !important; }
	.margin-bottom--122 { margin-bottom: -122px !important; }
	.margin-bottom--121 { margin-bottom: -121px !important; }
	.margin-bottom--120 { margin-bottom: -120px !important; }
	.margin-bottom--119 { margin-bottom: -119px !important; }
	.margin-bottom--118 { margin-bottom: -118px !important; }
	.margin-bottom--117 { margin-bottom: -117px !important; }
	.margin-bottom--116 { margin-bottom: -116px !important; }
	.margin-bottom--115 { margin-bottom: -115px !important; }
	.margin-bottom--114 { margin-bottom: -114px !important; }
	.margin-bottom--113 { margin-bottom: -113px !important; }
	.margin-bottom--112 { margin-bottom: -112px !important; }
	.margin-bottom--111 { margin-bottom: -111px !important; }
	.margin-bottom--110 { margin-bottom: -110px !important; }
	.margin-bottom--109 { margin-bottom: -109px !important; }
	.margin-bottom--108 { margin-bottom: -108px !important; }
	.margin-bottom--107 { margin-bottom: -107px !important; }
	.margin-bottom--106 { margin-bottom: -106px !important; }
	.margin-bottom--105 { margin-bottom: -105px !important; }
	.margin-bottom--104 { margin-bottom: -104px !important; }
	.margin-bottom--103 { margin-bottom: -103px !important; }
	.margin-bottom--102 { margin-bottom: -102px !important; }
	.margin-bottom--101 { margin-bottom: -101px !important; }
	.margin-bottom--100 { margin-bottom: -100px !important; }
	.margin-bottom--99 { margin-bottom: -99px !important; }
	.margin-bottom--98 { margin-bottom: -98px !important; }
	.margin-bottom--97 { margin-bottom: -97px !important; }
	.margin-bottom--96 { margin-bottom: -96px !important; }
	.margin-bottom--95 { margin-bottom: -95px !important; }
	.margin-bottom--94 { margin-bottom: -94px !important; }
	.margin-bottom--93 { margin-bottom: -93px !important; }
	.margin-bottom--92 { margin-bottom: -92px !important; }
	.margin-bottom--91 { margin-bottom: -91px !important; }
	.margin-bottom--90 { margin-bottom: -90px !important; }
	.margin-bottom--89 { margin-bottom: -89px !important; }
	.margin-bottom--88 { margin-bottom: -88px !important; }
	.margin-bottom--87 { margin-bottom: -87px !important; }
	.margin-bottom--86 { margin-bottom: -86px !important; }
	.margin-bottom--85 { margin-bottom: -85px !important; }
	.margin-bottom--84 { margin-bottom: -84px !important; }
	.margin-bottom--83 { margin-bottom: -83px !important; }
	.margin-bottom--82 { margin-bottom: -82px !important; }
	.margin-bottom--81 { margin-bottom: -81px !important; }
	.margin-bottom--80 { margin-bottom: -80px !important; }
	.margin-bottom--79 { margin-bottom: -79px !important; }
	.margin-bottom--78 { margin-bottom: -78px !important; }
	.margin-bottom--77 { margin-bottom: -77px !important; }
	.margin-bottom--76 { margin-bottom: -76px !important; }
	.margin-bottom--75 { margin-bottom: -75px !important; }
	.margin-bottom--74 { margin-bottom: -74px !important; }
	.margin-bottom--73 { margin-bottom: -73px !important; }
	.margin-bottom--72 { margin-bottom: -72px !important; }
	.margin-bottom--71 { margin-bottom: -71px !important; }
	.margin-bottom--70 { margin-bottom: -70px !important; }
	.margin-bottom--69 { margin-bottom: -69px !important; }
	.margin-bottom--68 { margin-bottom: -68px !important; }
	.margin-bottom--67 { margin-bottom: -67px !important; }
	.margin-bottom--66 { margin-bottom: -66px !important; }
	.margin-bottom--65 { margin-bottom: -65px !important; }
	.margin-bottom--64 { margin-bottom: -64px !important; }
	.margin-bottom--63 { margin-bottom: -63px !important; }
	.margin-bottom--62 { margin-bottom: -62px !important; }
	.margin-bottom--61 { margin-bottom: -61px !important; }
	.margin-bottom--60 { margin-bottom: -60px !important; }
	.margin-bottom--59 { margin-bottom: -59px !important; }
	.margin-bottom--58 { margin-bottom: -58px !important; }
	.margin-bottom--57 { margin-bottom: -57px !important; }
	.margin-bottom--56 { margin-bottom: -56px !important; }
	.margin-bottom--55 { margin-bottom: -55px !important; }
	.margin-bottom--54 { margin-bottom: -54px !important; }
	.margin-bottom--53 { margin-bottom: -53px !important; }
	.margin-bottom--52 { margin-bottom: -52px !important; }
	.margin-bottom--51 { margin-bottom: -51px !important; }
	.margin-bottom--50 { margin-bottom: -50px !important; }
	.margin-bottom--49 { margin-bottom: -49px !important; }
	.margin-bottom--48 { margin-bottom: -48px !important; }
	.margin-bottom--47 { margin-bottom: -47px !important; }
	.margin-bottom--46 { margin-bottom: -46px !important; }
	.margin-bottom--45 { margin-bottom: -45px !important; }
	.margin-bottom--44 { margin-bottom: -44px !important; }
	.margin-bottom--43 { margin-bottom: -43px !important; }
	.margin-bottom--42 { margin-bottom: -42px !important; }
	.margin-bottom--41 { margin-bottom: -41px !important; }
	.margin-bottom--40 { margin-bottom: -40px !important; }
	.margin-bottom--39 { margin-bottom: -39px !important; }
	.margin-bottom--38 { margin-bottom: -38px !important; }
	.margin-bottom--37 { margin-bottom: -37px !important; }
	.margin-bottom--36 { margin-bottom: -36px !important; }
	.margin-bottom--35 { margin-bottom: -35px !important; }
	.margin-bottom--34 { margin-bottom: -34px !important; }
	.margin-bottom--33 { margin-bottom: -33px !important; }
	.margin-bottom--32 { margin-bottom: -32px !important; }
	.margin-bottom--31 { margin-bottom: -31px !important; }
	.margin-bottom--30 { margin-bottom: -30px !important; }
	.margin-bottom--29 { margin-bottom: -29px !important; }
	.margin-bottom--28 { margin-bottom: -28px !important; }
	.margin-bottom--27 { margin-bottom: -27px !important; }
	.margin-bottom--26 { margin-bottom: -26px !important; }
	.margin-bottom--25 { margin-bottom: -25px !important; }
	.margin-bottom--24 { margin-bottom: -24px !important; }
	.margin-bottom--23 { margin-bottom: -23px !important; }
	.margin-bottom--22 { margin-bottom: -22px !important; }
	.margin-bottom--21 { margin-bottom: -21px !important; }
	.margin-bottom--20 { margin-bottom: -20px !important; }
	.margin-bottom--19 { margin-bottom: -19px !important; }
	.margin-bottom--18 { margin-bottom: -18px !important; }
	.margin-bottom--17 { margin-bottom: -17px !important; }
	.margin-bottom--16 { margin-bottom: -16px !important; }
	.margin-bottom--15 { margin-bottom: -15px !important; }
	.margin-bottom--14 { margin-bottom: -14px !important; }
	.margin-bottom--13 { margin-bottom: -13px !important; }
	.margin-bottom--12 { margin-bottom: -12px !important; }
	.margin-bottom--11 { margin-bottom: -11px !important; }
	.margin-bottom--10 { margin-bottom: -10px !important; }
	.margin-bottom--9 { margin-bottom: -9px !important; }
	.margin-bottom--8 { margin-bottom: -8px !important; }
	.margin-bottom--7 { margin-bottom: -7px !important; }
	.margin-bottom--6 { margin-bottom: -6px !important; }
	.margin-bottom--5 { margin-bottom: -5px !important; }
	.margin-bottom--4 { margin-bottom: -4px !important; }
	.margin-bottom--3 { margin-bottom: -3px !important; }
	.margin-bottom--2 { margin-bottom: -2px !important; }
	.margin-bottom--1 { margin-bottom: -1px !important; }
	.margin-bottom-0 { margin-bottom: 0px !important; }
	.margin-bottom-1 { margin-bottom: 1px !important; }
	.margin-bottom-2 { margin-bottom: 2px !important; }
	.margin-bottom-3 { margin-bottom: 3px !important; }
	.margin-bottom-4 { margin-bottom: 4px !important; }
	.margin-bottom-5 { margin-bottom: 5px !important; }
	.margin-bottom-6 { margin-bottom: 6px !important; }
	.margin-bottom-7 { margin-bottom: 7px !important; }
	.margin-bottom-8 { margin-bottom: 8px !important; }
	.margin-bottom-9 { margin-bottom: 9px !important; }
	.margin-bottom-10 { margin-bottom: 10px !important; }
	.margin-bottom-11 { margin-bottom: 11px !important; }
	.margin-bottom-12 { margin-bottom: 12px !important; }
	.margin-bottom-13 { margin-bottom: 13px !important; }
	.margin-bottom-14 { margin-bottom: 14px !important; }
	.margin-bottom-15 { margin-bottom: 15px !important; }
	.margin-bottom-16 { margin-bottom: 16px !important; }
	.margin-bottom-17 { margin-bottom: 17px !important; }
	.margin-bottom-18 { margin-bottom: 18px !important; }
	.margin-bottom-19 { margin-bottom: 19px !important; }
	.margin-bottom-20 { margin-bottom: 20px !important; }
	.margin-bottom-21 { margin-bottom: 21px !important; }
	.margin-bottom-22 { margin-bottom: 22px !important; }
	.margin-bottom-23 { margin-bottom: 23px !important; }
	.margin-bottom-24 { margin-bottom: 24px !important; }
	.margin-bottom-25 { margin-bottom: 25px !important; }
	.margin-bottom-26 { margin-bottom: 26px !important; }
	.margin-bottom-27 { margin-bottom: 27px !important; }
	.margin-bottom-28 { margin-bottom: 28px !important; }
	.margin-bottom-29 { margin-bottom: 29px !important; }
	.margin-bottom-30 { margin-bottom: 30px !important; }
	.margin-bottom-31 { margin-bottom: 31px !important; }
	.margin-bottom-32 { margin-bottom: 32px !important; }
	.margin-bottom-33 { margin-bottom: 33px !important; }
	.margin-bottom-34 { margin-bottom: 34px !important; }
	.margin-bottom-35 { margin-bottom: 35px !important; }
	.margin-bottom-36 { margin-bottom: 36px !important; }
	.margin-bottom-37 { margin-bottom: 37px !important; }
	.margin-bottom-38 { margin-bottom: 38px !important; }
	.margin-bottom-39 { margin-bottom: 39px !important; }
	.margin-bottom-40 { margin-bottom: 40px !important; }
	.margin-bottom-41 { margin-bottom: 41px !important; }
	.margin-bottom-42 { margin-bottom: 42px !important; }
	.margin-bottom-43 { margin-bottom: 43px !important; }
	.margin-bottom-44 { margin-bottom: 44px !important; }
	.margin-bottom-45 { margin-bottom: 45px !important; }
	.margin-bottom-46 { margin-bottom: 46px !important; }
	.margin-bottom-47 { margin-bottom: 47px !important; }
	.margin-bottom-48 { margin-bottom: 48px !important; }
	.margin-bottom-49 { margin-bottom: 49px !important; }
	.margin-bottom-50 { margin-bottom: 50px !important; }
	.margin-bottom-51 { margin-bottom: 51px !important; }
	.margin-bottom-52 { margin-bottom: 52px !important; }
	.margin-bottom-53 { margin-bottom: 53px !important; }
	.margin-bottom-54 { margin-bottom: 54px !important; }
	.margin-bottom-55 { margin-bottom: 55px !important; }
	.margin-bottom-56 { margin-bottom: 56px !important; }
	.margin-bottom-57 { margin-bottom: 57px !important; }
	.margin-bottom-58 { margin-bottom: 58px !important; }
	.margin-bottom-59 { margin-bottom: 59px !important; }
	.margin-bottom-60 { margin-bottom: 60px !important; }
	.margin-bottom-61 { margin-bottom: 61px !important; }
	.margin-bottom-62 { margin-bottom: 62px !important; }
	.margin-bottom-63 { margin-bottom: 63px !important; }
	.margin-bottom-64 { margin-bottom: 64px !important; }
	.margin-bottom-65 { margin-bottom: 65px !important; }
	.margin-bottom-66 { margin-bottom: 66px !important; }
	.margin-bottom-67 { margin-bottom: 67px !important; }
	.margin-bottom-68 { margin-bottom: 68px !important; }
	.margin-bottom-69 { margin-bottom: 69px !important; }
	.margin-bottom-70 { margin-bottom: 70px !important; }
	.margin-bottom-71 { margin-bottom: 71px !important; }
	.margin-bottom-72 { margin-bottom: 72px !important; }
	.margin-bottom-73 { margin-bottom: 73px !important; }
	.margin-bottom-74 { margin-bottom: 74px !important; }
	.margin-bottom-75 { margin-bottom: 75px !important; }
	.margin-bottom-76 { margin-bottom: 76px !important; }
	.margin-bottom-77 { margin-bottom: 77px !important; }
	.margin-bottom-78 { margin-bottom: 78px !important; }
	.margin-bottom-79 { margin-bottom: 79px !important; }
	.margin-bottom-80 { margin-bottom: 80px !important; }
	.margin-bottom-81 { margin-bottom: 81px !important; }
	.margin-bottom-82 { margin-bottom: 82px !important; }
	.margin-bottom-83 { margin-bottom: 83px !important; }
	.margin-bottom-84 { margin-bottom: 84px !important; }
	.margin-bottom-85 { margin-bottom: 85px !important; }
	.margin-bottom-86 { margin-bottom: 86px !important; }
	.margin-bottom-87 { margin-bottom: 87px !important; }
	.margin-bottom-88 { margin-bottom: 88px !important; }
	.margin-bottom-89 { margin-bottom: 89px !important; }
	.margin-bottom-90 { margin-bottom: 90px !important; }
	.margin-bottom-91 { margin-bottom: 91px !important; }
	.margin-bottom-92 { margin-bottom: 92px !important; }
	.margin-bottom-93 { margin-bottom: 93px !important; }
	.margin-bottom-94 { margin-bottom: 94px !important; }
	.margin-bottom-95 { margin-bottom: 95px !important; }
	.margin-bottom-96 { margin-bottom: 96px !important; }
	.margin-bottom-97 { margin-bottom: 97px !important; }
	.margin-bottom-98 { margin-bottom: 98px !important; }
	.margin-bottom-99 { margin-bottom: 99px !important; }
	.margin-bottom-100 { margin-bottom: 100px !important; }
	.margin-bottom-101 { margin-bottom: 101px !important; }
	.margin-bottom-102 { margin-bottom: 102px !important; }
	.margin-bottom-103 { margin-bottom: 103px !important; }
	.margin-bottom-104 { margin-bottom: 104px !important; }
	.margin-bottom-105 { margin-bottom: 105px !important; }
	.margin-bottom-106 { margin-bottom: 106px !important; }
	.margin-bottom-107 { margin-bottom: 107px !important; }
	.margin-bottom-108 { margin-bottom: 108px !important; }
	.margin-bottom-109 { margin-bottom: 109px !important; }
	.margin-bottom-110 { margin-bottom: 110px !important; }
	.margin-bottom-111 { margin-bottom: 111px !important; }
	.margin-bottom-112 { margin-bottom: 112px !important; }
	.margin-bottom-113 { margin-bottom: 113px !important; }
	.margin-bottom-114 { margin-bottom: 114px !important; }
	.margin-bottom-115 { margin-bottom: 115px !important; }
	.margin-bottom-116 { margin-bottom: 116px !important; }
	.margin-bottom-117 { margin-bottom: 117px !important; }
	.margin-bottom-118 { margin-bottom: 118px !important; }
	.margin-bottom-119 { margin-bottom: 119px !important; }
	.margin-bottom-120 { margin-bottom: 120px !important; }
	.margin-bottom-121 { margin-bottom: 121px !important; }
	.margin-bottom-122 { margin-bottom: 122px !important; }
	.margin-bottom-123 { margin-bottom: 123px !important; }
	.margin-bottom-124 { margin-bottom: 124px !important; }
	.margin-bottom-125 { margin-bottom: 125px !important; }
	.margin-bottom-126 { margin-bottom: 126px !important; }
	.margin-bottom-127 { margin-bottom: 127px !important; }
	.margin-bottom-128 { margin-bottom: 128px !important; }
	.margin-bottom-129 { margin-bottom: 129px !important; }
	.margin-bottom-130 { margin-bottom: 130px !important; }
	.margin-bottom-131 { margin-bottom: 131px !important; }
	.margin-bottom-132 { margin-bottom: 132px !important; }
	.margin-bottom-133 { margin-bottom: 133px !important; }
	.margin-bottom-134 { margin-bottom: 134px !important; }
	.margin-bottom-135 { margin-bottom: 135px !important; }
	.margin-bottom-136 { margin-bottom: 136px !important; }
	.margin-bottom-137 { margin-bottom: 137px !important; }
	.margin-bottom-138 { margin-bottom: 138px !important; }
	.margin-bottom-139 { margin-bottom: 139px !important; }
	.margin-bottom-140 { margin-bottom: 140px !important; }
	.margin-bottom-141 { margin-bottom: 141px !important; }
	.margin-bottom-142 { margin-bottom: 142px !important; }
	.margin-bottom-143 { margin-bottom: 143px !important; }
	.margin-bottom-144 { margin-bottom: 144px !important; }
	.margin-bottom-145 { margin-bottom: 145px !important; }
	.margin-bottom-146 { margin-bottom: 146px !important; }
	.margin-bottom-147 { margin-bottom: 147px !important; }
	.margin-bottom-148 { margin-bottom: 148px !important; }
	.margin-bottom-149 { margin-bottom: 149px !important; }
	.margin-bottom-150 { margin-bottom: 150px !important; }
	.margin-bottom-151 { margin-bottom: 151px !important; }
	.margin-bottom-152 { margin-bottom: 152px !important; }
	.margin-bottom-153 { margin-bottom: 153px !important; }
	.margin-bottom-154 { margin-bottom: 154px !important; }
	.margin-bottom-155 { margin-bottom: 155px !important; }
	.margin-bottom-156 { margin-bottom: 156px !important; }
	.margin-bottom-157 { margin-bottom: 157px !important; }
	.margin-bottom-158 { margin-bottom: 158px !important; }
	.margin-bottom-159 { margin-bottom: 159px !important; }
	.margin-bottom-160 { margin-bottom: 160px !important; }
	.margin-bottom-161 { margin-bottom: 161px !important; }
	.margin-bottom-162 { margin-bottom: 162px !important; }
	.margin-bottom-163 { margin-bottom: 163px !important; }
	.margin-bottom-164 { margin-bottom: 164px !important; }
	.margin-bottom-165 { margin-bottom: 165px !important; }
	.margin-bottom-166 { margin-bottom: 166px !important; }
	.margin-bottom-167 { margin-bottom: 167px !important; }
	.margin-bottom-168 { margin-bottom: 168px !important; }
	.margin-bottom-169 { margin-bottom: 169px !important; }
	.margin-bottom-170 { margin-bottom: 170px !important; }
	.margin-bottom-171 { margin-bottom: 171px !important; }
	.margin-bottom-172 { margin-bottom: 172px !important; }
	.margin-bottom-173 { margin-bottom: 173px !important; }
	.margin-bottom-174 { margin-bottom: 174px !important; }
	.margin-bottom-175 { margin-bottom: 175px !important; }
	.margin-bottom-176 { margin-bottom: 176px !important; }
	.margin-bottom-177 { margin-bottom: 177px !important; }
	.margin-bottom-178 { margin-bottom: 178px !important; }
	.margin-bottom-179 { margin-bottom: 179px !important; }
	.margin-bottom-180 { margin-bottom: 180px !important; }
	.margin-bottom-181 { margin-bottom: 181px !important; }
	.margin-bottom-182 { margin-bottom: 182px !important; }
	.margin-bottom-183 { margin-bottom: 183px !important; }
	.margin-bottom-184 { margin-bottom: 184px !important; }
	.margin-bottom-185 { margin-bottom: 185px !important; }
	.margin-bottom-186 { margin-bottom: 186px !important; }
	.margin-bottom-187 { margin-bottom: 187px !important; }
	.margin-bottom-188 { margin-bottom: 188px !important; }
	.margin-bottom-189 { margin-bottom: 189px !important; }
	.margin-bottom-190 { margin-bottom: 190px !important; }
	.margin-bottom-191 { margin-bottom: 191px !important; }
	.margin-bottom-192 { margin-bottom: 192px !important; }
	.margin-bottom-193 { margin-bottom: 193px !important; }
	.margin-bottom-194 { margin-bottom: 194px !important; }
	.margin-bottom-195 { margin-bottom: 195px !important; }
	.margin-bottom-196 { margin-bottom: 196px !important; }
	.margin-bottom-197 { margin-bottom: 197px !important; }
	.margin-bottom-198 { margin-bottom: 198px !important; }
	.margin-bottom-199 { margin-bottom: 199px !important; }
	.margin-bottom-200 { margin-bottom: 200px !important; }
}

@media (min-width:768px) {
	.margin-bottom-large--200 { margin-bottom: -200px !important; }
	.margin-bottom-large--199 { margin-bottom: -199px !important; }
	.margin-bottom-large--198 { margin-bottom: -198px !important; }
	.margin-bottom-large--197 { margin-bottom: -197px !important; }
	.margin-bottom-large--196 { margin-bottom: -196px !important; }
	.margin-bottom-large--195 { margin-bottom: -195px !important; }
	.margin-bottom-large--194 { margin-bottom: -194px !important; }
	.margin-bottom-large--193 { margin-bottom: -193px !important; }
	.margin-bottom-large--192 { margin-bottom: -192px !important; }
	.margin-bottom-large--191 { margin-bottom: -191px !important; }
	.margin-bottom-large--190 { margin-bottom: -190px !important; }
	.margin-bottom-large--189 { margin-bottom: -189px !important; }
	.margin-bottom-large--188 { margin-bottom: -188px !important; }
	.margin-bottom-large--187 { margin-bottom: -187px !important; }
	.margin-bottom-large--186 { margin-bottom: -186px !important; }
	.margin-bottom-large--185 { margin-bottom: -185px !important; }
	.margin-bottom-large--184 { margin-bottom: -184px !important; }
	.margin-bottom-large--183 { margin-bottom: -183px !important; }
	.margin-bottom-large--182 { margin-bottom: -182px !important; }
	.margin-bottom-large--181 { margin-bottom: -181px !important; }
	.margin-bottom-large--180 { margin-bottom: -180px !important; }
	.margin-bottom-large--179 { margin-bottom: -179px !important; }
	.margin-bottom-large--178 { margin-bottom: -178px !important; }
	.margin-bottom-large--177 { margin-bottom: -177px !important; }
	.margin-bottom-large--176 { margin-bottom: -176px !important; }
	.margin-bottom-large--175 { margin-bottom: -175px !important; }
	.margin-bottom-large--174 { margin-bottom: -174px !important; }
	.margin-bottom-large--173 { margin-bottom: -173px !important; }
	.margin-bottom-large--172 { margin-bottom: -172px !important; }
	.margin-bottom-large--171 { margin-bottom: -171px !important; }
	.margin-bottom-large--170 { margin-bottom: -170px !important; }
	.margin-bottom-large--169 { margin-bottom: -169px !important; }
	.margin-bottom-large--168 { margin-bottom: -168px !important; }
	.margin-bottom-large--167 { margin-bottom: -167px !important; }
	.margin-bottom-large--166 { margin-bottom: -166px !important; }
	.margin-bottom-large--165 { margin-bottom: -165px !important; }
	.margin-bottom-large--164 { margin-bottom: -164px !important; }
	.margin-bottom-large--163 { margin-bottom: -163px !important; }
	.margin-bottom-large--162 { margin-bottom: -162px !important; }
	.margin-bottom-large--161 { margin-bottom: -161px !important; }
	.margin-bottom-large--160 { margin-bottom: -160px !important; }
	.margin-bottom-large--159 { margin-bottom: -159px !important; }
	.margin-bottom-large--158 { margin-bottom: -158px !important; }
	.margin-bottom-large--157 { margin-bottom: -157px !important; }
	.margin-bottom-large--156 { margin-bottom: -156px !important; }
	.margin-bottom-large--155 { margin-bottom: -155px !important; }
	.margin-bottom-large--154 { margin-bottom: -154px !important; }
	.margin-bottom-large--153 { margin-bottom: -153px !important; }
	.margin-bottom-large--152 { margin-bottom: -152px !important; }
	.margin-bottom-large--151 { margin-bottom: -151px !important; }
	.margin-bottom-large--150 { margin-bottom: -150px !important; }
	.margin-bottom-large--149 { margin-bottom: -149px !important; }
	.margin-bottom-large--148 { margin-bottom: -148px !important; }
	.margin-bottom-large--147 { margin-bottom: -147px !important; }
	.margin-bottom-large--146 { margin-bottom: -146px !important; }
	.margin-bottom-large--145 { margin-bottom: -145px !important; }
	.margin-bottom-large--144 { margin-bottom: -144px !important; }
	.margin-bottom-large--143 { margin-bottom: -143px !important; }
	.margin-bottom-large--142 { margin-bottom: -142px !important; }
	.margin-bottom-large--141 { margin-bottom: -141px !important; }
	.margin-bottom-large--140 { margin-bottom: -140px !important; }
	.margin-bottom-large--139 { margin-bottom: -139px !important; }
	.margin-bottom-large--138 { margin-bottom: -138px !important; }
	.margin-bottom-large--137 { margin-bottom: -137px !important; }
	.margin-bottom-large--136 { margin-bottom: -136px !important; }
	.margin-bottom-large--135 { margin-bottom: -135px !important; }
	.margin-bottom-large--134 { margin-bottom: -134px !important; }
	.margin-bottom-large--133 { margin-bottom: -133px !important; }
	.margin-bottom-large--132 { margin-bottom: -132px !important; }
	.margin-bottom-large--131 { margin-bottom: -131px !important; }
	.margin-bottom-large--130 { margin-bottom: -130px !important; }
	.margin-bottom-large--129 { margin-bottom: -129px !important; }
	.margin-bottom-large--128 { margin-bottom: -128px !important; }
	.margin-bottom-large--127 { margin-bottom: -127px !important; }
	.margin-bottom-large--126 { margin-bottom: -126px !important; }
	.margin-bottom-large--125 { margin-bottom: -125px !important; }
	.margin-bottom-large--124 { margin-bottom: -124px !important; }
	.margin-bottom-large--123 { margin-bottom: -123px !important; }
	.margin-bottom-large--122 { margin-bottom: -122px !important; }
	.margin-bottom-large--121 { margin-bottom: -121px !important; }
	.margin-bottom-large--120 { margin-bottom: -120px !important; }
	.margin-bottom-large--119 { margin-bottom: -119px !important; }
	.margin-bottom-large--118 { margin-bottom: -118px !important; }
	.margin-bottom-large--117 { margin-bottom: -117px !important; }
	.margin-bottom-large--116 { margin-bottom: -116px !important; }
	.margin-bottom-large--115 { margin-bottom: -115px !important; }
	.margin-bottom-large--114 { margin-bottom: -114px !important; }
	.margin-bottom-large--113 { margin-bottom: -113px !important; }
	.margin-bottom-large--112 { margin-bottom: -112px !important; }
	.margin-bottom-large--111 { margin-bottom: -111px !important; }
	.margin-bottom-large--110 { margin-bottom: -110px !important; }
	.margin-bottom-large--109 { margin-bottom: -109px !important; }
	.margin-bottom-large--108 { margin-bottom: -108px !important; }
	.margin-bottom-large--107 { margin-bottom: -107px !important; }
	.margin-bottom-large--106 { margin-bottom: -106px !important; }
	.margin-bottom-large--105 { margin-bottom: -105px !important; }
	.margin-bottom-large--104 { margin-bottom: -104px !important; }
	.margin-bottom-large--103 { margin-bottom: -103px !important; }
	.margin-bottom-large--102 { margin-bottom: -102px !important; }
	.margin-bottom-large--101 { margin-bottom: -101px !important; }
	.margin-bottom-large--100 { margin-bottom: -100px !important; }
	.margin-bottom-large--99 { margin-bottom: -99px !important; }
	.margin-bottom-large--98 { margin-bottom: -98px !important; }
	.margin-bottom-large--97 { margin-bottom: -97px !important; }
	.margin-bottom-large--96 { margin-bottom: -96px !important; }
	.margin-bottom-large--95 { margin-bottom: -95px !important; }
	.margin-bottom-large--94 { margin-bottom: -94px !important; }
	.margin-bottom-large--93 { margin-bottom: -93px !important; }
	.margin-bottom-large--92 { margin-bottom: -92px !important; }
	.margin-bottom-large--91 { margin-bottom: -91px !important; }
	.margin-bottom-large--90 { margin-bottom: -90px !important; }
	.margin-bottom-large--89 { margin-bottom: -89px !important; }
	.margin-bottom-large--88 { margin-bottom: -88px !important; }
	.margin-bottom-large--87 { margin-bottom: -87px !important; }
	.margin-bottom-large--86 { margin-bottom: -86px !important; }
	.margin-bottom-large--85 { margin-bottom: -85px !important; }
	.margin-bottom-large--84 { margin-bottom: -84px !important; }
	.margin-bottom-large--83 { margin-bottom: -83px !important; }
	.margin-bottom-large--82 { margin-bottom: -82px !important; }
	.margin-bottom-large--81 { margin-bottom: -81px !important; }
	.margin-bottom-large--80 { margin-bottom: -80px !important; }
	.margin-bottom-large--79 { margin-bottom: -79px !important; }
	.margin-bottom-large--78 { margin-bottom: -78px !important; }
	.margin-bottom-large--77 { margin-bottom: -77px !important; }
	.margin-bottom-large--76 { margin-bottom: -76px !important; }
	.margin-bottom-large--75 { margin-bottom: -75px !important; }
	.margin-bottom-large--74 { margin-bottom: -74px !important; }
	.margin-bottom-large--73 { margin-bottom: -73px !important; }
	.margin-bottom-large--72 { margin-bottom: -72px !important; }
	.margin-bottom-large--71 { margin-bottom: -71px !important; }
	.margin-bottom-large--70 { margin-bottom: -70px !important; }
	.margin-bottom-large--69 { margin-bottom: -69px !important; }
	.margin-bottom-large--68 { margin-bottom: -68px !important; }
	.margin-bottom-large--67 { margin-bottom: -67px !important; }
	.margin-bottom-large--66 { margin-bottom: -66px !important; }
	.margin-bottom-large--65 { margin-bottom: -65px !important; }
	.margin-bottom-large--64 { margin-bottom: -64px !important; }
	.margin-bottom-large--63 { margin-bottom: -63px !important; }
	.margin-bottom-large--62 { margin-bottom: -62px !important; }
	.margin-bottom-large--61 { margin-bottom: -61px !important; }
	.margin-bottom-large--60 { margin-bottom: -60px !important; }
	.margin-bottom-large--59 { margin-bottom: -59px !important; }
	.margin-bottom-large--58 { margin-bottom: -58px !important; }
	.margin-bottom-large--57 { margin-bottom: -57px !important; }
	.margin-bottom-large--56 { margin-bottom: -56px !important; }
	.margin-bottom-large--55 { margin-bottom: -55px !important; }
	.margin-bottom-large--54 { margin-bottom: -54px !important; }
	.margin-bottom-large--53 { margin-bottom: -53px !important; }
	.margin-bottom-large--52 { margin-bottom: -52px !important; }
	.margin-bottom-large--51 { margin-bottom: -51px !important; }
	.margin-bottom-large--50 { margin-bottom: -50px !important; }
	.margin-bottom-large--49 { margin-bottom: -49px !important; }
	.margin-bottom-large--48 { margin-bottom: -48px !important; }
	.margin-bottom-large--47 { margin-bottom: -47px !important; }
	.margin-bottom-large--46 { margin-bottom: -46px !important; }
	.margin-bottom-large--45 { margin-bottom: -45px !important; }
	.margin-bottom-large--44 { margin-bottom: -44px !important; }
	.margin-bottom-large--43 { margin-bottom: -43px !important; }
	.margin-bottom-large--42 { margin-bottom: -42px !important; }
	.margin-bottom-large--41 { margin-bottom: -41px !important; }
	.margin-bottom-large--40 { margin-bottom: -40px !important; }
	.margin-bottom-large--39 { margin-bottom: -39px !important; }
	.margin-bottom-large--38 { margin-bottom: -38px !important; }
	.margin-bottom-large--37 { margin-bottom: -37px !important; }
	.margin-bottom-large--36 { margin-bottom: -36px !important; }
	.margin-bottom-large--35 { margin-bottom: -35px !important; }
	.margin-bottom-large--34 { margin-bottom: -34px !important; }
	.margin-bottom-large--33 { margin-bottom: -33px !important; }
	.margin-bottom-large--32 { margin-bottom: -32px !important; }
	.margin-bottom-large--31 { margin-bottom: -31px !important; }
	.margin-bottom-large--30 { margin-bottom: -30px !important; }
	.margin-bottom-large--29 { margin-bottom: -29px !important; }
	.margin-bottom-large--28 { margin-bottom: -28px !important; }
	.margin-bottom-large--27 { margin-bottom: -27px !important; }
	.margin-bottom-large--26 { margin-bottom: -26px !important; }
	.margin-bottom-large--25 { margin-bottom: -25px !important; }
	.margin-bottom-large--24 { margin-bottom: -24px !important; }
	.margin-bottom-large--23 { margin-bottom: -23px !important; }
	.margin-bottom-large--22 { margin-bottom: -22px !important; }
	.margin-bottom-large--21 { margin-bottom: -21px !important; }
	.margin-bottom-large--20 { margin-bottom: -20px !important; }
	.margin-bottom-large--19 { margin-bottom: -19px !important; }
	.margin-bottom-large--18 { margin-bottom: -18px !important; }
	.margin-bottom-large--17 { margin-bottom: -17px !important; }
	.margin-bottom-large--16 { margin-bottom: -16px !important; }
	.margin-bottom-large--15 { margin-bottom: -15px !important; }
	.margin-bottom-large--14 { margin-bottom: -14px !important; }
	.margin-bottom-large--13 { margin-bottom: -13px !important; }
	.margin-bottom-large--12 { margin-bottom: -12px !important; }
	.margin-bottom-large--11 { margin-bottom: -11px !important; }
	.margin-bottom-large--10 { margin-bottom: -10px !important; }
	.margin-bottom-large--9 { margin-bottom: -9px !important; }
	.margin-bottom-large--8 { margin-bottom: -8px !important; }
	.margin-bottom-large--7 { margin-bottom: -7px !important; }
	.margin-bottom-large--6 { margin-bottom: -6px !important; }
	.margin-bottom-large--5 { margin-bottom: -5px !important; }
	.margin-bottom-large--4 { margin-bottom: -4px !important; }
	.margin-bottom-large--3 { margin-bottom: -3px !important; }
	.margin-bottom-large--2 { margin-bottom: -2px !important; }
	.margin-bottom-large--1 { margin-bottom: -1px !important; }
	.margin-bottom-large-0 { margin-bottom: 0px !important; }
	.margin-bottom-large-1 { margin-bottom: 1px !important; }
	.margin-bottom-large-2 { margin-bottom: 2px !important; }
	.margin-bottom-large-3 { margin-bottom: 3px !important; }
	.margin-bottom-large-4 { margin-bottom: 4px !important; }
	.margin-bottom-large-5 { margin-bottom: 5px !important; }
	.margin-bottom-large-6 { margin-bottom: 6px !important; }
	.margin-bottom-large-7 { margin-bottom: 7px !important; }
	.margin-bottom-large-8 { margin-bottom: 8px !important; }
	.margin-bottom-large-9 { margin-bottom: 9px !important; }
	.margin-bottom-large-10 { margin-bottom: 10px !important; }
	.margin-bottom-large-11 { margin-bottom: 11px !important; }
	.margin-bottom-large-12 { margin-bottom: 12px !important; }
	.margin-bottom-large-13 { margin-bottom: 13px !important; }
	.margin-bottom-large-14 { margin-bottom: 14px !important; }
	.margin-bottom-large-15 { margin-bottom: 15px !important; }
	.margin-bottom-large-16 { margin-bottom: 16px !important; }
	.margin-bottom-large-17 { margin-bottom: 17px !important; }
	.margin-bottom-large-18 { margin-bottom: 18px !important; }
	.margin-bottom-large-19 { margin-bottom: 19px !important; }
	.margin-bottom-large-20 { margin-bottom: 20px !important; }
	.margin-bottom-large-21 { margin-bottom: 21px !important; }
	.margin-bottom-large-22 { margin-bottom: 22px !important; }
	.margin-bottom-large-23 { margin-bottom: 23px !important; }
	.margin-bottom-large-24 { margin-bottom: 24px !important; }
	.margin-bottom-large-25 { margin-bottom: 25px !important; }
	.margin-bottom-large-26 { margin-bottom: 26px !important; }
	.margin-bottom-large-27 { margin-bottom: 27px !important; }
	.margin-bottom-large-28 { margin-bottom: 28px !important; }
	.margin-bottom-large-29 { margin-bottom: 29px !important; }
	.margin-bottom-large-30 { margin-bottom: 30px !important; }
	.margin-bottom-large-31 { margin-bottom: 31px !important; }
	.margin-bottom-large-32 { margin-bottom: 32px !important; }
	.margin-bottom-large-33 { margin-bottom: 33px !important; }
	.margin-bottom-large-34 { margin-bottom: 34px !important; }
	.margin-bottom-large-35 { margin-bottom: 35px !important; }
	.margin-bottom-large-36 { margin-bottom: 36px !important; }
	.margin-bottom-large-37 { margin-bottom: 37px !important; }
	.margin-bottom-large-38 { margin-bottom: 38px !important; }
	.margin-bottom-large-39 { margin-bottom: 39px !important; }
	.margin-bottom-large-40 { margin-bottom: 40px !important; }
	.margin-bottom-large-41 { margin-bottom: 41px !important; }
	.margin-bottom-large-42 { margin-bottom: 42px !important; }
	.margin-bottom-large-43 { margin-bottom: 43px !important; }
	.margin-bottom-large-44 { margin-bottom: 44px !important; }
	.margin-bottom-large-45 { margin-bottom: 45px !important; }
	.margin-bottom-large-46 { margin-bottom: 46px !important; }
	.margin-bottom-large-47 { margin-bottom: 47px !important; }
	.margin-bottom-large-48 { margin-bottom: 48px !important; }
	.margin-bottom-large-49 { margin-bottom: 49px !important; }
	.margin-bottom-large-50 { margin-bottom: 50px !important; }
	.margin-bottom-large-51 { margin-bottom: 51px !important; }
	.margin-bottom-large-52 { margin-bottom: 52px !important; }
	.margin-bottom-large-53 { margin-bottom: 53px !important; }
	.margin-bottom-large-54 { margin-bottom: 54px !important; }
	.margin-bottom-large-55 { margin-bottom: 55px !important; }
	.margin-bottom-large-56 { margin-bottom: 56px !important; }
	.margin-bottom-large-57 { margin-bottom: 57px !important; }
	.margin-bottom-large-58 { margin-bottom: 58px !important; }
	.margin-bottom-large-59 { margin-bottom: 59px !important; }
	.margin-bottom-large-60 { margin-bottom: 60px !important; }
	.margin-bottom-large-61 { margin-bottom: 61px !important; }
	.margin-bottom-large-62 { margin-bottom: 62px !important; }
	.margin-bottom-large-63 { margin-bottom: 63px !important; }
	.margin-bottom-large-64 { margin-bottom: 64px !important; }
	.margin-bottom-large-65 { margin-bottom: 65px !important; }
	.margin-bottom-large-66 { margin-bottom: 66px !important; }
	.margin-bottom-large-67 { margin-bottom: 67px !important; }
	.margin-bottom-large-68 { margin-bottom: 68px !important; }
	.margin-bottom-large-69 { margin-bottom: 69px !important; }
	.margin-bottom-large-70 { margin-bottom: 70px !important; }
	.margin-bottom-large-71 { margin-bottom: 71px !important; }
	.margin-bottom-large-72 { margin-bottom: 72px !important; }
	.margin-bottom-large-73 { margin-bottom: 73px !important; }
	.margin-bottom-large-74 { margin-bottom: 74px !important; }
	.margin-bottom-large-75 { margin-bottom: 75px !important; }
	.margin-bottom-large-76 { margin-bottom: 76px !important; }
	.margin-bottom-large-77 { margin-bottom: 77px !important; }
	.margin-bottom-large-78 { margin-bottom: 78px !important; }
	.margin-bottom-large-79 { margin-bottom: 79px !important; }
	.margin-bottom-large-80 { margin-bottom: 80px !important; }
	.margin-bottom-large-81 { margin-bottom: 81px !important; }
	.margin-bottom-large-82 { margin-bottom: 82px !important; }
	.margin-bottom-large-83 { margin-bottom: 83px !important; }
	.margin-bottom-large-84 { margin-bottom: 84px !important; }
	.margin-bottom-large-85 { margin-bottom: 85px !important; }
	.margin-bottom-large-86 { margin-bottom: 86px !important; }
	.margin-bottom-large-87 { margin-bottom: 87px !important; }
	.margin-bottom-large-88 { margin-bottom: 88px !important; }
	.margin-bottom-large-89 { margin-bottom: 89px !important; }
	.margin-bottom-large-90 { margin-bottom: 90px !important; }
	.margin-bottom-large-91 { margin-bottom: 91px !important; }
	.margin-bottom-large-92 { margin-bottom: 92px !important; }
	.margin-bottom-large-93 { margin-bottom: 93px !important; }
	.margin-bottom-large-94 { margin-bottom: 94px !important; }
	.margin-bottom-large-95 { margin-bottom: 95px !important; }
	.margin-bottom-large-96 { margin-bottom: 96px !important; }
	.margin-bottom-large-97 { margin-bottom: 97px !important; }
	.margin-bottom-large-98 { margin-bottom: 98px !important; }
	.margin-bottom-large-99 { margin-bottom: 99px !important; }
	.margin-bottom-large-100 { margin-bottom: 100px !important; }
	.margin-bottom-large-101 { margin-bottom: 101px !important; }
	.margin-bottom-large-102 { margin-bottom: 102px !important; }
	.margin-bottom-large-103 { margin-bottom: 103px !important; }
	.margin-bottom-large-104 { margin-bottom: 104px !important; }
	.margin-bottom-large-105 { margin-bottom: 105px !important; }
	.margin-bottom-large-106 { margin-bottom: 106px !important; }
	.margin-bottom-large-107 { margin-bottom: 107px !important; }
	.margin-bottom-large-108 { margin-bottom: 108px !important; }
	.margin-bottom-large-109 { margin-bottom: 109px !important; }
	.margin-bottom-large-110 { margin-bottom: 110px !important; }
	.margin-bottom-large-111 { margin-bottom: 111px !important; }
	.margin-bottom-large-112 { margin-bottom: 112px !important; }
	.margin-bottom-large-113 { margin-bottom: 113px !important; }
	.margin-bottom-large-114 { margin-bottom: 114px !important; }
	.margin-bottom-large-115 { margin-bottom: 115px !important; }
	.margin-bottom-large-116 { margin-bottom: 116px !important; }
	.margin-bottom-large-117 { margin-bottom: 117px !important; }
	.margin-bottom-large-118 { margin-bottom: 118px !important; }
	.margin-bottom-large-119 { margin-bottom: 119px !important; }
	.margin-bottom-large-120 { margin-bottom: 120px !important; }
	.margin-bottom-large-121 { margin-bottom: 121px !important; }
	.margin-bottom-large-122 { margin-bottom: 122px !important; }
	.margin-bottom-large-123 { margin-bottom: 123px !important; }
	.margin-bottom-large-124 { margin-bottom: 124px !important; }
	.margin-bottom-large-125 { margin-bottom: 125px !important; }
	.margin-bottom-large-126 { margin-bottom: 126px !important; }
	.margin-bottom-large-127 { margin-bottom: 127px !important; }
	.margin-bottom-large-128 { margin-bottom: 128px !important; }
	.margin-bottom-large-129 { margin-bottom: 129px !important; }
	.margin-bottom-large-130 { margin-bottom: 130px !important; }
	.margin-bottom-large-131 { margin-bottom: 131px !important; }
	.margin-bottom-large-132 { margin-bottom: 132px !important; }
	.margin-bottom-large-133 { margin-bottom: 133px !important; }
	.margin-bottom-large-134 { margin-bottom: 134px !important; }
	.margin-bottom-large-135 { margin-bottom: 135px !important; }
	.margin-bottom-large-136 { margin-bottom: 136px !important; }
	.margin-bottom-large-137 { margin-bottom: 137px !important; }
	.margin-bottom-large-138 { margin-bottom: 138px !important; }
	.margin-bottom-large-139 { margin-bottom: 139px !important; }
	.margin-bottom-large-140 { margin-bottom: 140px !important; }
	.margin-bottom-large-141 { margin-bottom: 141px !important; }
	.margin-bottom-large-142 { margin-bottom: 142px !important; }
	.margin-bottom-large-143 { margin-bottom: 143px !important; }
	.margin-bottom-large-144 { margin-bottom: 144px !important; }
	.margin-bottom-large-145 { margin-bottom: 145px !important; }
	.margin-bottom-large-146 { margin-bottom: 146px !important; }
	.margin-bottom-large-147 { margin-bottom: 147px !important; }
	.margin-bottom-large-148 { margin-bottom: 148px !important; }
	.margin-bottom-large-149 { margin-bottom: 149px !important; }
	.margin-bottom-large-150 { margin-bottom: 150px !important; }
	.margin-bottom-large-151 { margin-bottom: 151px !important; }
	.margin-bottom-large-152 { margin-bottom: 152px !important; }
	.margin-bottom-large-153 { margin-bottom: 153px !important; }
	.margin-bottom-large-154 { margin-bottom: 154px !important; }
	.margin-bottom-large-155 { margin-bottom: 155px !important; }
	.margin-bottom-large-156 { margin-bottom: 156px !important; }
	.margin-bottom-large-157 { margin-bottom: 157px !important; }
	.margin-bottom-large-158 { margin-bottom: 158px !important; }
	.margin-bottom-large-159 { margin-bottom: 159px !important; }
	.margin-bottom-large-160 { margin-bottom: 160px !important; }
	.margin-bottom-large-161 { margin-bottom: 161px !important; }
	.margin-bottom-large-162 { margin-bottom: 162px !important; }
	.margin-bottom-large-163 { margin-bottom: 163px !important; }
	.margin-bottom-large-164 { margin-bottom: 164px !important; }
	.margin-bottom-large-165 { margin-bottom: 165px !important; }
	.margin-bottom-large-166 { margin-bottom: 166px !important; }
	.margin-bottom-large-167 { margin-bottom: 167px !important; }
	.margin-bottom-large-168 { margin-bottom: 168px !important; }
	.margin-bottom-large-169 { margin-bottom: 169px !important; }
	.margin-bottom-large-170 { margin-bottom: 170px !important; }
	.margin-bottom-large-171 { margin-bottom: 171px !important; }
	.margin-bottom-large-172 { margin-bottom: 172px !important; }
	.margin-bottom-large-173 { margin-bottom: 173px !important; }
	.margin-bottom-large-174 { margin-bottom: 174px !important; }
	.margin-bottom-large-175 { margin-bottom: 175px !important; }
	.margin-bottom-large-176 { margin-bottom: 176px !important; }
	.margin-bottom-large-177 { margin-bottom: 177px !important; }
	.margin-bottom-large-178 { margin-bottom: 178px !important; }
	.margin-bottom-large-179 { margin-bottom: 179px !important; }
	.margin-bottom-large-180 { margin-bottom: 180px !important; }
	.margin-bottom-large-181 { margin-bottom: 181px !important; }
	.margin-bottom-large-182 { margin-bottom: 182px !important; }
	.margin-bottom-large-183 { margin-bottom: 183px !important; }
	.margin-bottom-large-184 { margin-bottom: 184px !important; }
	.margin-bottom-large-185 { margin-bottom: 185px !important; }
	.margin-bottom-large-186 { margin-bottom: 186px !important; }
	.margin-bottom-large-187 { margin-bottom: 187px !important; }
	.margin-bottom-large-188 { margin-bottom: 188px !important; }
	.margin-bottom-large-189 { margin-bottom: 189px !important; }
	.margin-bottom-large-190 { margin-bottom: 190px !important; }
	.margin-bottom-large-191 { margin-bottom: 191px !important; }
	.margin-bottom-large-192 { margin-bottom: 192px !important; }
	.margin-bottom-large-193 { margin-bottom: 193px !important; }
	.margin-bottom-large-194 { margin-bottom: 194px !important; }
	.margin-bottom-large-195 { margin-bottom: 195px !important; }
	.margin-bottom-large-196 { margin-bottom: 196px !important; }
	.margin-bottom-large-197 { margin-bottom: 197px !important; }
	.margin-bottom-large-198 { margin-bottom: 198px !important; }
	.margin-bottom-large-199 { margin-bottom: 199px !important; }
	.margin-bottom-large-200 { margin-bottom: 200px !important; }
}


@media (max-width:767.98px) {
	.padding-top-0 { padding-top: 0px !important; }
	.padding-top-1 { padding-top: 1px !important; }
	.padding-top-2 { padding-top: 2px !important; }
	.padding-top-3 { padding-top: 3px !important; }
	.padding-top-4 { padding-top: 4px !important; }
	.padding-top-5 { padding-top: 5px !important; }
	.padding-top-6 { padding-top: 6px !important; }
	.padding-top-7 { padding-top: 7px !important; }
	.padding-top-8 { padding-top: 8px !important; }
	.padding-top-9 { padding-top: 9px !important; }
	.padding-top-10 { padding-top: 10px !important; }
	.padding-top-11 { padding-top: 11px !important; }
	.padding-top-12 { padding-top: 12px !important; }
	.padding-top-13 { padding-top: 13px !important; }
	.padding-top-14 { padding-top: 14px !important; }
	.padding-top-15 { padding-top: 15px !important; }
	.padding-top-16 { padding-top: 16px !important; }
	.padding-top-17 { padding-top: 17px !important; }
	.padding-top-18 { padding-top: 18px !important; }
	.padding-top-19 { padding-top: 19px !important; }
	.padding-top-20 { padding-top: 20px !important; }
	.padding-top-21 { padding-top: 21px !important; }
	.padding-top-22 { padding-top: 22px !important; }
	.padding-top-23 { padding-top: 23px !important; }
	.padding-top-24 { padding-top: 24px !important; }
	.padding-top-25 { padding-top: 25px !important; }
	.padding-top-26 { padding-top: 26px !important; }
	.padding-top-27 { padding-top: 27px !important; }
	.padding-top-28 { padding-top: 28px !important; }
	.padding-top-29 { padding-top: 29px !important; }
	.padding-top-30 { padding-top: 30px !important; }
	.padding-top-31 { padding-top: 31px !important; }
	.padding-top-32 { padding-top: 32px !important; }
	.padding-top-33 { padding-top: 33px !important; }
	.padding-top-34 { padding-top: 34px !important; }
	.padding-top-35 { padding-top: 35px !important; }
	.padding-top-36 { padding-top: 36px !important; }
	.padding-top-37 { padding-top: 37px !important; }
	.padding-top-38 { padding-top: 38px !important; }
	.padding-top-39 { padding-top: 39px !important; }
	.padding-top-40 { padding-top: 40px !important; }
	.padding-top-41 { padding-top: 41px !important; }
	.padding-top-42 { padding-top: 42px !important; }
	.padding-top-43 { padding-top: 43px !important; }
	.padding-top-44 { padding-top: 44px !important; }
	.padding-top-45 { padding-top: 45px !important; }
	.padding-top-46 { padding-top: 46px !important; }
	.padding-top-47 { padding-top: 47px !important; }
	.padding-top-48 { padding-top: 48px !important; }
	.padding-top-49 { padding-top: 49px !important; }
	.padding-top-50 { padding-top: 50px !important; }
	.padding-top-51 { padding-top: 51px !important; }
	.padding-top-52 { padding-top: 52px !important; }
	.padding-top-53 { padding-top: 53px !important; }
	.padding-top-54 { padding-top: 54px !important; }
	.padding-top-55 { padding-top: 55px !important; }
	.padding-top-56 { padding-top: 56px !important; }
	.padding-top-57 { padding-top: 57px !important; }
	.padding-top-58 { padding-top: 58px !important; }
	.padding-top-59 { padding-top: 59px !important; }
	.padding-top-60 { padding-top: 60px !important; }
	.padding-top-61 { padding-top: 61px !important; }
	.padding-top-62 { padding-top: 62px !important; }
	.padding-top-63 { padding-top: 63px !important; }
	.padding-top-64 { padding-top: 64px !important; }
	.padding-top-65 { padding-top: 65px !important; }
	.padding-top-66 { padding-top: 66px !important; }
	.padding-top-67 { padding-top: 67px !important; }
	.padding-top-68 { padding-top: 68px !important; }
	.padding-top-69 { padding-top: 69px !important; }
	.padding-top-70 { padding-top: 70px !important; }
	.padding-top-71 { padding-top: 71px !important; }
	.padding-top-72 { padding-top: 72px !important; }
	.padding-top-73 { padding-top: 73px !important; }
	.padding-top-74 { padding-top: 74px !important; }
	.padding-top-75 { padding-top: 75px !important; }
	.padding-top-76 { padding-top: 76px !important; }
	.padding-top-77 { padding-top: 77px !important; }
	.padding-top-78 { padding-top: 78px !important; }
	.padding-top-79 { padding-top: 79px !important; }
	.padding-top-80 { padding-top: 80px !important; }
	.padding-top-81 { padding-top: 81px !important; }
	.padding-top-82 { padding-top: 82px !important; }
	.padding-top-83 { padding-top: 83px !important; }
	.padding-top-84 { padding-top: 84px !important; }
	.padding-top-85 { padding-top: 85px !important; }
	.padding-top-86 { padding-top: 86px !important; }
	.padding-top-87 { padding-top: 87px !important; }
	.padding-top-88 { padding-top: 88px !important; }
	.padding-top-89 { padding-top: 89px !important; }
	.padding-top-90 { padding-top: 90px !important; }
	.padding-top-91 { padding-top: 91px !important; }
	.padding-top-92 { padding-top: 92px !important; }
	.padding-top-93 { padding-top: 93px !important; }
	.padding-top-94 { padding-top: 94px !important; }
	.padding-top-95 { padding-top: 95px !important; }
	.padding-top-96 { padding-top: 96px !important; }
	.padding-top-97 { padding-top: 97px !important; }
	.padding-top-98 { padding-top: 98px !important; }
	.padding-top-99 { padding-top: 99px !important; }
	.padding-top-100 { padding-top: 100px !important; }
	.padding-top-101 { padding-top: 101px !important; }
	.padding-top-102 { padding-top: 102px !important; }
	.padding-top-103 { padding-top: 103px !important; }
	.padding-top-104 { padding-top: 104px !important; }
	.padding-top-105 { padding-top: 105px !important; }
	.padding-top-106 { padding-top: 106px !important; }
	.padding-top-107 { padding-top: 107px !important; }
	.padding-top-108 { padding-top: 108px !important; }
	.padding-top-109 { padding-top: 109px !important; }
	.padding-top-110 { padding-top: 110px !important; }
	.padding-top-111 { padding-top: 111px !important; }
	.padding-top-112 { padding-top: 112px !important; }
	.padding-top-113 { padding-top: 113px !important; }
	.padding-top-114 { padding-top: 114px !important; }
	.padding-top-115 { padding-top: 115px !important; }
	.padding-top-116 { padding-top: 116px !important; }
	.padding-top-117 { padding-top: 117px !important; }
	.padding-top-118 { padding-top: 118px !important; }
	.padding-top-119 { padding-top: 119px !important; }
	.padding-top-120 { padding-top: 120px !important; }
	.padding-top-121 { padding-top: 121px !important; }
	.padding-top-122 { padding-top: 122px !important; }
	.padding-top-123 { padding-top: 123px !important; }
	.padding-top-124 { padding-top: 124px !important; }
	.padding-top-125 { padding-top: 125px !important; }
	.padding-top-126 { padding-top: 126px !important; }
	.padding-top-127 { padding-top: 127px !important; }
	.padding-top-128 { padding-top: 128px !important; }
	.padding-top-129 { padding-top: 129px !important; }
	.padding-top-130 { padding-top: 130px !important; }
	.padding-top-131 { padding-top: 131px !important; }
	.padding-top-132 { padding-top: 132px !important; }
	.padding-top-133 { padding-top: 133px !important; }
	.padding-top-134 { padding-top: 134px !important; }
	.padding-top-135 { padding-top: 135px !important; }
	.padding-top-136 { padding-top: 136px !important; }
	.padding-top-137 { padding-top: 137px !important; }
	.padding-top-138 { padding-top: 138px !important; }
	.padding-top-139 { padding-top: 139px !important; }
	.padding-top-140 { padding-top: 140px !important; }
	.padding-top-141 { padding-top: 141px !important; }
	.padding-top-142 { padding-top: 142px !important; }
	.padding-top-143 { padding-top: 143px !important; }
	.padding-top-144 { padding-top: 144px !important; }
	.padding-top-145 { padding-top: 145px !important; }
	.padding-top-146 { padding-top: 146px !important; }
	.padding-top-147 { padding-top: 147px !important; }
	.padding-top-148 { padding-top: 148px !important; }
	.padding-top-149 { padding-top: 149px !important; }
	.padding-top-150 { padding-top: 150px !important; }
	.padding-top-151 { padding-top: 151px !important; }
	.padding-top-152 { padding-top: 152px !important; }
	.padding-top-153 { padding-top: 153px !important; }
	.padding-top-154 { padding-top: 154px !important; }
	.padding-top-155 { padding-top: 155px !important; }
	.padding-top-156 { padding-top: 156px !important; }
	.padding-top-157 { padding-top: 157px !important; }
	.padding-top-158 { padding-top: 158px !important; }
	.padding-top-159 { padding-top: 159px !important; }
	.padding-top-160 { padding-top: 160px !important; }
	.padding-top-161 { padding-top: 161px !important; }
	.padding-top-162 { padding-top: 162px !important; }
	.padding-top-163 { padding-top: 163px !important; }
	.padding-top-164 { padding-top: 164px !important; }
	.padding-top-165 { padding-top: 165px !important; }
	.padding-top-166 { padding-top: 166px !important; }
	.padding-top-167 { padding-top: 167px !important; }
	.padding-top-168 { padding-top: 168px !important; }
	.padding-top-169 { padding-top: 169px !important; }
	.padding-top-170 { padding-top: 170px !important; }
	.padding-top-171 { padding-top: 171px !important; }
	.padding-top-172 { padding-top: 172px !important; }
	.padding-top-173 { padding-top: 173px !important; }
	.padding-top-174 { padding-top: 174px !important; }
	.padding-top-175 { padding-top: 175px !important; }
	.padding-top-176 { padding-top: 176px !important; }
	.padding-top-177 { padding-top: 177px !important; }
	.padding-top-178 { padding-top: 178px !important; }
	.padding-top-179 { padding-top: 179px !important; }
	.padding-top-180 { padding-top: 180px !important; }
	.padding-top-181 { padding-top: 181px !important; }
	.padding-top-182 { padding-top: 182px !important; }
	.padding-top-183 { padding-top: 183px !important; }
	.padding-top-184 { padding-top: 184px !important; }
	.padding-top-185 { padding-top: 185px !important; }
	.padding-top-186 { padding-top: 186px !important; }
	.padding-top-187 { padding-top: 187px !important; }
	.padding-top-188 { padding-top: 188px !important; }
	.padding-top-189 { padding-top: 189px !important; }
	.padding-top-190 { padding-top: 190px !important; }
	.padding-top-191 { padding-top: 191px !important; }
	.padding-top-192 { padding-top: 192px !important; }
	.padding-top-193 { padding-top: 193px !important; }
	.padding-top-194 { padding-top: 194px !important; }
	.padding-top-195 { padding-top: 195px !important; }
	.padding-top-196 { padding-top: 196px !important; }
	.padding-top-197 { padding-top: 197px !important; }
	.padding-top-198 { padding-top: 198px !important; }
	.padding-top-199 { padding-top: 199px !important; }
	.padding-top-200 { padding-top: 200px !important; }

	.padding-bottom-0 { padding-bottom: 0px !important; }
	.padding-bottom-1 { padding-bottom: 1px !important; }
	.padding-bottom-2 { padding-bottom: 2px !important; }
	.padding-bottom-3 { padding-bottom: 3px !important; }
	.padding-bottom-4 { padding-bottom: 4px !important; }
	.padding-bottom-5 { padding-bottom: 5px !important; }
	.padding-bottom-6 { padding-bottom: 6px !important; }
	.padding-bottom-7 { padding-bottom: 7px !important; }
	.padding-bottom-8 { padding-bottom: 8px !important; }
	.padding-bottom-9 { padding-bottom: 9px !important; }
	.padding-bottom-10 { padding-bottom: 10px !important; }
	.padding-bottom-11 { padding-bottom: 11px !important; }
	.padding-bottom-12 { padding-bottom: 12px !important; }
	.padding-bottom-13 { padding-bottom: 13px !important; }
	.padding-bottom-14 { padding-bottom: 14px !important; }
	.padding-bottom-15 { padding-bottom: 15px !important; }
	.padding-bottom-16 { padding-bottom: 16px !important; }
	.padding-bottom-17 { padding-bottom: 17px !important; }
	.padding-bottom-18 { padding-bottom: 18px !important; }
	.padding-bottom-19 { padding-bottom: 19px !important; }
	.padding-bottom-20 { padding-bottom: 20px !important; }
	.padding-bottom-21 { padding-bottom: 21px !important; }
	.padding-bottom-22 { padding-bottom: 22px !important; }
	.padding-bottom-23 { padding-bottom: 23px !important; }
	.padding-bottom-24 { padding-bottom: 24px !important; }
	.padding-bottom-25 { padding-bottom: 25px !important; }
	.padding-bottom-26 { padding-bottom: 26px !important; }
	.padding-bottom-27 { padding-bottom: 27px !important; }
	.padding-bottom-28 { padding-bottom: 28px !important; }
	.padding-bottom-29 { padding-bottom: 29px !important; }
	.padding-bottom-30 { padding-bottom: 30px !important; }
	.padding-bottom-31 { padding-bottom: 31px !important; }
	.padding-bottom-32 { padding-bottom: 32px !important; }
	.padding-bottom-33 { padding-bottom: 33px !important; }
	.padding-bottom-34 { padding-bottom: 34px !important; }
	.padding-bottom-35 { padding-bottom: 35px !important; }
	.padding-bottom-36 { padding-bottom: 36px !important; }
	.padding-bottom-37 { padding-bottom: 37px !important; }
	.padding-bottom-38 { padding-bottom: 38px !important; }
	.padding-bottom-39 { padding-bottom: 39px !important; }
	.padding-bottom-40 { padding-bottom: 40px !important; }
	.padding-bottom-41 { padding-bottom: 41px !important; }
	.padding-bottom-42 { padding-bottom: 42px !important; }
	.padding-bottom-43 { padding-bottom: 43px !important; }
	.padding-bottom-44 { padding-bottom: 44px !important; }
	.padding-bottom-45 { padding-bottom: 45px !important; }
	.padding-bottom-46 { padding-bottom: 46px !important; }
	.padding-bottom-47 { padding-bottom: 47px !important; }
	.padding-bottom-48 { padding-bottom: 48px !important; }
	.padding-bottom-49 { padding-bottom: 49px !important; }
	.padding-bottom-50 { padding-bottom: 50px !important; }
	.padding-bottom-51 { padding-bottom: 51px !important; }
	.padding-bottom-52 { padding-bottom: 52px !important; }
	.padding-bottom-53 { padding-bottom: 53px !important; }
	.padding-bottom-54 { padding-bottom: 54px !important; }
	.padding-bottom-55 { padding-bottom: 55px !important; }
	.padding-bottom-56 { padding-bottom: 56px !important; }
	.padding-bottom-57 { padding-bottom: 57px !important; }
	.padding-bottom-58 { padding-bottom: 58px !important; }
	.padding-bottom-59 { padding-bottom: 59px !important; }
	.padding-bottom-60 { padding-bottom: 60px !important; }
	.padding-bottom-61 { padding-bottom: 61px !important; }
	.padding-bottom-62 { padding-bottom: 62px !important; }
	.padding-bottom-63 { padding-bottom: 63px !important; }
	.padding-bottom-64 { padding-bottom: 64px !important; }
	.padding-bottom-65 { padding-bottom: 65px !important; }
	.padding-bottom-66 { padding-bottom: 66px !important; }
	.padding-bottom-67 { padding-bottom: 67px !important; }
	.padding-bottom-68 { padding-bottom: 68px !important; }
	.padding-bottom-69 { padding-bottom: 69px !important; }
	.padding-bottom-70 { padding-bottom: 70px !important; }
	.padding-bottom-71 { padding-bottom: 71px !important; }
	.padding-bottom-72 { padding-bottom: 72px !important; }
	.padding-bottom-73 { padding-bottom: 73px !important; }
	.padding-bottom-74 { padding-bottom: 74px !important; }
	.padding-bottom-75 { padding-bottom: 75px !important; }
	.padding-bottom-76 { padding-bottom: 76px !important; }
	.padding-bottom-77 { padding-bottom: 77px !important; }
	.padding-bottom-78 { padding-bottom: 78px !important; }
	.padding-bottom-79 { padding-bottom: 79px !important; }
	.padding-bottom-80 { padding-bottom: 80px !important; }
	.padding-bottom-81 { padding-bottom: 81px !important; }
	.padding-bottom-82 { padding-bottom: 82px !important; }
	.padding-bottom-83 { padding-bottom: 83px !important; }
	.padding-bottom-84 { padding-bottom: 84px !important; }
	.padding-bottom-85 { padding-bottom: 85px !important; }
	.padding-bottom-86 { padding-bottom: 86px !important; }
	.padding-bottom-87 { padding-bottom: 87px !important; }
	.padding-bottom-88 { padding-bottom: 88px !important; }
	.padding-bottom-89 { padding-bottom: 89px !important; }
	.padding-bottom-90 { padding-bottom: 90px !important; }
	.padding-bottom-91 { padding-bottom: 91px !important; }
	.padding-bottom-92 { padding-bottom: 92px !important; }
	.padding-bottom-93 { padding-bottom: 93px !important; }
	.padding-bottom-94 { padding-bottom: 94px !important; }
	.padding-bottom-95 { padding-bottom: 95px !important; }
	.padding-bottom-96 { padding-bottom: 96px !important; }
	.padding-bottom-97 { padding-bottom: 97px !important; }
	.padding-bottom-98 { padding-bottom: 98px !important; }
	.padding-bottom-99 { padding-bottom: 99px !important; }
	.padding-bottom-100 { padding-bottom: 100px !important; }
	.padding-bottom-101 { padding-bottom: 101px !important; }
	.padding-bottom-102 { padding-bottom: 102px !important; }
	.padding-bottom-103 { padding-bottom: 103px !important; }
	.padding-bottom-104 { padding-bottom: 104px !important; }
	.padding-bottom-105 { padding-bottom: 105px !important; }
	.padding-bottom-106 { padding-bottom: 106px !important; }
	.padding-bottom-107 { padding-bottom: 107px !important; }
	.padding-bottom-108 { padding-bottom: 108px !important; }
	.padding-bottom-109 { padding-bottom: 109px !important; }
	.padding-bottom-110 { padding-bottom: 110px !important; }
	.padding-bottom-111 { padding-bottom: 111px !important; }
	.padding-bottom-112 { padding-bottom: 112px !important; }
	.padding-bottom-113 { padding-bottom: 113px !important; }
	.padding-bottom-114 { padding-bottom: 114px !important; }
	.padding-bottom-115 { padding-bottom: 115px !important; }
	.padding-bottom-116 { padding-bottom: 116px !important; }
	.padding-bottom-117 { padding-bottom: 117px !important; }
	.padding-bottom-118 { padding-bottom: 118px !important; }
	.padding-bottom-119 { padding-bottom: 119px !important; }
	.padding-bottom-120 { padding-bottom: 120px !important; }
	.padding-bottom-121 { padding-bottom: 121px !important; }
	.padding-bottom-122 { padding-bottom: 122px !important; }
	.padding-bottom-123 { padding-bottom: 123px !important; }
	.padding-bottom-124 { padding-bottom: 124px !important; }
	.padding-bottom-125 { padding-bottom: 125px !important; }
	.padding-bottom-126 { padding-bottom: 126px !important; }
	.padding-bottom-127 { padding-bottom: 127px !important; }
	.padding-bottom-128 { padding-bottom: 128px !important; }
	.padding-bottom-129 { padding-bottom: 129px !important; }
	.padding-bottom-130 { padding-bottom: 130px !important; }
	.padding-bottom-131 { padding-bottom: 131px !important; }
	.padding-bottom-132 { padding-bottom: 132px !important; }
	.padding-bottom-133 { padding-bottom: 133px !important; }
	.padding-bottom-134 { padding-bottom: 134px !important; }
	.padding-bottom-135 { padding-bottom: 135px !important; }
	.padding-bottom-136 { padding-bottom: 136px !important; }
	.padding-bottom-137 { padding-bottom: 137px !important; }
	.padding-bottom-138 { padding-bottom: 138px !important; }
	.padding-bottom-139 { padding-bottom: 139px !important; }
	.padding-bottom-140 { padding-bottom: 140px !important; }
	.padding-bottom-141 { padding-bottom: 141px !important; }
	.padding-bottom-142 { padding-bottom: 142px !important; }
	.padding-bottom-143 { padding-bottom: 143px !important; }
	.padding-bottom-144 { padding-bottom: 144px !important; }
	.padding-bottom-145 { padding-bottom: 145px !important; }
	.padding-bottom-146 { padding-bottom: 146px !important; }
	.padding-bottom-147 { padding-bottom: 147px !important; }
	.padding-bottom-148 { padding-bottom: 148px !important; }
	.padding-bottom-149 { padding-bottom: 149px !important; }
	.padding-bottom-150 { padding-bottom: 150px !important; }
	.padding-bottom-151 { padding-bottom: 151px !important; }
	.padding-bottom-152 { padding-bottom: 152px !important; }
	.padding-bottom-153 { padding-bottom: 153px !important; }
	.padding-bottom-154 { padding-bottom: 154px !important; }
	.padding-bottom-155 { padding-bottom: 155px !important; }
	.padding-bottom-156 { padding-bottom: 156px !important; }
	.padding-bottom-157 { padding-bottom: 157px !important; }
	.padding-bottom-158 { padding-bottom: 158px !important; }
	.padding-bottom-159 { padding-bottom: 159px !important; }
	.padding-bottom-160 { padding-bottom: 160px !important; }
	.padding-bottom-161 { padding-bottom: 161px !important; }
	.padding-bottom-162 { padding-bottom: 162px !important; }
	.padding-bottom-163 { padding-bottom: 163px !important; }
	.padding-bottom-164 { padding-bottom: 164px !important; }
	.padding-bottom-165 { padding-bottom: 165px !important; }
	.padding-bottom-166 { padding-bottom: 166px !important; }
	.padding-bottom-167 { padding-bottom: 167px !important; }
	.padding-bottom-168 { padding-bottom: 168px !important; }
	.padding-bottom-169 { padding-bottom: 169px !important; }
	.padding-bottom-170 { padding-bottom: 170px !important; }
	.padding-bottom-171 { padding-bottom: 171px !important; }
	.padding-bottom-172 { padding-bottom: 172px !important; }
	.padding-bottom-173 { padding-bottom: 173px !important; }
	.padding-bottom-174 { padding-bottom: 174px !important; }
	.padding-bottom-175 { padding-bottom: 175px !important; }
	.padding-bottom-176 { padding-bottom: 176px !important; }
	.padding-bottom-177 { padding-bottom: 177px !important; }
	.padding-bottom-178 { padding-bottom: 178px !important; }
	.padding-bottom-179 { padding-bottom: 179px !important; }
	.padding-bottom-180 { padding-bottom: 180px !important; }
	.padding-bottom-181 { padding-bottom: 181px !important; }
	.padding-bottom-182 { padding-bottom: 182px !important; }
	.padding-bottom-183 { padding-bottom: 183px !important; }
	.padding-bottom-184 { padding-bottom: 184px !important; }
	.padding-bottom-185 { padding-bottom: 185px !important; }
	.padding-bottom-186 { padding-bottom: 186px !important; }
	.padding-bottom-187 { padding-bottom: 187px !important; }
	.padding-bottom-188 { padding-bottom: 188px !important; }
	.padding-bottom-189 { padding-bottom: 189px !important; }
	.padding-bottom-190 { padding-bottom: 190px !important; }
	.padding-bottom-191 { padding-bottom: 191px !important; }
	.padding-bottom-192 { padding-bottom: 192px !important; }
	.padding-bottom-193 { padding-bottom: 193px !important; }
	.padding-bottom-194 { padding-bottom: 194px !important; }
	.padding-bottom-195 { padding-bottom: 195px !important; }
	.padding-bottom-196 { padding-bottom: 196px !important; }
	.padding-bottom-197 { padding-bottom: 197px !important; }
	.padding-bottom-198 { padding-bottom: 198px !important; }
	.padding-bottom-199 { padding-bottom: 199px !important; }
	.padding-bottom-200 { padding-bottom: 200px !important; }
}

@media (min-width:768px) {
	.padding-top-large-0 { padding-top: 0px !important; }
	.padding-top-large-1 { padding-top: 1px !important; }
	.padding-top-large-2 { padding-top: 2px !important; }
	.padding-top-large-3 { padding-top: 3px !important; }
	.padding-top-large-4 { padding-top: 4px !important; }
	.padding-top-large-5 { padding-top: 5px !important; }
	.padding-top-large-6 { padding-top: 6px !important; }
	.padding-top-large-7 { padding-top: 7px !important; }
	.padding-top-large-8 { padding-top: 8px !important; }
	.padding-top-large-9 { padding-top: 9px !important; }
	.padding-top-large-10 { padding-top: 10px !important; }
	.padding-top-large-11 { padding-top: 11px !important; }
	.padding-top-large-12 { padding-top: 12px !important; }
	.padding-top-large-13 { padding-top: 13px !important; }
	.padding-top-large-14 { padding-top: 14px !important; }
	.padding-top-large-15 { padding-top: 15px !important; }
	.padding-top-large-16 { padding-top: 16px !important; }
	.padding-top-large-17 { padding-top: 17px !important; }
	.padding-top-large-18 { padding-top: 18px !important; }
	.padding-top-large-19 { padding-top: 19px !important; }
	.padding-top-large-20 { padding-top: 20px !important; }
	.padding-top-large-21 { padding-top: 21px !important; }
	.padding-top-large-22 { padding-top: 22px !important; }
	.padding-top-large-23 { padding-top: 23px !important; }
	.padding-top-large-24 { padding-top: 24px !important; }
	.padding-top-large-25 { padding-top: 25px !important; }
	.padding-top-large-26 { padding-top: 26px !important; }
	.padding-top-large-27 { padding-top: 27px !important; }
	.padding-top-large-28 { padding-top: 28px !important; }
	.padding-top-large-29 { padding-top: 29px !important; }
	.padding-top-large-30 { padding-top: 30px !important; }
	.padding-top-large-31 { padding-top: 31px !important; }
	.padding-top-large-32 { padding-top: 32px !important; }
	.padding-top-large-33 { padding-top: 33px !important; }
	.padding-top-large-34 { padding-top: 34px !important; }
	.padding-top-large-35 { padding-top: 35px !important; }
	.padding-top-large-36 { padding-top: 36px !important; }
	.padding-top-large-37 { padding-top: 37px !important; }
	.padding-top-large-38 { padding-top: 38px !important; }
	.padding-top-large-39 { padding-top: 39px !important; }
	.padding-top-large-40 { padding-top: 40px !important; }
	.padding-top-large-41 { padding-top: 41px !important; }
	.padding-top-large-42 { padding-top: 42px !important; }
	.padding-top-large-43 { padding-top: 43px !important; }
	.padding-top-large-44 { padding-top: 44px !important; }
	.padding-top-large-45 { padding-top: 45px !important; }
	.padding-top-large-46 { padding-top: 46px !important; }
	.padding-top-large-47 { padding-top: 47px !important; }
	.padding-top-large-48 { padding-top: 48px !important; }
	.padding-top-large-49 { padding-top: 49px !important; }
	.padding-top-large-50 { padding-top: 50px !important; }
	.padding-top-large-51 { padding-top: 51px !important; }
	.padding-top-large-52 { padding-top: 52px !important; }
	.padding-top-large-53 { padding-top: 53px !important; }
	.padding-top-large-54 { padding-top: 54px !important; }
	.padding-top-large-55 { padding-top: 55px !important; }
	.padding-top-large-56 { padding-top: 56px !important; }
	.padding-top-large-57 { padding-top: 57px !important; }
	.padding-top-large-58 { padding-top: 58px !important; }
	.padding-top-large-59 { padding-top: 59px !important; }
	.padding-top-large-60 { padding-top: 60px !important; }
	.padding-top-large-61 { padding-top: 61px !important; }
	.padding-top-large-62 { padding-top: 62px !important; }
	.padding-top-large-63 { padding-top: 63px !important; }
	.padding-top-large-64 { padding-top: 64px !important; }
	.padding-top-large-65 { padding-top: 65px !important; }
	.padding-top-large-66 { padding-top: 66px !important; }
	.padding-top-large-67 { padding-top: 67px !important; }
	.padding-top-large-68 { padding-top: 68px !important; }
	.padding-top-large-69 { padding-top: 69px !important; }
	.padding-top-large-70 { padding-top: 70px !important; }
	.padding-top-large-71 { padding-top: 71px !important; }
	.padding-top-large-72 { padding-top: 72px !important; }
	.padding-top-large-73 { padding-top: 73px !important; }
	.padding-top-large-74 { padding-top: 74px !important; }
	.padding-top-large-75 { padding-top: 75px !important; }
	.padding-top-large-76 { padding-top: 76px !important; }
	.padding-top-large-77 { padding-top: 77px !important; }
	.padding-top-large-78 { padding-top: 78px !important; }
	.padding-top-large-79 { padding-top: 79px !important; }
	.padding-top-large-80 { padding-top: 80px !important; }
	.padding-top-large-81 { padding-top: 81px !important; }
	.padding-top-large-82 { padding-top: 82px !important; }
	.padding-top-large-83 { padding-top: 83px !important; }
	.padding-top-large-84 { padding-top: 84px !important; }
	.padding-top-large-85 { padding-top: 85px !important; }
	.padding-top-large-86 { padding-top: 86px !important; }
	.padding-top-large-87 { padding-top: 87px !important; }
	.padding-top-large-88 { padding-top: 88px !important; }
	.padding-top-large-89 { padding-top: 89px !important; }
	.padding-top-large-90 { padding-top: 90px !important; }
	.padding-top-large-91 { padding-top: 91px !important; }
	.padding-top-large-92 { padding-top: 92px !important; }
	.padding-top-large-93 { padding-top: 93px !important; }
	.padding-top-large-94 { padding-top: 94px !important; }
	.padding-top-large-95 { padding-top: 95px !important; }
	.padding-top-large-96 { padding-top: 96px !important; }
	.padding-top-large-97 { padding-top: 97px !important; }
	.padding-top-large-98 { padding-top: 98px !important; }
	.padding-top-large-99 { padding-top: 99px !important; }
	.padding-top-large-100 { padding-top: 100px !important; }
	.padding-top-large-101 { padding-top: 101px !important; }
	.padding-top-large-102 { padding-top: 102px !important; }
	.padding-top-large-103 { padding-top: 103px !important; }
	.padding-top-large-104 { padding-top: 104px !important; }
	.padding-top-large-105 { padding-top: 105px !important; }
	.padding-top-large-106 { padding-top: 106px !important; }
	.padding-top-large-107 { padding-top: 107px !important; }
	.padding-top-large-108 { padding-top: 108px !important; }
	.padding-top-large-109 { padding-top: 109px !important; }
	.padding-top-large-110 { padding-top: 110px !important; }
	.padding-top-large-111 { padding-top: 111px !important; }
	.padding-top-large-112 { padding-top: 112px !important; }
	.padding-top-large-113 { padding-top: 113px !important; }
	.padding-top-large-114 { padding-top: 114px !important; }
	.padding-top-large-115 { padding-top: 115px !important; }
	.padding-top-large-116 { padding-top: 116px !important; }
	.padding-top-large-117 { padding-top: 117px !important; }
	.padding-top-large-118 { padding-top: 118px !important; }
	.padding-top-large-119 { padding-top: 119px !important; }
	.padding-top-large-120 { padding-top: 120px !important; }
	.padding-top-large-121 { padding-top: 121px !important; }
	.padding-top-large-122 { padding-top: 122px !important; }
	.padding-top-large-123 { padding-top: 123px !important; }
	.padding-top-large-124 { padding-top: 124px !important; }
	.padding-top-large-125 { padding-top: 125px !important; }
	.padding-top-large-126 { padding-top: 126px !important; }
	.padding-top-large-127 { padding-top: 127px !important; }
	.padding-top-large-128 { padding-top: 128px !important; }
	.padding-top-large-129 { padding-top: 129px !important; }
	.padding-top-large-130 { padding-top: 130px !important; }
	.padding-top-large-131 { padding-top: 131px !important; }
	.padding-top-large-132 { padding-top: 132px !important; }
	.padding-top-large-133 { padding-top: 133px !important; }
	.padding-top-large-134 { padding-top: 134px !important; }
	.padding-top-large-135 { padding-top: 135px !important; }
	.padding-top-large-136 { padding-top: 136px !important; }
	.padding-top-large-137 { padding-top: 137px !important; }
	.padding-top-large-138 { padding-top: 138px !important; }
	.padding-top-large-139 { padding-top: 139px !important; }
	.padding-top-large-140 { padding-top: 140px !important; }
	.padding-top-large-141 { padding-top: 141px !important; }
	.padding-top-large-142 { padding-top: 142px !important; }
	.padding-top-large-143 { padding-top: 143px !important; }
	.padding-top-large-144 { padding-top: 144px !important; }
	.padding-top-large-145 { padding-top: 145px !important; }
	.padding-top-large-146 { padding-top: 146px !important; }
	.padding-top-large-147 { padding-top: 147px !important; }
	.padding-top-large-148 { padding-top: 148px !important; }
	.padding-top-large-149 { padding-top: 149px !important; }
	.padding-top-large-150 { padding-top: 150px !important; }
	.padding-top-large-151 { padding-top: 151px !important; }
	.padding-top-large-152 { padding-top: 152px !important; }
	.padding-top-large-153 { padding-top: 153px !important; }
	.padding-top-large-154 { padding-top: 154px !important; }
	.padding-top-large-155 { padding-top: 155px !important; }
	.padding-top-large-156 { padding-top: 156px !important; }
	.padding-top-large-157 { padding-top: 157px !important; }
	.padding-top-large-158 { padding-top: 158px !important; }
	.padding-top-large-159 { padding-top: 159px !important; }
	.padding-top-large-160 { padding-top: 160px !important; }
	.padding-top-large-161 { padding-top: 161px !important; }
	.padding-top-large-162 { padding-top: 162px !important; }
	.padding-top-large-163 { padding-top: 163px !important; }
	.padding-top-large-164 { padding-top: 164px !important; }
	.padding-top-large-165 { padding-top: 165px !important; }
	.padding-top-large-166 { padding-top: 166px !important; }
	.padding-top-large-167 { padding-top: 167px !important; }
	.padding-top-large-168 { padding-top: 168px !important; }
	.padding-top-large-169 { padding-top: 169px !important; }
	.padding-top-large-170 { padding-top: 170px !important; }
	.padding-top-large-171 { padding-top: 171px !important; }
	.padding-top-large-172 { padding-top: 172px !important; }
	.padding-top-large-173 { padding-top: 173px !important; }
	.padding-top-large-174 { padding-top: 174px !important; }
	.padding-top-large-175 { padding-top: 175px !important; }
	.padding-top-large-176 { padding-top: 176px !important; }
	.padding-top-large-177 { padding-top: 177px !important; }
	.padding-top-large-178 { padding-top: 178px !important; }
	.padding-top-large-179 { padding-top: 179px !important; }
	.padding-top-large-180 { padding-top: 180px !important; }
	.padding-top-large-181 { padding-top: 181px !important; }
	.padding-top-large-182 { padding-top: 182px !important; }
	.padding-top-large-183 { padding-top: 183px !important; }
	.padding-top-large-184 { padding-top: 184px !important; }
	.padding-top-large-185 { padding-top: 185px !important; }
	.padding-top-large-186 { padding-top: 186px !important; }
	.padding-top-large-187 { padding-top: 187px !important; }
	.padding-top-large-188 { padding-top: 188px !important; }
	.padding-top-large-189 { padding-top: 189px !important; }
	.padding-top-large-190 { padding-top: 190px !important; }
	.padding-top-large-191 { padding-top: 191px !important; }
	.padding-top-large-192 { padding-top: 192px !important; }
	.padding-top-large-193 { padding-top: 193px !important; }
	.padding-top-large-194 { padding-top: 194px !important; }
	.padding-top-large-195 { padding-top: 195px !important; }
	.padding-top-large-196 { padding-top: 196px !important; }
	.padding-top-large-197 { padding-top: 197px !important; }
	.padding-top-large-198 { padding-top: 198px !important; }
	.padding-top-large-199 { padding-top: 199px !important; }
	.padding-top-large-200 { padding-top: 200px !important; }

	.padding-bottom-large-0 { padding-bottom: 0px !important; }
	.padding-bottom-large-1 { padding-bottom: 1px !important; }
	.padding-bottom-large-2 { padding-bottom: 2px !important; }
	.padding-bottom-large-3 { padding-bottom: 3px !important; }
	.padding-bottom-large-4 { padding-bottom: 4px !important; }
	.padding-bottom-large-5 { padding-bottom: 5px !important; }
	.padding-bottom-large-6 { padding-bottom: 6px !important; }
	.padding-bottom-large-7 { padding-bottom: 7px !important; }
	.padding-bottom-large-8 { padding-bottom: 8px !important; }
	.padding-bottom-large-9 { padding-bottom: 9px !important; }
	.padding-bottom-large-10 { padding-bottom: 10px !important; }
	.padding-bottom-large-11 { padding-bottom: 11px !important; }
	.padding-bottom-large-12 { padding-bottom: 12px !important; }
	.padding-bottom-large-13 { padding-bottom: 13px !important; }
	.padding-bottom-large-14 { padding-bottom: 14px !important; }
	.padding-bottom-large-15 { padding-bottom: 15px !important; }
	.padding-bottom-large-16 { padding-bottom: 16px !important; }
	.padding-bottom-large-17 { padding-bottom: 17px !important; }
	.padding-bottom-large-18 { padding-bottom: 18px !important; }
	.padding-bottom-large-19 { padding-bottom: 19px !important; }
	.padding-bottom-large-20 { padding-bottom: 20px !important; }
	.padding-bottom-large-21 { padding-bottom: 21px !important; }
	.padding-bottom-large-22 { padding-bottom: 22px !important; }
	.padding-bottom-large-23 { padding-bottom: 23px !important; }
	.padding-bottom-large-24 { padding-bottom: 24px !important; }
	.padding-bottom-large-25 { padding-bottom: 25px !important; }
	.padding-bottom-large-26 { padding-bottom: 26px !important; }
	.padding-bottom-large-27 { padding-bottom: 27px !important; }
	.padding-bottom-large-28 { padding-bottom: 28px !important; }
	.padding-bottom-large-29 { padding-bottom: 29px !important; }
	.padding-bottom-large-30 { padding-bottom: 30px !important; }
	.padding-bottom-large-31 { padding-bottom: 31px !important; }
	.padding-bottom-large-32 { padding-bottom: 32px !important; }
	.padding-bottom-large-33 { padding-bottom: 33px !important; }
	.padding-bottom-large-34 { padding-bottom: 34px !important; }
	.padding-bottom-large-35 { padding-bottom: 35px !important; }
	.padding-bottom-large-36 { padding-bottom: 36px !important; }
	.padding-bottom-large-37 { padding-bottom: 37px !important; }
	.padding-bottom-large-38 { padding-bottom: 38px !important; }
	.padding-bottom-large-39 { padding-bottom: 39px !important; }
	.padding-bottom-large-40 { padding-bottom: 40px !important; }
	.padding-bottom-large-41 { padding-bottom: 41px !important; }
	.padding-bottom-large-42 { padding-bottom: 42px !important; }
	.padding-bottom-large-43 { padding-bottom: 43px !important; }
	.padding-bottom-large-44 { padding-bottom: 44px !important; }
	.padding-bottom-large-45 { padding-bottom: 45px !important; }
	.padding-bottom-large-46 { padding-bottom: 46px !important; }
	.padding-bottom-large-47 { padding-bottom: 47px !important; }
	.padding-bottom-large-48 { padding-bottom: 48px !important; }
	.padding-bottom-large-49 { padding-bottom: 49px !important; }
	.padding-bottom-large-50 { padding-bottom: 50px !important; }
	.padding-bottom-large-51 { padding-bottom: 51px !important; }
	.padding-bottom-large-52 { padding-bottom: 52px !important; }
	.padding-bottom-large-53 { padding-bottom: 53px !important; }
	.padding-bottom-large-54 { padding-bottom: 54px !important; }
	.padding-bottom-large-55 { padding-bottom: 55px !important; }
	.padding-bottom-large-56 { padding-bottom: 56px !important; }
	.padding-bottom-large-57 { padding-bottom: 57px !important; }
	.padding-bottom-large-58 { padding-bottom: 58px !important; }
	.padding-bottom-large-59 { padding-bottom: 59px !important; }
	.padding-bottom-large-60 { padding-bottom: 60px !important; }
	.padding-bottom-large-61 { padding-bottom: 61px !important; }
	.padding-bottom-large-62 { padding-bottom: 62px !important; }
	.padding-bottom-large-63 { padding-bottom: 63px !important; }
	.padding-bottom-large-64 { padding-bottom: 64px !important; }
	.padding-bottom-large-65 { padding-bottom: 65px !important; }
	.padding-bottom-large-66 { padding-bottom: 66px !important; }
	.padding-bottom-large-67 { padding-bottom: 67px !important; }
	.padding-bottom-large-68 { padding-bottom: 68px !important; }
	.padding-bottom-large-69 { padding-bottom: 69px !important; }
	.padding-bottom-large-70 { padding-bottom: 70px !important; }
	.padding-bottom-large-71 { padding-bottom: 71px !important; }
	.padding-bottom-large-72 { padding-bottom: 72px !important; }
	.padding-bottom-large-73 { padding-bottom: 73px !important; }
	.padding-bottom-large-74 { padding-bottom: 74px !important; }
	.padding-bottom-large-75 { padding-bottom: 75px !important; }
	.padding-bottom-large-76 { padding-bottom: 76px !important; }
	.padding-bottom-large-77 { padding-bottom: 77px !important; }
	.padding-bottom-large-78 { padding-bottom: 78px !important; }
	.padding-bottom-large-79 { padding-bottom: 79px !important; }
	.padding-bottom-large-80 { padding-bottom: 80px !important; }
	.padding-bottom-large-81 { padding-bottom: 81px !important; }
	.padding-bottom-large-82 { padding-bottom: 82px !important; }
	.padding-bottom-large-83 { padding-bottom: 83px !important; }
	.padding-bottom-large-84 { padding-bottom: 84px !important; }
	.padding-bottom-large-85 { padding-bottom: 85px !important; }
	.padding-bottom-large-86 { padding-bottom: 86px !important; }
	.padding-bottom-large-87 { padding-bottom: 87px !important; }
	.padding-bottom-large-88 { padding-bottom: 88px !important; }
	.padding-bottom-large-89 { padding-bottom: 89px !important; }
	.padding-bottom-large-90 { padding-bottom: 90px !important; }
	.padding-bottom-large-91 { padding-bottom: 91px !important; }
	.padding-bottom-large-92 { padding-bottom: 92px !important; }
	.padding-bottom-large-93 { padding-bottom: 93px !important; }
	.padding-bottom-large-94 { padding-bottom: 94px !important; }
	.padding-bottom-large-95 { padding-bottom: 95px !important; }
	.padding-bottom-large-96 { padding-bottom: 96px !important; }
	.padding-bottom-large-97 { padding-bottom: 97px !important; }
	.padding-bottom-large-98 { padding-bottom: 98px !important; }
	.padding-bottom-large-99 { padding-bottom: 99px !important; }
	.padding-bottom-large-100 { padding-bottom: 100px !important; }
	.padding-bottom-large-101 { padding-bottom: 101px !important; }
	.padding-bottom-large-102 { padding-bottom: 102px !important; }
	.padding-bottom-large-103 { padding-bottom: 103px !important; }
	.padding-bottom-large-104 { padding-bottom: 104px !important; }
	.padding-bottom-large-105 { padding-bottom: 105px !important; }
	.padding-bottom-large-106 { padding-bottom: 106px !important; }
	.padding-bottom-large-107 { padding-bottom: 107px !important; }
	.padding-bottom-large-108 { padding-bottom: 108px !important; }
	.padding-bottom-large-109 { padding-bottom: 109px !important; }
	.padding-bottom-large-110 { padding-bottom: 110px !important; }
	.padding-bottom-large-111 { padding-bottom: 111px !important; }
	.padding-bottom-large-112 { padding-bottom: 112px !important; }
	.padding-bottom-large-113 { padding-bottom: 113px !important; }
	.padding-bottom-large-114 { padding-bottom: 114px !important; }
	.padding-bottom-large-115 { padding-bottom: 115px !important; }
	.padding-bottom-large-116 { padding-bottom: 116px !important; }
	.padding-bottom-large-117 { padding-bottom: 117px !important; }
	.padding-bottom-large-118 { padding-bottom: 118px !important; }
	.padding-bottom-large-119 { padding-bottom: 119px !important; }
	.padding-bottom-large-120 { padding-bottom: 120px !important; }
	.padding-bottom-large-121 { padding-bottom: 121px !important; }
	.padding-bottom-large-122 { padding-bottom: 122px !important; }
	.padding-bottom-large-123 { padding-bottom: 123px !important; }
	.padding-bottom-large-124 { padding-bottom: 124px !important; }
	.padding-bottom-large-125 { padding-bottom: 125px !important; }
	.padding-bottom-large-126 { padding-bottom: 126px !important; }
	.padding-bottom-large-127 { padding-bottom: 127px !important; }
	.padding-bottom-large-128 { padding-bottom: 128px !important; }
	.padding-bottom-large-129 { padding-bottom: 129px !important; }
	.padding-bottom-large-130 { padding-bottom: 130px !important; }
	.padding-bottom-large-131 { padding-bottom: 131px !important; }
	.padding-bottom-large-132 { padding-bottom: 132px !important; }
	.padding-bottom-large-133 { padding-bottom: 133px !important; }
	.padding-bottom-large-134 { padding-bottom: 134px !important; }
	.padding-bottom-large-135 { padding-bottom: 135px !important; }
	.padding-bottom-large-136 { padding-bottom: 136px !important; }
	.padding-bottom-large-137 { padding-bottom: 137px !important; }
	.padding-bottom-large-138 { padding-bottom: 138px !important; }
	.padding-bottom-large-139 { padding-bottom: 139px !important; }
	.padding-bottom-large-140 { padding-bottom: 140px !important; }
	.padding-bottom-large-141 { padding-bottom: 141px !important; }
	.padding-bottom-large-142 { padding-bottom: 142px !important; }
	.padding-bottom-large-143 { padding-bottom: 143px !important; }
	.padding-bottom-large-144 { padding-bottom: 144px !important; }
	.padding-bottom-large-145 { padding-bottom: 145px !important; }
	.padding-bottom-large-146 { padding-bottom: 146px !important; }
	.padding-bottom-large-147 { padding-bottom: 147px !important; }
	.padding-bottom-large-148 { padding-bottom: 148px !important; }
	.padding-bottom-large-149 { padding-bottom: 149px !important; }
	.padding-bottom-large-150 { padding-bottom: 150px !important; }
	.padding-bottom-large-151 { padding-bottom: 151px !important; }
	.padding-bottom-large-152 { padding-bottom: 152px !important; }
	.padding-bottom-large-153 { padding-bottom: 153px !important; }
	.padding-bottom-large-154 { padding-bottom: 154px !important; }
	.padding-bottom-large-155 { padding-bottom: 155px !important; }
	.padding-bottom-large-156 { padding-bottom: 156px !important; }
	.padding-bottom-large-157 { padding-bottom: 157px !important; }
	.padding-bottom-large-158 { padding-bottom: 158px !important; }
	.padding-bottom-large-159 { padding-bottom: 159px !important; }
	.padding-bottom-large-160 { padding-bottom: 160px !important; }
	.padding-bottom-large-161 { padding-bottom: 161px !important; }
	.padding-bottom-large-162 { padding-bottom: 162px !important; }
	.padding-bottom-large-163 { padding-bottom: 163px !important; }
	.padding-bottom-large-164 { padding-bottom: 164px !important; }
	.padding-bottom-large-165 { padding-bottom: 165px !important; }
	.padding-bottom-large-166 { padding-bottom: 166px !important; }
	.padding-bottom-large-167 { padding-bottom: 167px !important; }
	.padding-bottom-large-168 { padding-bottom: 168px !important; }
	.padding-bottom-large-169 { padding-bottom: 169px !important; }
	.padding-bottom-large-170 { padding-bottom: 170px !important; }
	.padding-bottom-large-171 { padding-bottom: 171px !important; }
	.padding-bottom-large-172 { padding-bottom: 172px !important; }
	.padding-bottom-large-173 { padding-bottom: 173px !important; }
	.padding-bottom-large-174 { padding-bottom: 174px !important; }
	.padding-bottom-large-175 { padding-bottom: 175px !important; }
	.padding-bottom-large-176 { padding-bottom: 176px !important; }
	.padding-bottom-large-177 { padding-bottom: 177px !important; }
	.padding-bottom-large-178 { padding-bottom: 178px !important; }
	.padding-bottom-large-179 { padding-bottom: 179px !important; }
	.padding-bottom-large-180 { padding-bottom: 180px !important; }
	.padding-bottom-large-181 { padding-bottom: 181px !important; }
	.padding-bottom-large-182 { padding-bottom: 182px !important; }
	.padding-bottom-large-183 { padding-bottom: 183px !important; }
	.padding-bottom-large-184 { padding-bottom: 184px !important; }
	.padding-bottom-large-185 { padding-bottom: 185px !important; }
	.padding-bottom-large-186 { padding-bottom: 186px !important; }
	.padding-bottom-large-187 { padding-bottom: 187px !important; }
	.padding-bottom-large-188 { padding-bottom: 188px !important; }
	.padding-bottom-large-189 { padding-bottom: 189px !important; }
	.padding-bottom-large-190 { padding-bottom: 190px !important; }
	.padding-bottom-large-191 { padding-bottom: 191px !important; }
	.padding-bottom-large-192 { padding-bottom: 192px !important; }
	.padding-bottom-large-193 { padding-bottom: 193px !important; }
	.padding-bottom-large-194 { padding-bottom: 194px !important; }
	.padding-bottom-large-195 { padding-bottom: 195px !important; }
	.padding-bottom-large-196 { padding-bottom: 196px !important; }
	.padding-bottom-large-197 { padding-bottom: 197px !important; }
	.padding-bottom-large-198 { padding-bottom: 198px !important; }
	.padding-bottom-large-199 { padding-bottom: 199px !important; }
	.padding-bottom-large-200 { padding-bottom: 200px !important; }
}



::-moz-selection {
	color:var(--light-blue);
	background:var(--blue) !important;
}

::selection {
	color:var(--light-blue);
	background:var(--blue) !important;
}

::-moz-selection {
	color:var(--light-blue);
	background:var(--blue) !important;
}



:root {
	scrollbar-color: #CEE8EF #EDF6F9 !important;
	scrollbar-width: thin !important;
}

::-webkit-scrollbar {
   width:7px;
}

::-webkit-scrollbar-track {
   background:#EDF6F9;
}

::-webkit-scrollbar-thumb {
   background:#CEE8EF; 
}

::-webkit-scrollbar-thumb:hover {
	background:var(--link);
}

@media (max-width: 991.98px) {
	::-webkit-scrollbar {
		display: none;
	}
}







/* .grecaptcha-badge {
	display: none !important;
	visibility: hidden !important;
	content-visibility: hidden !important;
}
 */




.load-delay {
	content-visibility: hidden;
	display: none;
	transition: .2s;  
}

.load-delay-active {
	content-visibility: visible;
	display: block;
	transition: .2s; 
}




@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-Black.woff2') format('woff2'),
        url('fonts/WorkSans-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-Bold.woff2') format('woff2'),
        url('fonts/WorkSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-BlackItalic.woff2') format('woff2'),
        url('fonts/WorkSans-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-BoldItalic.woff2') format('woff2'),
        url('fonts/WorkSans-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-ExtraBold.woff2') format('woff2'),
        url('fonts/WorkSans-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-ExtraBoldItalic.woff2') format('woff2'),
        url('fonts/WorkSans-ExtraBoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-ExtraLight.woff2') format('woff2'),
        url('fonts/WorkSans-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-ExtraLightItalic.woff2') format('woff2'),
        url('fonts/WorkSans-ExtraLightItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-Italic.woff2') format('woff2'),
        url('fonts/WorkSans-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-Light.woff2') format('woff2'),
        url('fonts/WorkSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-LightItalic.woff2') format('woff2'),
        url('fonts/WorkSans-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-Medium.woff2') format('woff2'),
        url('fonts/WorkSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-MediumItalic.woff2') format('woff2'),
        url('fonts/WorkSans-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-Regular.woff2') format('woff2'),
        url('fonts/WorkSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-SemiBold.woff2') format('woff2'),
        url('fonts/WorkSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-SemiBoldItalic.woff2') format('woff2'),
        url('fonts/WorkSans-SemiBoldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-Thin.woff2') format('woff2'),
        url('fonts/WorkSans-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Work Sans';
    src: url('fonts/WorkSans-ThinItalic.woff2') format('woff2'),
        url('fonts/WorkSans-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}





/* end */

