.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
}

/* ######### Default class for drop down menus ######### */
.anylinkcss{
position: absolute;
left: 0;
top: 0;
margin-top:9px;
visibility: hidden;
border-bottom-width: 0;
font: normal 12px Arial;
color:#004961;
line-height: 20px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
width: 150px; /* default width for menu */
}

.anylinkcss ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkcss ul li a{
width: 100%;
display: block;
color:#004961;
padding: 2px 0;
text-decoration: none;
text-indent: 10px;
border-bottom:1px solid #77a240;
}

.anylinkcss a:hover{ /*hover background color*/
background: #77a240;
color: #fff;
}

/* ######### class for shadow DIV ######### */

.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
margin-top:9px;
z-index: 99; /*zIndex for shadow*/
background: #e6e6e6;
visibility: hidden;
}