a:link {  color: #006666; text-decoration: none}
a:visited {  color: #006666; text-decoration: none}
a:hover {  color: #000000; text-decoration: none}
input {  background-color: #7BB6B6; border: #006666; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color: #006666}
<!--
img {
	border: none;
}
.tah10 {
	font-family: Tahoma;
	font-size: 10px;
	text-decoration: none;
	color: #000000;
}
.tah11 {
	font-family: Tahoma;
	font-size: 11px;
	text-decoration: none;
	color: #000000;
}
.ver10 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-decoration: none;
	color: #000000;
}
.ver11 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-decoration: none;
	color: #000000;
}
.tah9 {
	font-family: Tahoma;
	font-size: 9px;
	text-decoration: none;
	color: #FFFFFF;
}
.ver9 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	text-decoration: none;
	color: #000000;
}
.ver12 {
	font-family: Verdana;
	font-size: 11px;
	text-decoration: none;
	color: #ffffff;
}
.ver8 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 2px;
	text-decoration: none;
	color: #E6EDF7;
}
-->
<STYLE>
    /* Change the style whenever the mouse is over an anchor
       inside an element with the ID of menu */
    #menu A:hover {color: green; letter-spacing: 2px}
  </STYLE>
If you want to apply a HOVER effect to all anchors in your page, you can define a simple HOVER rule: 

  <STYLE>
    /* Change the style whenever the mouse is over any anchor
       on your page */
    A:hover {color: green; letter-spacing: 2px}
  </STYLE>


