@charset "utf-8";
/* CSS Document */

.lnk_red, .lnk_yellow, .lnk_orange, .lnk_blue {
	display: block;
	color: #000000;
	background-color: #B9BABC;
	line-height: 30px;
	font-size: 14px;
	padding: 0px 0px 0px 30px;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid #E8E9EB;
	cursor:pointer;
}

.lnk_red {
	background: transparent url(../images/square_red.gif) 5px center no-repeat;
}

.lnk_yellow {
	background: transparent url(../images/square_yellow.gif) 5px center no-repeat;
}

.lnk_orange {
	background: transparent url(../images/square_orange.gif) 5px center no-repeat;
}
.lnk_blue {
	background: transparent url(../images/square_blue.gif) 5px center no-repeat;
}

/* Main menu */


#main_menu {
	height: 35px;
	position: absolute;
	width: 910px;
	left: 50%;
	margin-left: -460px;
	background-color: #2F2F31;
	zoom: 1;
	top: 104px;
	z-index: 3;

}

#main_menu .corn_l {
	height: 35px;
	width: 11px;
	position: absolute;
	top: 0px;
	left : 0px;
	background: transparent url(../images/mnu_corn_left.gif) center left no-repeat;
	z-index: 1;
}

#main_menu .corn_r {
	height: 35px;
	width: 11px;
	position: absolute;
	top: 0px;
	right: 0px;
	background: transparent url(../images/mnu_corn_right.gif) center right no-repeat;
	z-index: 2;
}


/* First Level */

ul.menu, ul.menu ul {
	padding:0px;
	margin:0px;
        list-style-type: none;
	padding-left:5px;
	z-index:100;
	line-height:13px;
	padding-left: 12px;

}
ul.menu li {
    float: left;
	color:#f4efd6;
}
ul.menu a {
	color:white;
        display: block;
	padding: 11px 19px;
	font-weight: bold;
	text-decoration:none;
	font-size: 13px;
}
ul.menu li a.active {
	color:#ffffff;
	background-color: #D2001D;
}
ul.menu a:hover {
	background-color:#D2001D;
	color:#ffffff;

}

/* Fï¿½r Unterpunkte keine Float-Eigenschaft */
ul.menu ul li {
    float:none;
    background-color: transparent;
	border: solid 1px #D2001D;
}

/* Links auf Unterpunkten sollen die Hintergrundfarbe ï¿½ndern */
ul.menu ul li.hover, ul.menu ul li:hover {
    background-color: #D2001D;
	border: solid 1px #D2001D;
}


/* Zweite Ebene */
ul.menu ul {
    margin:0px;
    padding: 0px;
    position: absolute;
    background-color: #D2001D;
    display: none;
    width: 180px;
    font-size: 12px;
}
ul.menu ul a{
	padding-top:5px;
	padding-bottom: 5px;
	color: white;
	font-weight:normal;
	font-size: 12px;
	border-right: solid 0px #ffffff;	
}
ul.menu ul a:hover{
    background-color: #D2001D;
}
 /* Zweite Ebene anzeigen */
ul.menu li.hover ul, ul.menu li:hover ul  {
    display: block;
}