/* this is an example of using style sheets */


<style>
		A.home:ACTIVE, A.home:VISITED {color:black; text-decoration : none;}
		A.home:HOVER {color:blue; text-decoration : none;}
		A.home:LINK {color:black; text-decoration : none;}
		A.general:ACTIVE, A.general:VISITED, A.general:LINK {text-decoration : underline;}
		A.general:HOVER {color:red; text-decoration : underline;}


  /* this is a test of setting the back ground color of a TD tag */
	TD.mainNavBGColor {
		background-color : Purple;
	}

	TD.deptNavBGColor {
		background-color : #cccc99;
	}


	/* Use the main title heading where you would display the a department
	   name or main page name */
	.MainTitleHeading {
		font-family : Arial;
		font-size :28.0pt;
		color : purple;
		/*font-style : italic;*/
		font-weight : bold;
		text-align : center;
	}
	
	.SubMainTitleHeadingLeft {
		font-family : Arial;
		font-size :20.0pt;
		color : purple;
		/*font-style : italic;*/
		font-weight : bold;
		text-align : left;
	}
	
	.SubMainTitleHeadingCenter {
		font-family : Arial;
		font-size :20.0pt;
		color : purple;
		/*font-style : italic;*/
		font-weight : bold;
		text-align : center;
	}
	
	.SubMainTitleHeadingRight {
		font-family : Arial;
		font-size :20.0pt;
		color : purple;
		/*font-style : italic;*/
		font-weight : bold;
		text-align : right;
	}
	
	.SubTitleHeadingLeft {
		font-family : Arial;
		font-size :16.0pt;
		color : purple;
		/*font-style : italic;*/
		font-weight : bold;
		text-align : left;
	}
	
	.SubTitleHeadingCenter {
		font-family : Arial;
		font-size :16.0pt;
		color : purple;
		/*font-style : italic;*/
		font-weight : bold;
		text-align : center;
	}

	.GeneralMediumTextFormat {
		font-family : Arial;
		font-size :12.0pt;
		color : black;
		font-style : normal;
		font-weight : normal;
		text-align : left;
	}
</style>
	 