<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
	background-color: #ffffff;
	padding: 0px 0px;
	margin: 0px 0px;
}
body, p, td, div {
	font-family: 'Lato', Arial, san-serif;
	font-weight: 400;
	font-size: 1rem;
	color: #555555;
}

b, strong {
    font-weight: 700;
}

em {
    font-weight: 400italic;
}

strong em {
    font-weight: 700italic;
}

.tight {
	font-family: 'Lato', Arial, san-serif;
	font-weight: 400;
	font-size: 12px;
	color: #000000;
	line-height: 15px;
}

h1 {
	font-family: 'Lato', Arial, san-serif;
	font-weight: 700;
	font-size: 26px;
	color: #000000;
}
h2 {
	font-family: 'Lato', Arial, san-serif;
	font-weight: 700;
	font-size: 18px;
	color: #555555;
}

a {
	color: #CC6600;
	text-decoration: none;
}
a:hover {
	color: #ff9933;
	text-decoration: underline;
}

.social-media-icon-container {
	display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px;
}

/**
*	Header
*/

.header-logo {
	display: flex;
    flex-direction: row;
    justify-content: space-between;
	align-items: center;
	max-width: 1150px;
	height: 80px;
	margin: auto auto;
}

/**
 * For Buttons
 */

input[type='button'], input[type='submit'] {
    background-color: #ffdd55;
    color: #000000;
    font-family: 'Lato', Arial, san-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    padding: 6px 15px;
    cursor: pointer;
    text-transform: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

input[type='button']:hover, input[type='submit']:hover {
    background-color: #47649B;
    color: #ffffff;
}


/*
* Template
*/

.copyright {
	max-width: 1150px;
    margin: 0 auto;
}

.template-splash-banner {
	background-color: #ffdd55;
	padding: 10px;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
}

.template-information-container {
	font-size: 16px;
	flex: 2;
	padding: 1rem;
}

.template-splash-content-container {
	display: flex;
	flex-direction: row;
}

.template-img-container {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.template-img-container img {
	border-top: 1px solid #ffffff;
	width: 100%;
}

.template-content-container {
	display: flex;
	flex-direction: row;
	width: 100%;
}

.template-content {
	display: flex;
	flex-direction: column;
	width: 100%;
	padding-bottom: 25px;
}

@media screen and (max-width:1150px) {
	body {
		margin-left: 10px;
		margin-right: 10px;
	}
}


@media screen and (max-width: 975px) {
	.template-content-container {
		flex-direction: column;
	}
	.template-img-container img {
		max-width: 32vw;
    	min-width: 32vw;
	}

}


@media only screen and (max-width: 750px) {
	.header-logo-subtitle {
		display: none;
	}

	.header-logo img {
		width: 100%;
	}

	.template-img-container {
		flex-direction: row;
	}

	.template-splash-content-container {
		flex-direction: column-reverse;
	}

	.template-img-container img {
		max-width: 100vw;
    	min-width: 44vw;
	}

  }

@media screen and (max-width: 600px) {

	.template-splash-banner {
		gap: 10px;
	}


	.template-img-container {
		flex-direction: row;
		width: 100%;
	}

	.template-information-container {
		padding-bottom: 0;
	}

}

@media screen and (max-width: 400px) {

	.content-margin {
		margin: 10px;
	}

	.template-content-container .container {
		margin: 10px;
	}

	.template-img-container {
		max-width: 100%;
	}
}

.nav-buttons {
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	column-gap: 12px;
}

.query_input input[type='radio'], .query_input input[type='checkbox']{
	margin-bottom: 5px;
}</pre></body></html>