/* Cascading Style Sheets */ 
/* (c) www.andreas.com 1998 */ 

body { /* Sets the background. */ 
	/* You can't set a color and an image at the same time. */
	background-color: #ffffff ; /* Sets color if images turned off */ 
	}

/* Controls Headings */
H1 { color: #667f94; font-size: 16px; font-family: "verdana", "arial", "helvetica"; /* comments */  } 
H2 { color: #667f94; font-size: 14px; font-family: "verdana", "arial", "helvetica"; } 
H3 { color: #667f94; font-style: italic ; font-family: "verdana", "arial", "helvetica"; } 
H4 { color: #667f94; font-family: "verdana", "arial", "helvetica"; } 
H5 { color: #667f94; font-size: 90%; font-style: italic; font-weight: bold; font-family: "verdana", "arial", "helvetica"; } 
H6 { color: #667f94; font-size: 70%; font-style: italic ; font-family: "verdana", "arial", "helvetica"; } 

/* Controls the links. Removes underline from links and colors them. */
a:link { text-decoration: none; color: af284c; font-weight: bold; /* Not Yet Clicked */ }
a:visited { text-decoration: none; color: 708670; font-weight: bold;  /* Clicked */ }
a:active {text-decoration: none; /* ? */ }
a:hover {color: #fee47f; /* Hover */}

/* Controls content  */	
p { /* Controls body text */
	 font-size: 10px; 
	font-family: "verdana", "arial", "helvetica"; /* fonts in quotes */
} 

p.toclogo { /* Controls logo */
	font-size: 110%;
	font-weight: bold; 
	text-align: center; /* alignment left, right, center, justify */
   }

p.toc {   /* Controls table of contents (TOC) */
	font-size: 60%;
	font-weight: bold; 
	text-align: left; /* alignment left, right, center, justify */
   } 

div.navfoot { 	/* Controls my email line at the bottom of navbar */
	font-size: 9px; 
	line-height: 150%; /* Sets line height (leading) */
	text-align: right; /* alignment left, right, center, justify */
	font-family: "verdana", "arial", "helvetica"; /* fonts in quotes */
   } 

p.note { 	/* Controls notes (usually bylines) */
	font-size: 60%;
	font-style: italic; /* normal, italic */ 
   } 

p.navfoot { 	/* Controls footer with Navigation information */
	font-size: 65%;
	text-align: right; 
   } 

p.pageup {  /* p.pageup controls the pageup icon */
     text-align: right; /* alignment left, right, center, justify */
   }

li { 			/* for lists */
	font-size: 70%;
	font-family: "verdana", "arial", "helvetica"; /* fonts in quotes */
   } 

td.cell {   /* for cells*/
	font-size: 70%;
	font-family: "verdana", "arial", "helvetica"; /* fonts in quotes */
   } 

/* Div tags */   
div.body { /* Controls body text  in the email subscription*/
	font-size: 70%;
	font-family: "verdana", "arial", "helvetica"; /* fonts in quotes */
} 

/* Span  */   
span.small { font-size: 65%; /* Controls text in the email subscribe box */   } 
   
/* Controls cell colors */
td.cellnavbar  {  background-color: #f1f3e1;  /* for navbar cell   */
	border-top: solid; /* Sets a border. inset=deep groove, ridge=raised groove. */ 
	border-top-color: #f1f3e1; /* Sets color for the border */
	border-top-width: 7px; /* Sets color for the border */
}
td.cellspacer  {  background-color: #ffffff;  /* for vertical cell */
	border-top: solid; /* Sets a border. inset=deep groove, ridge=raised groove. */ 
	border-top-color: #f1f3e1; /* Sets color for the border */
	border-top-width: 7px; /* Sets color for the border */
 }
td.cellcontent {  background-color: #ffffff;  /* for content cell */ 
	border-top: solid; /* Sets a border. inset=deep groove, ridge=raised groove. */ 
	border-top-color: #f1f3e1; /* Sets color for the border */
	border-top-width: 7px; /* Sets color for the border */
}
td.navfoot {  background-color: #ffffff; /* for content cell */}

/* End of file: Cascading Style Sheets */ 