/* Zuerst wird html und body auf 100% Höhe gesetzt
und eventuell vorhandene störende Abstände eliminiert. */
html, body
{
  height:100%;
  margin:0;
  padding:0;
  background-color:#e0e0e0;
}

#center
/* ist das Element, welches zentriert werden soll */
{
	padding:0;							/* es sind auch andere Angaben möglich, die dann allerdings bei der Breite und Höhe mit berücksichtigt werden müssen. */
	background-color:#FFFFFF;

  /* Angaben zu Breite und Höhe, diese können auch in em angegeben werden. */
  width:837px;      			/* Breite insgesamt 450px (448px + 2 x 1px Border) */
  min-height:604px;				/* Mindesthöhe insgesamt 300px (298px + 2 x 1px Border), bei genau dieser Höhe funktioniert die vertikale Zentrierung */

  /* jetzt wird die linke obere Ecke vertikal und horizontal zentriert */
  position:absolute;
  top:50%;
  left:50%;

  /* durch negative margins wird es jetzt um die Hälfte von Höhe und Breite nach oben und links verschoben */
  margin:-302px 0 0 -418px; /* jeweils die Hälfte der Gesamthöhe und -breite */
}

/* min-height für den IE */
* html #center {
  height:604px;             /* das selbe Maß wie oben bei min-height */
}


#header
{
	width:825px;
	height:152;
	margin:6px;
}

.submenu 
{
  font-family: Verdana;
  font-size: 11px;
  font-weight: bold;
  color: #333333;
  line-height: 15px;
  text-decoration: none;
}

.submenu:hover 
{
  font-family: Verdana;
  font-size: 11px;
  line-height: 15px;
  font-weight: bold;
  color: #FF9900;
  text-decoration: none;
}

.select
{
  font-family: Verdana;
  font-size: 11px;
  font-style: normal;
  font-weight: bold;	
  color: #333333;
  text-decoration: none;
  height: 14px;
  border: 1px solid #333333;
}


#links
{
	width:150px;
	height:440px;
	float:left;
}

#links img
{
	margin-top:5px;
	margin-left:32px;
}

#content
{
	//width:681px;
	width:450px;
	height:440px;
	float:left;
	font-family:Verdana;
	font-size:11px;
}

#news 
{
  font-family: Verdana;
  font-size: 10px;
  color: #333333;
}

#rechts
{
	width:231px;
	text-align:center;
	height:440px;
	float:left;
}

td
{
	font-family:Verdana;
	font-size:11px;
}

a
{
  color: #333333;       
  font-size: 11px;
  font-style: normal;
}
