
  h1, h2, h3, h4, h5, h6 {
    font-family: 'OPEN-SANS-SEMIBOLD', sans-serif;
    font-size: 1rem;
    
    margin: 1rem 0rem 0rem 0rem;
    font-weight: bold;
  }
  
  h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
    margin-top: 0em;
  }
  
  h1 {
    font-size: 1.4rem;
  }
  
  h2 {
    font-size: 1.2rem;
    color: #bb5a5a;
  }

  @media screen and (min-width: 700px) {
    h1 {
      font-size: calc(1rem + 1.3vw);
    }
    
    h2 {
      font-size: 1.5rem;
    }
    
    h3 {
      font-size: 1.1rem;
    }
  }

  a {
    color: #3f72af;
    text-decoration: none;
    cursor: pointer;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  p {
    margin: 1em 0em 0em 0em;
  }
  
  a:hover,
  a:focus {
    -webkit-filter: brightness(0.95);
    filter: brightness(0.95);
  }

  form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  
  input,
  select,
  textarea {
    font-family: "OPEN-SANS-DEFAULT", sans-serif;
    font-size: 100%;
    
    -webkit-box-sizing: border-box;
    
    box-sizing: border-box;
    padding: 0.2rem;
    
    border: 0.05rem solid #cccccc;
    
    background-color: #f9f9f9;
  }
  
  input[type="checkbox"],
  input[type="radio"] {
    margin: 0em 0.3em 0em 0em;
  }
  
  option {
    background-color: #f9f9f9;
  }
  
  textarea {
    overflow: auto;
  }
  
  input[type="file"] {
    border: none;
    background: none;
  }
  
  form button[type="submit"] {
    margin-top: 2rem;
    -webkit-box-shadow: 0px 0.2em 0.6em -0.2em rgba(0,0,0,0.2);
    box-shadow: 0px 0.2em 0.6em -0.2em rgba(0,0,0,0.2);
    
    cursor: pointer;
  }
  
  input:focus,
  textarea:focus,
  select:focus {
    /*outline: 0.1em solid #3f72af;*/
    box-shadow: 0em 0em 0.2em #cac2c2;
  }
  
  label {
    margin-top: 1rem;
    
    display: -webkit-box;
    
    display: -ms-flexbox;
    
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
  }
  
  label:first-of-type {
    margin-top: 0em;
  }
  
  button {
    font-size: 100%;
    border: none;
    padding: 0;
    margin: 0;
    background: none;
    cursor: pointer;
  }
  
  button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
  }
  
  fieldset {
    border: none;
    padding: 0em;
    margin: 0em;
  }
  
  fieldset label {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  
  legend {
    margin: 0em;
    padding: 0em;
  }

  ul, ol {
    list-style-type: none;
    
    margin: 0em;
    padding: 0em;
  }

  table {
    width: 100%;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    
    border-collapse: collapse;
    border-spacing: 0;
    /* border: 0.1em solid #f0f0f0; */
  }
  
  tr:hover {
    background: #fbfbfb;
  }
  
  th {
    text-align: left;
    /* background-color: #fbfbfb; */
  }

  th, td {
    padding: 0.5em 1em;
    /* border-bottom: 0.1em solid #f0f0f0; */
  }

  tfoot{
    font-weight: 700;
  }

  section {
    padding: 1em;
  }
  
  hr {
    border-top: 0.05em solid #ccc;
    border-bottom: none;
    margin: 0em;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
