/* responsive-tables.fixed.css
   Responsive tables using only IDs: #table1 .. #table20.
   On small screens, <td>::before shows the associated column header label.
   No classes are used.
*/

:is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) {
  margin: 1em 0;
  border-collapse: collapse;
  width: 100%;
}
:is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) caption {
  text-align: left;
  font-style: italic;
  padding: 0.25em 0.5em 0.5em 0.5em;
}
:is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) th, :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) td {
  padding: 0.25em 0.5em 0.25em 1em;
  vertical-align: top;
  text-align: left;
}
:is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) th {
  background-color: #000;
  color: #fff;
  font-weight: bold;
}
:is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) td::before {
  display: none;
}

@media screen and (max-width: 800px) {
  :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20), :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) tr, :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) td {
    display: block;
  }
  :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) th {
    display: none;
  }
  :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) td::before {
    display: inline;
    font-weight: bold;
  }
  :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) td {
    display: grid;
    grid-template-columns: 9em auto;
    grid-gap: 0.75em 0.5em;
  }
  :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) caption {
    font-style: normal;
    /*background-color: rgba(0,0,0,0.35);*/
    background-color: #cd4900 !important;
    color: #fff;
    font-weight: bold;
  }
  :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) td:nth-of-type(3) {
    text-align: left;
  }
  :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) td:nth-of-type(4), :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) td:nth-of-type(5) {
    /* customize alignment/width here if needed */
  }
  :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) td:nth-of-type(4)::before, :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) td:nth-of-type(5)::before {
    text-align: left;
  }
  :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) td:nth-of-type(2)::before {
    font-style: normal;
  }
  
  
  
  
/* Ensure mobile cells are always label | value */
  .utrgv-tables td {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 0.75em;
    align-items: start;
  }

  /* Style the generated header label */
  .utrgv-tables td::before {
    text-align: left;
    font-weight: bold;
    white-space: nowrap;
  }

  
  
}

@media print {
  body {
    font-size: 6pt;
  }
  :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) {
    page-break-inside: avoid;
  }
  :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) th {
    color: #000;
    border-bottom: 1pt solid #000;
  }
  :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) tr {
    border-top: 1pt solid #000;
  }
}

@media print and (max-width: 5in) {
  :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) caption {
    background-color: #fff;
    border-bottom: 1pt solid #000;
  }
  :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) {
    page-break-inside: auto;
  }
  :is(#table1, #table2, #table3, #table4, #table5, #table6, #table7, #table8, #table9, #table10, #table11, #table12, #table13, #table14, #table15, #table16, #table17, #table18, #table19, #table20) tr {
    page-break-inside: avoid;
  }
}


@media screen and (max-width: 800px) {

  /* FORCE header labels to appear on mobile */
  .utrgv-tables td::before {
    display: inline !important;
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
  }

  /* Force true label | value layout */
  .utrgv-tables td {
    display: grid !important;
    grid-template-columns: max-content 1fr;
    column-gap: 0.75em;
    align-items: start;
  }

}


 .utrgv-tables {
	/*font-family: Arial, Helvetica, sans-serif;
	*/
	 border-collapse: collapse;
	 width: 100%;
	 margin-bottom:1em;
}
 .utrgv-tables td, .utrgv-tables th {
	 border: 1px solid #ddd;
	 padding: 8px;
}
 .utrgv-tables tr:nth-child(even){
	background-color: #f2f2f2;
}
 .utrgv-tables tr:hover {
	background-color: #ddd;
}
 .utrgv-tables th {
	 padding-top: 12px;
	 padding-bottom: 12px;
	 text-align: left;
	 background-color: #cd4900 !important;
	 color: white;
}