/* Grundstruktur mit Kopf Navi Haupt und Fuss */

/* Alle Strukturen auf null setzen */
* {
  margin: 0;
  padding: 0;
}
/* Grundaufbau der Seite */
body {
	color: #990000;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 0.9em;
	background-color: #006600;
	background-image: url(images/body.jpg);
	line-height: 1.4em;
}
/* Scrollbalken für Firefox erzwingen */
html {
  height: 101%;
}
/* Containerinhalt formatieren */
#container {
	width: 1200px;
	color: #990000;
	background-color: #dcffdc;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}
/* Seitenkopfinhalt formatieren */
#kopf {
	color: #990000;
	background-color: #006600;
	height: 118px;
	position: relative;
	background-repeat: no-repeat;
	background-image: url(images/kopf.jpg);
}
/* Überschrift h1 für Seitenkopf festlegen */
#kopf h1 {
	font-family: "Times New Roman", Times, serif;
	font-style: italic;
	color: #FFFF00;
	font-size: 220%;
	position: absolute;
	float: left;
	padding-top: 88px;
	padding-bottom: 4px;
	padding-left: 20px;
	letter-spacing: normal;
	font-weight: lighter;
	left: -1px;
	height: 28px;
	top: 0px;
}
/* Hauptnavi (horizontal oben formatieren) */
#navi {
	background-color: #009900;
	text-align: right;
	background-image: url(images/navi.jpg);
	font-size: 14px;
	text-decoration: none;
	font-style: normal;
	font-weight: bold;
	font-variant: small-caps;
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	padding-left: 10px;
	background-position: center;
	position: relative;
}
#navi li {
  margin: 0;
  display: inline;
  list-style-type: none;
}
#navi ul {
  margin-bottom: 0;
}
#navi a {
	color: #FFFF00;
	padding-top: 5px;
	padding-right: 6px;
	padding-bottom: 4px;
	padding-left: 6px;
	font-variant: small-caps;
	font-weight: bold;
	font-size: 0.9em;
	font-style: normal;
	text-decoration: none;
}
#navi a:hover, 
#start #navi01 a,
#gala #navi02 a,
#baum #navi03 a,
#ueberuns #navi04 a,
#kontakt #navi05 a,
#stellen #navi06 a, 
#agb #navi07 a,
#impressum #navi08 a,
#datenschutz #navi09 a
{
  text-decoration: none;
  color: #990000;
  background-color: #dcffdc;
  padding-bottom: 5px;
  border-bottom-style: none;
  background-image: url(images/navi_a.jpg);
}
/* Hauptinhalt formatieren */
#haupt {
	position: relative;
	padding-top: 20px;
	padding-right: 30px;
	padding-bottom: 20px;
	padding-left: 30px;
}
/* Fussteil formatieren */
#fuss {
	border-top: 1px solid #990000;
	background-color: #CCFFCC;
	font-size: 1em;
	padding-right: 20px;
	padding-bottom: 12px;
	padding-left: 20px;
	color: #000000;
	font-style: normal;
	font-family: "Courier New", Courier, monospace;
	padding-top: 12px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #990000;
	margin-bottom: 1px;
	height: 30px;
	width: auto;
}
/* Link formatieren */
a {
	outline: none;
	color: #990000;
}
a:link {
	color: #990000;
}
a:visited {
	color: #990000;
}
a:hover, a:focus {
  text-decoration: underline;
}
a:active {
	color: #990000;
	background-color: #DCFFDC;
}
/* Überschrift h2 formatieren */
h2 {
	font-size: 150%;
	color: #990000;
	margin-top: 1em;
}
/* Sonderformatierung für Textinhalte */
span {
	font-style: italic;
	font-weight: bold;
}
