* {
  box-sizing: border-box;
}

html {
  margin: 0px;
  padding: 0px;
  height: 100%;
}

body {
  margin: 0px;
  padding: 0px;
  height: 100%;
  font-family: Arial, sans-serif;
  font-size: 14px;
  background-color: #fff;
  color: #243032;
  text-align: center;
}

a,
a:visited,
a:hover {
  text-decoration: none;
  color: #13558F;
}

a:hover {
  text-decoration: underline;
}

img {
  border: 0px;
}

img.valign {
  vertical-align: middle;
}

@media (max-width: 760px) {
  img.responsive {
    max-width: 100%;
    height: auto;
  }
}

main {
  padding: 0px 10px;
  margin: 0px auto;
}
@media (max-width: 760px) {
  main {
    padding: 0px 5px;
  }
}

@media (max-width: 760px) {
  header > div#logo > img {
    width: auto;
    height: 40px;
  }
}

header,
footer {
  padding: 25px 0px;
}

button {
  color: #FFC700;
  border-radius: 0px;
  border: #4B4E4C 2px solid;
  background-color: #13558F;
  padding: 5px 10px;
  font-weight: 600;
}

button,
input:not([type=checkbox]) {
  width: 95%;
  max-width: 240px;
}

.breathe {
  margin-top: 25px;
}

.grid {
  margin: 0px auto;
  display: grid;
  justify-items: center;
  justify-content: space-between;
  max-width: 1000px;
  grid-template-columns: 50% 50%;
}

.grid > div {
  width: 100%;
  padding: 2px 4px;
  box-sizing: border-box;
}

.grid > div.title1 {
  grid-column: span 2;
}

.grid > div:nth-child(odd) {
  text-align: right;
}

.grid > div:nth-child(even) {
  text-align: left;
}

.grid > div:nth-child(4n-3),
.grid > div:nth-child(4n-2) {
  background-color: #eeeeee;
}

.grid > div:nth-child(4n-1),
.grid > div:nth-child(4n) {
  background-color: #e0e0e0;
}

.grid > div.singlerow {
  grid-column: span 2;
  text-align: center;
}

.grid1 {
  margin: 0px auto;
  max-width: 1000px;
}

.grid1 > div {
  width: 100%;
  padding: 2px 4px;
  box-sizing: border-box;
  text-align: left;
}

.grid1 > div:nth-child(odd) {
  background-color: #eeeeee;
}

.grid1 > div:nth-child(even) {
  background-color: #e0e0e0;
}

.grid3 {
  margin: 0px auto;
  display: grid;
  justify-items: center;
  justify-content: space-between;
  max-width: 1000px;
  grid-template-columns: 70px 1fr 1fr;
}

.grid3 > div {
  width: 100%;
  padding: 2px 4px;
  box-sizing: border-box;
}

.grid3 > div.title1 {
  grid-column: span 3;
}

.grid3 > div:nth-child(3n-2) {
  text-align: right;
}

.grid3 > div:nth-child(3n-1) {
  text-align: left;
}

.grid3 > div:nth-child(3n) {
  text-align: left;
}

.grid3 > div:nth-child(6n-5),
.grid3 > div:nth-child(6n-4),
.grid3 > div:nth-child(6n-3) {
  background-color: #eeeeee;
}

.grid3 > div:nth-child(6n-2),
.grid3 > div:nth-child(6n-1),
.grid3 > div:nth-child(6n) {
  background-color: #e0e0e0;
}

.grid3 > div.singlerow {
  grid-column: span 3;
  text-align: center;
}

.title1 {
  font-weight: 600;
  padding: 8px;
  box-sizing: border-box;
}

.pending {
  color: #333333;
}

.error {
  color: #aa0000;
}

.success {
  color: #00aa00;
}/*# sourceMappingURL=layout.css.map */