﻿.selectedanchor{ /*CSS class that gets added to the currently selected anchor link (assuming it's a text link)*/
background: yellow;
}

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

.anylinkmenu{
	position: absolute;
	left: 0;
	top: 5px;
	visibility: hidden;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height: 15px;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	width: 150px; /* default width for menu */
}

.anylinkmenu ul{
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	margin: 0;
	padding: 0;
	list-style-type: none;	
}

.anylinkmenu ul li a{
	width: 165px;;
	display: block;
	padding:7px 0 6px 7px;
	text-decoration: none;
	text-indent: 5px;
	color:#464646;
	background-color:#FFF;
}

.anylinkmenu a:hover{ /*hover background color*/
	color: #000;
	background-image:url('../images/over_menu_bg.gif');
	background-repeat:repeat-x;
	background-color:#FFF;
	text-shadow: #cdcdcd 0.1em 0.1em 0.1em;
}


/* ######### class for shadow DIV ######### */

.anylinkshadow{ /*CSS for shadow. Keep this as is */
	position: absolute;
	left: 0;
	top: 0;
	z-index: 99; /*zIndex for shadow*/
	visibility: hidden;
	width:100%;

}