a {
text-decoration: none
}

#menu {
width: 1000px;
background: pink;
float: left;
}

#menu ul {
list-style: none;
margin: 0;
padding: 0;
width: 125px;
float: left;
}

#menu a, #menu h2 {
font: 11px, sans-serif;
display: block;
text-decoration:none;
margin: 0;
padding: 2px 3px;
}

#menu h2 {
color: #fff;
background: #000;
text-transform: uppercase;
}

ul a {
color: #505050;
background: pink;
text-align:center;
}

#menu ul ul li a, #menu ul ul ul li a {
color: #ADD8E6;
background: black;
}

#menu ul li a:hover {
color: #505050;
background: #ADD8E6;
}

#menu li {position: relative;}

#menu ul ul {
position: absolute;
z-index: 500;
}

#menu ul ul ul {
position: absolute;
top: 0;
left: 100%;
}

div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}


