/*Container zum Zentrieren, der im wrapper enthaltenen Elemente, also des Gesamtlayouts*/
html, body {
	margin:		0;
	padding:	0;
	color:		#000000;
	background:	#000000;
	font-family:Arial, Helvetica;
  height:		100%; /* Das will der IE. */
}
html>body {
	/* Das will der Rest. Safari kann kein min-height, daher wird hier
	 * eventuell etwas abgeschnitten, wenn die zentrierte Box größer
	 * als das Fenster ist */
	height:		auto;
	min-height:	340px;/*4em;*/
	min-width:	460px;/*20em;*/
}
#wrapper {
	margin:		0;
	text-align:	center;
	/* Jetzt wird sie zentriert. */
	position:	absolute;
	top:		50%;
	left:		50%;
	/* Jetzt steht die linke obere Ecke genau am Mittelpunkt. Noch. */
	margin-top:	-170px;/*-1em;*/  /* == halbe Zeilenhöhe. */
	margin-left:	  -150px; /* == halbe Breite des galeriebildes, da dies zentriert sein soll.     */
}
#content {
  position: absolute;
  left:0px;
  top:0px;
  width: 460px;
  height:340px;
/*  background-color:#ff6600;*/
}

#navigation{
  position: relative;
  left:0px;
  top:0px;
  width: 455px;
  height:10px;
  padding:0px;
  margin:0px 0px 10px 0px;
  float:left;
}

#leiste {
  position:absolute;
  left:0; 
  top:-5px;
}

#contentBild {
  position: relative;
  left:0px;
  top:0px;
  float:left;
  clear:left;
}

#contentText {
  margin: 0px 0px 10px 15px;
  float:left;
  height:300px;
  width:145px;
  position:relative; 
}
#contentText2 {
  position:absolute;
  left:0; 
  bottom:0;
}
#zurueck {
  margin: 0px 0px 0px 0px;
  position: relative;
  clear:left;
  top:0px;
  text-align:left;
}
p {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  vertical-align:bottom;
  color:#ffffff;
  font-size: 11px;
  line-height:15px;
  text-align:left;
}
img {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}
a {
 text-decoration:underline;
 color:#ffffff;
}

