
	/* Appearance common to all links in whatever state */
	:link, :visited, :active
	{ 
		font-family: Arial, sans-serif; 
		font-size: 12px;	
		font-weight: bold;
		text-decoration: none;
	}
	
	/* differences based on specific link states */
	:link, :visited 	{ color: blue; }
	:active 			{ color: red;  }

	/* attributes in common to all bodies of class Menu2 */
	body.Menu2 {
		background-repeat: repeat-x;
		color: blue;
	}

	/* these three are to support link changing colors with hover */
	span {cursor: hand ; }
	.cursor_over    {color: lightblue;}
	.cursor_not_over {color: blue;}
	.clicked 		 {color: red; }
