<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;900&amp;display=swap');
* {
	font-family: Lato, Helvetica, Arial, sans-serif;
	font-size: 14pt;
	color: #999;
}
h1 {
	text-align: center;
	padding: 15px;
	font-size: 6vw;
	background-color: #eee;
}
body {
	background-color: #fff;
	margin: 0;
	padding: 0;
}
a {
	font-size: 22pt;
	text-decoration: none;
}
p {
	font-size: 4vw;
}

.welcomeback {
	width: 98%;
	height: 80pt;
	text-align: center;
	font-size: 46pt;
	color: #888;
	float: left;
}
.notme {
	cursor: pointer;
	width: 100%;
	height: 80pt;
	font-weight: normal;
	letter-spacing: 1px;
	font-size: 18px;
	margin-bottom: 8px;
	float: left;
}
.checkbox {
	width: 100%;
	float: left;
}
.checkboxmin {
	float: left;
}
.titlediv {
	width: 100%;
	float: left;
	margin-top: 30px;
}
.comtext {
	width: 100%;
	height: 85px;
	transition: all 1s;
	margin-bottom: 5px;
	-webkit-transition: all 1s;
}
.comtext:focus {
	height: 500px;
}
.bodytext {
	width: 100%;
	color: #444;
	font-size: 22pt;
}
#servicensw {
	float: left;
	width: 250px;
	height: 86px;
}
input[type="button"], input[type="submit"] {
	height: 80px;
	width: 300px;
	background-color: #eee;
	font-weight: normal;
	letter-spacing: 1px;
	font-size: 30pt;
	border: 6px solid #ddd;
	color: #333;
	background-color: #fff;
	margin-top: 4px;
	margin-bottom: 4px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding-top: 5px;
	float: right;
	transition: border-color 0.2s, box-shadow 0.2s;
}
input[type="button"]:hover, input[type="submit"]:hover {
	color: #00ccff;
	-moz-box-shadow: 0px 0px 2px #555555;
	-webkit-box-shadow: 0px 0px 2px #555555;
	box-shadow: 0px 5px 8px #888;
	transition: border-color 0.2s, box-shadow 0.2s;
}
input[type="button"]:active, input[type="submit"]:active {
	-webkit-box-shadow: 0px 0px 0px #fff;
	-moz-box-shadow: 0px 0px 0px #fff;
	box-shadow: 0px 0px 0px #fff;
	border: 6px solid #00ccff;
	color: #00ccff;
	transition: border-color 0.2s, box-shadow 0.2s;
}
textarea {
	padding: 6px;
	outline: 0;
	border: 6px solid #ddd;
	border-radius: 5px;
	color: #999;
	font-size: 30pt;
}
textarea:hover {
	border-color: #00ccff;
}
input.text50 {
	width: 100%;
	height: 80px;
	padding: 6px;
	outline: 0;
	font-size: 30pt;
	border: 6px solid #ddd;
	border-radius: 5px;
	color: #999;
	margin-top: 5px;
	margin-bottom: 5px;
	float: left;
}
input.text50:hover {
	border-color: #00ccff;
}
input.text100 {
	width: 100%;
	height: 80px;
	padding: 6px;
	outline: 0;
	font-size: 30pt;
	border: 6px solid #ddd;
	border-radius: 5px;
	color: #999;
	margin-top: 5px;
	margin-bottom: 5px;
	float: left;
}
input.text100:hover {
	border-color: #00ccff;
}
input[type="text"]::placeholder, textarea::placeholder {
	color: #bbb;
}
#cover-spin {
	position:fixed;
	width:100%;
	left:0;right:0;top:0;bottom:0;
	background-color: rgba(255,255,255,0.7);
	z-index:99;
	visibility: hidden;
}

@-webkit-keyframes spin {
	from {-webkit-transform:rotate(0deg);}
	to {-webkit-transform:rotate(360deg);}
}

@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}

#cover-spin::after {
	content:'';
	position:absolute;
	left:48%;top:40%;
	width:40px;height:40px;
	border-style:solid;
	border-color:black;
	border-top-color:transparent;
	border-width: 4px;
	border-radius:50%;
	-webkit-animation: spin .8s linear infinite;
	animation: spin .8s linear infinite;
}
.container {
	display: block;
	position: relative;
	padding-left: 100px;
	margin-bottom: 50px;
	padding-top: 24px;
	cursor: pointer;
	font-size: 26pt;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-align: left;
}

/* Hide the browser's default checkbox */
.container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 80px;
	width: 80px;
	background-color: #fff;
	border-radius: 8px;
	border: 6px solid #ddd;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
	border-color: #00ccff;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
	background-color: #00ccff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
	left: 19px;
	top: -5px;
	width: 30px;
	height: 60px;
	border: solid white;
	border-width: 0 13px 13px 0;
	-webkit-transform: rotate(40deg);
	-ms-transform: rotate(40deg);
	transform: rotate(40deg);
}</pre></body></html>