/* CSS Document */
@charset "utf-8";
/* Grundaufbau */
html, body {
	height:100%;
	width:100%;
	margin:0px;
}
/* Schrift */
* {
	font-family:"Verdana";
	letter-spacing:1.5px; /* Zeichen abstand */
}
/* Links */
a:link, a:visited {
	font-size:16px;
	color:#E46865;
	text-decoration:none;
}
a:active, a:hover, a:focus {
	font-size:16px;
	color:#FF0000;
	text-decoration:none;
}