#logo {
	color:#000000;
	font-weight:bold;
	font-size:11pt;
}
#navi ul { /* all lists */
	padding:0;
	margin: 0;
	list-style: none;
}
#navi li { /* all list items */
	float: left;
	position: relative;
	width: 110px;
	padding:0;
	margin: 0;
	text-align: left;
	cursor: default;
}
#navi li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background-color:#8997FF;
	BORDER-RIGHT: #000080 1px solid;
	BORDER-LEFT: #000080 1px solid;
	BORDER-BOTTOM: #000080 1px solid;
}
#navi li > ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}
#navi li:hover ul, #navi li.over ul { /* lists nested under hovered list items */
	display: block;
}
