178 lines
2.9 KiB
CSS
178 lines
2.9 KiB
CSS
|
|
main table {
|
|
border-collapse: collapse;
|
|
margin-bottom: 10mm;
|
|
font-size: 10pt;
|
|
}
|
|
main table.large {font-size: 12pt;}
|
|
main table.tiny {
|
|
font-size: 8pt;
|
|
margin-bottom: 5mm;
|
|
}
|
|
|
|
main table.border {
|
|
border: var(--border-thickness) solid black;
|
|
}
|
|
|
|
main table tr {
|
|
break-inside: avoid;
|
|
}
|
|
|
|
main table th,
|
|
main table td {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
vertical-align: middle;
|
|
padding: 0.5mm 1mm;
|
|
font-weight: normal;
|
|
}
|
|
main table.small th,
|
|
main table.small td,
|
|
main table.tiny th,
|
|
main table.tiny td {
|
|
padding: 0.125mm 0.125mm;
|
|
}
|
|
|
|
main table td[rowspan] {
|
|
vertical-align: top;
|
|
}
|
|
|
|
main table thead {
|
|
font-size: 8pt;
|
|
}
|
|
main table.large thead {
|
|
font-size: 10pt;
|
|
}
|
|
|
|
main table th {
|
|
font-style: italic;
|
|
}
|
|
|
|
main table tbody {
|
|
}
|
|
|
|
main table .small {
|
|
font-size: 8pt;
|
|
}
|
|
main table .large {
|
|
font-size: 12pt;
|
|
}
|
|
main table .tiny {
|
|
font-size: 6pt;
|
|
}
|
|
|
|
main table.number td,
|
|
main table.number th {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
main table.number thead th,
|
|
main table.number td,
|
|
main table tbody td.number {
|
|
text-align: right;
|
|
}
|
|
|
|
main table.center tbody td,
|
|
main table tbody td.center {
|
|
text-align: center;
|
|
}
|
|
|
|
main table tbody th {
|
|
text-align: left;
|
|
}
|
|
|
|
main table.cohere {
|
|
break-inside: avoid;
|
|
}
|
|
|
|
main table tr.subheading th,
|
|
main table tr.subheading td {
|
|
font-weight: bold;
|
|
}
|
|
|
|
main table tr.subheading th {
|
|
text-align: left;
|
|
font-size: 10pt;
|
|
}
|
|
|
|
main table.small tr.subheading th,
|
|
main table.small tr.subheading td,
|
|
main table.tiny tr.subheading th,
|
|
main table.tiny tr.subheading td {
|
|
font-size: 8pt;
|
|
}
|
|
|
|
main table tr.sectionheading {
|
|
background-color: #E0E0E0;
|
|
}
|
|
|
|
main table tr.sectionheading th {
|
|
padding-top: 0.5mm;
|
|
padding-bottom: 0.5mm;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
font-size: 10pt;
|
|
border-top: var(--border-thickness) solid black;
|
|
}
|
|
|
|
main table tr.header {
|
|
border: var(--border-thickness) solid black;
|
|
background-color: #E0E0E0;
|
|
}
|
|
|
|
main table tr.header th {
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
font-size: 16pt;
|
|
padding: 1mm 2mm;
|
|
}
|
|
|
|
main table tr.spacing td,
|
|
main table tr.spacing th {
|
|
height: 5mm;
|
|
}
|
|
|
|
main table tr.spacing ~ tr.header {
|
|
break-before: avoid;
|
|
}
|
|
|
|
main table.number thead tr:first-child th:first-child {
|
|
text-align: left;
|
|
}
|
|
|
|
main table tr.bold td {
|
|
font-weight: bold;
|
|
}
|
|
|
|
main table tr.sum,
|
|
main table td.sum,
|
|
main table tr.new,
|
|
main table tr.border {
|
|
border-top: var(--border-thickness) solid black;
|
|
}
|
|
|
|
main table th.unit {
|
|
font-size: 8pt;
|
|
}
|
|
|
|
main table.number th.unit {
|
|
padding-right: 2mm;
|
|
}
|
|
|
|
main table th.narrow {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
main table .lborder {border-left: var(--border-thickness) solid black;}
|
|
main table .rborder {border-right: var(--border-thickness) solid black;}
|
|
|
|
main table .fleft {
|
|
float: left;
|
|
}
|
|
|
|
main tbody.sum tr:last-child {
|
|
border-bottom: var(--border-thickness) solid black;
|
|
}
|