@charset "UTF-8";
/* CSS Document */
/*7D8A2E C9D787 FFFFFF FFC0A9 FF8598*/

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF; /*Hintergrundfarbe ändern 
							mit: background: #ffffff url(images/bg1.jpg) left; kann man ein Hintergrundbild einfügen
							mit: background-attachment:fixed; scrollt das hintergrundbild nicht mit*/
	margin: 0;
	
	padding: 0;
	text-align: center;
	color: #000000;
}
#container {
	width: 1000px;  				/* Breite des Container */
	background: #FFFFFF; 		/* Hintergrundfarbe des Container */
	margin: 0 auto; 			/* das lassen wir so */
	border: 1px solid #FFFFFF; 	/* Rahmen des Container */
	text-align: left;
	 			/* Textausrichtung links */
}
#header {
	background: #FFFFFF  url(images/V1.jpg) right no-repeat; /* 	Hintergrundfarbe der Kopfzeile + 
																	Hintergrundbild mit Ausrichtung rechts ohne Wiederholung*/
	padding: 0 10px 0 20px;
	height:111px; /* Höhe der Kopfzeile */
	color: #FFFFFF;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {

	padding: 0 5px 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	
	background: #FFFFFF  url(images/V2.jpg) center no-repeat; 
		
	
	
}



#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
	border-top:#000000 solid 1px;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */	
}

#navigation {
	background: #FFFFFF url(images/V1Leiste.jpg) right no-repeat;
	
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	border-bottom:#000000 solid 1px;
	border-top:#000000 solid 1px;
	font-size: 24px;
}

#google{ background-color:#FFFFFF }



.title{ color: #FE5303;
			font-size: 32px;
			font-weight: bold;
}
p { font-size:18px}

h1 {}

 a:link { color:#FE5303; text-decoration:none; font-weight:bold;}
 a:visited { color:#FE5303; text-decoration:none; font-weight:bold;}
 a:focus { color:#FE5303; background-color:#FFFFFF; font-weight:bold;}
 a:hover {color:#FF0000;
	text-decoration:none;
	background-color:#FFFFFF;
	font-weight:bold;
}
 a:active { color:#0000EE; background-color:#FFFFFF; font-weight:bold;}
