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


/* ######### Default class for drop down menus ######### */

.anylinkcss{
position: absolute; 
left: 0;
top: 0;
visibility: hidden;
border-left: 1px solid #0096d4; border-right: 1px solid #0096d4; border-bottom: 1px solid #0096d4; 
border-bottom-width: 0;
font-family:Arial, Helvetica, sans-serif; font-size:12px; color:#ffffff;
line-height: 17px;
z-index: 100; /* zIndex should be greater than that of shadow's below */ 
background-color:#0096d4;

width: 200px; /* default width for menu */
}


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

.anylinkcss ul li a{
width: 100%;
display: block;
text-indent: 5px;
border-bottom: 1px solid #1a61ac;
font-family:Arial, Helvetica, sans-serif; font-size:18px; color:#ffffff;
padding: 6px 6px 6px 13px;
text-decoration: none;
text-indent: 0px;
background-color:#0096d4;
}

.anylinkcss a:hover{ /*hover background color*/
background: #1a61ac;
color: white;
}

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

.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: black;
visibility: hidden; 
}









