﻿/* general styles */
* {
	margin: 0px;
	padding: 0px;
    font-family: Roboto, Helvetica, sans-serif;
	box-sizing:border-box;
}
/* header, body and paragraph formatting */
body {
	background: #444;
	overflow: hidden;
}
p {
    margin: 0.3em;
	padding-left: 5px;
	padding-right: 5px;
	font-size: 1em;	
}
/* table styles */
table {
	font-weight: normal;
	text-align: right;
	background-color: #ffffff;
	border-spacing: 0px;
	width: 100%;
	table-layout: fixed;				 
}
td {
	vertical-align: top;
	border-bottom: 2px solid black;
	padding-top: 0px;
	padding-bottom: 2px;
	padding-left: 0.2em;
	padding-right: 0.2em;
}
.cl {
	text-align: center;
	font-size: 16vw;
	background: black;
	color: white;
	font-weight: bolder;
	font-family: Consolas;
	line-height: 16vw;
}
.st {
	text-align: left;
	padding-left: 1vw;
	padding-top: 1vw;
	padding-bottom: 1vw;
	font-size: 3.5vw;
	font-weight: bolder;
	background-color: green;
	color: white;
	width: 50%;
	white-space: nowrap;				 
}
.tq {
	text-align: left;
	background-color: yellow;
	padding-left: 1vw;
	color: #000000;
	font-size: 3.5vw;
}
/* footer styles */
.t {
	position: absolute;
    bottom: 0px;
    right: 0.5em;
	text-align: right;
	color: grey;
	line-height: 1em;	 
}
