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

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

.selinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
line-height: 25px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #FFFFFF;
width: 150px; /* default width for menu */
}

.selinkmenu ul{
margin: 0;
padding: 0px;
padding-right:8px;
list-style-type: square;
}

.selinkmenu ul li a{
width: 100%;
display: block;
text-indent: 3px;
padding: 2px 0;
padding-left:8px;
text-decoration: none;
text-indent: 5px;
font-weight:bold;
color:#444444;
font-size: 13.5px;
}

.selinkmenu a:hover{ /*hover background color*/
background: #FF7700;
color: #000000;
}

.selinkmenu a:active{ /*active background color*/
background: #FF6600;
color: #000000;
}

/* ######### 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;
}