/* The body tag that contains the background-color is separate because ...  
   If you want to place text over a graphic or a color background, 
   then having the p tag defined with a background-color: white will 
   make an ugly white box around the text. */
 
body		{
			background-color: FFFFFF;
			}
			

/* body, td, p are together because in some browsers, td "resets" the styles to default 
(it shouldn't, but it does) */

body, td, p	{
			font-family: Times New Roman, Times, serif;
			font-size: 16px;
			font-style: normal;
			}


/* Use this tag for page titles.  
Note:  Nothing can be done about the spacing after the title when viewing in NN4.7 */ 

h1			{ 
			margin: 0px;
			padding-bottom: 0px;
			cell-spacing: 0px;
			font-size: 32px;
			}
	
			
/* Use these tags for subtitles within body
Note:  The font weight is slightly off in NN4.7 */			

h2			{
			font-size: 24px;
			}					
					
h3			{
			font-size: 18px;
			}							


/* Use this class for small text */
.smalltext	{
			font-family: Verdana, Arial, Helvetica, sans-serif;
			font-size: 11px;
			}


/* Use this class for additional notes. For example:  prerequisites, footnotes, etc. 
   DO NOT use when emphasizing single words in the body */
.notes		{font-style: italic;
			}
	
	
/* Use this class for the footer */
.footer		{font-size: 12px;
			}
									