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


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

.anylinkcss{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 0px solid #695E4A;
border-bottom-width: 0px;
font: normal 10px Arial, Helvetica, sans-serif;
line-height: 20px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #887E6E;
width: 150px; /* default width for menu */
}

.anylinkcss ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkcss ul li a{
width: 150px;
display: block;
color: #ffffff;
border-bottom: 1px solid #ffffff;
padding: 0px 0 0 5px;
text-decoration: none;
font-weight: normal;
}

.anylinkcss a:hover{ /*hover background color*/
background: #695E4A;
color: white;
}

/* ######### Alternate multi-column class for drop down menus ######### */

/*
.anylinkcsscols{
position: absolute;
left: 0;
top: 10;
visibility: hidden;
border: 1px solid black;
padding: 0px;
font: normal 11px Arial;
z-index: 80; zIndex should be greater than that of shadow's below
background: #695E4A;
}

.anylinkcsscols .column{
width: 150px;
float: left;
}

.anylinkcsscols .column ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkcsscols li{
padding-bottom: 3px;
}*/

/* ######### class for shadow DIV ######### */


.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 60; /*zIndex for shadow*/
background: #695E4A;
visibility: hidden;
}