CSS for Combined Invoices

How would I modify the following to make it work for the combined invoices?
"another complicated one which redesigns / repurposes the printer-friendly Invoices page into a page which can be used as a printout for sort / distribution time to see all items each user ordered, for that vendor (similar to Simple sorting sheet, only including all items, not just splits); NOTE: this will also remove the page-breaks (used by printers) after each member's invoice - if you don't want that, remove the entire line containing "hr.pagebreak" below:
body#invoice.normalPrintInvoices div#invoiceSummaryDiv,
body#invoice.normalPrintInvoices table.invoiceUserLineSummaryTable,
body#invoice.normalPrintInvoices table.invoiceUserTotalsAndCommentsTable,
body#invoice.normalPrintInvoices hr.pagebreak,
body#invoice.normalPrintInvoices table.invoiceUserTable th,
body#invoice.normalPrintInvoices table.invoiceUserTable td {
display: none;
}
body#invoice.normalPrintInvoices table.invoiceUserTable .QtyCol,
body#invoice.normalPrintInvoices table.invoiceUserTable .SplitUnitsCol,
body#invoice.normalPrintInvoices table.invoiceUserTable .ManufacturerCol,
body#invoice.normalPrintInvoices table.invoiceUserTable .DescriptionCol {
display: table-cell;
}
"
"another complicated one which redesigns / repurposes the printer-friendly Invoices page into a page which can be used as a printout for sort / distribution time to see all items each user ordered, for that vendor (similar to Simple sorting sheet, only including all items, not just splits); NOTE: this will also remove the page-breaks (used by printers) after each member's invoice - if you don't want that, remove the entire line containing "hr.pagebreak" below:
body#invoice.normalPrintInvoices div#invoiceSummaryDiv,
body#invoice.normalPrintInvoices table.invoiceUserLineSummaryTable,
body#invoice.normalPrintInvoices table.invoiceUserTotalsAndCommentsTable,
body#invoice.normalPrintInvoices hr.pagebreak,
body#invoice.normalPrintInvoices table.invoiceUserTable th,
body#invoice.normalPrintInvoices table.invoiceUserTable td {
display: none;
}
body#invoice.normalPrintInvoices table.invoiceUserTable .QtyCol,
body#invoice.normalPrintInvoices table.invoiceUserTable .SplitUnitsCol,
body#invoice.normalPrintInvoices table.invoiceUserTable .ManufacturerCol,
body#invoice.normalPrintInvoices table.invoiceUserTable .DescriptionCol {
display: table-cell;
}
"