/*page layout first*/

body{
	min-width: 750px;
}
#links {
   	width: 130px;
	float: left;
	padding: 0px;
	border: 1px solid black;
}
#mitte {
	width: 580px;
	float:left;
	/*margin-top:100px;*/
	/*border: 1px dotted black;*/
	margin-left: 5px;
}
#rechts {
	width:90px;
	float:left;
	margin-left:5px;
	border: 1px solid silver;
}
/* page content */
div#pageheader {
	background-color: #EEE;
	font-family: verdana, sans-serif;
	border: 1px solid black;
	font-size: 11px;
	padding: 2px;
	margin-top: 0px;
}
.group { /* a group of items*/
	border: 1px solid black;
	border-top: 0px;
	font-size: 13px;
	padding: 5px;
}
.item {  /* an item consists of a header/text combination*/
	font-family: verdana, sans-serif;
	font-size: 11px;
	text-decoration: none;
	margin-top: 5px;
	margin-bottom: 5px;
}
.center {
				text-align: center;
}
.head {
	font-weight: bold;
	text-decoration: none;
}
.text {
	padding-top: 5px;
	text-decoration: none;
}
.indent {
	padding-left: 10px;
}
.underline {
	text-decoration: underline;
}
.texttt {
	font-family: monospace;
}
/* styles for left menu */
ul#menu {
	width: 130px;
	float: left;
	margin: 0; padding: 0;
	background-color: #FFFFFF;
	border: 1px solid silver;
}
ul#menu li {
    list-style: none;
	margin: 0.2em;
	padding: 0.0em;
    border: 1px solid gray;
    background-color: #EEE;
}
ul#menu a {
	text-decoration: none;
	font-family:monospace;
   	color: maroon;
	margin-left:8px;
	display: block;
}
ul#menu a:hover {
	color: blue;
}
ul#menu a#title {
	font-weight: bold;
}


