/* Arial font */
body {
  font-family: Arial, sans-serif;
  color: #1d2023;
  background-color: #B0C6FF;
}

/* Heading styles */
h1, h2, h3 {
  font-weight: bold;
}

h1 {
  font-size: 1.5em;
  line-height: 42px;
  text-align: center;
}

h2 {
  font-size: 1.17em;
  line-height: 30px;
}

h2.center {
  text-align: center;
}

h3 {
  font-size: 1em;
  line-height: 24px;
}

/* Paragraph styles */
p {
  font-size: 14px;
  line-height: 20px;
}

/* Link styles */
a {
  color: #1055d3;
  text-decoration: underline;
  transition: color 0.2s ease;
}

a.noline {
  color: #1055d3;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #1d2023;
}

li {
  margin: 3px 0;
  font-size: 14px;
  line-height: 20px;
}

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
}

table.nav {
  border: 1px solid black;
  border-collapse: collapse;
  background-color: #d9e4ff;
}

td {
  padding: 3px;
  font-size: 14px;
}

td.green {
  color: green;
}

td.red {
  color: red;
}

td.orange {
  color: darkorange;
}

td.bold {
  font-weight: bold;
}

img.imgflt  {
  float: right;    
   margin: 0 0 0 15px;
  }