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

.anylinkcss{
	position: absolute;
	left: 0px;
	top: 0px;
	line-height: 18px;
	z-index: 500;
	width: 120px; /* default width for menu */
	background-color: #FFFFFF;
	visibility: hidden;
	margin-top: -18px;
}

.anylinkcss ul{
	margin: 0;
	padding: 5px;
	list-style-type: none;
}

.anylinkcss ul li a{
	width: 100%;
	display: block;
	text-indent: 3px;
	padding: 1px 0;
	text-decoration: none;
	font-weight: bold;
	text-indent: 5px;
}

.anylinkcss a:hover{ /*hover background color*/
	background: #0099CC;
	color: #FFFFFF;
}

.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: black;
visibility: hidden;
}

