.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
background: #ffcdab;
}

/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border-bottom:1px solid #fff;
font: normal 11px Verdana;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #ffefe4;
 /* default width for menu */


}

.anylinkmenu ul{
	float:left;
margin: 0;
padding: 0;
list-style-type: none;

}

.anylinkmenu ul li a{

display: block;
text-indent: 3px;
border-left:1px solid #fff;
border-right:1px solid #fff;

border-top:1px solid #fff;
padding: 2px 0;
text-decoration: none;
font-weight: normal;
text-indent: 5px;
background:#fff1e7;
font-size:11px;
color:#ee6103;
width:200px;

}
.anylinkmenu ul li a.lastbrdr{
	border-bottom:1px solid #fff;
}
.anylinkmenu a:hover{ /*hover background color*/
background: #fcdac3;
color: #ee6103;
}


/* ######### 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: #333;
visibility: hidden;



}