
<!-- Basic Font and Stuff ---------------------------------- -->

/* Font sizing uses ems. if you want to change anything, just change this. */
/* Note at 75% and lower, Opera is OK but Mozilla and IE hardly change.    */
/* Apparently, 76% is as small as you can go across browsers.		   */

body	  {
	   margin:			   0.5em;
	   font-family: MS Reference Sans Serif, verdana, helvetica, sans-serif;
	   font-size:			     76%;
	  }

html	  {
	   padding:			     0em;
	   font-family: MS Reference Sans Serif, verdana, helvetica, sans-serif;
	   background-color:	rgb(255,255,255);
	   color:		rgb(000,000,000);
	  }

<!-- Standard Paragraph ------------------------------------ -->

/* Normal paragraph.  The margin is fixed at 0 in Netscape, no matter what */
/*		      you try.	Required to set the default font stuff.    */
p	  {
	   font-size:			   .95em;
	   line-height: 		   1.3em;
	   margin-left: 		   1.0em;
	   margin-top:			    .0em;
	   margin-bottom:		    .5em;
	  }

<!-- Indented Paragraph ------------------------------------ -->

.indent   {margin-left: 		      20;
	   margin-top:			       0;
	   margin-bottom:		       7;}

<!-- COBOL Code -------------------------------------------- -->

/* Formatted tag  Even though it's empty, it MUST be present.              */
/*		  This enables fixed font support.			   */
pre	 {
	  }

/* Class=code	  Used to format COBOL code correctly, all browsers.	   */
.code	 {
	   font-family: Lucida Console, Courier New;
	   font-size:			   .80em;
	   font-weight: 		    bold;
	   line-height: 		   1.0em;
	   margin-left: 		    .0em;
	  }

<!-- Bulleted List ----------------------------------------- -->

li	  {
	   font-size:			   .95em;
	   line-height: 		   1.2em;
	   margin-left: 		      10;
	   margin-top:			       0;
	   margin-bottom:		    .3em;}

<!-- Table ------------------------------------------------- -->

table	  {table-border-color-light: rgb(255,204,102);
	   table-border-color-dark:  rgb(204,153,102);
	   font-size:			   1.0em;
	   margin-top:			       0;
	   margin-bottom:		       0;
	   margin-left: 		   1.0em;}

td	  {table-border-color-light: rgb(255,204,102);
	   table-border-color-dark:  rgb(204,153,102);
	   font-size:			    10pt;
	   }

/* Class=table	  Used with normal paragraphs in a table to cause	   */
/*		  correct paragraph spacing for paragraphs 2-n. 	   */
.table	  {line-height: 		    115%;
	   margin-left: 		       0;
	   margin-top:			       8;
	   margin-bottom:		       0;}

/* Class=sidebar  Used to format text in the sidebar.			   */
/*									   */
.sidebar  {
	   font-family: 		  MS Reference Sans Serif;
	   font-size:			    .8em;
	   margin-left: 		       0;
	   margin-top:			       8;
	   margin-bottom:		       0;
	  }

<!-- Headings ---------------------------------------------- -->

/* Heading 1 is, basically, fixed in Netscape.	You can tweak the font	   */
/* a little, but not the margins or colors.  Grrr...			   */
h1	  {
	   font-size:			   1.4em;
	   font-weight: 		  normal;
	   margin-left: 		       0;
	   margin-top:			      10;
	   margin-bottom:		    .2em;
	   color:		rgb(000,102,153);
	  }

h2	  {
	   font-size:			   1.0em;
	   font-weight: 		    bold;
	   line-height: 		    100%;
	   margin-left: 		    .5em;
	   margin-top:			      10;
	   margin-bottom:		    .2em;
	  }

h3	  {
	   font-size:			    .9em;
	   font-weight: 		    bold;
	   line-height: 		    100%;
	   margin-left: 		    .7em;
	   margin-top:			      10;
	   margin-bottom:		       8;
	   color:		rgb(000,102,153);
	  }

h4	  {
	   font-size:			    .9em;
	   font-weight: 		  normal;
	   line-height: 		    100%;
	   margin-left: 		    .7em;
	   margin-top:			      10;
	   margin-bottom:		       8;
	   color:		  rgb(0,102,153);
	  }

<!-- Link Attributes  -------------------------------------- -->

a:active  {
	   text-decoration:		    none;
	  }

a:link	  {
	   background:		     transparent;
	  }

/* These set the hover-type behavior for links in the page header.	   */
/*									   */
a:hover   {
	   text-decoration:	       underline;
	  }

/* Class=coollink							   */
.coollink {
	   background:		     transparent;
	   color:			   white;
	   text-decoration:		    none;
	  }
.barlink  {
	   background:		     transparent;
	   color:			   black;
	   text-decoration:		    none;
	  }


