/*** FONTS ***/
@font-face {
	font-family: 'National 2';
	src: url('/src/fonts/National2-Regular.otf');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'National 2';
	src: url('/src/fonts/National2-RegularItalic.otf');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'National 2';
	src: url('/src/fonts/National2-Medium.otf');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'National 2';
	src: url('/src/fonts/National2-MediumItalic.otf');
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'National 2';
	src: url('/src/fonts/National2-Bold.otf');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'National 2';
	src: url('/src/fonts/National2-BoldItalic.otf');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: 'Audiowide';
	src: url('/src/fonts/Audiowide-Regular.ttf');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Lexend';
	src: url('/src/fonts/Lexend-Thin.ttf');
	font-weight: 100;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Lexend';
	src: url('/src/fonts/Lexend-ExtraLight.ttf');
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Lexend';
	src: url('/src/fonts/Lexend-Light.ttf');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Lexend';
	src: url('/src/fonts/Lexend-Regular.ttf');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Lexend';
	src: url('/src/fonts/Lexend-Medium.ttf');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Lexend';
	src: url('/src/fonts/Lexend-SemiBold.ttf');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Lexend';
	src: url('/src/fonts/Lexend-Bold.ttf');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Lexend';
	src: url('/src/fonts/Lexend-ExtraBold.ttf');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Lexend';
	src: url('/src/fonts/Lexend-Black.ttf');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

/*** DOCUMENT AND DEFAULTS ***/
:root {
	--background: #8c1a11;
	--primary-red: #8c1a11;
	--primary-yellow: #f6ca57;
	--primary-pink: #de6472;
	--primary-blue: #3b4598;
	--black: #000000;
	--dark-grey: #666666;
	--light-grey: #cccccc;
	--white: #ffffff;
}
::selection {
	background: var(--light-grey);
}
html,
body {
	background-color: var(--background);
	font-family: 'National 2', 'Arial', sans-serif;
	font-size: 18px;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
tr,
th,
td,
ul,
ol,
li,
img {
	color: var(--white);
	margin: 0;
	outline: none;
	padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Audiowide', 'Arial', sans-serif;
	font-style: normal;
	font-weight: 700;
	overflow-wrap: break-word;
}
a {
	color: inherit;
}
a:focus {
	text-decoration: underline !important;
}
b {
	font-weight: 700;
}
.print-only {
	display: none;
}
.highlight {
	background-color: var(--primary-yellow);
	color: var(--black);
}
.yellow {
	color: var(--primary-yellow);
}
.pink {
	color: var(--primary-pink);
}

/*** BUTTONS ***/
.buttons,
a.button {
	display: block;
	margin-top: 15px;
	text-align: center;
}
.buttons a,
a.button,
button {
	background-color: transparent;
	border-color: var(--white);
	border-style: solid;
	border-width: 5px;
	color: var(--white);
	cursor: pointer;
	display: inline-block;
	font-family: 'Audiowide', 'Arial', sans-serif;
	letter-spacing: 1px;
	margin: 5px;
	padding: 10px 15px 12px 15px;
	text-decoration: none;
	text-shadow: none;
	transition: 0.3s;
}
.buttons.left a {
	margin-right: 10px;
	margin-left: 0;
}
.buttons.right a {
	margin-right: 0;
	margin-left: 10px;
}
.buttons a:hover,
.buttons a:focus,
a.button:hover,
a.button:focus,
button:hover,
button:focus {
	color: var(--black);
	background-color: var(--white);
	border-color: var(--white);
}
.buttons.disabled a,
.buttons a.disabled,
a.button.disabled,
button.disabled {
	border-color: var(--light-grey);
	color: var(--light-grey);
}
.buttons.disabled a:hover,
.buttons a.disabled:hover,
a.button.disabled:hover,
button.disabled:hover,
.buttons.disabled a:focus,
.buttons a.disabled:focus,
a.button.disabled:focus,
button.disabled:focus {
	background-color: transparent;
	border-color: var(--dark-grey);
	color: var(--dark-grey);
	cursor: not-allowed;
}
.buttons.disabled a:active,
.buttons a.disabled:active,
a.button.disabled:active,
button.disabled:active {
	pointer-events: none;
}
.buttons.yellow a,
.buttons a.yellow,
a.button.yellow,
button.yellow {
	border-color: var(--primary-yellow);
	color: var(--primary-yellow);
}
.buttons.yellow a:hover,
.buttons a.yellow:hover,
a.button.yellow:hover,
button.yellow:hover,
.buttons.yellow a:focus,
.buttons a.yellow:focus,
a.button.yellow:focus,
button.yellow:focus {
	background-color: var(--primary-yellow);
	color: var(--black);
}
.buttons.pink a,
.buttons a.pink,
a.button.pink,
button.pink {
	border-color: var(--primary-pink);
	color: var(--primary-pink);
}
.buttons.pink a:hover,
.buttons a.pink:hover,
a.button.pink:hover,
button.pink:hover,
.buttons.pink a:focus,	
.buttons a.pink:focus,
a.button.pink:focus,
button.pink:focus {
	background-color: var(--primary-pink);
	color: var(--black);
}

/*** TABLES ***/
.container table,
.container tr,
.container th,
.container td {
	border-collapse: collapse;
	border-color: var(--dark-grey);
	border-style: solid;
	border-width: 2.5px;
	font-size: 14px;
	text-align: center;
}
.container div.table {
	overflow-x: auto;
}
.container table {
	margin-top: 20px;
	margin-bottom: 20px;
	max-width: 100%;
}
.container th,
.container td {
	padding: 7px;
}
.container th,
.container td,
.container td p,
.container td em {
	font-size: 16px;
	line-height: 16px;
}
.container td p,
.container td em {
	color: #999999;
	margin-top: 5px;
	margin-bottom: 2px;
}

/*** GENERAL ***/
.container,
.navigation,
.footer {
	padding-left: 100px;
	padding-right: 100px;
}
.contents {
	clear: both;
	margin: 0 auto;
	max-width: 1200px;
}
.container {
	padding-top: 40px;
	padding-bottom: 45px;
}
.container:not(.footer) {
	flex: 1 0 auto;
}
.container h1 {
	hyphens: auto;
	margin-top: 0;
	margin-bottom: 7.5px;
	overflow-wrap: break-word;
	padding-top: 35px;
}
.container h2 {
	hyphens: auto;
	margin-top: 0;
	margin-bottom: 20px;
	overflow-wrap: break-word;
	padding-top: 35px;
}
.container h3 {
	hyphens: auto;
	margin-top: 0;
	margin-bottom: 7.5px;
	overflow-wrap: break-word;
	padding-top: 35px;
}
.container p,
.container li {
	font-size: 18px;
	font-weight: 400;
	hyphens: auto;
	line-height: 28px;
	margin-top: 15px;
	margin-bottom: 7.5px;
	overflow-wrap: break-word;
}
.container ol,
.container ul {
	font-size: 18px;
	margin-left: 30px;
}
.container ul {
	list-style: none;
}
.container li {
	margin-top: 10px;
	margin-left: 20px;
}
.container ul > li::before {
	background-color: var(--white);
	content: "";
	display: inline-block;
	height: 3px;
	margin-top: -2px;
	margin-left: -20px;
	margin-right: 10px;
	vertical-align: middle;
	width: 10px;
}
.container ol ul,
.container ul ul {
	margin-top: 10px;
	margin-bottom: 10px;
}
.container ol ul > li,
.container ul ul > li {
	margin-top: 0;
	margin-bottom: 0;
}
.container :not(.buttons) > a:not(.button):focus {
	color: var(--primary-yellow);
}
.container img {
	margin-top: 15px;
	margin-bottom: 7.5px;
	max-width: 100%;
}
.container .caption {
	font-size: 15px;
	font-style: italic;
	line-height: 16px;
	margin-bottom: 25px;
	text-align: center;
}
.container .section {
	border-color: var(--white);
	border-style: solid;
	border-width: 5px;
	padding: 25px;
}
.container .section > :first-child {
	margin-top: 0;
	padding-top: 0;
}
.container .details {
	border-color: var(--primary-yellow);
	border-left-style: solid;
	border-left-width: 5px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-left: 20px;
}
.container .details,
.container .details p,
.container .details a {
	color: var(--primary-yellow);
}
.container .indent {
	margin-left: 50px;
}

/*** LAYOUTS ***/
.left {
	text-align: left !important;
}
.right {
	text-align: right !important;
}
.center {
	text-align: center !important;
}
.tiles {
	clear: both;
	margin: 0 -10px;
}
.tiles::after {
	content: "";
	clear: both;
}
.tiles > a,
.tiles > div {
	box-sizing: border-box;
	display: inline-block;
	margin: 15px 5.5px 5px 10px;
	padding: 15px 20px 22px 20px;
	transition: opacity 0.3s;
	vertical-align: top;
	width: calc(20% - 20px);
}
.tiles.clear > a,
.tiles.clear > div {
	padding-left: 0;
	padding-right: 0;
}
.tiles.no-padding > a,
.tiles.no-padding > div {
	padding: 0;
}
.tiles .one-half {
	width: calc(50% - 20px);
}
.tiles .one-third {
	width: calc(33.33% - 20px);
}
.tiles .two-third {
	width: calc(66.66% - 20px);
}
.tiles .one-fourth{
	width: calc(25% - 20px);
}
.tiles .three-fourth {
	width: calc(75% - 20px);
}
.tiles > a > :first-child,
.tiles > div > :first-child {
	margin-top: 0;
	padding-top: 0;
}

/*** MAIN AND HEADERS ***/
.header.main .navigation > .contents > a {
	display: none;
}
.header.main .container {
	padding-top: 100px;
	padding-bottom: 100px;
}
.header.main .container .logo {
	height: 50%;
	margin-top: -75px;
	margin-bottom: 25px;
	max-height: 500px;
}
.header.main .container h1 {
	color: var(--primary-yellow)
}
.header.main {
	background-blend-mode: darken;
	background-color: rgba(0, 0, 0, 0.6);
	background-image: url(/src/img/blueprint-background.svg);
}
.header {
	background-blend-mode: darken;
	background-color: rgba(0, 0, 0, 0.5);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	flex: 0 0 auto;
	text-align: center;
}
.header .container h1 {
	color: var(--primary-yellow);
	font-size: 42px;
	font-weight: 400;
	letter-spacing: 1px;
	margin-top: 15px;
	margin-bottom: 20px;
	padding-top: 0;
	text-transform: uppercase;
}
.header .container h2 {
	font-size: 20px;
	font-weight: 400;
	padding-top: 0;
}
.header:not(.main) .container > :first-child {
	margin-top: 0;
}
.banner,
.banner.container {
	display: block;
	font-weight: 400;
	letter-spacing: 1px;
	padding-top: 15px;
	padding-bottom: 15px;
	text-decoration: none;
}
.banner,
.banner.red,
.banner * {
	background-color: var(--primary-red);
	color: var(--white) !important;
}
.banner.yellow,
.banner.yellow * {
	background-color: var(--primary-yellow);
	color: var(--black) !important;
}
.banner.pink,
.banner.pink * {
	background-color: var(--primary-pink);
	color: var(--black) !important;
}
.banner:focus {
	text-decoration: underline;
}

/*** NAVIGATION ***/
.navigation {
	font-family: 'Audiowide', 'Arial', sans-serif;
	font-size: 14px;
	height: 50px;
	left: 0;
	line-height: 40px;
	padding-top: 25px;
	padding-bottom: 25px;
	right: 0;
	top: 0;
	z-index: 43110;
}
.navigation .skip {
	background-color: var(--black);
	border-color: var(--white);
	color: var(--primary-yellow);
	opacity: 0;
	position: absolute;
	font-size: 14px;
	text-transform: uppercase;
	top: -100%;
	z-index: 43110;
}
.navigation .skip:focus {
	left: 50%;
	opacity: 1;
	outline: none;
	top: 80px;
	transform: translateX(-50%);
}
.navigation .hamburger {
	cursor: pointer;
	display: none;
	float: right;
	margin-top: -2px;
}
.navigation .hamburger > div {
	display: table-cell;
	float: none;
	height: 50px;
	vertical-align: middle;
}
.navigation .hamburger > div > div {
	background: var(--white);
	height: 4px;
	margin: 6px 0;
	opacity: 0;
	transition: 0.3s;
	width: 30px;
}
.navigation .hamburger:focus > div > div {
	background: var(--primary-yellow);
}
.navigation .hamburger > div > div:first-child {
	opacity: 1;
	transform: rotate(-90deg) translate(-10px, 0px);
	-webkit-transform: rotate(-90deg) translate(-10px, 0px);
}
.navigation .hamburger > div > div:last-child {
	opacity: 1;
	transform: translate(0px, -10px);
	-webkit-transform: translate(0px, -10px);
}
.navigation.active .hamburger > div > div {
	opacity: 0;
}
.navigation.active .hamburger > div > div:first-child {
	opacity: 1;
	transform: rotate(-45deg) translate(-7px, 7px);
	-webkit-transform: rotate(-45deg) translate(-7px, 7px);
}
.navigation.active .hamburger > div > div:last-child {
	opacity: 1;
	transform: rotate(45deg) translate(-7px, -7px);
	-webkit-transform: rotate(45deg) translate(-7px, -7px);
}
.navigation.active .hamburger:focus > div > div {
	background: var(--primary-yellow);
}
.navigation .contents > a img {
	border-bottom-color: transparent;
	border-bottom-style: solid;
	border-bottom-width: 5px;
	float: left;
	height: 50px;
	margin-right: 15px;
	padding-bottom: 10px;
}
.navigation .contents > a:focus img {
	border-bottom-color: var(--primary-yellow);
}
.navigation .contents > a span {
	display: none;
}
.navigation .contents li {
	padding: 0 12px;
}
.navigation .contents li > a {
	margin: 0 -20px;
	padding: 20px;
	text-decoration: none;
}
.navigation .contents li > a:hover,
.navigation .contents li > a:focus {
	color: var(--primary-yellow);
}
.navigation .contents > ul {
	float: right;
	list-style: none;
	z-index: 43110;
}
.navigation .contents > ul > li,
.navigation .contents > ul > li > ul > li {
	color: var(--white);
	font-weight: 400;
	letter-spacing: 0.5px;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
}
.navigation .contents > ul > li {
	border-color: transparent;
	border-style: solid;
	border-width: 5px;
	float: left;
}
.navigation .contents > ul > li:first-child {
	display: none;
}
.navigation .contents > ul > li:last-child {
	margin-right: 0;
}
.navigation .contents > ul > li:hover,
.navigation .contents > ul > li:focus-within {
	background-color: var(--black);
	border-color: var(--white);
}
.navigation .contents > ul > li > ul {
	background-color: var(--black);
	border-color: var(--white);
	border-style: solid;
	border-width: 5px;
	box-sizing: border-box;
	display: none;
	left: 50%;
	list-style: none;
	min-width: max-content;
	position: absolute;
	text-align: center;
	top: 100%;
	transform: translateX(-50%);
	white-space: nowrap;
	width: auto;
}
.navigation .contents > ul > li:hover > ul,
.navigation .contents > ul > li:focus-within > ul {
	display: block;
}
.navigation .contents > ul > li > ul > li {
	line-height: 18px;
	max-width: 300px;
	padding-bottom: 10px;
	padding-top: 10px;
	white-space: wrap;
}
.navigation .fixed {
	background-color: transparent;
	bottom: 25px;
	display: block;
	font-size: 24px;
	position: fixed;
	right: 20px;
	z-index: 43110;
}
.navigation .fixed a {
	border-color: transparent;
	border-style: solid;
	border-width: 5px;
	color: var(--white);
	display: block;
	opacity: 0.5;
	padding: 5px 10px 0px 10px;
	transition: opacity 0.3s;
}
.navigation .fixed a:hover,
.navigation .fixed a:focus {
	cursor: hand;
	opacity: 1;
}
.navigation .fixed a:focus {
	background-color: var(--background);
	border-color: var(--white);
}

/*** FOOTER ***/
.footer {
	color: var(--white);
	flex: 0 0 auto;
	font-family: 'Audiowide', 'Arial', sans-serif;
	opacity: 0.5;
	padding-top: 0;
	padding-bottom: 32px;
}
.footer a {
	color: var(--white);
	text-decoration: none;
}
.footer .divider {
	border-top-color: var(--white);
	border-top-style: solid;
	border-top-width: 5px;
	width: calc(100% - 20px) !important;
}
.footer .icons {
	padding-top: 10px;
	text-align: right;
}
.footer .icons a {
	border-bottom-color: transparent;
	border-bottom-style: solid;
	border-bottom-width: 3px;
	margin: 0 5px;
}
.footer .icons a:focus {
	border-bottom-color: var(--white);
}
.footer .icons img {
	height: 30px;
}
.footer .copyright {
	color: var(--white);
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.5px;
	line-height: 14px;
	margin-top: 18px;
	text-align: left;
	text-transform: uppercase;
}

/*** ACCORDION ***/
.accordion {
	margin-top: 5px;
	margin-bottom: 10px;
}
.accordion h2 {
	margin-bottom: 15px;
}
.accordion h2:not(:first-child) {
	margin-top: 30px;
}
.accordion > h3,
.accordion > div {
	box-sizing: border-box;
	margin: 0;
	width: 100%;
}
.accordion > h3 {
	border-bottom-color: transparent;
	border-bottom-style: solid;
	border-bottom-width: 2px;
	color: var(--white);
	cursor: pointer;
	display: inline-block !important;
	font-weight: normal;
	margin-top: 5px;
	padding: 15px 0 10px 30px;
	transition: 0.3s;
}
.accordion > h3::before {
	color: transparent;
	content: "\02795";
	float: left;
	font-size: 13px;
	margin-left: -30px;
	margin-right: 5px;
	margin-top: 3px;
	text-shadow: 0 0 0 var(--primary-yellow);
}
.accordion > h3:focus {
	text-decoration: underline;
}
.accordion > h3.active {
	color: var(--black);
}
.accordion > h3:focus,
.accordion > h3:hover,
.accordion > h3.active {
	color: var(--white);
	border-bottom-color: var(--primary-yellow);
}
.accordion > h3:hover::before,
.accordion > h3:focus::before,
.accordion > h3.active::before {
	text-shadow: 0 0 0 var(--white);
}
.accordion > h3.active::before {
	content: "\2796";
}
.accordion > h3.active + div {
	visibility: visible;
}
.accordion > div {
	margin: 0;
	max-height: 0;
	overflow: hidden;
	padding: 0;
	transition: 0.2s ease-out;
	visibility: hidden;
}

/*** PAGES: SCHEDULES ***/
.schedule-day > div,
.schedule-events > div {
	overflow-x: auto;
}
.schedule-day th:nth-child(1) {
	min-width: 150px;
}
.schedule-day th:nth-child(2) {
	width: 400px;
}
.schedule-day th:nth-child(3) {
	width: 200px;
}
.schedule-events table {
	width: 100%;
}
.schedule-events th:nth-child(1) {
	min-width: 125px;
}
.schedule-events th:nth-child(2) {
	min-width: 75px;
}
.schedule-events th:nth-child(3) {
	min-width: 150px;
	width: 200px;
}
.schedule-events th:nth-child(n+4) {
	min-width: 75px;
	width: 75px;
}

/*** PAGES: SPONSORS ***/
.sponsors {
	display: block;
	line-height: 75px;
	margin-top: 25px;
	padding: 15px;
	text-align: center;
}
.sponsors.images {
	background-color: var(--white);
	opacity: 0.85;
}
.sponsors img {
	background-color: var(--white);
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
	max-height: 75px;
	max-width: 100px;
	padding: 10px;
	vertical-align: middle;
}
.sponsors p {
	margin: 0;
}
#platinum + .sponsors img {
	max-width: 250px;
}
#gold + .sponsors img {
	max-width: 175px;
}
#silver + .sponsors img {
	max-width: 125px;
}
#strategic-partners + .sponsors img {
	max-width: 125px;
}

