/* Make all body text black 10-point tahoma with 16-point vertical spacing between lines of text and 10-point margins. If user doesn't have tahoma, use arial or times roman. Use image1.jpg as the background.
*/

body {font-size: 10pt;
      font-family: "tahoma, arial, verdana, times new roman";
			color: black;
			background: url(image1.jpg);
			line-height: 16pt;
			margin-left: 10px;
			margin-right: 10px;}

/* Make all table text black 10-point tahoma with 14pt vertical spacing between lines of text and 10-point margins. If user does not have tahoma, use arial or times roman. Use image1.jpg as the background. 
*/
			
tbody {font-size: 10pt;
      font-family: "tahoma, arial, verdana, times new roman";
      color: black;}

/* Indent paragraphs */

p {margin-left: 25pt;
   margin-right: 25pt;}
			
/* Make headings tahoma with generous line spacing, unless heading is h1 then use matisse itc. If user doesn't have tahoma or matisse itc, use arial or times roman.
*/

h2 {font:18pt tahoma, arial, verdana, times new roman;
    color: #cc0000;
    line-height: 18pt;}
		
h3 {font:12pt tahoma, arial, verdana, times new roman;
    color: black;
		font-weight: bold;
    line-height: 16pt;}
		
h4 {font:10pt tahoma, arial, verdana, times new roman;
    color: white;
		font-weight: bold;
    line-height: 14pt;}
		
h5 {font:8pt tahoma, arial, verdana, times new roman;
    color: black;
		font-weight: bold;
    line-height: 12pt;}
		
h6 {font:8pt tahoma, arial, verdana, times new roman;
    color: black;
    line-height: 10pt;}

/* Don't underline links, and make all links blue. Make links red when rolled over, and black when activated.
*/

a {text-decoration: none;}
a:link {color: blue;}
a:visited {color: #800080;}
a:hover {color: red;}
a:active {color: red;}

/* With the Use bullet5.gif for the bullet points.
*/

ul {list-style-image: url(bullet5.gif);
    font-size: 10pt;
    font-family: "tahoma, arial, verdana, times new roman";
		color: black;}

/* Use the div tag to specify an indent in the lists*/

div {margin-left: -25px;
     font-size: 10pt;
     font-family: "tahoma, arial, verdana, times new roman";
		 color: black;}
		 
pre {font-family: monospace;}
