/* Cascading Style Sheets */ 
/* andreas@andreas.com   */ 
/* www.andreas.com   */ 
/* (c) Andreas Ramos 1998  */ 

/* Text within these border markers are comments. */

/* Read about CSS at www.andreas.com/webbook/css */
/* This site includes updates, notices, etc. */
/* For more information, write to me at andreas@andreas.com
/* Ask to be put on an email list for notices. */

/* Save this file as style.css */ 

/* You can delete everything above this line ========================== */

body.first { /* Sets the background for the TOC page. */ 
	/* You can't set a color and an image at the same time. */
	background-color: #ffcc66 ; /* Sets color if images turned off */ 
	}

body.second { /* Sets the background for the content page. */ 
	/* You can't set a color and an image at the same time. */
	background-color: #ffffcc ; /* Sets color if images turned off */ 
	}

H1 {
	color: #9966ff;
	font-family: "verdana", "comic sans ms"; /* comments */  
	border-top: ridge; /* Sets a border. inset=deep groove, ridge=raised groove. */ 
	border-bottom: ; /* comments */ 
	border-left: ; /* comments */ 
	border-right: ; /* comments */ 
   } 
	
H2 {
	color: #663300;
	font-family: "verdana", "comic sans ms"; /* comments */ 
   } 
	
H3 {
	color: #ff6633;
	font-family: "verdana", "comic sans ms"; /* comments */ 
   } 
		
P {
	color: #000000; /* Sets the color of the font */ 
	background: ; /* highlights the text. Use yellow, hex, or RGB */
	font-size: 80%; /* Points (such as 8pt) is possible, but always use % */ 
	line-height: 150%; /* Sets line height (leading) */
	letter-spacing: 100%; /* Sets character leading. Not yet supported in 4.0 */
	padding: 0pt; /* Controls space around the paragraph */
	text-align: left; /* alignment left, right, center, justify */
	text-indent: 10px; /* Allows indents. px=pixels */ 
	font-weight: ; /* normal, bold */ 
	font-style: ; /* normal, italic */ 
	font-family: "verdana", "comic sans ms"; /* Fonts in quotes */
   } 

p.TOC { 			/* p.toc controls the table of contents (TOC) */
	font-size: 90%;
	font-weight: bold; /* normal, bold */ 
	text-align: right; /* alignment left, right, center, justify */
   } 

p.pageup { 			/* p.pageup controls the pageup icon */
	text-align: right; /* alignment left, right, center, justify */
   }
      
strong { 
	background: ; /* highlight the text */
	font-size: 160%  /* Bold will be x% larger than paragraph. */
	font-family: "courier" /* comments */ 
   }

strong.highlight { 
	background: yellow; /* highlight the text */
	font-size: 160%  /* Bold will be x% larger than paragraph. */
	font-family: "courier" /* comments */ 
   }

td { 			/* Table Cells */
	font-size: 80%;
	font-family: "verdana", "comic sans ms"; /* fonts in quotes */
   } 
	
li { 			/* for lists */
	font-size: 90%;
	font-family: "verdana", "comic sans ms"; /* fonts in quotes */
   } 
	
