/* @author: Marco Filax */

	html, body, form, fieldset {
	margin: 0;
	padding: 0;
	}

/* Body */
	body {
		color: #000000;
		font-family: Verdana;
		margin:0;
		padding:0;
		font-size:30px;
		font-weight:bold;
		overflow: hidden;							/*	sorgt dafür das bei IE nicht 2 leisten angezeigt werden. anscheinend von FF ignoriert*/
	}

/* Hintergrund bild */
	.background {
		position: fixed ; 							/*	für FF*/
		left: 0px;									/*	Abstand Links*/
		bottom: 0px;								/*	Abstand unten*/
		background-color:#eef8f0;					/*	Hintergrund farbe*/
		background-position:bottom left;		 	/*	welcher abstand is wichtig?*/
		background-attachment:fixed; 				/*	für IE*/
		background-image:url(../bg.jpg);			/*	Bild*/
		background-repeat:repeat-x ;				
		overflow:auto;								/*	scrolleiste*/
		height:100%;								/* 	höhe*/
		width:100%;									/*	breite*/
	}

	.link, .link:hover, .link:active {
		border:none;
		
	}

	img, img:hover, img:active {
		border:none;
	}
	
	/* horizontale mitte finden */
	.horizon{
		position:absolute;
		width:100%;
		top:50%
	}
	
	/* Positionierung */
	.position {
		text-align:center;
		vertical-align:bottom;
		font-size:x-large;
		font-weight:bold;	
		position:absolute;
		left:50%;
		width:800px;
		height:560px;
		margin-top:-280px;
		margin-left:-400px
	}



