html {
	height: 100%;
	background: #EE7F00;
	}

body {
	font-family:Calibri;
	color: #004494;
	margin: 0;
	padding: 0;
	width:100%;
	height:100%;
	background: rgba(255,255,255,0.0);
	animation: bodybackground 20000ms infinite;
	animation-delay: 4500ms;					/* Verzögerung der Animation (Startet nach 3 Sekunde */
	-webkit-animation: bodybackground 20000ms infinite;
	}
	
@keyframes bodybackground {
	0% {background: rgba(255,255,255,0.0);}
	50% {background: rgba(255,255,255,0.9);}
	100% {background: rgba(255,255,255,0.0);}
	}
	
@-webkit-keyframes bodybackground {
	0% {background: rgba(255,255,255,0.0);}
	50% {background: rgba(255,255,255,1.0);}
	100% {background: rgba(255,255,255,0.0);}
	}

#main {
	background-color: #FFF3E7;
	width: 1000px;
	height: 680px;
	position: absolute;
	top: 30px;
	left: 50%;
	margin-left: -500px;
	background-image: url(../images/background.png);
	background-repeat: no-repeat;
    background-position: bottom;
	/*border: solid 1px #004494;*/
	-khtml-border-radius:10px;				/* sehr alte Versionen von Mozilla Firefox */
	-moz-border-radius:10px;				/* alte Versionen von Mozilla Fireox */
	-webkit-border-radius: 10px;			/* alte Versionen von Webkit-Browsern */
	border-radius:10px;						/* alle aktuellen Browser*/
	
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
	}

h1 {
	font-size:15pt;
	font-weight: 500;
	margin:0;
	letter-spacing: 1.2px;
	padding-top:28px;
	}

h2 {
	font-size:11pt;
	font-weight: 300;
	margin:0;
	letter-spacing: 1.2px;
	padding-top:25px;
	}
	
p {
	font-size:10pt;
	font-weight: lighter;
	letter-spacing: 1.2px;
	margin: 0;
	padding-top: 10px;
	}
	
a {
	font-size:11pt;
	color:#004494;
	text-decoration:underline;
	}

a:focus {
	color:#004494;
	outline:none;
	}
	
a:hover {
	color:#EE7F00;
	text-decoration:overline;
	}

	
#content {
	width: 500px;
	margin:auto;
	margin-top:22px;
	}

#name {
	font-size:13pt;
	font-weight: 500;
	margin:0;
	letter-spacing: 1.2px;
	padding-top:15px;
	}

#titel {
	font-size:9pt;
	font-style: italic;
	font-weight: lighter;
	letter-spacing: 0.6px;
	margin: 0;
	padding-top: 2px;
	}

#anschrift {
	font-size:11pt;
	font-weight: normal;
	letter-spacing: 1.2px;
	margin: 0;
	padding-top: 10px;
	}

#telefon {
	font-size:11pt;
	font-weight: normal;
	letter-spacing: 1.2px;
	margin: 0;
	padding-top: 10px;
	}

#kontakt {
	font-size:11pt;
	font-weight: bold;
	letter-spacing: 1.2px;
	margin: 0;
	padding-top: 8px;
	}
