/* CSS to transform HTML table with ID table_format to a searchable bulleted list with filters */

main #table_format th {background: transparent;  }

#table_format td:not(:first-child) {display: none;}
#table_format td:first-child {
 display: list-item;
 margin-left: 20px;
 padding: 0px;

}
main #table_format tr:nth-of-type(even), main #table_format td[rowspan]:not([rowspan="1"]) {
background-color: transparent; 
}
main #table_format tr.hidden, main #table_format thead { display: none; }

#filter select {
display: inline-block;
margin-right: 0.6em;
}
