ul.menu {
	display: inline-block;
	position: relative;
	margin: 0px;
	padding: 0px;
}
ul.menu li {
	padding-left: 2px;
	padding-right: 6px;
	height: 30px;
	list-style-type: none;
	list-style-position: inside;
	font-family: times, serif;
	font-style: italic;
	font-weight: bold;
	font-size: 18pt;
	color: #0000ff;
	white-space: nowrap;
}
ul.menu li a {
	display: inline-block;
	height: 30px;
	text-align: left;
}
ul.menu ul {
	display: none;
	position: relative;
	left: 116px; /* override in html style same as ul.menu width if necessary */
	top: -28px;
	z-index: 1 !important; /* ensures menus higher on page pop out in front of subsequent menus (except in IE - watch out!) */
	margin: 0px;
	padding: 0px;
	width: 110px;
	background-color: #ffe5b4;
	text-align: left;
	border-left: 1px solid blue;
	border-top: 1px solid #e8d0a3;
	border-right: 1px solid #e8d0a3;
	border-bottom: 1px solid #e8d0a3;
	box-shadow: 6px 6px 3px gray;
	-moz-box-shadow: 6px 6px 3px gray;
	-webkit-box-shadow: 6px 6px 3px gray;
}
ul.menu ul li {
	background-color: #ffe5b4;
}

ul.menu li:hover {
	color: #6060ff;
}
ul.menu > li:hover { /* important to select only direct child list items (no grandchildren), otherwise list items on submenus will also get the hover underline */
	border-bottom: 1px solid blue;
}
ul.menu li:hover > a { /* important to select only direct child anchors (no grandchildren), otherwise anchors on submenus will all be white on white */
	/*color: white;*/
}
ul.menu li:hover > ul { /* important to select only direct child ulists (no grandchildren), otherwise all submenus will display */
	display: inline-block;
}

