/* remove the bullets, padding and margins from the lists */
.menunew 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 */
.menunew li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
.menunew table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:33px;
}

/* style all the links */
.menunew a {
display:block;
font-size:10px;
padding-top:10px;
padding-bottom:10px;
padding-left:6px;
padding-right:6px;
color:#ffffff;
text-decoration:none;
text-align: left;
font-size:12px;
font-weight:bold
}

, .menunew :visited
{

}

/* style the links hover */
.menunew :hover{
color:#FF9900;

}
.menunew ul li {width: auto; display:block; background:url(/images/menu_separator.gif) right no-repeat;}
.menunew ul li ul li {width: 186px; display:block; background-color:#949e7c; background-image:none; background-color:#E5E1E2}
.menunew ul li ul li a {color:#333333; font-weight:normal; border-bottom:1px dotted #999999; padding-top:4px; padding-bottom:4px; font-size:11px}
.menunew ul li ul li a:hover {font-weight:normal}

/* hide the sub level links */
.menunew ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
}
/* make the sub level visible on hover list or link */
.menunew ul li:hover ul,
.menunew ul a:hover ul{
visibility:visible;
}