<!--

/*
 * Cascading Style Sheet 
 * 
 * some elements that are the same on all pages 
 *
 */

/* body element, same for all pages */
	body 
	{
		background-color: d4cae2;	
		color: 330033;			/* text color */
		font-family: Albany;
	}

	a:link 
	{ 
	   color: blue; 
	} 

	a:visited 
	{ 
	   color: purple; 
	} 

	a:hover 
	{ 
	   color: blue; 
	   text-decoration: underline; 
	} 

	a 
	{ 
	   text-decoration: none; 
	}

/* FONT declaration */

	p
	{
		color: 330033;
		font-family: Albany
	}

	td
	{
		color: 330033;
		font-family: Albany
	}

-->