.menu {
width:680px; 
font-size:14px;
position:relative;
z-index:99;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding: 30px 0 0 0;
margin:0;
list-style-type:none;
}
.menu ul ul {
width:120px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
position:relative;
background-image:none;
padding: 0;
margin: 0;
}

/* style the links for the top level */
.menu a,  .menu a:visited {
display:block;
font-size:14px;
font-weight: bold;
text-decoration:none; 
color:#000; 
padding: 0 5px;
margin: 0 5px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
padding: 0;
margin: 0 0 0 5px;;
width:120px;
background-color:#fff;
border: 1px solid #ccc;
}


/* position the third level flyout menu */
.menu ul ul ul{
left:100px; 
top:0;
width:100px;
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-100px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {position:absolute; top:0; left:0;}

/* style the second level links */
.menu ul ul a,  .menu ul ul a:visited {
font-size:12px;
font-weight: normal;
color:#000; 
height:auto; 
padding: 0 3px;
margin: 0 5px;
width:100px;
}

/* style the top level hover */
.menu a:hover{
color:#fff; 
background:#000;
}
.menu :hover > a{
color:#fff;
background:#000;
}
/* style the second level hover */
.menu ul ul a:hover{
color:#990000; 
background: none;
}
.menu ul ul :hover > a {
color:#990000;
background: none;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
visibility:visible;
}

/* Menüpunkt Shop ID3 Abstand links  */

.menu ul li#navID_3 {
margin: 0 0 0 50px;
}



