<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.accordion {
  background-color: #111e6c;
  color: white;
  cursor: pointer;
  padding: 5px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #3b5998;
  color: white;
}

.accordion:after {
  content: '\002B';
  color: #3b5998;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding-top: 0px;
  padding-right: 18px;
  padding-bottom: 0px;
  padding-left: 18px;
  
  &lt;!--padding: 0 18px;--&gt;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.update {
  padding-top: 0px;
  padding-right: 18px;
  padding-bottom: 0px;
  padding-left: 18px;
}

&lt;!-- FORMAT THE FORM FIELDS AND BUTTON --&gt;

* {
  box-sizing: border-box;
}

input[type=checkbox]: {
  background-color: #f5f8ff;
}

input[type=text]:focus {
  background-color: #f5f8ff;
}

input[type=text], select, textarea {
  width: 97%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 0px;
  resize: vertical;
}

input[type=password] {
  width: 97%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 0px;
  resize: vertical;
}

input[type=password]:focus {
  background-color: #f5f8ff;
}

input[type=date] {
  width: 97%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 0px;
  resize: vertical;
}

label {
  padding: 12px 12px 12px 0;
  display: inline-block;
}

input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  float: right;
  margin-top: 10px;
}

.b1 {
  background-color: #4CAF50;
  color: white;
  padding: 6px 10px;
  border: none;
  border-radius: 0px;
  text-align: left;
  cursor: pointer;
  margin-left: 40px;
}

input[type=submit]:hover {
  background-color: #45a049;
}


.dropdown-container {
  border-radius: 0px;
  font-family: Arial;
  background-color: #111e6c;
  padding: 20px;
  color: white;
  text-align: center;
}

.dropdown {
  width: 50%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 0px;
  resize: vertical;
}

.container-header {
  border-radius: 0px;
  background-color: #111e6c;
  padding: 10px;
  text-align: right;
  color: white;
  font-family: Arial;
}

.container-headerl {
  border-radius: 0px;
  background-color: #111e6c;
  padding: 10px;
  text-align: left;
  color: white;
  font-family: Arial;
}

.container {
  border-radius: 0px;
  font-family: Arial;
  background-color: #111e6c;
  padding: 20px;
  color: white;
}

.notification {
  border-radius: 0px;
  background-color: #f5f8ff;
  padding: 3px;
  text-align: left;
  border: 1px solid #111e6c
}

.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}


a {
  color: white;
}

/* unvisited link */
a:link {
  color: white;
}

/* visited link */
a:visited {
  color: white;
}

/* mouse over link */
a:hover {
  color: black;
}

/* selected link */
a:active {
  color: black;
}

#whitetext {
  color: white;
  font-family: Arial;
  font-size: 12px;
}

#whitelink {
  color: white;
  font-family: Arial;
  font-size: 12px;
}

#whitelink:hover {
  color: grey;
}

#bluelink {
  color: #111e6c;
  font-family: Arial;
  font-size: 12px;
}

#bluelink:hover {
  color: black;
}

#para1 {
  border-style: solid;
  border-width: 0px;
  float: right;
  width: 100px;
  text-align: right;
}

#paraleft-15 {
  border-style: solid;
  border-width: 0px;
  float: left;
  width: 28px;
  text-align: left;
}

#link2 {
  border-style: solid;
  border-width: 0px;
  width: 100px;
  text-align: left;
  font-size: 12px;
}

#link3 {
  border-style: solid;
  border-width: 0px;
  width: 200px;
  text-align: left;
  font-size: 12px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

/* Tooltip container LEFT*/
.tooltipl {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltipl .tooltiptextl {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  margin-left: -100px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltipl:hover .tooltiptextl {
  visibility: visible;
}

/* Tooltip container RIGHT*/
.tooltipr {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltipr .tooltiptextr {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 105%;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltipr:hover .tooltiptextr {
  visibility: visible;
}

/* Tooltip container TOP*/
.tooltipt {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltipt .tooltiptextt {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -20px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltipt:hover .tooltiptextt {
  visibility: visible;
}

ul.w3-ul a{
  text-decoration:none;
  }</pre></body></html>