/* CSS Document */

html, body {
	margin: 0;
	padding: 0;
	background-color: #CCCCCC;
	overflow: hidden;
}

#menu {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 200px;
	background-color: #003366;
	overflow: auto;
	
	/* nur für IE: */
  	/**/
}

* html #menu {
height: expression((document.body.clientHeight) + "px");
}

#header {
	position: absolute;
	top:0;
	left: 200px;
	right: 0;
	height: 120px;
	background: #cccccc;
	text-align: center;
	
	/* nur für IE: */
	width: expression((document.body.clientWidth -200) + "px");
}

#container {
	position: absolute;
	top: 120px;
	left: 200px;
	bottom: 0;
	right: 0;
	overflow: auto;
	background-color: #CCCCCC;
	
	/* nur für IE: */
  	width: expression((document.body.clientWidth - 200) + "px");
  	height: expression((document.body.clientHeight -120) + "px");
}

#contentLeft {
	position: absolute;
	top: 20px;
	left: 15px;
	width: 185px;
}

#content {
	position: absolute;
	top: 20px;
	left: 220px;
	right: 5px;
padding-bottom: 20px;
}

#menu ul {
	position: relative;
	top: 120px;
	left: 10px;
	margin: 0;
	padding: 0;
	width: 190px;
	list-style: none;
}

#menu a {
	font-family: Verdana, Arial;
	font-weight: bold;
	color: #FFFFFF;
	width: 190px;
	display: block;
	text-decoration: none;
}

#menu a:hover {
	color: #FF9900;
}

#menu a.main {
	font-size: 13px;
	margin-top: 15px;
}

#menu a.sub {
	font-size: 11px;
	line-height: 18px;
}

#menu .active {
	color: #FF9900;
}
