/* links76.css */
/* Descendant selector, i.e. xx yy, applies style to any yy descendant of xx
   Child selector xx > yy applies style only yy that are directly descendant */

td ptable {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

td a:link {
/*    font-family:arial, helvetica, sans-serif;
    font-size:0.9em;
    font-weight:normal;
    border-collapse:collapse;
    border:none;
    margin-left:  12px;
    margin-right: 12px;
    margin-bottom: 0.8em;  */
    font-size:1.05em;
    color: blue;
}

td a:hover {
    color: #FFF;
    padding: 1px 0px 1px 0px;    /* T R B L */
    background-color: #666;
/*    border: solid 1px black;  */
}
