/* CSS Document MH 2019 */
html, body {
	height: 100%;
	margin: 0px;
	background-color: #EEE;
}
.table {
	display: table;
	height: 100%;
	margin: 0 auto;
}
.table-cell {
	display: table-cell;
	vertical-align: middle;
}
.font1 {
	font-family: Verdana;
	font-size: 12px;
}
a {
	transition: color 300ms;
	color: #86BD2F;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: color 300ms ease;
	-moz-transition: color 300ms ease;
	-o-transition: color 300ms ease;
}
a:hover {
	transition: color 300ms;
	-webkit-transition: color 300ms ease;
	-moz-transition: color 300ms ease;
	-o-transition: color 300ms ease;
	color: #000000;
}