/*SIDE NAV */

.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
color:#white;
}


/* ######### Default class for drop down menus ######### */

.anylinkcss{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 0px solid black;
border-bottom-width: 0;
font: normal 12px arial;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #DDE8E3;
width: 140px; /* default width for menu */
background-image:url(../images/nav-arrow.gif);
background-position:left;
background-repeat:no-repeat;
padding-left:17px;
margin-top:-13px;
margin-left:8px;
}

.anylinkcss ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkcss ul li a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid #b7d4c7;
padding: 2px 0;
text-decoration: none;
text-indent: 5px;
color:#006633;
}

.anylinkcss a:hover{ /*hover background color*/
background: #b2d3c4;
color: white;
}

.anylinkshadow {
position: absolute;
left: 0;
top: 0;
z-index: 99; 
background: none;
visibility: hidden;
}

