 .hover-card {
     display: block;
     float: left;
     flex-wrap: wrap;
     margin: 10px 7px;
     padding: 24px 12px;
     width: 17%;
     border: 3px solid #036;
     border-radius: 6px;
     cursor: pointer;
 }

 .hover-card-text {
     width: 100%;
     color: #174460;
     font-size: 22px !important;
     font-weight: 700 !important;
     text-align: center !important;
     line-height: 21px;
     margin-bottom: 14px;
     margin-top: 14px;
     padding: 0px;
 }

 .hover-card:hover {
     background-color: #174460;
     color: #fff;
 }

 .hover-card:hover>.hover-card-text {
     color: #fff;
 }

 /* MEDIA QUERIES */
 @media only screen and (max-width: 767px) and (min-width: 320px) and (orientation: portrait) {
     .hover-card {
         width: 29%;
     }
 }


/* Extracted CSS - Only classes used in the HTML */

/* ===== Base Reset Rules ===== */
html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
	font-feature-settings: normal;
	font-variation-settings: normal;
	-webkit-tap-highlight-color: transparent;
	scrollbar-width: thin;
	overflow-x: hidden;
	max-width: 100% !important;
}

h1 {
	margin: 0px;
}

body {
	margin: 0;
	line-height: inherit;
	background-color: #fff;
	overflow-x: hidden !important;
}

*,
::before,
::after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
	border-color: #e5e7eb;
}

/* ===== Layout ===== */
.flex {
	display: flex;
}

.flex-row {
	flex-direction: row;
}

.flex-col {
	flex-direction: column;
}

.flex-grow {
	flex-grow: 1;
}

.items-center {
	align-items: center;
}

.justify-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

/* ===== Sizing ===== */
.h-10 {
	height: 2.5rem;
}

.w-10 {
	width: 2.5rem;
}

.w-full {
	width: 100%;
}

/* ===== Spacing ===== */
.mx-2 {
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}

.mx-4 {
	margin-left: 1rem;
	margin-right: 1rem;
}

.mb-3 {
	margin-bottom: 0.75rem;
}

.mb-4 {
	margin-bottom: 1rem;
}

