div#menu
{
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 11px;
	z-index: 5;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#nav a {
	padding: 2px;			/* pad the contents of the each cell */
	font-weight: normal;
	color: #000000;
	text-decoration: none;
	line-height: 18px;
}

#nav li li a {
	display: block;
	font-weight: normal;
	color: #000000;
	border-bottom: solid 1px #000000;
	line-height: 16px;
	height: 16px;
}

#nav li li a:hover {
	background-color:  #92D9EC;					/* bgcolor of sub menu when hover over */
	line-height: 16px;
	height: 16px;
	border-bottom: solid 1px #000000;
}

#nav li {
	float: left;
	position: relative;
	text-align: center;
	cursor: default;
	background-color: transparent;  				/* this is the bgcolor of the top menu bar */
	border-width: 1px;
	color: #FFFFFF;
	text-decoration:none;
}

#nav li ul {
	list-style: none;
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width:100px;								/* for Netscape */
	background-color: #FFFFFF;					/* background color of the sub menu */
	border-left: solid 1px #000000;
	border-right: solid 1px #000000;
}

#nav li>ul {
	top: auto;									/* for Netscape */
	left: auto;
}

#nav li li {
	display: block;
	float: none;
	background-color: transparent;
	border: 0;
}

#nav li:hover ul, #nav li.over ul {
	display: block;
	border-top: solid 1px #000000;
}