<!--
		/*
		 * The overal structure is as follows
		 * html
		 * 	head
		 * 	body
		 * 		#page
		 * 			#header
		 * 			#navigation
		 * 			#content
		 * 				<div> a div for each relevant piece of content.
		 * 					<h1>
		 * 					<h2>
		 * 					<p>
		 * 						<span>
		 * 			#footer
		 * 
			*****************************************************************
			Div and Background settings, specifically padding and margins to center content on page.
			*****************************************************************
		*/
		body{
			color:#000000;
			background-color:#FFFFE9;
		}
		
		/*Defines the size of the header div. large height to fit p#header style*/
		div#header{
			color:#000000;
			background-color: #bFbFa9;
		}
		
		/* defines the page dimensions that everything sits in. It is centered*/
		div#page{
			background-color: #E1E1E1;
		}
		
		/* Not currently used.*/
		body#bg{
		}
		
		/* Define size of navigation bar for main menu*/
		div#navigation{
			background-color: #bFbFa9;
		}
		/* Set main content size */
		div#content{
			background-color: #DFDFC9;
		}
		
		/* Set size of footer area E1E1E1*/
		div#footer{
		
			background-color: #bFbFa9;
		}
		
		/*
			*****************************************************************
			Associated links.  Not currently used.
			*****************************************************************
		*/
		div#links{
			
		}
		div#alink{
			background-color:#000000;
		}
		
		/*
			*****************************************************************
			Headers
			*****************************************************************
		*/
		h1{
			color:#000000;

		}
		h2{
			color:#000000;
		}
		img{

		}

		/*
			*****************************************************************
			Format settings for <p> tags. 
			*****************************************************************
		*/
		p{
			color:#000000;
		}
		
		/* This is used for the main header, exceptionally large point.
		Note: that this p.header class will strangely adjust the top padding.
		*/
		p.header{
			
		}
		
		/* subheader is used in the navigation div. It highlights the subsection of the site.*/
		span.subheader{
			
		}	
		
		/* align address entries.*/
		div.address{
			
		}
		/* address for left alignment.*/
		div.address_left{
			
		}
		
		/*
			*****************************************************************
			Use to highlight elements of copy within large paragraphs.
			i.e. the name of an important person.
			*****************************************************************
		*/
		span.aname{
			
		}
		/*
			*****************************************************************
			Quotes.
			Defines div formating for quotes. and paragraph settings for quote
			and quotee
			*****************************************************************
		*/
		div#quote{
			
		}
		p.quote{
			
		}
		p.quotee{
			
		}
		
		a {
			color:#000000;
		}
		a.selected{
			color:#000000;
		}
		a.backlink{
			color:#000000;
		}
		
		/*
			*****************************************************************
			Navigation dFdFc9
			*****************************************************************
		*/
		ul.menu
		{
			
		}
		ul.menu a {
			
			color:#000000;
			background-color:#bFbFa9;
		}
		ul a:hover {
		
			background-color:#dFdFc9;
		}
		ul.menu a.selected{
			background-color:#dFdFc9;
		}
		ul.menu a.backlink{
			color:#FFFFFF;
		}
		ul.menu li {

		}
-->