/* style the outer div to give it width */
.menu {
	width:750px; 
	font-size:0.85em;
	padding-bottom:200px;
}
/* remove all the bullets, borders and padding from the default list styling */
.submenu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.submenu li {
	float:left;
	position:relative;
}
/* style the links for the top level */
.submenu a, .submenu a:visited {
	color:#777777;
	font-size:11px;
	height:30px;
	line-height:29px;
	padding:1px 10px;
	text-decoration:none;
}

/* style the second level background */
.submenu ul ul a.drop, .submenu ul ul a.drop:visited {
	background:#029B33;
}
/* style the second level hover */
.submenu ul ul a.drop:hover{
	background:#029B33;
}
.submenu ul ul :hover > a.drop {
	background:#029B33;
}
/* style the third level background */
.submenu ul ul ul a, .submenu ul ul ul a:visited {
	background:#e2dfa8;
}
/* style the third level hover */
.submenu ul ul ul a:hover {
	background:#029B33;
}
.submenu ul ul ul :hover > a {
	background:#029B33;
}

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

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

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

/* style the second level links */
.submenu ul ul a, .submenu ul ul a:visited {
	background-image:url(../img/navi_hg.gif);
	background-repeat:repeat-y;
	color:##777777; 
	height:auto; 
	line-height:1em; 
	padding:5px 10px; 
	width:150px
	/* yet another hack for IE5.5 */
}
* html .submenu ul ul a {
	width:170px;
}

/* style the top level hover */
.submenu a:hover, .submenu ul ul a:hover, .submenu a.aktiv {
color:#029B33; 
}

.submenu a.aktiv {
background:none;
}
.submenu ul li a, .submenu ul li a.aktiv {
background:none;
}

.submenu ul li td a {
background-image:url(../img/navi_hg.gif);
}

.submenu :hover > a, .submenu ul ul :hover > a {
color:#029B33;
}

* html .submenu a:hover, * html .submenu a.aktiv:hover, * html .submenu ul ul a:hover {
color:#029B33; 
background:#fff;
}
* html .submenu :hover > a, * html .submenu ul ul :hover > a {
color:#029B33;
background:#fff;
}

/* make the second level visible when hover on first level list OR link */
.submenu ul li:hover ul,
.submenu ul a:hover ul,
.submenu ul a.aktiv:hover ul {
	visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.submenu ul :hover ul ul {
	visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.submenu ul :hover ul :hover ul ul {
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.submenu ul :hover ul :hover ul { 
	visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.submenu ul :hover ul :hover ul :hover ul { 
	visibility:visible;
}