@charset "utf-8";
body,html  {
	background: #fff;
	margin: 0px; 
	padding: 0px;
	text-align: center; /* this centers the container in IE 5* browsers.*/
}
.thrColAbsHdr #container { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 950px;  /* using 20px less than a full width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
.thrColAbsHdr #sidebar1 {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 58px;
}
.thrColAbsHdr #mainContent { 
	margin: 0 80px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	top: 0px;
}
.thrColAbsHdr #sidebar2 {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 58px;
}
.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;
}
#indexKop{
	margin-top: 10px;
	position: relative;
	background-image: url(../images/page_elements/kader_indexkop2.gif);
	background-repeat: no-repeat;
	height: 143px;
	width: 794px;
}
#fotosartsen,#menuRechts{
	margin-top: 10px;
}
#fotosartsen{
	position:relative;
	width: 613px;
}
#menuRechts{
	position: absolute;
	top: 150px;
	left: 626px;
}
.menuKader{
	background-image: url(../images/page_elements/kader_klein.gif);
	background-repeat: no-repeat;
	width: 168px;
	height: 96px;
	margin-bottom: 10px;
}
#torso{
	position:relative;
	top: 10px;
	width:236px;
}
#textMainpage{
	position: absolute;
	left: 246px;
	margin-left:10px;
	width: 355px;
	top:-3px;
}
#faqMenu{
	background-image: url(../images/page_elements/kader_faq.gif);
	background-repeat: no-repeat;
	width:236px;
	height:569px;
}
