﻿/* Globale CSS Definitionen (Schriftarten, Grundsätzliches Layout, Farben) */
/** Ueberschreiben der Globalen CSS Einstellungen des Browsers **/

* {
	margin: 0;
	padding: 0;
}

/** Seiteneigenschaften **/

body {
	font: 100% Arial, Helvetica, Verdana, sans-serif;
	color: #000000;
}

a img {
	border-style:none;
}

.link {
	text-decoration: none;
}

/*** Ende Seiteneingenschaften ***/
/*** Containerdefintionen ***/



#container {
	position: relative;
	/*border: 2px solid #000000; /*schwarz*/
	width: 100%;
	height: 100%;
	color: #FFFFCC;

}

#footer {
	clear: left;
	position: fixed;
	bottom: 0px;
	left: 0px;
	right: 0px;
	/*border: 2px solid #0033CC; /*blau*/
	padding: 10px;
	background-color: #A08B63;
	height: 180px;*/
}

#footerleft {
z-index:5;
position: fixed;
left: 10px;
}

#footercenter {
position: fixed;
left: 320px;
bottom: 30px;
}

#logotext {
position: fixed;
z-index: 6;
bottom: 145px;
color: #5C4130;
font-size: 29px;
font-weight: bold;
left: 22px;

}

#footerright {
position: fixed;
right: 10px;
bottom: 10px;
}

h1 {
font-size: 2em;
font-weight: normal;
}

/*## Ende Containerdefinitionen ##*/
