<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --color-primary: #0045b6;
  --color-secondary: #157dfb;
  --color-text: #040404;
  --font-family: "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Lucida Grande", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--font-family);
  font-size: 100%;
  vertical-align: baseline;
  text-size-adjust: none;
}

body {
  height: 100vh;
  background: #fff;
  color: var(--color-text);
}


.word-break {
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

a {
  text-decoration: none;
  margin: 0;
  padding: 0;
  color: var(--color-primary);
}

a:link,
a:visited,
a:active {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a.close {

  position: absolute;
  z-index: 1111;
  top: 22px;
  right: 7px;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: #fff;
  font-family: HelveticaNeue, sans-serif;
  text-decoration: none;
}

a.close span {

  position: relative;
  width: 16px;
  height: 16px;
  margin: 7px;
}

a.close span::before,
a.close span::after {
  position: absolute;
  top: 8px;
  left: -2px;
  content: "";
  display: block;
  width: 19px;
  height: 1px;
  background-color: #141414;
}

a.close span::before {
  transform: matrix(0.707107, 0.707107, -0.707107, 0.707107, 0, 0);
}

a.close span::after {
  transform: matrix(0.707107, -0.707107, 0.707107, 0.707107, 0, 0);
}

h1,
h2 {
  margin: 40px 0 20px 0;
  color: #000;
  font-size: 18px;
  font-weight: bold;
}

h1 {
  text-align: center;
}

h2 {
  text-align: left;
}

h3 {
  font-weight: bold;
}

h4,
h5 {
  font-weight: 400;
}

h4 {
  text-align: right;
}

.main-container {
  box-sizing: border-box;
  max-width: 1010px;
  height: 100vh;
  margin: 0 auto;
  overflow-y: auto;
  overflow-x: hidden;
}

.form-body {
  max-width: 100vw;
  margin: 0 auto;
  padding: 10px 0 50px;
}

.txt-cont {
  padding: 0 15px;
}

.txt-cont p {
  margin: 10px 0 20px 0;
  color: #000;
  font-size: 16px;
  line-height: 18px;
}

.txt-cont p a {
  color: var(--color-secondary);
}

.txt-cont ul,
.txt-cont ol {
  font-size: 16px;
}

.txt-cont ul {
  margin: 0 0 0 16px;
  padding: 0 0 0 24px;
}

.txt-cont ol {
  margin: 12px 0 0 0;
  padding: 0 3px 0 20px;
}

.txt-cont li {
  padding: 0 0 3px 0;
  line-height: 20px;
}

table {
  width: 96%;
  margin: auto;
  table-layout: fixed;
  border-collapse: collapse;
}

table th,
table td {
  width: auto;
  max-width: 25%;
  padding: 10px;
  border: 1px solid #000;
  overflow-wrap: break-word;
  hyphens: auto;
}


@media only screen and (max-aspect-ratio: 56/100) {
  .main-container {
    padding-top: 20pt;
  }

  a.close {
    top: 35pt;
  }

  .form-body {
    padding-bottom: 80px;
  }
}
</pre></body></html>