#menu {
width: 100%; /* set width of menu */
background: #;
} 
#menu ul { /* remove bullets and list indents */
list-style: none;
margin: 0;
padding: 0;
background: #00adef;
/*filter: alpha(opacity=90);
opacity: .9;*/
}
/* style, color and size links and headings to suit */
#menu a, #menu h2 {
font: bold 11px/16px arial, helvetica, sans-serif;
display: block;
border-width: 1px;
border-style: none;
border-color: #;
margin: 0;
padding: 7px 8px;
}
#menu h2 {
color: #caebfc;
background: #;
text-transform: uppercase;
}
#menu h2:hover {	/* main menu item when mouse over */
color: #caebfc;
background: #;
}
#menu a {
color: #47479d;
background: #;
text-decoration: none;
}
#menu a:hover {
color: #caebfc;
background: #47479d;
}
#menu h1 a {
color: #caebfc;
display: block;
background: #;
}
#menu h1 a:hover {
color: #00adef;
background: #47479d;
}
/* Vertical Pop Out Menu */


#menu li {
/* make the list elements a containing block for the nested lists */
position: relative;
} 
#menu ul 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 */
}

/* Hiding and Revealing using :hover */


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;}

/* Fixing it for IE! */


<!--[if IE]>
<style type="text/css" media="screen">
body {
behavior: url(css/csshover.htc); /* call hover behaviour file */
font-size: 100%; /* enable IE to resize em fonts */
} 
#menu ul li {
float: left; /* cure IE5.x "whitespace in lists" problem */
width: 100%;
}
#menu ul li a {
height: 1%; /* make links honour display: block; properly */
} 
#menu a, #menu h2, #menu h1 {
font: bold 1em/1.4em arial, helvetica, sans-serif; 
/* if required use em's for IE as it won't resize pixels */
} 
</style>
<![endif]-->