ul { /* all lists */
	list-style: none;
	padding: 0;
	margin: 0;
}

#nav a { /* effects each link in menu bar */
	font-weight: normal;
	font-family: verdana, arial;
	font-size: 11px;
	color: #FFFF33;
	text-decoration: none;
	padding: 0px 10px;
}

#nav li li a { /* effects each cell in drop down */
	display: block;
	font-weight: normal;
	color: #FFFF33;
	background-color: #003399;
	padding: 0px 10px;
	border: 1px solid #003399;

}

#nav li li a:hover { /* effects each cell in drop down on hover */
	padding: 0px 10px;
	border: 1px solid #FFFF33;
	color: #FFFFFF;
	background-color: #0066CC;
	font-weight: normal;
	font-family: verdana, arial;
	font-size: 11px;
}

li { /* all list items */
	float: left;
	position: relative;
	width: 154px;
	text-align: left;
	cursor: default;
	background-color: #003399;
	border: solid #FFFF33;
	border-width: 1px 0;
}

li#first { /* effects left hand cell in menu bar */
	border-left-width: 1px;
}

li#last { /* effects right hand cell in menu bar */
	border-right-width: 1px;
}


li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 105%;
	left: 0px;
	background: url(ddmback.jpg) bottom left;
	font-weight: normal;
	padding: 0 0 0 0;
	border: 1px solid #FFFF33;
}


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;
}

li li {
	display: block;
	float: none;
	background-color: transparent;
	border: 0px;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}
