.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
background: black;
}

/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position:absolute;
left: 0;
top: 0;
padding-top:15px;
visibility: hidden;
border: 0px;
border-bottom-width: 0;
font: normal 11px Verdana;
line-height: 20px;
z-index:100; /* zIndex should be greater than that of shadow's below */
width: 200px; /* default width for menu */
}
.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkmenu ul li a{
width: 100%;
display: block;
text-indent: 0px;
border-bottom: 0px;
padding: 0px 0px 10px 0px;
text-decoration: none;
font-weight: bold;
text-indent: 20px;
}

.anylinkmenu a:hover{ /*hover background color*/
background: black;
color: white;
}

/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkmenucols{
position: absolute;
width: 200px;
visibility: hidden;
border: 0px solid black;
padding: 5px;
font: normal 11px Verdana;
z-index: 100;
background-color:#000000; /*zIndex should be greater than that of shadow's below*/
}

.anylinkmenucols li{
padding-bottom: 0px;
}

.anylinkmenucols .column{
float: left;
padding: 0px 0px;
margin-right: 0px;
}

.anylinkmenucols .column ul{
margin: 0;
padding: 0px 0px 10px 0px;
list-style-type:circle;
}

.anylinkmenucols .column a hower{
margin: 0;
padding: 0px 0px 10px 0px;
list-style-type:circle;
background:#000000;
visibility:hidden;
}


/* ######### 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:#000000;
visibility: hidden;
}