/* Wolds U3A Table */
/* Webmaster Wolds U3A*/


  table {
    border: 2px solid #6d7e1a;
    width: 100%;
    margin:0;
    padding:0;
    border-collapse: collapse;
    border-spacing: 0;
}

  table tr {
    border: 1px solid #e0e1d5;
    padding: 5px;
    background-color: #e5e5ff;
}
  
  table td {
    padding: 10px;
    text-align: left;
    border: 1px solid  #6d7e1a;
}
 
  table th {
    padding: 10px;
    text-align: center;
}

  table th {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight:600;
    border-bottom:1px solid #ccc;
    background-color: #5adf59;
}

  @media screen and (max-width: 760px) {

    table {
      border: 0;
    }

    table thead {
      display: none;
    }

    table tr {
      margin-bottom: 10px;
      display: block;
      border: 2px solid #ddd;
    }

    table td {
      display: block;
      text-align: right;
      font-size: 12px;
      border: 1px solid #ccc;
    }

    table td:last-child {
      border-bottom: 0;
    }

    table td:before {
      content: attr(data-label);
      float: left;
      text-transform: uppercase;
      font-weight: normal;
    }
  }