/*** MEDIA AND RESPONSIVE ***/
@media (max-width: 1400px) {
	.navigation .skip {
		display: none;
	}
	.navigation .hamburger {
		display: table-cell;
	}
	.navigation.active {
		background-color: var(--background);
		height: 100vh;
		overflow-x: hidden;
		overflow-y: scroll;
		position: fixed;
	}
	.navigation.active .fixed {
		display: none;
	}
	.navigation .contents > ul > li:hover,
	.navigation .contents > ul > li:focus-within {
		background-color: var(--background);
	}
	.navigation.active ~ body {
		overflow: hidden;
	}
	.header.main .navigation.active > .contents > a,
	.navigation.active > .contents > a,
	.navigation.active > .contents > ul {
		display: block;
	}
	.navigation .contents ul > li > a {
		text-decoration: underline;
	}
	.navigation .contents > ul {
		background-color: var(--background);
		display: none;
		left: 100px;
		margin-top: 25px;
		padding-bottom: 125px;
		padding-left: 100px;
		padding-right: 100px;
		position: relative;
		width: 100%;
	}
	.navigation .contents > ul > li {
		border: none;
		float: none;
		font-weight: 700;
		margin: 0;
		padding: 0;
	}
	.navigation .contents > ul > li:hover,
	.navigation .contents > ul > li:focus {
		background-color: transparent;
	}
	.navigation .contents > ul > li > ul {
		background-color: transparent;
		display: block;
		margin-bottom: 20px;
		min-width: unset;
		padding: 5px;
		position: relative;
	}
	.navigation .contents > ul > li > ul > li {
		max-width: unset;
		padding: 10px 5px;
		white-space: normal;
	}
	.footer {
		padding-bottom: 50px;
	}
}
@media (max-width: 900px) {
	body {
		padding-bottom: 40px;
	}
	.banner,
	.container,
	.footer,
	.navigation {
		padding-left: 25px;
		padding-right: 25px;
	}
	.navigation .fixed a {
		display: inline-block;
	}
	.container {
		padding-top: 10px;
		padding-bottom: 22px;
	}
}
@media (max-width: 800px) {
	.tiles > div,
	.tiles > a {
		width: calc(33.33% - 20px);
	}
	.tiles > .one-half,
	.tiles > .one-third,
	.tiles > .two-third,
	.tiles > .one-fourth,
	.tiles > .three-fourth {
		width: calc(100% - 20px);
	}
}
@media (max-width: 700px) {
	.tiles > div,
	.tiles > a {
		width: calc(50% - 20px);
	}
}
@media (max-width: 450px) {
	.navigation .contents > a img {
		display: none;
	}
	.navigation .contents > ul > li:first-child {
		display: block;
	}
	.tiles > div,
	.tiles > a {
		width: calc(100% - 20px);
	}
}
@media print {
	html,
	body {
		background-color: transparent;
	}
	body {
		margin: 20px 20px 20px 20px;
		padding: 0;
	}
	div,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	p,
	b,
	a,
	tr,
	th,
	td,
	ul,
	ol,
	li,
	img {
		color: var(--black) !important;
	}
	.buttons a,
	a.button {
		color: var(--black) !important;
		background-color: transparent !important;
		border-color: var(--black) !important;
		border-width: 2.5px;
		font-size: 14px;
		padding: 5px 10px;
	}
	.buttons.disabled a,
	.buttons a.disabled,
	a.button.disabled,
	button.disabled {
		color: var(--dark-grey) !important;
		border-color: var(--dark-grey) !important;
	}
	/* a[href]::after {
		content: ' (' attr(href) ')';
		word-break: break-all;
		text-transform: none;
	}
	a[href=""]::after {
		content: '' !important;
	}
	.buttons a[href]::after,
	a.button[href]::after {
		font-size: 10px;
	} */
	.print-only {
		display: block;
	}
	.banner,
	.navigation {
		display: none !important;
	}
	.container,
	.footer {
		background-color: transparent !important;
		padding-right: 0;
		padding-left: 0;
	}
	.footer {
		opacity: 1;
		padding-top: 0;
		padding-bottom: 0;
		margin-top: -25px;
	}
	.footer .divider {
		border-top-color: var(--black);
		border-top-width: 2.5px;
	}
	.footer .icons {
		display: none !important;
	}
	.footer .copyright,
	.footer .copyright a,
	.footer .copyright a[href]::after {
		color: var(--black);
		text-transform: uppercase;
	}
	.tiles > .one-half,
	.tiles > .one-third,
	.tiles > .two-third,
	.tiles > .one-fourth,
	.tiles > .three-fourth {
		width: calc(100% - 20px);
	}
	.header.main .container {
		padding-top: 50px !important;
		padding-bottom: 30px;
		padding-right: 25px;
		padding-left: 25px;
	}
	.header.main .print-only {
		display: none;
	}
	.header {
		background-color: transparent !important;
		background-image: none !important;
	}
	.header,
	.header .container {
		padding-top: 20px !important;
		padding-bottom: 0 !important;
	}
	.header + .container {
		padding-top: 0 !important;
	}
	.header .container h1 {
		font-size: 28px;
		padding-top: 0;
	}
	.container {
		min-height: unset !important;
	}
	.container h1 {
		font-size: 24px;
		padding-top: 15px;
	}
	.container h2 {
		font-size: 22px;
		padding-top: 15px;
	}
	.container h3 {
		font-size: 18px;
		padding-top: 15px;
	}
	.container p,
	.container li {
		font-size: 14px;
		line-height: 16px;
	}
	.container ul li::before {
		background-color: var(--black);
	}
	.container table,
	.container tr,
	.container th,
	.container td {
		border-width: 1px;
	}
	.container th,
	.container td {
		padding: 2.5px;
	}
	.container th,
	.container td,
	.container td p,
	.container td em {
		font-size: 14px;
		line-height: 16px;
	}
	.container .section {
		border-color: var(--black);
		border-width: 2.5px;
		padding: 15px;
	}
	.container .details,
	.container .details p,
	.container .details a {
		border-left-color: var(--black);
		border-left-width: 2.5px;
		color: var(--black);
	}
	.accordion > h3,
	.accordion > h3::before,
	.accordion > h3.active {
		color: var(--black) !important;
		background-color: transparent !important;
		border-color: var(--black);
		border-width: 2.5px !important;
		font-size: 14px;
	}
	.accordion > h3::before {
		font-size: 8px;
	}
	.accordion > h3::after {
		display: none;
	}
	.accordion > div {
		max-height: unset;
		padding-top: 5px;
		padding-bottom: 10px;
		visibility: visible;
	}
}

