ul#menu {
	/* remove bullets */
	list-style: none;
	/* remove left margin in IE */
	margin: 0;
	/* remove left margin in Gecko */
	padding: 0;
	width: 192px;
	float: left;
	
	/* IE only */
	filter: dropShadow(color=gray, offX=2, offY=2, positive=1);
}

ul#menu li {
	font: bold 12pt Arial, Helvetica, sans-serif;
	color: white;
	border: 1px solid white;
	margin: 4px;
	background-color: #069;
}

ul#menu a {
	color: white;
	text-decoration: none;
	display: block;
	padding: 4px;
	/* makes the entire containing element a clickable region in IE
	creates layout issue in Gecko */
	width: 100%;
	border-left: 8px solid #09C;
}

/* corrects layout issue in browsers that recognize child selectors (i.e. NOT IE) */
ul#menu>li>a {
	width: auto;
}

ul#menu a:hover {
	background-color: #09C;
	border-left: 8px solid #9CF;
}

ul#menu a#selectedMenuItem {
	background-color: #09C;
	border-left: 8px solid #9CF;
}