.px-3 {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

.px-5 {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}

.px-8 {
	padding-left: 2rem;
	padding-right: 2rem;
}

.py-0 {
	padding-top: 0;
	padding-bottom: 0;
}

.py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

/* ===== Borders ===== */
.rounded {
	border-radius: 0.25rem;
}

.rounded-full {
	border-radius: 9999px;
}

.border-b {
	border-bottom-width: 1px;
}

.border-t {
	border-top-width: 1px;
}

.border-blue-400 {
	--tw-border-opacity: 1;
	border-color: rgb(96 165 250 / var(--tw-border-opacity));
}

.border-gray-300 {
	--tw-border-opacity: 1;
	border-color: rgb(209 213 219 / var(--tw-border-opacity));
}

/* ===== Backgrounds ===== */
.bg-white {
	--tw-bg-opacity: 1;
	background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-gray-100 {
	--tw-bg-opacity: 1;
	background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.bg-blue-600 {
	--tw-bg-opacity: 1;
	background-color: rgb(122 193 67 / var(--tw-bg-opacity));
}

/* ===== Typography ===== */
.text-center {
	text-align: center;
}

.text-xs {
	font-size: 0.75rem;
	line-height: 1rem;
}

.text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.font-semibold {
	font-weight: 600;
}

.font-bold {
	font-weight: 700;
}

.uppercase {
	text-transform: uppercase;
}

.text-white {
	--tw-text-opacity: 1;
	color: rgb(255 255 255 / var(--tw-text-opacity));
}

.text-gray-400 {
	--tw-text-opacity: 1;
	color: rgb(156 163 175 / var(--tw-text-opacity));
}

.text-gray-500 {
	--tw-text-opacity: 1;
	color: rgb(107 114 128 / var(--tw-text-opacity));
}

.text-gray-800 {
	--tw-text-opacity: 1;
	color: rgb(31 41 55 / var(--tw-text-opacity));
}

/* ===== Responsive: Small screens (640px+) ===== */
@media (min-width: 640px) {
	.sm\:flex-row {
		flex-direction: row;
	}

	.sm\:items-start {
		align-items: flex-start;
	}

	.sm\:mb-0 {
		margin-bottom: 0;
	}

	.sm\:w-auto {
		width: auto;
	}

	.sm\:text-left {
		text-align: left;
	}

	.sm\:justify-start {
		justify-content: flex-start;
	}
}

img,
video {
	max-width: 100%;
	height: auto;
}

/* ===== Responsive: Medium screens (768px+) ===== */
@media (min-width: 768px) {
	.md\:px-0 {
		padding-left: 0;
		padding-right: 0;
	}

	.md\:mr-20 {
		margin-right: 5rem;
	}
}

/* OVERRIDES */

a {
	color: #1580f2 !important;
	text-decoration: none;
}

a.download_button {
	color: #fff !important;
	text-decoration: none !important;
}

blockquote {
	background: #eee;
	border-left: 4px solid #006699;
	font-size: 1em;
	padding: 10px 20px;
	margin: 0 0 20px;
	margin-right: 1rem;
	margin-left: 1rem;
}

@media screen and (max-width: 600px) {
	blockquote {
		margin-right: 1rem;
		margin-left: 1rem;
	}

	blockquote p {
		display: inline;
		/* Optionally make the entire paragraph inline if it suits your design */
		padding-left: 0px;
	}

	.footer-logos {
		max-width: 90vw;
	}
}

@media (orientation: landscape) {
	.footer-logos {
		max-width: 90vw;
	}
}

/* Default settings for all devices
 .portrait-img { 
    display: none;     
}

 .landscape-img { 
    display: block; 
 } 

@media screen and (max-width: 768px) and (orientation: portrait) {
    .portrait-img {
        display: block;
    }
    .landscape-img {
        display: none;
    }
}
*/
/* Mobile Portrait - Extra Small (0-359px) */
@media screen and (min-width: 0px) and (max-width: 359px) and (orientation: portrait) {
    .portrait-img {
        display: block;
        margin: 0px auto !important;
    }

    .landscape-img {
        display: none;
    }
}

/* Mobile Portrait - Small (360-389px) */
@media screen and (min-width: 360px) and (max-width: 389px) and (orientation: portrait) {
    .portrait-img {
        display: block;
        margin: 0px auto !important;
    }

    .landscape-img {
        display: none;
    }
}

/* Mobile Portrait - Medium (390-429px) */
@media screen and (min-width: 390px) and (max-width: 429px) and (orientation: portrait) {
    .portrait-img {
        display: block;
        margin: 0px auto !important;
    }

    .landscape-img {
        display: none;
    }
}

/* Mobile Portrait - Large (430-479px) */
@media screen and (min-width: 430px) and (max-width: 479px) and (orientation: portrait) {
    .portrait-img {
        display: block;
        margin: 0px auto !important;
    }

    .landscape-img {
        display: none;
    }
}

/* Tablet Portrait - Extra Small (480-768px) */
@media screen and (min-width: 480px) and (max-width: 768px) and (orientation: portrait) {
    .portrait-img {
        display: block;
        margin: 0px auto !important;
    }

    .landscape-img {
        display: none;
    }
}

/* Mobile Landscape - Extra Small (0-667px) */
@media screen and (min-width: 0px) and (max-width: 667px) and (orientation: landscape) {
    .portrait-img {
        display: none;
    }

    .landscape-img {
        display: block;
        margin: 0px auto !important;
    }
}

/* Mobile Landscape - Small (668-739px) */
@media screen and (min-width: 668px) and (max-width: 739px) and (orientation: landscape) {
    .portrait-img {
        display: none;
    }

    .landscape-img {
        display: block;
        margin: 0px auto !important;
    }
}

/* Mobile Landscape - Medium (740-851px) */
@media screen and (min-width: 740px) and (max-width: 851px) and (orientation: landscape) {
    .portrait-img {
        display: none;
    }

    .landscape-img {
        display: block;
        margin: 0px auto !important;
    }
}

/* Mobile Landscape - Large (852-931px) */
@media screen and (min-width: 852px) and (max-width: 931px) and (orientation: landscape) {
    .portrait-img {
        display: none;
    }

    .landscape-img {
        display: block;
        margin: 0px auto !important;
    }
}

/* Tablets and Desktop (768px+) - ALWAYS show landscape only */
@media screen and (min-width: 768px) {
    .portrait-img {
        display: none;
    }

    .landscape-img {
        display: block;
        margin: 0px auto !important;
    }
}

 .BoxuiGrid-justify-content-xs-center {
     justify-content: center;
 }

 .BoxuiGrid-align-content-xs-center {
     align-content: center;
 }

 .BoxuiGrid-container {
     width: 100%;
     display: flex;
     flex-wrap: wrap;
     box-sizing: border-box;
 }

 .hover-card {
     display: block;
     float: left;
     flex-wrap: wrap;
     margin: 10px 7px;
     padding: 24px 12px;
     width: 17%;
     border: 3px solid #036;
     border-radius: 6px;
     cursor: pointer;
 }

 .hover-card-text {
     width: 100%;
     color: #174460;
     font-size: 22px !important;
     font-weight: 700 !important;
     text-align: center !important;
     line-height: 21px;
     margin-bottom: 14px;
     margin-top: 14px;
     padding: 0px;
 }

 .hover-card:hover {
     background-color: #174460;
     color: #fff;
 }

 .hover-card:hover>.hover-card-text {
     color: #fff;
 }

 /* MEDIA QUERIES */
 @media only screen and (max-width: 767px) and (min-width: 320px) and (orientation: portrait) {
     .hover-card {
         width: 44%;
     }
 }

 @media only screen and (max-width: 767px) and (min-width: 428px) and (orientation: portrait) {
     .hover-card {
         width: 29%;
     }
 }

@media (min-width: 0px) and (max-width: 359px) {
  #ix055 {
    line-height: 30.4px !important;
    color: #222222 !important;
    padding-right: 16px !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
    font-size: 24px !important;
    padding-left: 16px !important;
    padding-bottom: 16px !important;
    padding-top: 16px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 700 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iw0bo {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
    font-weight: 400 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i7sqj9 {
    font-size: 16px !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iusup {
    font-size: 18px !important;
    margin-top: 12px !important;
    font-weight: 400 !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ifeyh {
    font-size: 18px !important;
    padding-bottom: 8px !important;
    padding-top: 8px !important;
    display: inline-block !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iez3x {
    font-size: 18px !important;
    margin-bottom: 7px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #irw7e {
    font-size: 18px !important;
    margin-top: 4px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #idc2g {
    font-size: 18px !important;
    margin-bottom: 12px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iv7ps {
    font-size: 18px !important;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_5B3RICEfx {
    padding-right: 6px !important;
    padding-left: 6px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    font-family: Georgia, Serif !important;
    font-size: 18px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i7l5uh {
    font-size: 16px !important;
    font-weight: 500 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iy3vsu {
    font-size: 14px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iukkt {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iwkh7 {
    margin-top: 0px !important;
    padding-top: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    margin-right: 0px !important;
    background-color: transparent !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #cke_720_previewImage {
    padding-top: 0px !important;
    padding-right: 16px !important;
    padding-bottom: 0px !important;
    padding-left: 16px !important;
    margin-right: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ijdzti {
    padding-top: 4px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ib641 {
    padding-left: 12px !important;
    padding-right: 12px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    font-size: 16px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #imoy65 {
    margin-bottom: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #cke_720_previewImage-2 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #is11t6 {
    font-weight: 600 !important;
    color: #949494 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iro5k2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_rkNOTq5pgg {
    font-size: 16px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_ry5Rx-ECle {
    font-weight: 700 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i6zg0i {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #cke_173_previewImage {
    padding-top: 0px !important;
    margin-right: 0px !important;
    margin-top: 12px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_HJfHCETAgx {
    font-weight: 200 !important;
    display: inline !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iloh3g {
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ivnv55 {
    margin-bottom: 6px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 16px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i0xcy {
    padding-top: 8px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_HJH7HDuzZe {
    padding-right: 10px !important;
    padding-left: 10px !important;
    font-size: 17px !important;
    font-family: Georgia, Serif !important;
    display: block !important;
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_rJQYwddfbl {
    font-weight: 600 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #idc2g-2 {
    font-size: 18px !important;
    margin-bottom: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ibr7xz {
    font-family: Georgia, Serif !important;
    font-size: 28px !important;
    line-height: 37.8px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iw0bo-2 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iw0bo-3 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iukkt-2 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iukkt-3 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iqupjl {
    line-height: 25.2px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ifisg {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iw0bo-4 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ij9c8d {
    padding-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ix055 {
    line-height: 34.5px !important;
    color: #222222 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
    font-size: 32px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 700 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #cke_720_previewImage {
    padding-right: 16px !important;
    padding-left: 16px !important;
    margin-right: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ijdzti {
    padding-top: 8px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iro5k2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iw0bo {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ib641 {
    padding-right: 12px !important;
    padding-left: 12px !important;
    padding-bottom: 12px !important;
    padding-top: 12px !important;
    font-size: 16px !important;
    display: inline-block !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_5B3RICEfx {
    padding-right: 8px !important;
    padding-left: 8px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    font-family: Georgia, Serif !important;
    font-size: 17px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i7l5uh {
    font-size: 19px !important;
    font-weight: 500 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iy3vsu {
    font-size: 14px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iusup {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i7sqj9 {
    padding-right: 20px !important;
    padding-left: 20px !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #is11t6 {
    font-weight: 600 !important;
    color: #adadae !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #imoy65 {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #cke_720_previewImage-2 {
    margin-right: 0px !important;
    margin-left: 0px !important;
    padding-right: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i334s8 {
    margin-bottom: 0px !important;
    padding-bottom: 2px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #igt5bk {
    margin-top: 16px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iukkt {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i6zg0i {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #cke_173_previewImage {
    padding-top: 0px !important;
    margin-right: 0px !important;
    margin-top: 12px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iwkh7 {
    padding-top: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
    background-color: transparent !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_HJfHCETAgx {
    font-weight: 400 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ifeyh {
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    display: inline-block !important;
    line-height: 27px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iez3x {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #irw7e {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #idc2g {
    font-size: 18px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iv7ps {
    font-size: 18px !important;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iloh3g {
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ivnv55 {
    margin-bottom: 6px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 16px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i0xcy {
    padding-top: 8px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #irzl89 {
    margin-bottom: 24px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    display: flex !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_HJH7HDuzZe {
    padding-right: 16px !important;
    padding-left: 16px !important;
    font-family: Georgia, Serif !important;
    font-size: 18px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_rJQYwddfbl {
    font-weight: 600 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #idc2g-2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ibr7xz {
    line-height: 43.2px !important;
    font-family: Georgia, Serif !important;
    font-size: 32px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iw0bo-2 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iw0bo-3 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iukkt-2 {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iukkt-3 {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iw0bo-4 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_BJcZ8vrLWg {
    display: inline-block !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ij9c8d {
    padding-top: 0px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ibr7xz {
    line-height: 54px !important;
    font-family: Georgia, Serif !important;
    font-size: 40px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ix055 {
    font-size: 36px !important;
    padding-top: 16px !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    line-height: 44.9px !important;
    color: #222222 !important;
    text-decoration: none !important;
    padding-bottom: 16px !important;
    font-weight: 700 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_HJH7HDuzZe {
    margin-right: 0px !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #i7sqj9 {
    padding-right: 20px !important;
    padding-left: 20px !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #i6zg0i {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iusup {
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #cke_173_previewImage {
    padding-top: 0px !important;
    margin-right: 0px !important;
    margin-top: 12px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iwkh7 {
    padding-top: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
    background-color: transparent !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_HJfHCETAgx {
    font-weight: 400 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iw0bo {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iro5k2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ib641 {
    font-size: 16px !important;
    padding-top: 12px !important;
    padding-right: 12px !important;
    padding-bottom: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ifeyh {
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iez3x {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #irw7e {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #idc2g {
    font-size: 18px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iv7ps {
    font-size: 18px !important;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iloh3g {
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ivnv55 {
    margin-bottom: 6px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 16px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #i0xcy {
    padding-top: 8px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #cke_720_previewImage {
    padding-right: 16px !important;
    margin-right: 0px !important;
    padding-left: 16px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_5B3RICEfx {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_rJQYwddfbl {
    font-weight: 600 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #idc2g-2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iw0bo-2 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iw0bo-3 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iw0bo-4 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ij9c8d {
    padding-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ix055 {
    line-height: 40px !important;
    color: #222222 !important;
    font-size: 32px !important;
    padding-bottom: 16px !important;
    padding-top: 16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 700 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #cke_720_previewImage {
    padding-right: 16px !important;
    padding-left: 16px !important;
    margin-right: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i7sqj9 {
    padding-right: 20px !important;
    padding-left: 20px !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_5B3RICEfx {
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-family: Georgia, Serif !important;
    font-size: 18px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i334s8 {
    margin-bottom: 12px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #imoy65 {
    margin-bottom: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #is11t6 {
    color: #9fa0a3 !important;
    font-weight: 500 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i7l5uh {
    font-size: 16px !important;
    font-weight: 500 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i1edrj {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iloh3g {
    margin-right: 12px !important;
    margin-left: 12px !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iukkt {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #igt5bk {
    margin-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i6zg0i {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iusup {
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #cke_173_previewImage {
    padding-top: 0px !important;
    margin-right: 0px !important;
    margin-top: 12px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iwkh7 {
    padding-top: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
    background-color: transparent !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_HJfHCETAgx {
    font-weight: 400 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iw0bo {
    font-size: 16px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iro5k2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ib641 {
    font-size: 16px !important;
    padding-top: 12px !important;
    padding-right: 12px !important;
    padding-bottom: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ifeyh {
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iez3x {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #irw7e {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #idc2g {
    font-size: 18px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iv7ps {
    font-size: 18px !important;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ivnv55 {
    margin-bottom: 6px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 16px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i0xcy {
    padding-top: 8px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_HJH7HDuzZe {
    font-family: Georgia, Serif !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
    font-size: 20px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_rJQYwddfbl {
    font-weight: 600 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #idc2g-2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ibr7xz {
    font-family: Georgia, Serif !important;
    font-size: 32px !important;
    line-height: 43.2px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #irzl89 {
    display: flex !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iw0bo-2 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iw0bo-3 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iukkt-2 {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iukkt-3 {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iw0bo-4 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iqupjl {
    font-weight: 600 !important;
    font-size: 18px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ij9c8d {
    padding-top: 0px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iw0bo-4 {
    line-height: 27px !important;
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ix055 {
    font-size: 44px !important;
    line-height: 54px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 700 !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
    padding-bottom: 16px !important;
    padding-top: 16px !important;
    color: #222222 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_HJH7HDuzZe {
    font-size: 22px !important;
    margin-right: 0px !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iusup {
    line-height: 27px !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iro5k2 {
    line-height: 27px !important;
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_5B3RICEfx {
    padding-right: 70px !important;
    padding-left: 70px !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ixgui {
    line-height: 22.4px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #i7sqj9 {
    padding-right: 20px !important;
    padding-left: 20px !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #i6zg0i {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #cke_173_previewImage {
    padding-top: 0px !important;
    margin-right: 0px !important;
    margin-top: 12px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iwkh7 {
    padding-top: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
    background-color: transparent !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_HJfHCETAgx {
    font-weight: 400 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iw0bo {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ib641 {
    font-size: 16px !important;
    padding-top: 12px !important;
    padding-right: 12px !important;
    padding-bottom: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ifeyh {
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iez3x {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #irw7e {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #idc2g {
    font-size: 18px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iv7ps {
    font-size: 18px !important;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iloh3g {
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ivnv55 {
    margin-bottom: 6px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 16px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #i0xcy {
    padding-top: 8px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #cke_720_previewImage {
    padding-right: 16px !important;
    margin-right: 0px !important;
    padding-left: 16px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_rJQYwddfbl {
    font-weight: 600 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #idc2g-2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ibr7xz {
    font-family: Georgia, Serif !important;
    font-size: 40px !important;
    line-height: 54px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iw0bo-2 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iw0bo-3 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ij9c8d {
    padding-top: 0px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ix055 {
    color: #222222 !important;
    font-size: 39px !important;
    line-height: 45px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    display: block !important;
    text-align: center !important;
    font-weight: 700 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ij9c8d {
    padding-top: 0px !important;
    text-align: center !important;
    display: inline !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #i7sqj9 {
    padding-right: 20px !important;
    padding-left: 20px !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #cke_720_previewImage {
    padding-right: 16px !important;
    padding-left: 16px !important;
    margin-right: 0px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #is11t6 {
    font-weight: 600 !important;
    color: #9fa2a8 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #imoy65 {
    margin-bottom: 0px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #i6zg0i {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iusup {
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #cke_173_previewImage {
    padding-top: 0px !important;
    margin-right: 0px !important;
    margin-top: 12px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iwkh7 {
    padding-top: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
    background-color: transparent !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_HJfHCETAgx {
    font-weight: 400 !important;
    display: inline-block !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iw0bo {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iro5k2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ib641 {
    font-size: 16px !important;
    padding-top: 12px !important;
    padding-right: 12px !important;
    padding-bottom: 12px !important;
    padding-left: 12px !important;
    display: inline-block !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ifeyh {
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iez3x {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #irw7e {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #idc2g {
    font-size: 18px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iv7ps {
    font-size: 18px !important;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iloh3g {
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ivnv55 {
    margin-bottom: 6px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 16px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #i0xcy {
    padding-top: 8px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_Hy8AVKbJWx {
    padding-right: 0px !important;
    display: block !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_5B3RICEfx {
    font-family: Georgia, Serif !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_HJH7HDuzZe {
    font-family: Georgia, Serif !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
    font-size: 21px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_rJQYwddfbl {
    font-weight: 600 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #idc2g-2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ibr7xz {
    font-size: 36px !important;
    line-height: 48.6px !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iw0bo-2 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iw0bo-3 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iw0bo-4 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_BJcZ8vrLWg {
    display: inline-block !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iqupjl {
    font-size: 18px !important;
    font-weight: 600 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ibr7xz {
    line-height: 54px !important;
    font-family: Georgia, Serif !important;
    font-size: 40px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ix055 {
    padding-right: 12px !important;
    font-size: 34px !important;
    line-height: 44.2px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    padding-left: 12px !important;
    color: #222222 !important;
    font-weight: 700 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_HJH7HDuzZe {
    margin-right: 0px !important;
    font-size: 22px !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #cke_720_previewImage-2 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #id13jf {
    margin-top: 24px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #w-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_Hy8AVKbJWx {
    display: block !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ij9c8d {
    display: block !important;
    text-align: center !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iwkh7 {
    background-color: transparent !important;
    padding-top: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #i7sqj9 {
    padding-top: 0px !important;
    padding-right: 20px !important;
    padding-bottom: 12px !important;
    padding-left: 20px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ib641 {
    padding-top: 12px !important;
    padding-right: 12px !important;
    padding-bottom: 12px !important;
    padding-left: 12px !important;
    font-size: 16px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #i6zg0i {
    padding-bottom: 5px !important;
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iusup {
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #cke_173_previewImage {
    padding-top: 0px !important;
    margin-right: 0px !important;
    margin-top: 12px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_HJfHCETAgx {
    font-weight: 400 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iw0bo {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iro5k2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ifeyh {
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iez3x {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #irw7e {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #idc2g {
    font-size: 18px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iv7ps {
    font-size: 18px !important;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iloh3g {
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ivnv55 {
    margin-bottom: 6px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 16px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #i0xcy {
    padding-top: 8px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #cke_720_previewImage {
    padding-right: 16px !important;
    margin-right: 0px !important;
    padding-left: 16px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_5B3RICEfx {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_rJQYwddfbl {
    font-weight: 600 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #idc2g-2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iw0bo-2 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iw0bo-3 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iw0bo-4 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 1367px) {
  #ix055 {
    color: #222222 !important;
    font-size: 46px !important;
    line-height: 57.6px !important;
    padding-right: 12px !important;
    margin-top: 0px !important;
    margin-left: 0px !important;
    padding-top: 16px !important;
    padding-left: 12px !important;
    padding-bottom: 16px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 700 !important;
  }
}
@media (min-width: 1367px) {
  #i6zg0i {
    text-align: center !important;
    padding-bottom: 4px !important;
    padding-right: 0px !important;
    padding-left: 0px !important;
    padding-top: 4px !important;
  }
}
@media (min-width: 1367px) {
  #ijdzti {
    padding-top: 0px !important;
  }
}
@media (min-width: 1367px) {
  #iro5k2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #iw0bo {
    font-size: 18px !important;
    margin-top: 18px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
  }
}
@media (min-width: 1367px) {
  #igt5bk {
    margin-top: 20px !important;
  }
}
@media (min-width: 1367px) {
  #i7sqj9 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
@media (min-width: 1367px) {
  #ifisg {
    margin-bottom: 0px !important;
  }
}
@media (min-width: 1367px) {
  #i0xcy {
    padding-top: 8px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 1367px) {
  #i7l5uh {
    font-size: 19px !important;
    font-weight: 500 !important;
  }
}
@media (min-width: 1367px) {
  #iloh3g {
    text-align: center !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 1367px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 1367px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 1367px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 1367px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 1367px) {
  #iusup {
    font-weight: 400 !important;
    font-size: 18px !important;
    display: block !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #clickster_HJfHCETAgx {
    font-weight: 400 !important;
  }
}
@media (min-width: 1367px) {
  #is11t6 {
    font-weight: 500 !important;
    color: #7c969e !important;
  }
}
@media (min-width: 1367px) {
  #ib641 {
    font-size: 16px !important;
    padding-top: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 20px !important;
    padding-left: 20px !important;
    margin-bottom: 18px !important;
  }
}
@media (min-width: 1367px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 1367px) {
  #ifeyh {
    font-size: 18px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 1367px) {
  #iez3x {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 1367px) {
  #irw7e {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #idc2g {
    font-size: 18px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 1367px) {
  #iv7ps {
    font-size: 18px !important;
    margin-bottom: 0px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #ivnv55 {
    margin-bottom: 8px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 1367px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 1367px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 1367px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 17px !important;
  }
}
@media (min-width: 1367px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 1367px) {
  #iukkt {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 1367px) {
  #iwkh7 {
    background-color: transparent !important;
    margin-top: 0px !important;
    padding-right: 0px !important;
    padding-left: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
}
@media (min-width: 1367px) {
  #cke_173_previewImage {
    margin-top: 12px !important;
  }
}
@media (min-width: 1367px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 1367px) {
  #cke_720_previewImage {
    padding-right: 16px !important;
    margin-right: 0px !important;
    padding-left: 16px !important;
  }
}
@media (min-width: 1367px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 1367px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 1367px) {
  #ij9c8d {
    text-align: center !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 1367px) {
  #cke_547_previewImage {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
}
@media (min-width: 1367px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 1367px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 1367px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 1367px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 1367px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #clickster_5B3RICEfx {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 1367px) {
  #clickster_HJH7HDuzZe {
    margin-right: 0px !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #clickster_SJs68ddfWe {
    display: inline-block !important;
  }
}
@media (min-width: 1367px) {
  #clickster_B1MVD__zZl {
    display: inline-block !important;
  }
}
@media (min-width: 1367px) {
  #clickster_rJQYwddfbl {
    display: inline-block !important;
    font-weight: 600 !important;
  }
}
@media (min-width: 1367px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 1367px) {
  #idc2g-2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 1367px) {
  #ibr7xz {
    font-size: 44px !important;
    font-family: Georgia, Serif !important;
    line-height: 57.2px !important;
  }
}
@media (min-width: 1367px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #iukkt-3 {
    margin-bottom: 8px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 1367px) {
  #iw0bo-2 {
    font-size: 18px !important;
    margin-top: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 1367px) {
  #iw0bo-3 {
    font-size: 18px !important;
    margin-top: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 1367px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #iukkt-2 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 1367px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #iw0bo-4 {
    font-size: 18px !important;
    margin-top: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (max-width: 992px) {
  .gjs-grid-row {
    flex-direction: column;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ix055 {
    line-height: 30.4px !important;
    color: #222222 !important;
    padding-right: 16px !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
    font-size: 24px !important;
    padding-left: 16px !important;
    padding-bottom: 16px !important;
    padding-top: 16px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 700 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iw0bo {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
    font-weight: 400 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i7sqj9 {
    font-size: 16px !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iusup {
    font-size: 18px !important;
    margin-top: 12px !important;
    font-weight: 400 !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ifeyh {
    font-size: 18px !important;
    padding-bottom: 8px !important;
    padding-top: 8px !important;
    display: inline-block !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iez3x {
    font-size: 18px !important;
    margin-bottom: 7px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #irw7e {
    font-size: 18px !important;
    margin-top: 4px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #idc2g {
    font-size: 18px !important;
    margin-bottom: 12px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iv7ps {
    font-size: 18px !important;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_5B3RICEfx {
    padding-right: 6px !important;
    padding-left: 6px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    font-family: Georgia, Serif !important;
    font-size: 18px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i7l5uh {
    font-size: 16px !important;
    font-weight: 500 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iy3vsu {
    font-size: 14px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iukkt {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iwkh7 {
    margin-top: 0px !important;
    padding-top: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    margin-right: 0px !important;
    background-color: transparent !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #cke_720_previewImage {
    padding-top: 0px !important;
    padding-right: 16px !important;
    padding-bottom: 0px !important;
    padding-left: 16px !important;
    margin-right: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ijdzti {
    padding-top: 4px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ib641 {
    padding-left: 12px !important;
    padding-right: 12px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    font-size: 16px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #imoy65 {
    margin-bottom: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #cke_720_previewImage-2 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #is11t6 {
    font-weight: 600 !important;
    color: #949494 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iro5k2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_rkNOTq5pgg {
    font-size: 16px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_ry5Rx-ECle {
    font-weight: 700 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i6zg0i {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #cke_173_previewImage {
    padding-top: 0px !important;
    margin-right: 0px !important;
    margin-top: 12px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_HJfHCETAgx {
    font-weight: 200 !important;
    display: inline !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iloh3g {
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ivnv55 {
    margin-bottom: 6px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 16px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i0xcy {
    padding-top: 8px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_HJH7HDuzZe {
    padding-right: 10px !important;
    padding-left: 10px !important;
    font-size: 17px !important;
    font-family: Georgia, Serif !important;
    display: block !important;
    text-align: center !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_rJQYwddfbl {
    font-weight: 600 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #idc2g-2 {
    font-size: 18px !important;
    margin-bottom: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ibr7xz {
    font-family: Georgia, Serif !important;
    font-size: 28px !important;
    line-height: 37.8px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #clickster_HyeBSDrU-e {
    font-weight: 600 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iw0bo-2 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iw0bo-3 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iukkt-2 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iukkt-3 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iqupjl {
    line-height: 25.2px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ifisg {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #iw0bo-4 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 0px) and (max-width: 359px) {
  #ij9c8d {
    padding-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ix055 {
    line-height: 34.5px !important;
    color: #222222 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
    font-size: 32px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 700 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #cke_720_previewImage {
    padding-right: 16px !important;
    padding-left: 16px !important;
    margin-right: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ijdzti {
    padding-top: 8px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iro5k2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iw0bo {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ib641 {
    padding-right: 12px !important;
    padding-left: 12px !important;
    padding-bottom: 12px !important;
    padding-top: 12px !important;
    font-size: 16px !important;
    display: inline-block !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_5B3RICEfx {
    padding-right: 8px !important;
    padding-left: 8px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    font-family: Georgia, Serif !important;
    font-size: 17px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i7l5uh {
    font-size: 19px !important;
    font-weight: 500 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iy3vsu {
    font-size: 14px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iusup {
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i7sqj9 {
    padding-right: 20px !important;
    padding-left: 20px !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #is11t6 {
    font-weight: 600 !important;
    color: #adadae !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #imoy65 {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #cke_720_previewImage-2 {
    margin-right: 0px !important;
    margin-left: 0px !important;
    padding-right: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i334s8 {
    margin-bottom: 0px !important;
    padding-bottom: 2px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #igt5bk {
    margin-top: 16px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iukkt {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i6zg0i {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #cke_173_previewImage {
    padding-top: 0px !important;
    margin-right: 0px !important;
    margin-top: 12px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iwkh7 {
    padding-top: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
    background-color: transparent !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_HJfHCETAgx {
    font-weight: 400 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ifeyh {
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    display: inline-block !important;
    line-height: 27px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iez3x {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #irw7e {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #idc2g {
    font-size: 18px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iv7ps {
    font-size: 18px !important;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iloh3g {
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ivnv55 {
    margin-bottom: 6px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 16px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i0xcy {
    padding-top: 8px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #irzl89 {
    margin-bottom: 24px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    display: flex !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_HJH7HDuzZe {
    padding-right: 16px !important;
    padding-left: 16px !important;
    font-family: Georgia, Serif !important;
    font-size: 18px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_rJQYwddfbl {
    font-weight: 600 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #idc2g-2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ibr7xz {
    line-height: 43.2px !important;
    font-family: Georgia, Serif !important;
    font-size: 32px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_HyeBSDrU-e {
    font-weight: 600 !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iw0bo-2 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iw0bo-3 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iukkt-2 {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iukkt-3 {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #iw0bo-4 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #clickster_BJcZ8vrLWg {
    display: inline-block !important;
  }
}
@media (min-width: 360px) and (max-width: 389px) {
  #ij9c8d {
    padding-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ix055 {
    line-height: 40px !important;
    color: #222222 !important;
    font-size: 32px !important;
    padding-bottom: 16px !important;
    padding-top: 16px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 700 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #cke_720_previewImage {
    padding-right: 16px !important;
    padding-left: 16px !important;
    margin-right: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i7sqj9 {
    padding-right: 20px !important;
    padding-left: 20px !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_5B3RICEfx {
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-family: Georgia, Serif !important;
    font-size: 18px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i334s8 {
    margin-bottom: 12px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #imoy65 {
    margin-bottom: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #is11t6 {
    color: #9fa0a3 !important;
    font-weight: 500 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i7l5uh {
    font-size: 16px !important;
    font-weight: 500 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i1edrj {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iloh3g {
    margin-right: 12px !important;
    margin-left: 12px !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iukkt {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #igt5bk {
    margin-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i6zg0i {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iusup {
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #cke_173_previewImage {
    padding-top: 0px !important;
    margin-right: 0px !important;
    margin-top: 12px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iwkh7 {
    padding-top: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
    background-color: transparent !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_HJfHCETAgx {
    font-weight: 400 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iw0bo {
    font-size: 16px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iro5k2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ib641 {
    font-size: 16px !important;
    padding-top: 12px !important;
    padding-right: 12px !important;
    padding-bottom: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ifeyh {
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iez3x {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #irw7e {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #idc2g {
    font-size: 18px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iv7ps {
    font-size: 18px !important;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ivnv55 {
    margin-bottom: 6px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 16px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i0xcy {
    padding-top: 8px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_HJH7HDuzZe {
    font-family: Georgia, Serif !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
    font-size: 20px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_rJQYwddfbl {
    font-weight: 600 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #idc2g-2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ibr7xz {
    font-family: Georgia, Serif !important;
    font-size: 32px !important;
    line-height: 43.2px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #irzl89 {
    display: flex !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #clickster_HyeBSDrU-e {
    font-weight: 600 !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iw0bo-2 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iw0bo-3 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iukkt-2 {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iukkt-3 {
    margin-bottom: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iw0bo-4 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #iqupjl {
    font-weight: 600 !important;
    font-size: 18px !important;
  }
}
@media (min-width: 390px) and (max-width: 429px) {
  #ij9c8d {
    padding-top: 0px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ix055 {
    color: #222222 !important;
    font-size: 39px !important;
    line-height: 45px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    display: block !important;
    text-align: center !important;
    font-weight: 700 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ij9c8d {
    padding-top: 0px !important;
    text-align: center !important;
    display: inline !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #i7sqj9 {
    padding-right: 20px !important;
    padding-left: 20px !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #cke_720_previewImage {
    padding-right: 16px !important;
    padding-left: 16px !important;
    margin-right: 0px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #is11t6 {
    font-weight: 600 !important;
    color: #9fa2a8 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #imoy65 {
    margin-bottom: 0px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #i6zg0i {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iusup {
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #cke_173_previewImage {
    padding-top: 0px !important;
    margin-right: 0px !important;
    margin-top: 12px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iwkh7 {
    padding-top: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
    background-color: transparent !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_HJfHCETAgx {
    font-weight: 400 !important;
    display: inline-block !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iw0bo {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iro5k2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ib641 {
    font-size: 16px !important;
    padding-top: 12px !important;
    padding-right: 12px !important;
    padding-bottom: 12px !important;
    padding-left: 12px !important;
    display: inline-block !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ifeyh {
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iez3x {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #irw7e {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #idc2g {
    font-size: 18px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iv7ps {
    font-size: 18px !important;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iloh3g {
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ivnv55 {
    margin-bottom: 6px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 16px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #i0xcy {
    padding-top: 8px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_Hy8AVKbJWx {
    padding-right: 0px !important;
    display: block !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_5B3RICEfx {
    font-family: Georgia, Serif !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_HJH7HDuzZe {
    font-family: Georgia, Serif !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
    font-size: 21px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_rJQYwddfbl {
    font-weight: 600 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #idc2g-2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ibr7xz {
    font-size: 36px !important;
    line-height: 48.6px !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_HyeBSDrU-e {
    font-weight: 600 !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iw0bo-2 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iw0bo-3 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iw0bo-4 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #clickster_BJcZ8vrLWg {
    display: inline-block !important;
  }
}
@media (min-width: 430px) and (max-width: 479px) {
  #iqupjl {
    font-size: 18px !important;
    font-weight: 600 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ibr7xz {
    line-height: 54px !important;
    font-family: Georgia, Serif !important;
    font-size: 40px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ix055 {
    padding-right: 12px !important;
    font-size: 34px !important;
    line-height: 44.2px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    padding-left: 12px !important;
    color: #222222 !important;
    font-weight: 700 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_HJH7HDuzZe {
    margin-right: 0px !important;
    font-size: 22px !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #cke_720_previewImage-2 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #id13jf {
    margin-top: 24px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #w-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_Hy8AVKbJWx {
    display: block !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ij9c8d {
    display: block !important;
    text-align: center !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iwkh7 {
    background-color: transparent !important;
    padding-top: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #i7sqj9 {
    padding-top: 0px !important;
    padding-right: 20px !important;
    padding-bottom: 12px !important;
    padding-left: 20px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ib641 {
    padding-top: 12px !important;
    padding-right: 12px !important;
    padding-bottom: 12px !important;
    padding-left: 12px !important;
    font-size: 16px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #i6zg0i {
    padding-bottom: 5px !important;
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iusup {
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #cke_173_previewImage {
    padding-top: 0px !important;
    margin-right: 0px !important;
    margin-top: 12px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_HJfHCETAgx {
    font-weight: 400 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iw0bo {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iro5k2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ifeyh {
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iez3x {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #irw7e {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #idc2g {
    font-size: 18px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iv7ps {
    font-size: 18px !important;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iloh3g {
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ivnv55 {
    margin-bottom: 6px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 16px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #i0xcy {
    padding-top: 8px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #cke_720_previewImage {
    padding-right: 16px !important;
    margin-right: 0px !important;
    padding-left: 16px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_5B3RICEfx {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_rJQYwddfbl {
    font-weight: 600 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #idc2g-2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #clickster_HyeBSDrU-e {
    font-weight: 600 !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iw0bo-2 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iw0bo-3 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  #iw0bo-4 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ibr7xz {
    line-height: 54px !important;
    font-family: Georgia, Serif !important;
    font-size: 40px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ix055 {
    font-size: 36px !important;
    padding-top: 16px !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    line-height: 44.9px !important;
    color: #222222 !important;
    text-decoration: none !important;
    padding-bottom: 16px !important;
    font-weight: 700 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_HJH7HDuzZe {
    margin-right: 0px !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #i7sqj9 {
    padding-right: 20px !important;
    padding-left: 20px !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #i6zg0i {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iusup {
    font-weight: 400 !important;
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #cke_173_previewImage {
    padding-top: 0px !important;
    margin-right: 0px !important;
    margin-top: 12px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iwkh7 {
    padding-top: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
    background-color: transparent !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_HJfHCETAgx {
    font-weight: 400 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iw0bo {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iro5k2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ib641 {
    font-size: 16px !important;
    padding-top: 12px !important;
    padding-right: 12px !important;
    padding-bottom: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ifeyh {
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iez3x {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #irw7e {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #idc2g {
    font-size: 18px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iv7ps {
    font-size: 18px !important;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iloh3g {
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ivnv55 {
    margin-bottom: 6px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 16px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #i0xcy {
    padding-top: 8px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #cke_720_previewImage {
    padding-right: 16px !important;
    margin-right: 0px !important;
    padding-left: 16px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_5B3RICEfx {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_rJQYwddfbl {
    font-weight: 600 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #idc2g-2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #clickster_HyeBSDrU-e {
    font-weight: 600 !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iw0bo-2 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iw0bo-3 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #iw0bo-4 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 769px) and (max-width: 899px) {
  #ij9c8d {
    padding-top: 0px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iw0bo-4 {
    line-height: 27px !important;
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ix055 {
    font-size: 44px !important;
    line-height: 54px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 700 !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
    padding-bottom: 16px !important;
    padding-top: 16px !important;
    color: #222222 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_HJH7HDuzZe {
    font-size: 22px !important;
    margin-right: 0px !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iusup {
    line-height: 27px !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iro5k2 {
    line-height: 27px !important;
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_5B3RICEfx {
    padding-right: 70px !important;
    padding-left: 70px !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ixgui {
    line-height: 22.4px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #i7sqj9 {
    padding-right: 20px !important;
    padding-left: 20px !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #i6zg0i {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #cke_173_previewImage {
    padding-top: 0px !important;
    margin-right: 0px !important;
    margin-top: 12px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iwkh7 {
    padding-top: 0px !important;
    padding-right: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    margin-top: 0px !important;
    margin-right: 0px !important;
    background-color: transparent !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_HJfHCETAgx {
    font-weight: 400 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iw0bo {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ib641 {
    font-size: 16px !important;
    padding-top: 12px !important;
    padding-right: 12px !important;
    padding-bottom: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ifeyh {
    font-size: 18px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iez3x {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #irw7e {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #idc2g {
    font-size: 18px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iv7ps {
    font-size: 18px !important;
    margin-top: 12px !important;
    margin-bottom: 0px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iloh3g {
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ivnv55 {
    margin-bottom: 6px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 16px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #i0xcy {
    padding-top: 8px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #cke_720_previewImage {
    padding-right: 16px !important;
    margin-right: 0px !important;
    padding-left: 16px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_rJQYwddfbl {
    font-weight: 600 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #idc2g-2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ibr7xz {
    font-family: Georgia, Serif !important;
    font-size: 40px !important;
    line-height: 54px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #clickster_HyeBSDrU-e {
    font-weight: 600 !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iw0bo-2 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #iw0bo-3 {
    font-size: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 900px) and (max-width: 1366px) {
  #ij9c8d {
    padding-top: 0px !important;
  }
}
@media (min-width: 1367px) {
  #ix055 {
    color: #222222 !important;
    font-size: 46px !important;
    line-height: 57.6px !important;
    padding-right: 12px !important;
    margin-top: 0px !important;
    margin-left: 0px !important;
    padding-top: 16px !important;
    padding-left: 12px !important;
    padding-bottom: 16px !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 700 !important;
  }
}
@media (min-width: 1367px) {
  #i6zg0i {
    text-align: center !important;
    padding-bottom: 4px !important;
    padding-right: 0px !important;
    padding-left: 0px !important;
    padding-top: 4px !important;
  }
}
@media (min-width: 1367px) {
  #ijdzti {
    padding-top: 0px !important;
  }
}
@media (min-width: 1367px) {
  #iro5k2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #iw0bo {
    font-size: 18px !important;
    margin-top: 18px !important;
    font-family: Georgia, Serif !important;
    color: #ce3645 !important;
  }
}
@media (min-width: 1367px) {
  #igt5bk {
    margin-top: 20px !important;
  }
}
@media (min-width: 1367px) {
  #i7sqj9 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
@media (min-width: 1367px) {
  #ifisg {
    margin-bottom: 0px !important;
  }
}
@media (min-width: 1367px) {
  #i0xcy {
    padding-top: 8px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 1367px) {
  #i7l5uh {
    font-size: 19px !important;
    font-weight: 500 !important;
  }
}
@media (min-width: 1367px) {
  #iloh3g {
    text-align: center !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 1367px) {
  #clickster_SJwiHAoCee {
    font-weight: 400 !important;
  }
}
@media (min-width: 1367px) {
  #clickster_r1gD3-2ple {
    font-weight: 700 !important;
  }
}
@media (min-width: 1367px) {
  #clickster_SJTHZCsAee {
    font-weight: 700 !important;
  }
}
@media (min-width: 1367px) {
  #ixb013 {
    font-weight: 400 !important;
  }
}
@media (min-width: 1367px) {
  #iusup {
    font-weight: 400 !important;
    font-size: 18px !important;
    display: block !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #clickster_HJfHCETAgx {
    font-weight: 400 !important;
  }
}
@media (min-width: 1367px) {
  #is11t6 {
    font-weight: 500 !important;
    color: #7c969e !important;
  }
}
@media (min-width: 1367px) {
  #ib641 {
    font-size: 16px !important;
    padding-top: 20px !important;
    padding-right: 20px !important;
    padding-bottom: 20px !important;
    padding-left: 20px !important;
    margin-bottom: 18px !important;
  }
}
@media (min-width: 1367px) {
  #iwk7xp {
    font-size: 18px !important;
    line-height: 27px !important;
  }
}
@media (min-width: 1367px) {
  #ifeyh {
    font-size: 18px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 1367px) {
  #iez3x {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 1367px) {
  #irw7e {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #idc2g {
    font-size: 18px !important;
    line-height: 24.3px !important;
    color: #333333 !important;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  }
}
@media (min-width: 1367px) {
  #iv7ps {
    font-size: 18px !important;
    margin-bottom: 0px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #ie1pup {
    font-size: 18px !important;
    margin-top: 12px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #ivnv55 {
    margin-bottom: 8px !important;
    margin-top: 42px !important;
  }
}
@media (min-width: 1367px) {
  #iakyh {
    margin-top: 16px !important;
  }
}
@media (min-width: 1367px) {
  #il4i49 {
    font-size: 16px !important;
    font-weight: 100 !important;
    margin-bottom: 14px !important;
  }
}
@media (min-width: 1367px) {
  #i7l5uh-2 {
    font-weight: 300 !important;
    font-size: 17px !important;
  }
}
@media (min-width: 1367px) {
  #ih3jcg {
    margin-left: 12px !important;
    margin-right: 12px !important;
  }
}
@media (min-width: 1367px) {
  #iukkt {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 1367px) {
  #iwkh7 {
    background-color: transparent !important;
    margin-top: 0px !important;
    padding-right: 0px !important;
    padding-left: 0px !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
}
@media (min-width: 1367px) {
  #cke_173_previewImage {
    margin-top: 12px !important;
  }
}
@media (min-width: 1367px) {
  #cke_2739_previewImage {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-left: 0px !important;
    margin-right: 8px !important;
  }
}
@media (min-width: 1367px) {
  #cke_720_previewImage {
    padding-right: 16px !important;
    margin-right: 0px !important;
    padding-left: 16px !important;
  }
}
@media (min-width: 1367px) {
  #clickster_HycBJzlkZx {
    font-weight: 700 !important;
  }
}
@media (min-width: 1367px) {
  #iw757r {
    margin-top: 22px !important;
    margin-bottom: 22px !important;
  }
}
@media (min-width: 1367px) {
  #ij9c8d {
    text-align: center !important;
    padding-top: 0px !important;
  }
}
@media (min-width: 1367px) {
  #cke_547_previewImage {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
}
@media (min-width: 1367px) {
  #clickster_r1VOrBMkZg {
    font-weight: 700 !important;
  }
}
@media (min-width: 1367px) {
  #ivjvyu {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 1367px) {
  #w-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #w-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #w-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #w-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #m-AgeUpTo40 {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #m-Age40-49 {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #m-Age50-59 {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #m-Age60-69 {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #m-Age70Plus {
    text-align: center !important;
  }
}
@media (min-width: 1367px) {
  #ixj2i {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #ierb4c {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #iim16t {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 1367px) {
  #i616wh {
    font-family: Georgia, serif !important;
  }
}
@media (min-width: 1367px) {
  #igjs1f {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #in0zbl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #i0avl {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #irm0ag {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #is7atk {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #i9f92r {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #iycrz4 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #imc35h {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #clickster_5B3RICEfx {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #clickster_BkHscI0Cel {
    display: inline-block !important;
  }
}
@media (min-width: 1367px) {
  #clickster_HJH7HDuzZe {
    margin-right: 0px !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #clickster_SJs68ddfWe {
    display: inline-block !important;
  }
}
@media (min-width: 1367px) {
  #clickster_B1MVD__zZl {
    display: inline-block !important;
  }
}
@media (min-width: 1367px) {
  #clickster_rJQYwddfbl {
    display: inline-block !important;
    font-weight: 600 !important;
  }
}
@media (min-width: 1367px) {
  #iq2lg {
    font-weight: 400 !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 1367px) {
  #idc2g-2 {
    font-size: 18px !important;
    line-height: 27px !important;
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #clickster_Byc7ZOuXWe {
    font-weight: 400 !important;
  }
}
@media (min-width: 1367px) {
  #ibr7xz {
    font-size: 44px !important;
    font-family: Georgia, Serif !important;
    line-height: 57.2px !important;
  }
}
@media (min-width: 1367px) {
  #ip06x3 {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #clickster_Byb2lq64-l {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #clickster_BJ6qg9aE-e {
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #clickster_HyeBSDrU-e {
    font-weight: 600 !important;
  }
}
@media (min-width: 1367px) {
  #iukkt-3 {
    margin-bottom: 8px !important;
    margin-top: 0px !important;
  }
}
@media (min-width: 1367px) {
  #iw0bo-2 {
    font-size: 18px !important;
    margin-top: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 1367px) {
  #iw0bo-3 {
    font-size: 18px !important;
    margin-top: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}
@media (min-width: 1367px) {
  #ixj2i-2 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #iukkt-2 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media (min-width: 1367px) {
  #ixj2i-3 {
    color: #333333 !important;
    font-family: Georgia, Serif !important;
  }
}
@media (min-width: 1367px) {
  #iw0bo-4 {
    font-size: 18px !important;
    margin-top: 18px !important;
    font-family: Georgia, Serif !important;
    line-height: 27px !important;
  }
}


html, body { max-width: 100%; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
.advertorial-label { box-sizing: border-box; width: 100%; padding: 10px 16px; background: #f3f4f6; color: #374151; font-family: Arial, sans-serif; font-size: 20px; font-weight: 700; line-height: 1.2; letter-spacing: 0.04em; text-align: center; }
.site-header { display: flex; justify-content: center; align-items: center; padding: 12px 16px 6px; background: #fff; }
.brand-logo { display: inline-flex; max-width: min(300px, 82vw); }
.brand-logo img { display: block; width: 100%; height: auto; }
body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
#ih8vc9 {
	clear: both;
	width: 100%;
	margin-top: auto;
}
.site-footer { margin: 24px 12px 0; padding: 22px 12px 28px; border-top: 1px solid #d1d5db; color: #6b7280; font-family: Arial, sans-serif; font-size: 14px; text-align: center; }
.site-footer a { color: #4b5563; }
.site-footer p { margin: 18px 0 0; }
.site-footer .footer-disclosure { font-size: 11px; line-height: 1.4; }
.legal-page { min-height: 100vh; display: flex; flex-direction: column; margin: 0; color: #202124; background: #fff; font-family: Georgia, serif; }
.legal-main { box-sizing: border-box; width: min(900px, calc(100% - 32px)); margin: 24px auto 48px; flex: 1; overflow-wrap: anywhere; word-break: normal; }
.legal-main h1 { margin: 0 0 24px; color: #111827; font: 700 clamp(28px, 5vw, 40px)/1.2 Georgia, serif; }
.legal-main h2 { margin: 28px 0 10px; color: #1f2937; font: 700 21px/1.35 Georgia, serif; }
.legal-main p { margin: 0 0 15px; font-size: 16px; line-height: 1.65; }
.legal-main a { color: #1d4ed8; }
@media (max-width: 480px) { .legal-main { width: min(100% - 24px, 900px); margin-top: 18px; } .site-header { padding-inline: 12px; } }
