/* table
----------------------------------------------- */
table {
	width:96%;
	opacity: 0.8;
	border:1px solid #bbb;
	margin-bottom:10px;
    /*
	box-shadow: 3px 4px 7px rgba(180,180,180,0.5);
	-moz-box-shadow: 3px 4px 7px rgba(180,180,180,0.5);
	-webkit-box-shadow: 3px 4px 7px rgba(180,180,180,0.5);
    */
}
col.colC {
	width:8em;
}
th, td {
	padding:.2em 1em;
	text-align:left;
}
thead th {
	border-bottom:2px solid #888;
	background:#bbb;
	padding:.4em 1em .2em;
}
thead th.table-head {
	font-size:1rem;
	font-weight:normal;
	text-transform:uppercase;
	color:#fff;
	background:#555;
	border:1px solid #555;
}
tbody th,
tbody td {
	border-top:1px solid #bbb;
	border-bottom:1px solid #bbb;
	background:#eee;
}
tbody tr.odd th,
tbody tr.odd td {
	background:#fff;
}
tfoot th,
tfoot td {
	border-top:2px solid #666;
	background:#eee;
}
tfoot tr.total th,
tfoot tr.total td {
	border-top:6px double #666;
}
tfoot tr.total th {
	text-transform:uppercase;
}
th.currency,
td.currency {
	text-align:right;
}


@media (prefers-color-scheme: dark) { 


thead th {
	background:#000;
}
    
tbody td {
	background:#333;
}
 
tfoot td {
	background:#111;
}    
    
tbody tr.odd td {
	background:#333;
}
tbody tr.odd th,
tbody tr.odd td {
	background:#333;
}
    
}