	p  /*Sets font atrributes for paragraph text*/
	{ 
	font: .9em Georgia, "Times New Roman", serif; 
	}
	
	h1.title /*Makes main page titles red*/
	{ 
	font-family: Verdana, Arial, sans-serif; 
	color: red; 
	background-color: transparent;
	} 
	
	a.button:link  /*CSS code for main page button links, top of page*/
	{
	font: bold 1em Verdana, Arial, sans-serif;
 	text-decoration: none;
	border-style: outset;
 	border-color: gray;
 	border-width: 5px;
 	background-color: #060 ; /*dark green*/
	width: 100px;  
	color: white;
	text-align: center;
	}

	a.button:visited  /*CSS code for main navigation buttons, top of page*/
	{
 	font: bold 1em Verdana, Arial, sans-serif;
 	text-decoration: none;
 	border-style: outset;
 	border-color: gray;
 	border-width: 5px;
 	background-color: #060; /*dark green*/
 	width: 100px;  
 	color: white;
	}
	
	a.button:active  /*CSS code for main navigation buttons, top of page*/
	{
	font: bold 1em Verdana, Arial, sans-serif;
	text-decoration: none;
	border-style: inset;
	border-color: gray;
	border-width: 5px;
	background-color: #060; /*dark green*/
	width: 100px;
	color: black;
	}

	a.button:hover  /*CSS code for main navigation buttons, top of page*/
	{
 	font: bold 1em Verdana, Arial, sans-serif;
 	text-decoration: none;
 	border-style: inset;
 	border-color: gray;
 	border-width: 5px;
 	background-color: #ddd; /*light grey*/
 	width: 100px;  
 	color: black;
	} 

	.alternate  /*CSS code for main navigation non-link buttons, top of page*/
	{ 
	font: bold 1em Verdana, Arial, sans-serif;
	text-decoration: none; 
	border-style: solid; 
	border-color: gray; 
	border-width: 5px; 
	background-color: #000000; /*dark green*/
	width: 100px; 
	color: white;
	text-align: center;
	}
	
	.utility /*CSS code for utility links, top and bottom of page*/
	{ 
	font: bold .7em Verdana, Arial, sans-serif; 
	color: #000000; /*black*/
	background-color: transparent; 
	}
	
	#tagline /*CSS code for tagline under logo, top of page*/
	{ 
	font: bold 1.2em Verdana, Arial, sans-serif; 
	color: #006600; /*dark green*/
	background-color: transparent; 
	}
	
	#postline /*CSS code for postline below horizontal divider, bottom of page*/
	{ 
	font: bold .8em Verdana, Arial, sans-serif; 
	color: #006600; /*dark green*/
	background-color: transparent; 
	}
	
	a:link { color: #000; background-color: transparent; } /*black*/
	a:visited { color: #000; background-color: transparent; } /*black*/ 
	a:hover { color: #f00; background-color: transparent; } /*red*/ 
	
	
	#datefont /*Makes date on front page red*/
	{ 
	font: bold 1em Arial, sans-serif;
	color: red;
	background-color: transparent;
	}