.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
}

/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid #009dbf;
border-top-width: 0;
z-index: 100; /* zIndex should be greater than that of shadow's below */
width: 127px; /* default width for menu */
height: 50px;
}

.anylinkmenu ul{
margin: -6px 0px 0px 0px;
padding: 0;
list-style-type: none;
background-color: #006fa4;
}

.anylinkmenu ul li a {
width: 100%;
display: block;
padding: 2px 0px 0px 0px;
text-indent: 6px;
text-decoration: none;
color: #fff;
font-size: 11px;
font-weight: bold;
}

.anylinkmenu a:hover{ /*hover background color*/
background-color:#34bafa;
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: none;
visibility: hidden;
}