
/*
  body {
    font-family: "Open Sans", sans-serif;
    line-height: 1.25;
  }
 */

 
  .resptable {
  }
  
  
  .resptable table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;

  }
  
  .resptable table caption {
    font-size: 1.5em;
    margin: .5em 0 .75em;
  }
  
  .resptable table tr {
/*    background-color: #f8f8f8; */
    background-color: lightgray;
    color: black;	
    border: 1px solid #ddd;
    padding: .25em;
	font-weight: bold;
  }
  
  
  
  .resptable a{
    color: black;	
	font-weight: bold;
  }
  
  .resptable a:hover {
    background-color: yellow;
    font-size: 1.3em;	
  }
  
  
  .resptable table th,
  .resptable table td {
    font-size: 1.2em;  
    padding: .40em;
    text-align: left;
	font-weight: 900;
  }
  
  .resptable table th {
    font-size: 1.2em;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  
  @media screen and (max-width: 600px) {
    .resptable table {
      border: 0;
    }
	
    .resptable table caption {
      font-size: 1.3em;
    }
	
    .resptable table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
	
	
	.resptable table tr {
      border-bottom: 2px solid #ddd;
      display: block;
/*      margin-bottom: .25em; */
    }
	
    .resptable table td {
      border-bottom: 1px solid #ddd;
      display: block;
      font-size: 1.2em;
      text-align: left;
    }
	
	
    .resptable 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;
    }
	
	
    .resptable table td:last-child {
      border-bottom: 0;
    }
  }
  
  .resptable table tr:nth-child(odd){
    background-color: #f2f2f2; 
/*	background-color: lightgray; */
	color: red;
  }
