<!--
body {
   background-color: green;
   color: white;
   font-family: Arial, Helvetica, sans-serif;
}
body li { 
   list-style-type: none;
}   
h1 {
   text-align: center;
}
#menu {
   position: fixed;
   width: 18%;
}
#menu li {
   list-style-type: none;
   margin-left: -2em;
   text-align: left;
}
#menu a {
   display: block;
   border: 2px darkgreen outset;
   padding-left: 10px;
   text-decoration: none;
   color: white;
   font-size: 120%;   
}   
#menu a:hover {
   background-color: black;
   border: 3px lightgreen inset;
}
#menu h2 {
   text-align: center;
}
.content {
   position: relative;
   left: 20%;
   width: 80%;
   background-color: green;
}
.message {
  color: red; 
  text-align: center;
  font-weight: bold;
}
   
.content div {
   width: 75%;
 }
 
.content h2 {
   border-top: 0px black double;   
}
.warn  { 
   color: black;
   font-weight: bold; }
   
.emlink {
   color: lightblue; }
-->