/* v1.0 26AUG22 */

:root {
	--TitanBlue: #00274C;
	--TitanMedBlue: #084B8A;
	--TitanLiteBlue: #9CD0E8;
	--TitanOrange: #FF7900;
	--TitanLiteOrange: #DC8218;
	--TitanBriteOrange: #ff4500;
}

body
{
    background-color: white;
    font-family: "open sans", open-sans, Arial, Helvetica, Geneva, sans-serif;
    margin: 0px;
    padding: 0px;
    text-align: center;
}

table {
	background-color: whitesmoke;
    border-collapse: collapse;
	border-spacing: none;
	margin-left: auto;
	margin-right: auto;
	width: 300px;
	}
	
caption {
	background-color: var(--TitanBlue);
	color: white;
	display: table-caption;
	font-size: large;
	font-variant: small-caps;
	font-weight: bold;
	letter-spacing: .1em;
	text-align: center;
	width: 300px;
	}
	
/* HEADER */
	
tr th:nth-child(1) {
	text-align: left;
	}

tr th:nth-child(2) {
	text-align: right;
	}

/* BODY */

tr.mainData td:nth-child(1) {
	border-top: 1px solid black;
	color: var(--TitanBlue);
	font-size: large;
	letter-spacing: .1em;
	text-align: left;
	}

tr.mainData td:nth-child(2) {
	border-top: 1px solid black;
	font-size: xx-large;
	font-weight: bold;
	text-align: right;
	}
	
tr.updateMsg {

	}

	
tr.updateMsg td {
	color: var(--TitanMedBlue);
	font-size: small;
	text-align: center;
	}
	
/* FOOTER */

tfoot td {
	border-bottom: 1px solid black;
	border-top: 1px solid black;
	color: #444;
	font-size: x-small;
	font-style: italic;
	text-align: center; 
	}


