.menu {
margin-top: 60px;
float: right;
background:#E8E8E8;
background-image: url(../img/repeat-menu.gif);
background-repeat: repeat-x;
_border-top: 1px solid #ffffff;
}

/* remove the bullets, padding and margins from the lists */
.menu ul{
list-style-type:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
.menu a, .menu :visited {
display:block;
font-size:10px;
width:109px;
padding:7px 0;
color:#000;
text-decoration:none;
margin-right:1px;
text-align:center;
}

.menu a {
background-color: transparent;
background-image: url(../img/opac.png) !important;
filter: alpha(opacity=70);	
}

/* style the links hover */
.menu :hover{
color:#000;
background:#F7D632 !important;
text-decoration: none;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul :hover ul{
visibility:visible;
}