.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
colour: #5BBA47;
}

/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border-bottom-width: 0px;
margin-left:-13px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: black;
width: 250px; /* default width for menu */
border:0 none;
color:#FFFFFF;
font-family:Arial,Helvetica,sans-serif;
font-size:12pt;
font-weight:bold;
padding:5px 13px 5px;
text-align:left;
/* white-space:nowrap; ######### */
}

.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkmenu ul li a{
color: white;
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid black;
padding: 5px 0;
text-decoration: none;
font-weight: bold;
text-indent: 0px;
}

.anylinkmenu a:hover{ /*hover background color*/
background: black;
color: #5BBA47;
}

/* ######### REMOVED Alternate multi-column class for drop down menus ######### */

/* ######### class for shadow DIV ######### */

.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: -20px;
z-index: 99; /*zIndex for shadow*/
background: transparent;
visibility: hidden;
}