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



.anylinkmenu{
position: absolute;
right: 0;
top: 0;
visibility: hidden;
/*border: 1px solid #000;*/
/*border-bottom-width: 0;*/
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #bc7f0a;
	text-transform: uppercase;
	font-family: Helvetica, Arial, sans-serif; 
	font-weight: bold;
	font-size: 11px;

width: 180px; /* default width for menu */
}

.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
z-index: 100; /* zIndex should be greater than that of shadow's below */

}

.anylinkmenu ul li a{
color: #fff;
width: auto;
display: block;
text-indent: 3px;
border-bottom: 1px solid #000;
padding: 2px 0 2px 12px;
text-decoration: none;
font-weight: bold;
z-index: 100; /* zIndex should be greater than that of shadow's below */

}

.anylinkmenu a:hover{ /*hover background color*/
background: #f2f0e3;
color:#d47c0b;
}




