/*------------------------------------------------------------------------------------------------------*/

  /** @section browser reset **/

option { padding-left: 0.4em }

* html body * { overflow:visible; }
* html iframe, * html frame { overflow:auto; }
* html frameset { overflow:hidden; }

/* (en) Forcing vertical scrollbars in Netscape, Firefox and Safari browsers */
/* (de) Erzwingen vertikaler Scrollbalken in Netscape, Firefox und Safari Browsern */
html { height: 100%; margin-bottom: 1px; }
body {
	/* (en) Standard values for colors and text alignment */
	/* (de) Vorgabe der Standardfarben und Textausrichtung */ 
	text-align: left; 
	margin: 0;
	background: white url("../image/layout/bg.png") center bottom no-repeat fixed;
	}
	
/*------------------------------------------------------------------------------------------------------*/

  /** @section base layout | Basis Layout **/

/* 
* |-------------------------------|
* | #header                       |
* |-------------------------------|
* | #top_nav                      |
* |-------------------------------|
* |      #breadcr.      |         |
* |---------------------|         |
* |                     |         |
* |     #main           | #right  |
* |    flexible         | 200px   |
* |                     |         |
* |-------------------------------|
* | #footer                       |
* |-------------------------------|
* */

/*------------------------------------------------------------------------------------------------------*/
	
#wrapper {
	position: relative;
	margin: 0 auto 20px;      		/* standardkonforme horizontale Zentrierung */
	width: 1000px;
	border: 0px red solid;
	
	}	

#header {
	position: relative;
	margin: 0 auto;
	width: 1000px;
	height: 171px;
	background: url("../image/layout/head.png") top center no-repeat;
	}		

#navigation { 
	position: relative; 
	background: none;
	z-index: 2;
	}	

#navigation2 {
	position: absolute;
	top: 145px; 
	left: 15px;
	height: 20px;
	color: white;
	}

#navigation2 a { color: white; }

.link-home { position: absolute; top: 0; left: 0; }
.link-kontakt { position: absolute; top: 2px; left: 39px; }
.link-impressum { position: absolute; top: 0; left: 77px; }

#breadcrumb {
	position: relative;
	height: 25px;
	line-height: 25px;
	margin: 0;
	padding: 0;
	background: #D3D3D3 url("..") top center no-repeat;
	z-index: 1;
	display: none;
	}

#main_left, #main_right { 
	overflow: hidden;
	margin: 0 auto;
	width: 1000px;
	}
	
#left_area { 
	position:relative;
	float: left;
	width: 188px;	
	}	
	
#right_area { 
	position:relative;
	width: auto;
	margin: 0 0 0 200px; 	
	}	

#right_area_content, #left_area_content { overflow: hidden; background: white;}

#left_area_content { padding: 0 0 0 0; }
#right_area_content { padding: 0 0 0 0; }

#kontakt-content {
	padding: 5px;
	border: 1px solid #ACACAD;
}

.InnerBorder {
	overflow: hidden;
	padding: 15px 10px 0 10px;
	border: 1px solid #ACACAD;
}

#footer {
	position:relative;
	height: 40px;
	color: black;
	font-size: 0.8em;
	line-height: 40px;
	margin: 0 0 0 246px; 	
	padding: 0 30px;
	background: url("../image/layout/footer.png") bottom center no-repeat;
	}

#footer a, #footer a:visited, #footer a:hover { color: black; text-decoration: none; }
#footer a:hover { color: black; text-decoration: underline; }
	
	
/* (en) Backup for correct positioning */
/* (de) Absicherung korrekte Positionierung */
#header, #main, #footer { clear:both; }	
	
/*------------------------------------------------------------------------------------------------------*/

  /** @section clearing methods **/

.clear { clear: both; }
	
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden
	}

.clearfix { display: block }
.floatbox { overflow:hidden }
#ie_clearing { display: none } 

/*------------------------------------------------------------------------------------------------------*/
	