body {
	font-family: Tahoma, Helvetica, Arial, sans-serif;
	font-size: 10pt;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	background-color:#FFF7CE;
	color: #0051C6;
	background-image: url(bilder/_bck.jpg);
	background-repeat: repeat-x;
}

.gelb, .gelbKursiv, .gelbFett, .gelbKursivFett {
	background-color:#FFFF00;
	display: inline;
}
.gelbKursiv, .gelbKursivFett {
	font-style: italic;	
}
.gelbFett, .gelbKursivFett {
	font-weight:bold;
}
.klein {
	font-size: 8.5pt;
}


.twoColFixLtHdr h1 {
	font-size: 14pt;
}
.twoColFixLtHdr h2 {
	font-size: 12pt;
}
.twoColFixLtHdr h3 {
	font-size: 9pt;
}
.twoColFixLtHdr img {
	border: 0;
}
.twoColFixLtHdr #container {
	width: 742px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin: 0 auto;
} 
.twoColFixLtHdr #header {
	/*background: #DDDDDD;*/ 
	/*padding: 3px 0 4px 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin-top:7px;
	margin-bottom: 0px;
} 
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */
	/*padding: 15px 10px 15px 20px;*/
	padding: 0;
	margin: 0;
	background-color: #63A2FF;
}
.twoColFixLtHdr #sidebar1 a
{
	vertical-align:top;
	width:150px;
	background-color:#63A2FF;
	display:block;
	text-decoration: none;
	padding-top:5px;
	padding-bottom:5px;
	padding-left: 10px;
	color:#FFFBD6;
	font-weight:bold;
	border-bottom-width: 1px;
	border-bottom-style: groove;
	border-bottom-color: #0051C6;
}
.twoColFixLtHdr #sidebar1 a:link {
}
.twoColFixLtHdr #sidebar1 a:visited {
}
.twoColFixLtHdr #sidebar1 a:active {
}
.twoColFixLtHdr #sidebar1 a:hover {
	background-color:#397DDE;
}

.twoColFixLtHdr #mainContent a {
	background-color:#FFFF00;
	font-weight: bold;
}

.twoColFixLtHdr #mainContent {
	margin: 0 0 0 160px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0;
	height: auto;
} 

.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

