*
	{
	box-sizing: border-box;
	}

body,table
	{
	font-family: calibri, tahoma;
	font-size: 10px;
	font-size: 16px;
	}

body,html
	{
	padding: 0;
	margin: 0;
	height: 100%:
	}

#header
	{
	width: 100%;
	float: left;
	height: 120px;
	padding: 20px;
	border-bottom: 20px solid black;
	}
	
#menu, #content
	{
	padding: 20px;
	height: 100%;
	border: 1px solid black;
	}
	
#menu
	{
    float: left;
    background-color: #aaa;
	height: calc(100% - 120px);
	width: 200px;
	}
	
#content
	{
    overflow: auto;
	right: 0;
	height: calc(100% - 120px);
	}	
	
table
	{
	width: 100%;
	max-width: 800px;
	border-collapse: collapse;
	border: 1px solid black;
	}
	
th
	{
	background-color: #666;
	color: white;
	}
	
td,th
	{
	padding: 4px;
	text-align: left;
	vertical-align: top;
	}
	
th:not(:first-child),td:not(:first-child)
	{
	border-left: 1px solid #666;
	}

tfoot
	{
	background-color: #aaa;
	border-top: 2px solid black;
	font-weight: bold;
	}
	
tbody tr:nth-child(even)
	{
	background: #CCC}
	}

tbody tr:nth-child(odd)
	{
	background: #FFF;
	}
	
.clickrow
	{
	cursor: pointer;
	}
	
.clickrow:hover
	{
	background-color: #254633;
	color: white;
	}
	
.right
{
text-align: right; 
}

table.firstcol td:first-child
	{
	font-weight: bold;
	}
	
#menu a
	{
	text-decoration: none;
	color: #000;
	}