.menu {
width:710px; 
font-size:11px;
float:right;
position:relative;
margin-top:3px;
margin-right:0px;
z-index:100;
height:19px;
font-family:arial, Helvetica, sans-serif;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
float:left;
padding: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;
width:82px;
position:relative;
margin-right:5px;
}
/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-size:12px;
font-weight:bold;
text-decoration:none;  
width:82px; 
border:0;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:82px;
w\idth:82px;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:19px;
left:0; 
width:120px;
border-top:2px;
border-top-color:#0066FF;
border-top-style:solid;
float:left;
}
/* another hack for IE5.5 */
* html .menu ul ul {
top:19px;
t\op:19px;
}

/* 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 {
/*background-color:#666666;*/
background-color:#66CCFF;
color:#FFFFFF; 
height:15px;
padding:2px 15px; 
width:120px;
/* yet another hack for IE5.5 */
}
* html .menu ul ul a{
width:120px;
w\idth:120px;
}


/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color:#FFF;
background:#CCCCCC;
text-decoration:none;
font-size:12px;
font-weight:bold;
}

.menu :hover > a, .menu ul ul :hover > a {
color:#FFF;
background:#CCCCCC;
}

/* 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; 
}

.menu ul ul li {
width:120px;
border-bottom:1px;
border-bottom-color:#ffffff;
border-bottom-style:solid;
filter: alpha(opacity=90);
}
