/***************************************/
/* INFO:															 */
/* (STERN)-Hacks sind gueltig fuer IE6 */
/***************************************/
/*@import url('reset.css'); <--- integriere ich nicht, da sich dieses CSS mit dem bereits verwendeten nicht vertraegt */

* html body a, 
* html body a:hover { 
	background-color: transparent; 
}

* html { 
	padding: 0; 
	margin: 0;
}

html {
	height:100%;
}

body {
	margin:0px;
	padding:0px;
	position:relative;
	height:100%;
	text-align:center; /* Hack für IE, der das "margin:auto" nicht kennt? (part1) */
}

div#wrapper { 
	margin: 0 auto;
	width: 990px;
	text-align:left;	/* Hack für IE, der das margin:auto nicht kennt? (part2) */
	position:relative; /* hierauf beziehen sich jetzt alle Kindelemente */
	background-color:#fff;
	background-image:url('../../images/content_wrapper_bg.png');
	background-repeat:repeat-y;
}

div#header_wrapper {
	padding: 0px;
	height: 185px;
	margin: 0px;
	background-color:#fff;
}

div#language_menu_wrapper {
	position:absolute;
	width:190px;
	height:30px;
	top:185px;
	left:0;
}

/* linke Spalte */
div#col1 { 
	margin: 0px;
	padding: 0px;
	width: 190px;
	position:absolute;
	top:215px;
	left:0px;
}

/* Content Spalte */
div#col2 {
	margin:0px;
	padding:0px;
	width: 640px;
	margin-left:190px;
	min-height:750px; /* Mindesthoehe, da der Content das laengste Element sein muss! */
	background-image:url('../../images/content_bg.png');
	background-repeat:no-repeat;
	background-position:center bottom;
}
* html div#col2 {
	height: 750px; /* Mindesthoehe (s.o.) fuer den IE6, der min-height nicht kennt */
}

/* rechte Spalte */
div#col3 { 
	margin: 0px;
	padding: 0px;
	width: 160px;
	position:absolute;
	top:215px;
	right:0;
}



