.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
 color:#fc9116;
}

/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid #cccccc;
border-bottom-width: 0;
font: normal 11px arial;
line-height: 16px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #006D6A;
width: 150px; /* default width for menu */
}

.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkmenu ul li a{
width: 99%;
display: block;
text-indent: 3px;
color:#ffffff;
font-weight:normal;
border-bottom: 1px solid #ffffff;
padding: 2px 0;
text-decoration: none;
text-indent: 5px;
}

.anylinkmenu a:hover{ /*hover background color*/
background: #429082;
color: #000000;
font-weight:bold;
text-decoration:none;
}

/* ######### Alternate multi-column class for drop down menus ######### */


.anylinkmenucols{
position: absolute;
width: 200px;   /*Original value was 350*/
left: 0;
top: 0;
visibility: hidden;
border: 1px solid #cccccc;
padding: 10px;
font: normal 11px Verdana;
z-index: 100; /*zIndex should be greater than that of shadow's below*/
background: #006D6A;
}

.anylinkmenucols li{
padding-bottom: 3px;
}

.anylinkmenucols .column{
float: left;
padding: 2px 5px;
margin-right: 3px;
background: #006D6A;
}

.anylinkmenucols .column ul{
margin: 0;
padding: 0;
list-style-type: none;
}



/* ######### class for shadow DIV ######### */


.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 95; /*zIndex for shadow*/
background: black;
visibility: hidden;
}