@charset "UTF-8";
/* CSS Document */

.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
background: yellow;
}

/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
visibility: hidden;
padding-top: -2em;
margin-top: -2em;
font: normal  12px Verdana;
color: white;
line-height: 18px;
z-index: 300;
list-style: none;
 /* zIndex should be greater than that of shadow's below */


}



.anylinkmenu ul{
display: block;
padding: 0;
list-style: none;
list-style-image: none;
}

.anylinkmenu ul li a{
width: 100%;

display: block;

border: 1px solid black;

color:3c8f14;
padding: 5px 0;
text-decoration: none;
font-weight: bold;
text-indent: 7px;
width: 200px;
background: #f1df95;
}

.anylinkmenu a:hover{ /*hover background color*/
background: black;
color: white;
}

