/* remove the bullets, padding and margins from the lists */
.topmenu ul{
list-style-type:none;
padding:0;
margin-right:0;
margin-top:0;
margin-bottom:0;
margin-left:1px
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.topmenu li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
.topmenu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-3px;
top:25px;
}

/* style all the links */
.topmenu a, .topmenu :visited {
display:block;
font-size:11px;
/*width:107px;*/
width:93px;
height:21px;
padding-top:5px;
color:#FFFFFF;
background:#9E81E26;
text-decoration:none;
margin-right:2px;
text-align:center;
background-image: url(../images/bg_menu.gif);
background-repeat: repeat-x;
background-position: top;
}
/* style the links hover */
.topmenu :hover{
color:#FFF222;
}

/* hide the sub level links */
.topmenu ul ul {
visibility:hidden;
position:absolute;
width:101px;
height:0;
}

/* Top border the sub level links */
.topmenu ul li li {
border: 1px solid #FFF;
}

/* make the sub level visible on hover list or link */
.topmenu ul li:hover ul,
.topmenu ul a:hover ul{
visibility:visible;
}
