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

a:link.anchorclass, a:visited.anchorclass{
	color: #ccc; 
	text-decoration: none; 
	}
a:hover.anchorclass, a:active.anchorclass{
	color: white; 
	text-decoration: none; 
	}



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

.anylinkcss {
	top: 0px;
	left: 0;
	font: normal 10pt century gothic; 
	width: 200px; /* default width for menu */
	color: #333333; 
	border: 0px solid white;
	margin: 0px;
	padding: 2px;
	z-index: 100; /* zIndex should be greater than that of shadow's below */
	position: absolute;
	background: #dcbbfe;
	visibility: hidden;
	line-height: 16px;
	}

.anylinkcss ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: left;
	}

.anylinkcss ul li a {
	width: 200px;
	color: white;
	padding: 3px 0px;
	margin: 0px;
	display: block;
	border-bottom: 1px solid white;
	text-decoration: none;
	}

.anylinkcss a:hover { /*hover background color*/
	color: #262626;
	background: #eedffe;
	}

/* ######### class for shadow DIV ######### */


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