/***** General settings *****/

*,
*:before,
*:after {
  box-sizing: border-box;
}

a {
  color: #00204e;
}

a:hover {
  text-decoration: none;
  color: #004cbb;
}

a:focus {
  outline: none;
}

body {
  font-family: "Open Sans", Verdana;
  overflow-y: scroll;
  width: 100%;
  background-color: transparent;
}

fieldset {
  margin-top: 5px;
  margin-bottom: 10px;
}

html {
  min-height: 100%;
  font-size: 10pt;
  background-color: #e8e8e8;
}

td textarea {
  /*FIX extra space below*/
  display: block;
}

textarea {
  min-height: 32px;
}

textarea[readonly] {
  background-color: #e1dfdf;
  resize: none;
}

::placeholder,
::-webkit-input-placeholder {
  color: #aaa !important;
}

label {
  margin-bottom: 0;
}

legend {
  font-size: 1.2em;
  font-weight: 600;
  padding-left: 20px;
  letter-spacing: 1.5px;
  border-bottom: 1px solid #777777;
  margin-bottom: 12px;
}

footer {
  background-color: #51666b;
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 40px;
}

@media print {
  a[href]:after {
    content: none !important;
    /*Clear-print version*/
  }
}
