* {
    box-sizing: border-box;
}

body{
    font-family: calibri, arial, sans;
    font-size: 1.25vw;
}

.HEADER {
    width: 100%;

    margin-bottom: 1em;
    border: 1px solid;
    border-radius: 1em;
    display: grid;
    grid-template-columns: 60% 40%;
    grid-gap: 0;
    grid-auto-rows: minmax(0, auto);
}


.HEADSCREENSHOT {
    grid-column: 1;
    grid-row: 1 / span 3;
    text-align: center;
}

.HEADSCREENSHOT > img {
		padding:0.5em;
    max-width: 100%;
    max-height: 100%;
}

.LOGO {
    grid-column: 2;
    grid-row: 1 / span 1;
    text-align: right;
}

.LOGO > img {
		padding:0.5em;
    max-width: 100%;
    //max-height: 100%;
}

.HEADINFOTEXT {
    grid-column: 2;
    grid-row: 2 / span 1;
}

.HEADINFOTEXT_TABLE {
    width: 100%;
    float: right;
    border-collapse: collapse;
}

.HEADINFOTEXT_TABLE td {
    border-bottom: 1px solid;
}

.HEADINFOTEXT_TABLE td:nth-child(odd) {
    font-weight: bold;
}

.HEADINFOTEXT_TABLE td:empty {
    margin:0;
    padding:0;
    border: none;
}

.COMMENT {
    grid-column: 2;
    grid-row: 3 / span 1;
}
.COMMENT_NAME{
   font-weight: bold;
   border-bottom: 1px solid;
}
.COMMENT p {
	margin:0;
}



/* content container <div> - general format */
.CONTENT{
	padding-top:10px;
}
.CONTENT img
{
	max-width:96px;
	max-height:96px;
}


/* table content <table> - general table format of content */
.CONTENT_TABLE{
	width:100%;
	font: 16px Arial;
	text-align: left;
	margin-right:5px;
	margin-bottom:5px;
	border:1px solid black;
	border-collapse: collapse
}


/* content caption - align at bottom */
.CONTENT_TABLE caption
{
	font: 14px Arial;
	font-weight:bold;
	padding:5px;
}



/* content cell <td> - general format of content cells */
.CONTENT_TABLE td{
	padding:0 3px;
	border:1px solid black;
}

/* content head <th> - column heading */
.CONTENT_TABLE th{
	text-align: center;
	padding:0 3px;
	border:1px solid black;
}

/* foot note <tfoot> - overall cycle time */
.CONTENT_TABLE tfoot{
	display:none;
}

/* content column <td> - center numbers */
.td_100, 
.td_112, 
.td_108, 
.td_102, 
.td_114, 
.td_120,
.td_24
{
	text-align:center;
}