/* ----------------------------------------------------- P A G E   L A Y O U T ------------------------------------------ */
@charset "utf-8";
body  {
	font: 100% Trebuchet, Arial, Helvetica, sans-serif;
	background: rgb(190,200,210);
	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 */
	color: #000000;
}
/* Hintergrundfarbe fuer Safari und Opera */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    body { background-color: rgb(190,200,210); }
}
.larskeitel #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
/* ----------------------------------------------------- HEADER ------------------------------------------ */

.larskeitel #header {
	background: #ffffff;
	background-image: url(../images/bg_lk_header.gif);
	height: 110px;
	margin: 0px;
	padding: 0px;  /* 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. */
	border-bottom: 1px solid #FFFFFF;
} 
.larskeitel #headerLeft {
	float: left;
	width: 240px;/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 0 0px 0 15px;;
}
.larskeitel #headerRight {
	float: right;
	width: 180px;
	padding: 0 0 0 0;
}
.larskeitel #headerCenter {
	margin: 0 195px 0 255px;
	padding: 0 0 0 0;
}
.larskeitel #headerHeadline {
	padding: 65px 0 0 0;
	font: 20px Trebuchet, Arial, Helvetica, sans-serif;
	text-align: left;
	color: #ffffff;
	font-style: italic;
}
.larskeitel #headerSubheadline {
	padding: 8px 0 0 0;
	font: 12px Trebuchet, Arial, Helvetica, sans-serif;
	text-align: left;
	color: #660033;
	font-weight: bold;
}
/* ----------------------------------------------------- LEFT COLUMN ------------------------------------------ */
.larskeitel #leftColumn {
	float: left;
	width: 235px;
}
.larskeitel .leftColumnText {
	margin: 10px 0px 10px 20px;
	padding: 10px 10px 10px 10px;
	font: 12px Trebuchet, Arial, Helvetica, sans-serif;
	text-align: left;
	color: #ffffff;
	background: rgb(115,125,130);
}
.larskeitel .leftColumnImage {
	margin: 10px 0px 10px 20px;
	padding: 0;
	vertical-align: top;
}
/* ----------------------------------------------------- MAIN CONTENT ------------------------------------------ */
.larskeitel #mainContent { 
	margin: 10px 0 0 240px;
	width: 520px;
	position: relative;
} 
.larskeitel .mainContentHeadline {
	margin: 0 0 0 16px; 
	padding: 0px 0 5px 0;
	font: 12px Trebuchet, Arial, Helvetica, sans-serif;
	text-align: left;
	color: #000000;
	font-style: italic;
	font-weight: bold;
}
.larskeitel .mainContentSubheadline { 
	padding: 4px 0 4px 16px;
	width: 524px;
	font: 12px Trebuchet, Arial, Helvetica, sans-serif;
	text-align: left;
	color: #ffffff;
	font-weight: bold;
	background:rgb(115,125,130);
}
.larskeitel .mainContentInnerbox { 
	margin: 10px 0 10px 16px;
}
.larskeitel .mainContentText {
	margin: 10px 0 10px 16px;
	font: 12px Trebuchet, Arial, Helvetica, sans-serif;
	text-align: left;
	color: rgb(75,80,85);
}
.larskeitel .mainContentImage {
	margin: 0px 0px 10px 10px;
	vertical-align: top;
}
.mainContentImage img {
	border-color: rgb(115,125,130);
}
.larskeitel .mainContentTop { 
	margin: 5px 15px 3px 0;
	font: 10px Trebuchet, Arial, Helvetica, sans-serif;
	width: 520px;
	text-align: right;
}
.larskeitel .mainContentTop a{
color: rgb(75,80,85);
text-decoration:none;
}
.larskeitel .mainContentTop a:hover {
color: #660033;
text-decoration:underline;
}
.larskeitel .mainContentEnd { 
	margin: 0px 0 15px 0;
	width: 540px;
	border-bottom: 4px solid rgb(115,125,130);
}
/* ----------------------------------------------------- SITE INFO ------------------------------------------ */
.larskeitel #footer { 
	padding: 0 15px 0 15px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#660033; 
} 
.larskeitel #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 */
	font: 11px Trebuchet, Arial, Helvetica, sans-serif;
	text-align: right;
	color: #ffffff;
}
/* ----------------------------------------------------- FLOATS ------------------------------------------ */
.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;
}
/* --------------------------------------------- T E X T   S T Y L E S -------------------------------------------------- */
h1  {
	margin: 0 !important;
	padding: 10px 0 0 0 !important;
	font: 18px Trebuchet, Arial, Helvetica, sans-serif;
	color: rgb(75,80,85);
	line-height: 20px;
	font-style: italic;
}
h2 {
	margin: 0 !important;
	padding: 10px 0 0 0 !important;
	font-size: 14px;
	line-height: 16px;
}
h3 {
	margin: 0 !important;
	padding: 10px 0 0 0 !important;
	font-size: 12px;
	color: #660033;
	line-height: 16px;
}
h4 {
	font-size: 12px;
	line-height: 16px;
}
.larskeitel #mainContentText ul {
	margin: 0 0 0 30px!important;
	padding: 0 !important;
}
.larskeitel #mainContentText li {
	margin: 0 !important;
	padding: 0 !important;
}
.fliesstext { 
	font: 12px Trebuchet, Arial, Helvetica, sans-serif;
	text-align: left;
	color: rgb(75,80,85);
}
.zeilenabstand {
	line-height: 2em;
}
a:link {color: rgb(75,80,85); text-decoration:underline}
a:visited {color: #660033; text-decoration:none}
a:active {color: #660033; text-decoration:none}
a:hover {color: #660033; text-decoration:underline}

.style1 {color: #ffffff}