ul { /* all lists */
	padding: 0;
	list-style-image: none;
	list-style-type: none;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
#navPadLeft {
	width: auto;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #660000;
	padding: 0px;
}

#nav li { /* all list items */
	float: right;
	position: relative;
	width: 10em;
	text-align: left;
	border: thin dotted #660000;
	background-color: #990000;
	padding-left: 0.5em;
	padding-top: 0.25em;
	padding-bottom: 0.25em;
}

#nav li:hover, #nav li.over {/*all list items, hover */
	background-color: #660000;
	border: 1px dotted #FF6666;
}

#nav li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1.75em;
	left: 0;
}
#nav a:link, #nav a:visited {
	color: #FF6666;
}

#nav a:hover, #nav a:active {
	background-color: #660000;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

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;
}

#nav li:hover ul, #nav li.over ul { /* lists nested under hovered list items */
	display: block;
	background-color: #FF6666;
}
#nav a {
	width: 10em;
	display: block;
}
