BODY
* 
{
	font-family: Tahoma, Arial, Helvetica, 'Times New Roman';
	font-size: 10pt;
	color: #000000;
}

/***********************************************************************
	 MAIN MENU STYLES
************************************************************************/
ul 
{
	margin-top:0;
	margin-bottom:0;
}
ul.menu 
	{
		width:150px; /* This sets the width of the space where the words on the menu are displayed */
		margin-right:10px; /* sets the space to the right of the menu */
		border:1px solid #75807A;
		background:#F1F7F4;
		list-style:none;
	}
li.menu 
	{
		position:relative;
		padding:1px;
		padding-left:20px;
		z-index:9;
	}
a.menu 
	{
		text-align:left;
		padding:2px;
		background-color: #FFFFFF; /* this is the background color of the menu item before hovering over*/
		border:1px solid white;
		border-width:1px;
		text-decoration:none;
		color:#000000;/* Was originally #75807A */
		width:100%; /* IE */
	}

/* regular hovers    	*/
/*This is what was originally in place of the next line		a:hover  */
Hover
	{
		background-color:#a02601; /*  this is the one that creates the background color of the link when you hover over it   #a02601;  */
		color:#000000;/* was #d3bd6b changing this seemed to affect nothing. */
	}
	
	.menu:hover
	{
		background-color:#a02601;
		color:#000000;  /* was #d3bd6b is the color of the text in a folder */
	}
		
/*************************************************************
	 HEADINGS - 
**************************************************************/
.H1
{
	font-size:14pt;
	font-weight:bold;
}
.H2
{
	font-size:12pt;
	font-weight:bold;
}
.H3
{
	font-size:10pt;
	font-weight:bold;
}

