/* 
   Another cascading style sheet
   Wes Huang, August 2003
*/

body { 
  color: black; 
  background: white; 
  font-family: Verdana, Arial, Helvetica, sans-serif;
/*  font-size: 84%; some people suggest percentages instead of size words */
  font-size: small;
  width: 45em;       /* I'd rather use max-width, but IE doesn't support it */
}

table.header {
  width: 100%;
  font-size: large;
  background: #0033FF;
}
td.header {
  background: #0033FF;
  color: white;
  padding: 0.5ex;
}


/*
   Classes to produce a tightly spaced table for an index to the page
   or to links from the page

*/
table.index {
   padding-left: 0.5em;
   padding-right: 0.5em;
}   
td.index {
   vertical-align: top;
   text-align: left;
}	 
ul.index {
   padding-left: 1.5em;
   margin-top: 0;
   margin-bottom: 0;
}

ul {
   padding-left: 1.5em;
   margin-top: 0;
   margin-bottom: 0;
}


td {
  margin: 0em; 
  padding: 0em; 
}