.new_menu {
	background-color: #4c7094;
	float: left;
	width:960px;
	position:relative;
	z-index:100;
}
/* remove all the bullets, borders and padding from the default list styling */
.new_menu  ul {
	padding:0;
	margin:0;
	list-style-type:none;
}

.new_menu  ul ul {
	width:192px;

}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.new_menu  li {
	float:left;
	width:192px;
	position:relative;
}

/* style the second level links */
.new_menu ul ul a,
.new_menu ul ul a:visited {
	background-color: #003366;
	color:#ffffff;
	min-height: 18px; 
	height:auto; 
	line-height:1em; 
	padding:5px 10px; 
	width:171px;
	text-align:left;
	border:1px solid #fff; 
}

/* yet another hack for IE5.5 */
* html .new_menu ul ul a{
	width:192px;
}

/* style the links for the top level */
.new_menu  a,
.new_menu  a:visited {
	display:block;
	font-size:1.1em;
	font-weight:bold;
	text-decoration:none; 
	color:#ffffff; 
	background-color: #4c7094;
	width:182px;
	height:30px; 
	text-align:left;
	padding-left:10px; 
	line-height:29px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .new_menu  a,
* html .new_menu  a:visited {
	width:192px;
	w\idth:181px;
}
.new_menu :hover > a {
	color: #ffffff;
	background-color: #003366;

}

/* style the second+ level hover */

.new_menu ul ul a:hover,
.new_menu ul ul a.drop:hover,
.new_menu ul ul :hover > a,
.new_menu ul ul :hover > a.drop {
	background-color: #ff9900;
}

/* style the second+ level drop */
.new_menu ul ul a.drop {
	background: url(/fileadmin/images/site/new_menu_pfeil_weiss.png)  no-repeat center right #003366;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
.new_menu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:30px;
	left:0; 
	width:192px;
}
/* another hack for IE5.5 */
* html .new_menu ul ul {
	top:30px;
	t\op: 31px;
}

/* position the third level flyout menu */
.new_menu ul ul ul {
	left:192px; 
	top:0;
	width:192px;
}
/* position the third level flyout menu for a left flyout */
.new_menu ul ul ul.left {
	left:-192px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.new_menu table {
	position:absolute; top:0; left:0;
}

.new_menu ul ul,
.new_menu ul li:hover ul ul,
.new_menu ul li:hover ul ul ul,
.new_menu ul li:hover ul ul ul ul,
.new_menu ul li:hover ul ul ul ul ul {
	visibility: hidden;
}

.new_menu ul li:hover ul,
.new_menu ul ul li:hover ul,
.new_menu ul ul ul li:hover ul,
.new_menu ul ul ul ul li:hover ul,
.new_menu ul ul ul ul ul li:hover ul {
	 visibility: visible;
}

.new_menu ul ul ul ul ul ul ul {
	 visibility: hidden !important;
}





