/* Style sheet for EIW lecture notes */

/* Body style settings are the default for everything */
/* The body is 12 point normal times */
  BODY { background-color: white;
         background-image: url(eiwbg.gif); 
	 color: black; 
	 font-size: 12pt 
       }

/* top level headings are 16 point, bold, times-roman, centered */
  H1 { text-align: center;
       font-family: Times;
       font-size: 16pt;
       font-weight: bold;
       color: purple
     }

  /* 2nd level headings are 14 point, bold */

  H2 { text-align: left;
       font-family: Times;
       font-size: 14pt;
       font-weight: bold;
       color: purple
     }

  /* 3rd level headings are 12 point, bold */

  H3 { text-align: left;
       font-family: Times;
       font-size: 12pt;
       font-weight: bold;
       color: purple
     }

   /* DT look like H3 but are black. IE only?*/

  DT { font-weight: bold;
     }

  /* PRE is 12 point bold courier  */
  PRE { font-family: CourierNew;
         font-size: 10pt;
         color: blue;
       }
  /* PRE is 12 point bold courier  */
  PRE.codebox { font-family: CourierNew;
         font-size: 12pt;
         color: blue;
       }


  /* CODE is 12 point bold courier blue */
  CODE { Font-Family: CourierNew;
        font-size: 12pt;
        color: blue;
        }

  /* CODE.small is 10 point bold courier blue */
  CODE.small { Font-Family: CourierNew;
        font-size: 10pt;
        color: blue;
        }
  














