.address {
	font-family: Arial, Helvetica, sans-serif, "Century Gothic";
	font-size: 12px;
	font-style: normal;
	text-transform: uppercase;
	color: #000099;
	text-decoration: none;
}
/* edited by Skye Johnson 04/19/06*/
/* Previous code was:
     
    a:link {
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif, "Century Gothic";
	font-size: 12px;
	color: #000099;
	text-decoration: none;
           }

In order for the A styles to work with the class 'address', you need to put the name of the class
before the 'a:'. See below. Problem was fixed in the other style sheets also */


.address  a:link {
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif, "Century Gothic";
	font-size: 12px;
	color: #000099;
	text-decoration: none;
}
.address  a:visited {
	font-family: Arial, Helvetica, sans-serif, "Century Gothic";
	font-size: 12px;
font-weight: bold;
	color: #000099;
	text-decoration: none;
}
.address  a:hover {
	font-family: Arial, Helvetica, sans-serif, "Century Gothic";
	font-size: 12px;
	font-weight: bold;
	color: #000099;
	text-decoration: underline;
}
.address  a:active {
	font-family: Arial, Helvetica, sans-serif, "Century Gothic";
	font-size: 12px;
	font-weight: bold;
	color: #9933CC;
	text-decoration: none;
}
