 /* common styling */
/* get rid of the default padding - margin and bullets */
.menu ul {
padding:0; 
margin:0;
list-style-type: none;
}
/* make menu horizontal */
.menu ul li {
float:left;
position:relative;
}


/* set up the default top level links */
.menu ul li a, .menu ul li a:visited {
display:block; 
text-decoration: none; 
height:1.4em;
font-weight:normal;
color:#61871C; 
border-bottom:1px solid #fff;
background:transparent; 
padding-left:0px; 
line-height:1.4em;
margin-right:2px;
margin-top: 1px;
text-align:center;
width:165px;
}
 
/* hack for IE5.5 to correct the faulty box model */
* html .menu ul li a {
width:168px;
w/idth:168px;

}

/* hide the drop down menu */
.menu ul li ul {
display: none;
}
/* remove all table style so that it does not interfere with the menu */
.menu table {
margin:-1px; 
border-collapse:collapse;
font-size:0.98em;
}

/* first line for IE7 and non-IE browsers, second line for IE5.5 and IE6 */

/* style the top level hover */
.menu ul li:hover a,
.menu ul li a:hover {
color:#90B748; 
border-bottom:1px solid #fffffe;
}

/* make the drop down menu show and correctly position it */
.menu ul li:hover ul,
.menu ul li a:hover ul 
{
display:block; 
background:transparent filter: alpha(opacity=95);
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=95);
opacity:0.9;
position:absolute; 
top:0.79em;
margin-top:11px;
left:0; 
width:166px;
border:1px solid #fff ;
background:#FFF;
border-top:0;
text-align:left;
}

/* style the drop down links with no hover */
.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {
text-align:left;
display:block; 
border:0;
margin:0;
color:#90B748;
font-weight:normal; 
font-size:0.98em;
height:auto; 
line-height:1em; 
padding:5px; 
width:156px;
background:#FFF;
}
/* style the drop down menu links when hovered */
.menu ul li:hover ul li a:hover,
.menu ul li a:hover ul li a:hover {
background:#E8F5D3; 
color:#49761F;
}

/* special styling for IE5.5 and IE6 - transparency is non validating */
.menu ul li a:hover ul {
background:transparent filter: alpha(opacity=95);
 filter: progid:DXImageTransform.Microsoft.Alpha(opacity=95);
opacity:0.9;
margin-top:6px; /* for IE5.5 faulty box model */
marg\in-top:10px; /* for IE6 */
}
/* IE5.5 hack for faulty box model in drop down menu */
.menu ul li a:hover ul li a {
background:#fff;
width:168px; /* for IE5.5 faulty box model */
width:168px; /* for IE6 */
}

.menu ul li a:hover ul li a:visited {
background:#FFF;
color:#090063;
width:168px; /* for IE5.5 faulty box model */
width:168px; /* for IE6 */
}