@charset "utf-8";
/* CSS Document */

body{
	background-color: #d0d1d4;/*#90caff;*/
	font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
	margin: 0;
	background-image: url(../images/linie.png);
	background-repeat: repeat-x;
}

a{
	color: #FFF;
	text-decoration: none;
	border: none;
}

img{
	border: none;
}

td{
	text-align: center;
}

ul{
	list-style-type: none;
	background-color:#999999;
}

h2{
	font-size: 18px;
	text-decoration: none;
	text-transform: none;
	font-style: normal;
	font-weight: normal;
}

.banner{
	position:relative;
	top: 0px;
	left: 0px;
	background-color:#FFF;
	height: 126px;
	width: 100%;
}

.balken{
	position: relative;
	top: 162px;
	left: 0px;
	background-color: #ee1c28;/*#417dc0; #0f87ff;*/
	height: 156px;
	width: 100%;
}

.headline{
	position: absolute;
	top: 75px;
	left: 5px;
	color: #000;
	font-size: 23px;
}

.logo{
	position: absolute;
	top: 0px;
	left: 585px;
	width: 515px;
	height: 150;
}

.mitte{
	position: relative;
	top: 0px;
	left: 50%;
	margin-left: -491px;
	width: 982px;
	height: 510px;
	background-color: #ee1c28;
	background-image: url(../images/linie_s.png);
	background-repeat: repeat-y;
}

.mittebanner{
	position: relative;
	top: -155px;
	left: 50%;
	margin-left: -491px;
	width: 982px;
	height: 126px;
}

.mittelinie{
	position: absolute;
	top: 36px;
	left:612px;
	z-index: 1;
}

.kleinelinie{
	position: absolute;
	top: 192px;
	left: 614px;
	width: 364px;
	height: 2px;
	background-color:#FFF;
}

.unterelinie{
	position: absolute;
	top: 471px;
	left: 0px;
	width: 980px;
	height: 2px;
	background-color:#FFF;
}

.unterstelinie{
	position: absolute;
	top: 508px;
	left: 0px;
	width: 980px;
	height: 2px;
	background-color:#FFF;
}

.dekobild{
	position: relative;
	top: 36px;
	left: 0px;
	height: 435px;
	width: 612px;
}

.kleinesbild{
	position: absolute;
	top: 36px;
	left: 614px;
	width: 364px; 
	height: 156px;
	z-index: 1;
}

.inhalt{
	position: absolute;
	top: 194px;
	left: 614px;
	width: 364px;
	height: 277px;
	font-size: 13px;
	z-index: 1;
	background-color: #979797;/*#90caff;#16afff;*/
	color: #000;/*;#004f9e;*/
}

.text{
	position:absolute;
	left: 20px;
	top: 0px;
	width: 324px;
	font-size: 14px;
	height: 277px;
}

.kontaktzeile{
	position: absolute;
	top: 481px;
	left: 400px;
	font-size: 13px;
	font-weight: bold;
	color:#FFF;
	height: 30px;
	width: 550px;
}

.kontaktzeile a:hover{
	text-decoration: underline;
}

.menu{
	position: absolute;
	top: 0px;
	left: 2px;
	width: 978px;
	height: 36px;
	z-index: 3;
	background-color: #979797;/*#90caff;*/
}

.inhalt a{
	color: #000;/*#004f9e;*/
}

.inhalt a:hover{
	background: #ee1c28;
	color: #000;
}

/********* Menu mit Dropdown und Round Corners************************************************************************************************************/

#nav, #nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	z-index: 3;
	font-size: 16px;
}

#nav a {
	display: block;
	width: 10em;
	height: 31px;
	color: #000;
	text-decoration: none;
	padding-left: 6px;
	z-index: 3;
	background: none;
}

#nav li {
	float: left;
	z-index: 3;
	/*width: 4.8em;*/
}

#nav a span{
    display: block;
	height: 31px;
	padding-right: 6px;
	z-index: 3;
	position: relative;
	top: 7px;
	left: 6px;
}

#nav a:hover
{
	color: #fff;
	padding-left: 6px;
	z-index: 3;
}

#nav a:hover span
{
	padding-right: 6px
	z-index: 3;
}

#nav li ul {
	position: absolute;
	top: 34px;
	width: 8.2em;
	left: -999em;
	background: #979797;/*#245abd;*/
	color:#FFF;
	/*opacity:0.7;*/
	filter:alpha(opacity=70);
	z-index: 3;
}

#nav li ul li:hover {
	background: #ee1c28;
	width: 8.2em;
	color: #004f9e;
	z-index: 3;
}

#nav li:hover ul {
	left: auto;
	z-index: 3;
}

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

#nav li:hover ul, #nav li.sfhover ul {
	left: auto;
}