/* style the outer div to give it width */
.neuesmenu {
width:160px;
font-size: 12px;
font-family: Arial;
font-weight: bold;
color: #006600;
}

/* remove all the bullets, borders and padding from the default list styling */
.neuesmenu ul 
{
padding:0;
margin:0;
list-style-type:none;
}

.neuesmenu ul ul
{
width:160px;
}

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

/* style the links for the top level */
.neuesmenu a, .neuesmenu a:visited
{
display:block;
font-size: 12px;
font-family: Arial;
font-weight: bold;
color: #006600;
text-decoration:none;
text-align:left; 
width:149px; 
border-width: 1px; border-style: solid; border-color: #ccc #888 #555 #bbb;
background: #E8F1DE; 
padding-left:10px; 
line-height:22px;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .neuesmenu a, * html .neuesmenu a:visited
{
width:160px;
w\idth:149px;
}

/* style the second level background */
.neuesmenu ul ul a.drop, .neuesmenu ul ul a.drop:visited
{
background:#E8F1DE;
}

/* style the second level hover */
.neuesmenu ul ul a.drop:hover
{
background:#FFFFFF;
}

.neuesmenu ul ul :hover > a.drop
{
background:#FFFFFF;
}

/* style the third level background */
.neuesmenu ul ul ul a, .neuesmenu ul ul ul a:visited
{
background: #E8F1DE;
}

/* style the third level hover */
.neuesmenu ul ul ul a:hover
{
background: #ffffff;
}

. menu ul ul ul :hover > a
{
background: #ffffff;
}

/* style the table so that it takes no part in the layout - required for IE to work */
.neuesmenu table {border-collapse:collapse; border:0; position:absolute; left:0; bottom:-1px;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.neuesmenu ul ul
{
visibility:hidden;
position:absolute;
top:0px;
left:161px; 
width:160px;
}

* html .neuesmenu ul ul
{
top:-24px;
}

/* position the third level flyout menu */
.neuesmenu ul ul ul
{
left:310px; 
bottom:0;
width:150px;
}

/* position the third level flyout menu for a left flyout */
.neuesmenu ul ul ul.left
{
left:-160px;
}


/* style the second level links */
.neuesmenu ul ul a, .neuesmenu ul ul a:visited
{
background:#E8F1DE; 
color:#006600; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
width:139px
/* yet another hack for IE5.5 */
}

* html .neuesmenu ul ul a
{
font-size: 12px;
font-family: Arial;
font-weight: bold;
color: #006600;
width:160px;
w\idth:139px;
}


/* style the top level hover */
.neuesmenu a:hover, .neuesmenu ul ul a:hover
{
color:#006600;
font-size: 12px;
font-family: Arial;
font-weight: bold;
color: #006600;
background:#ffffff;
}

.neuesmenu :hover > a, .neuesmenu ul ul :hover > a
{
color:#006600;
font-size: 12px;
font-family: Arial;
font-weight: bold;
color: #006600;
background:#ffffff;
}

/* make the second level visible when hover on first level list OR link */
.neuesmenu ul :hover ul
{
visibility:visible;
height:auto;
}

/* keep the third level hidden when you hover on first level list OR link */
.neuesmenu ul :hover ul ul
{
display:none;
}

/* keep the fourth level hidden when you hover on second level list OR link */
.neuesmenu ul :hover ul :hover ul ul
{
display:none;
}

/* make the third level visible when you hover over second level list OR link */
.neuesmenu ul :hover ul :hover ul
{ 
display:block;
bottom:0;
}

/* make the fourth level visible when you hover over third level list OR link */
.neuesmenu ul :hover ul :hover ul :hover ul
{ 
display:block;
bottom:0;
}
