#menu {
width: 180px; /* set width of menu */
background: #CCCCCC;
} 

#menu ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
}

/* style, color and size links and headings to suit */
#menu a, #menu h2 {
font: bold 13px arial, helvetica, sans-serif;
display: block;
border-bottom:1px solid #CCCCCC;
border-top:none; border-left:none; border-right:none;
line-height:30px;
margin: 0;
padding: 2px 3px;

}

#menu h2 {
color: #fff;
background: #000;
text-transform: uppercase;
}

#menu a {
color: #0066FF;
background: #FFFFFF;
text-decoration: none;
}

#menu a:hover {
color: #FFFFFF;
background: #0099FF;
}

#menu li {
/* make the list elements a containing block for the nested lists */
position: relative;
width:180px;
}
#menu li a span { background:url(bullet_go.gif) no-repeat; background-position:135px 0px; padding-right:120px;}
#menu li a span:hover { background:url(bullet_go_over.gif) no-repeat; background-position:135px 0px; padding-right:120px;}

#menu ul ul ul {
position: absolute;
top: -1px;
left: 100%; /* to position them to the right of their containing block */
width: 100%; /* width is based on the containing block */
border-right:1px solid #CCCCCC; border-left:1px solid #CCCCCC; border-top:1px solid #CCCCCC;
}

div#menu ul ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}
