* {
	padding: 0;
	margin: 0;
}

body {
	background-color: gray;
	padding: 5px;
	font-family: Helvetica, Arial, sans-serif;
}

ul {
	list-style: none;
} 

ul li {
	float: left;
	padding-right: 1px;
	position: relative;
}

ul a {
	display: table-cell;
	vertical-align: middle;
	width: 134px;
	height: 50px;
	text-align: center;
	background: #69C;
	color: #FFF;
	text-decoration: none;
}

ul a:hover {
	background: #09C;
}

li > ul {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
}

li:hover > ul {
	display: block;
}

li > ul li {
	padding: 0;
	padding-top: 1px;
}

li > ul li > ul {
	left: 100%;
	top:0;
	padding-left: 1px;
}

li > ul li > ul li {
	width: 100px;
}

li:hover > a {
	background: #09C;
}

h1 {
	text-align: center;
	margin-top: 20px;
	border-bottom: 2px solid #009;
	margin-bottom: 10px;
}

h2 {
	text-align: left;
	margin-top: 40px;
	border-top: 2px solid #009;
	border-bottom: 2px solid #009;
	margin-bottom: 10px;
}

.darrow {
	font-size: 8pt;
	position: absolute;
	top: 20px;
	right: 4px;
}

table {
	margin-top: 50px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	border-collapse: collapse;
}

td, th {
	border: thin dotted gray;
}

th {
	background-color: #00BFFF;
	padding: 10px;
}

td {
	background-color: #A5DF00;
	padding: 5px;
}

p.note {
	color: blue;
}