.menu {
z-index:100;
width:904px;
white-space:nowrap;
margin:0px auto;
background:rgb(230,153,90);
border-top:1px solid white;
height:22px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
padding:0;
margin:0px auto;
width:904px;
list-style-type:none;
text-align:center;
z-index:100;
}
.menu ul ul {
width:113px;
border-top:1px solid white;
z-index:100;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
float:left;
position:relative;
z-index:100;
width:113px;
}

.menu ul ul li {
width:113px;
position:relative;
z-index:100;
}

/* style the links for the top level */
.menu a, .menu a:visited {
font-family: "Arial", "sans-serif";
display:block;
font-size:8pt;
font-weight: bold;
/*line-height: 16pt;*/
text-decoration:none; 
color:#fff; 
border-left:1px solid #fff; 
background:rgb(230,153,90); 
height:18px;
padding-top:4px;
}

.menu table {position:absolute; top:0; left:0; border-collapse:collapse;;}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:rgb(230,153,90) bottom right no-repeat;

}
/* style the second level hover */
.menu ul ul a.drop:hover{
background:rgb(230,153,90) bottom right no-repeat;
}
.menu ul ul :hover > a.drop {
background:rgb(230,153,90) bottom right no-repeat;
}

/* 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:20px;
left:0; 
width:113px;
z-index:100;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:rgb(230,153,90); 
color:#000; 
height:auto; 
line-height:1em; 
padding:5px 10px; 
border-top:0px;
border-right:0px;
border-left:0px;
border-bottom:1px solid white;
font-size:7pt;
display:block;
z-index:100;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
color:#fff; 
background:orange;
/*height:22px;*/
}

.menu :hover > a, .menu ul ul :hover > a {
color:#fff;
background:orange;
/*height:22px;*/
}

/* 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; 
}
