@charset "utf-8";
/* CSS Document */

/* 
###############
# ALLGEMEINES #
###############
*/
* {
	padding: 0;
	margin: 0;
}
/* formatierung bilder ohne rand auch wenn sie verlinkt sind */
img, a img {
	border: 0;
}
/* formatierung body */
body {
	font-family: Verdana, Arial, Helvetica, san-serif;
	font-size: 70%;
	line-height: 1.2em;
	background-color: #FFF;
}
/*Standardtformatierungen*/
h1,h2,h3,h4,h5,h6,ol,ul,li,dl,dt,dd,
input,textarea,select{
	font-family: Verdana, Arial, Helvetica, san-serif;
	color: #333;
	text-align: left;	
}
/* Standardtformatierung Absatz */
p {
	font-size: 1.2em;
	line-height: 1.2em;
}
ul,li {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
}

/* 
#################################
# Standardtformatierung KLASSEN # 
#################################
*/
/* Element aus einem Float befreien */
.clear {
	clear: both;
}
/* Anzeige eines Elementes unterbinden */
.none {
	display: none;
}
/* Elemente rechts oder links */
.leftalign {
	float: left;
}
.rightalign {
	float: right
}
.blau {
	color: #004C9A;
}

/*
############################
# positionen div container #
############################
*/
#wrap {
	position: absolute;
	top: 25%;
	left: 50%;
	width: 600px;
	height:400px;
	margin-left: -300px;
	margin-top: -100px;
	border: #004C9A 1px solid;
	background-color: #FFF;
}
#logo {
	position: absolute;
	top: 10px;
	left: 260px;
	width: 100px;
	height: 100px;
}
#inner {
	position: absolute;
	top: 110px;
	left: 50px;
	width: 500px;
	height:240px;
	text-align: center;
}
#inner h1 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-align: center;
	font-size: 2.6em;
	line-height: 1.1em;
	margin: 5px 0 5px 0;
}
#inner h2 {
	text-align: center;
	font-size: 1.2em;
	line-height: 1.1em;
	margin: 5px 0 20px 0;
}
#footer {
	position: absolute;
	top: 355px;
	left: 50px;
	width: 500px;
	height: 45px;
	text-align: center;
	font-size: 1.2em;
	line-height: 1.2em;
}
#footer a:link, #footer a:visited {
	font-size: 1.0em;
	line-height: 1.3em;
	color: #000;
	text-decoration: underline;
	
}
#footer a:hover {
	text-decoration: underline;
	color: #004C9A;
}