html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.2;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Additional New Top CSS */
table img {
	display: block;
}
p {
	margin-bottom: 1rem;
}
strong {
	font-weight: bold;
}
blockquote {
	display: block;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 40px;
	margin-right: 40px;
}

/* Start Legacy CSS */
A:hover {
	text-decoration: underline;
	color: #336699;
}
A:link {
	text-decoration: none
}
A:visited {
	text-decoration: none
}
A:active {
	text-decoration: none
}
a {
	text-decoration: none;
}
body {
	background-color: #ffffff;
	color: #660033;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
}
h2 {
	font-size: 140%;
}
h3 {
	font-size: 120%;
}
h4 {
	font-size: 100%;
}
pre {
	font-family: Courier New, Courier, monospace;
	font-size: 80%;
}

table {
	border-collapse: collapse;
}
td, th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	text-align: left;
	vertical-align: top;
}
th {
	font-weight: bold;
	vertical-align: bottom;
}
ul {
	list-style-type: square;
}
#demoBox {
	border-color: #000000;
	border-style: solid;
	border-width: 1px;
	padding: 8px;
	width: 24em;
}
.footer {
	margin-bottom: 0px;
	text-align: center;
}

/* Boxed table styles */

table.boxed {
	border-spacing: 2px;
	empty-cells: hide;
}
td.boxed, th.boxed, th.boxedHeader {
	background-color: #ffffff;
	border-color: #000000;
	border-style: solid;
	border-width: 1px;
	color: #000000;
	padding: 2px;
	padding-left: 8px;
	padding-right: 8px;
}
th.boxed {
	background-color: #c0c0c0;
}
th.boxedHeader {
	background-color: #808080;
	color: #ffffff;
}

/* New CSS Migration */
nav {
	background-color: black;
	min-height: 20px;
	width: 795px;
}

nav a {
	color: orange;
}

nav ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-evenly;
}

nav ul li {
	color: white;
	display: block;
	float: left;
	padding: 2px 3px;
	position: relative;
	text-decoration: none;
	transition-duration: 0.5s;
}

nav ul li a {
	color: white;
}

nav ul li a:hover,
nav ul li a:focus-within {
	color: #666;
	cursor: pointer;
}

nav ul li:focus-within a {
	outline: none;
}

nav ul li ul {
	background-color: black;
	visibility: hidden;
	opacity: 0;
	min-width: 100%;
	width: auto;
	white-space: nowrap;
	position: absolute;
	transition: all 0.5s ease;
	margin-top: 2px;
	padding-bottom: 3px;
	left: 0;
	display: none;
}

nav ul li:hover > ul,
nav ul li:focus-within > ul,
nav ul li ul:hover,
nav ul li ul:focus {
	visibility: visible;
	opacity: 1;
	display: block;
}

nav ul li ul li {
	clear: both;
	width: 100%;
}
