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

.anylinkmenu{
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	line-height: 18px;
	z-index: 1000; /* zIndex should be greater than that of shadow's below */
	/*background: lightyellow; */
width: 100px; /* default width for menu */
	font-size: 14px;
	border: 1px solid #990000;
}

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

.anylinkmenu ul li a{
	width: 100%;
	display: block;
	text-indent: 3px;
	text-decoration: none;
	font-weight: bold;
	text-indent: 10px;
	padding-top: 2px;
	padding-right: 0;
	padding-bottom: 2px;
	padding-left: 0px;
	background: black;
	color: #FFFFFF;
}

.anylinkmenu a:hover{ /*hover background color*/
	background: black; 
    color: #FFFFFF;
	text-decoration: underline;
}



/* ######### 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: black;
visibility: hidden;
}
*/