/* HIGH-CONTRAST MODE */
.contrast html,
.contrast body,
.contrast h1,
.contrast h2,
.contrast h3,
.contrast h4,
.contrast h5,
.contrast h6,
.contrast .navigation,
.contrast .footer,
.contrast .buttons a,
.contrast a.button,
.contrast button {
	font-family: 'Lexend', 'Arial', sans-serif;
	letter-spacing: 0;
}
.contrast body {
	background-color: var(--white) !important;
}
.contrast div,
.contrast h1,
.contrast h2,
.contrast h3,
.contrast h4,
.contrast h5,
.contrast h6,
.contrast p,
.contrast a,
.contrast tr,
.contrast th,
.contrast td,
.contrast ul,
.contrast ol,
.contrast li,
.contrast img {
	color: var(--black) !important;
}
.contrast h1,
.contrast h2,
.contrast h3,
.contrast h4,
.contrast h5,
.contrast h6,
.contrast .buttons a,
.contrast a.button,
.contrast button {
	font-weight: 700;
}
.contrast a {
	text-decoration: underline !important;
}
.contrast a:focus {
	font-weight: 700;
	font-style: italic !important;
}
.contrast .buttons a,
.contrast a.button,
.contrast button {
	border-color: var(--black) !important;
	margin: 2.5px;
	transition: 0s;
}
.contrast .buttons a:hover,
.contrast .buttons a:focus,
.contrast a.button:hover,
.contrast a.button:focus,
.contrast button:hover,
.contrast button:focus {
	background-color: transparent !important;
	border-color: var(--black) !important;
	border-width: 7.5px;
	margin: 0;
}
.contrast .header,
.contrast .header.main {
	background: none;
	background-image: none;
	background-color: none;
}
.contrast .header.main .container {
	padding-top: 80px;
	padding-bottom: 25px;
}
.contrast .header .container {
	padding-bottom: 0;
}
.contrast .container {
	padding-top: 25px;
	padding-bottom: 25px;
}
.contrast .container ul li::before {
	background-color: var(--black);
}
.contrast .container .section,
.contrast .container .details {
	border-color: var(--black);
}
.contrast .navigation .skip {
	color: var(--black);
	background-color: var(--white) !important;
	border-color: var(--black);
	font-style: italic;
	text-decoration: underline;
}
.contrast .navigation .contents > a img {
	display: none;
	filter: invert();
}
.contrast .navigation .contents > a span {
	display: block;
	float: left;
	text-align: left;
	text-transform: uppercase;
}
.contrast .navigation .contents > a span h1 {
	font-size: 16px;
	font-weight: 700;
	line-height: 16px;
	margin: 0;
	padding: 0;
}
.contrast .navigation .contents > a span h2 {
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	margin: 0;
	padding: 0;
}
.contrast .navigation .contents > a:hover * {
	text-decoration: underline;
}
.contrast .navigation .contents > a:focus * {
	font-style: italic;
	text-decoration: underline;
}
.contrast .navigation .hamburger:hover,
.contrast .navigation .hamburger:focus {
	text-decoration: underline;
	font-style: italic;
	font-weight: bold;
}
.contrast .navigation .hamburger > div::before {
	color: var(--black);
	content: 'Menu';
	text-transform: uppercase;
}
.contrast .navigation.active .hamburger > div::before {
	color: var(--black);
	content: 'Close Menu';
}
.contrast .navigation .hamburger > div > div {
	display: none !important;
}
.contrast .navigation.active,
.contrast .navigation.active ul {
	background-color: var(--white);
}
.contrast .navigation.active ul a {
	border-color: transparent;
	border-style: solid;
	border-width: 5px;
}
.contrast .navigation.active ul > li {
	background-color: var(--white);
}
.contrast .navigation.active ul > li > ul {
	border-color: var(--black);
}
.contrast .navigation .contents > ul > li:hover,
.contrast .navigation .contents > ul > li:focus-within {
	background-color: var(--white);
	border-color: var(--black);
}
.contrast .navigation .contents > ul > li > ul {
	background-color: var(--white);
	border-color: var(--black);
}
.contrast .navigation .fixed a {
	border-color: var(--black);
	margin: 5px;
}
.contrast .navigation .fixed a:hover,
.contrast .navigation .fixed a:focus {
	background-color: var(--white);
	border-color: var(--black);
	opacity: 1;
}
.contrast .footer .divider {
	border-top-color: var(--black);
}
.contrast .footer .icons img {
	filter: invert();
}
.contrast .footer .icons a:hover,
.contrast .footer .icons a:focus {
	border-bottom-color: var(--black);
	border-bottom-width: 5px;
}
.contrast .accordion > h3 {
	border-bottom-width: 5px;
}
.contrast .accordion > h3:hover,
.contrast .accordion > h3:focus,
.contrast .accordion > h3.active {
	border-bottom-color: var(--black);
	font-style: italic;
}
.contrast .accordion > h3::before,
.contrast .accordion > h3:hover::before,
.contrast .accordion > h3:focus::before,
.contrast .accordion > h3.active::before {
	text-shadow: 0 0 0 var(--black);
}