body {
  background-color: #FFFFFF;
  font-family: arial,verdana,helvetica,sans-serif;
} 

a:link {color: #0000aa} 
a:visited {color: #444444} 

h1 {
display: block;
color: navy;
font-size: 18pt;
font-weight: bold;
padding: 1px 0px;
}

h2 {
display: block;
color: blue;
font-size: 14pt;
padding: 5px 0px;
}

h3 {
color: teal;
font-size: 12pt;
text-transform: uppercase;
padding: 0px 0px;
}

p {
  color: black;
}

div.centered {
	margin-left: 30%;
	margin-right: 30%;
}

.NB {padding:10px;
     margin: 10px;
     border: 1px dotted black;
     background-color: #EEF;
     }

#menu {
	width: 100%;
	float: left;
	text-align: left;
}

#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 10.6em;
	float: left; /*make lists floated so that they are contained correctly inside the floated div*/
}

#menu a, #menu h2 {
	font: bold 11px/16px arial, helvetica, sans-serif;
	display: block;
	border-width: 1px;
	border-style: solid;
	border-color: #ccc #888 #555 #bbb; /* top, right, bottom, left borders */
	margin: 0;
	padding: 2px 3px;
}

#menu h2 {
	color: #fff;
	background-color: #0f0;
	text-transform: uppercase;
}

#menu a {
	color: #00ff00;
	background-color: transparent;
	text-decoration: none;
}

/* Changes color and background of highlighted pop out menu */
#menu a:hover {
	color: #00aa00;
	background-color: #ccc;
}

/* Position the pop-out drop downs; 
make the parent <li> elements into containing blocks */
#menu li {
  position: relative;
}

/* Position the pop-out drop downs;
absolutely position the children of the parent <li> elements (sub-sub-menus)
so that they appear to the right of the parent drop down (sub-menu)
*/
#menu ul ul ul {
	position: absolute;
	top: 0;
	left: 100%;
}

/* Ensure that menus appear OVER THE TOP of any existing text instead of 
pushing other text down */
#menu ul ul {
	position: absolute;
	z-index: 100;
}

/* Hide each level of sub lists (pop out menus) */
div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

/* Display each level when highlighted */
div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}

.sig {position:relative;
      bottom:-4px}