table {
  border: .5px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 95%;
  
}

table caption {
  font-size: 1.5em;
  margin: ..25em 0 .50em;
}

table tr {
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  padding: .15em;
}

table td {
  padding: .625em;
  text-align: center;
  background-color: #E3F6FF;
}

table th {
  font-size: .95em;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: #A1E3F9;
  padding: .625em;
  text-align: center;
  color:#000000;
}

p {
 
  color:#000000;
}

@media screen and (max-width: 767px) {
  table {
    border: 0;
  }

  table caption {
    font-size: 1.3em;
  }
  
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  table tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: .625em;
  }
  
  table td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  table td:before {
      /*
      * aria-label has no advantage, it won't be read inside a table
      content: attr(aria-label);
      */
      content: attr(data-label);
      float: left;
      font-weight: bold;
      text-transform: uppercase;
	  font-size: 1.0em;
	  color: #000000;
	  font-family: "Open Sans", sans-serif;
    }
  
  table td:last-child {
    border-bottom: 0;
  }
  
}



/* general styling */
body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.25;
}