html {
	width: 100%;
	height: 100%;

	background: white;
}


body {
	width: 100%;
	height: 100%;
	padding: 10px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.header {
	font-family: Tahoma,Verdana,Arial;
	font-size: 13px;
	color: #003366;
	font-weight: bold;

	width: 500px;

	border-bottom: solid 1px #336699;
	padding: 0 0 3px 0;
}

.menu {
	padding: 0;
	margin: 0;
	float: right;
}

.menu ul {
	display: inline;
	list-style: none;

	margin: 0 3px 0 3px;
}

.menu li {
	display: inline;
	vertical-align: top;

	letter-spacing: 1px;
	margin: 0 7px 0 7px;
}

.menu li a  {
	text-decoration: none;
	color: #003366;
}
.menu li a:hover, .menu li a:active {
	color: #003366;
	text-decoration: underline;
}

.title {
	margin: 0 7px 0 7px;
	letter-spacing: 3px;
}


