/* 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;
font-family: arial,sans-serif;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:30px;
}

/* style all the links */
.menu a, .menu :link, .menu :visited {
display:block;
font-size:12px;
font-weight: bold;
width:129px;
background-image:url(images/menuf.png); background-repeat: no-repeat;
padding:7px 0;
color:#FFF;
text-decoration:none;
text-transform:uppercase;
margin-right:1px;
text-align:center;
}

/* style all the links */
.ddown a, .ddown :link, .ddown :visited {
display:block;
font-size:12px;
width:129px;
padding:2px 0;
color:#FFF;
background-image:url(images/menudb.png); background-repeat: no-repeat;
text-decoration:none;
text-transform:none;
text-align:center;
text-transform:uppercase;
}

/* style the links hover */
.menu :hover{
color:#FFF;
background-image:url(images/menub.png); background-repeat: no-repeat;
}

.ddown :hover{
color:#FFF;
background-image:url(images/menudf.png); background-repeat: no-repeat;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:142px;
height:0;
}

