/* CSS Document */
<!--
a.button {
      font-weight: bold;
      font-size: 9px;
 font-family: Verdana, Arial, Helvetica, sans-serif;
     padding: 4px 8px;
       border-top: 1px solid white;
    border-right: 1px solid black;
  border-bottom: 1px solid black;
 border-left: 1px solid white;
   text-align: center;
     min-width: 75px;
        text-transform: uppercase;
}
a.button:link { 
     background-color: #060; 
        color: #FFF;
    text-decoration: none;
  }
a.button:visited {
     background-color: #060; 
        color: #fff;
    text-decoration: none;
  }
a.button:hover { 
      background-color: #060; 
        color: red;
     border-color: black white white black;
  text-decoration: none;
  }
a.button:active { 
     background-color: #369; 
        color: #ccc; 
   text-decoration: none;
  }
-->
