
#menu {
width: 185px; /* set width of menu */
background:#020266;
border-bottom: 1px solid #90bade;
border-top: 1px solid #90bade;
} 

#menu ul{ /* remove bullets and list indents */
list-style: none;
text-align:center;
margin: 0;
padding: 0;
background:#020266;
}

#menu ul li ul{
width: 190px;
text-align:left;
border-bottom: 2px solid #90bade;
border-top: 2px solid #90bade;
border-right: 2px solid #90bade;
}


/* style, color and size links and headings to suit */
#menu a, #menu h2 {
font: bold 14px/16px arial, helvetica, sans-serif;
display: block;
margin: 0;
padding: 5px 0 5px 3px;
}

#menu h2.sub {
background: transparent url(../images/001_21.gif) right no-repeat;
}



#menu a.active {
color:#B1E001;
background: #020266;
text-decoration: none;
}

#menu a.special {
color:#FF0000;
}


#menu h2 {
color: #fff;
font-weight:bold;
text-transform: uppercase;
}

#menu a {
display:block;
color: #fff;
background: #020266;
text-decoration: none;
}

#menu a:hover {
display:block;
color:#00CCFF;
background: #020266;
}

#menu li {
/* make the list elements a containing block for the nested lists */
position: relative;
}

#menu ul ul{
position: absolute;
top: 0;
left: 100%; /* to position them to the right of their containing block */
width: 100%; /* width is based on the containing block */
}

div#menu ul ul,
div#menu ul li:hover ul
{display: none;}

div#menu ul li:hover ul,
div#menu ul li:hover ul
{display: block;}

