body {
  min-width: 500px;  /* Minimum width we accept when the browser is resized*/
}

#container {
  padding-left: 200px;   /* Left Column width, fixed*/
  padding-right: 150px;  /* Right Column width, fixed */
}

#container .column {
  float: left;
  position: relative;
}

#header {
	position:relative;
	line-height:50px;
	margin:5;
	color: white;
	padding-left:20px;
	background-image:url(images/header-klar.gif);
	height: 110px;
}

#center {
	width: 100%;	/* The central column has a variable width */
 	}

#itulist {
}

#left {
  width: 135px;        /* LC width */
  margin-left: -100%;  
  right: 200px;        /* LC width */
  padding:30px 20px;
	background-color: #99FF99;
	border-top-style: double;
	border-right-style: double;
	border-bottom-style: double;
	border-left-style: double;
	border-top-color: #996600;
	border-right-color: #996600;
	border-bottom-color: #996600;
	border-left-color: #996600;
}

#right {
  width: 150px;          /* RC width */
  margin-right: -150px;  /* RC width */
}

#footer {
  clear: both;	/* We "clear" floated elements on both sides */
}

