     <!--
	/* sets <body> tag to have 5px left margin, 0px other margin with default text fonts at 12px left aligned */ 
	 body {	margin:0px;
		font-family: Arial, Tahoma, "Microsoft Sans Serif", Generic;  
		font-size: 14px; 
		text-align: left;
		margin-left: 20px;
		}

	/* <body> class for left bar with gray background and standard fonts with smaller size */ 
	body.lb { margin:0px;
		height:100%;
		font-family: Arial, Tahoma, "Microsoft Sans Serif", Generic;  
		font-size: 12px; 
		text-align: left;
		background-color: Gray;
		}


	/* Red 20px bolder type, Largest Red Heading font for usage with top level title text */ 
	 h1, font.h1 { 
		font-size: 20px; 
		font-weight: bolder; 
		color: #e01c01;
		margin-top:15px;
		margin-bottom:3px;
		}
	
	/* Black 18px bolder type, Largest Black Heading font for usage with top level subtitle text */ 
	 h2, font.h2 {
		font-size: 18px; 
		color: black;
		margin:0px;
		margin-bottom:3px;
		}

	/* Red 14px bold type, heading font for subheadings in body without automatic blank space below */ 
	 h3, font.h3 {
		font-size: 14px; 
		font-weight: bold; 
		color: #e01c01;
		text-align:left;
		margin: 0px;
		}

	/* Black centered 12px type, for use as image caption */ 
	 h6, font.h6 {
		font-size: 12px; 
		color: black;
		font-weight: bolder; 
		text-align:center;
		}

	/* Defaults link <a> tag copy to be red with underline*/ 
	  a {	color: #e01c01;
}/* aha */

	/* Link <a> with smaller text, red with underline, for use in left bar */ 
	a.lb {	color: #e01c01;
		font-family: Arial, Tahoma, "Microsoft Sans Serif", Generic;  
		font-size: 12px; 
		font-weight: bold;
		}	

	/* Makes visited link <a> tag copy dark red with underline*/ 
	a:visited {	
		color: #770d01;
		font-family: Arial, Tahoma, "Microsoft Sans Serif", Generic;  
		font-size: 12px; 
		font-weight: bold;
		}

	/* Makes link <a> tag copy balck without underline when mouse is over it */ 
	a:hover {	
		color: #000000;
		font-family: Arial, Tahoma, "Microsoft Sans Serif", Generic;  
		font-size: 12px; 
		font-weight: bold;
		text-decoration: none;
		}



	/* P tag that has margins of 0px top and 10px left with a width of 690px*/
	 p {
		width: 690px;
		margin-top: 0px;
		}

	/* P tag for centering images and formatting captions. */
	 p.image {
               	 font-size: 12px;
	                font-weight: bold;
	                color: black;
	                text-align: center;
              		  }

	/* P tag for left bar listings. Puts black box around text and centers with 15px left right margin 5 px top bottom margin */
	p.lb {	width: 120px;
		margin: 4px 15px;
		padding: 4px;
		border:1px solid black;
		text-align: center;
		background-color: #d1d3d4;
		}

	/* Div tag to center image and text image and heading in leftbar */
	div.lb {
		text-align: center;
		background-color: gray;
		}

	/* UL tag that has a width of 680px with standard body font */
	ul {
              		font-family: Arial, Tahoma, "Microsoft Sans Serif", Generic;
	              width: 680px;
              		}
        li {
                list-style-type: disc;
                list-style-position: inside;
                }
	     -->