﻿

	body		/* This formats the body section  */

	{
		background-color:  ButtonShadow;
	}


	.mymenus	/* How to refer to a class */
	{
	 	font-family:Verdana, Geneva, Tahoma, sans-serif;
		background-color:gray;
		color:white;
		width:300px;
	}




 	h4
 	{
		color:orange;
	}

	#header			/* This formats the header section as defined by my div tags  */
	{
		font-family:  "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
		font-size:  x-large;
		color:teal;
		background-color:silver;
		width:55%;
		text-align:center;		/* This makes my text centered on the silver background */
		margin-left:auto;		/* Use "margin-left:auto" & "margin-right:auto" to center text on a page */
		margin-right:auto;
		
	}
	
	
	a:link, a:visited			/* This keeps the links white */
	{
		color:white;
	}

	

