/* 
    Document   : links
    Created on : Dec 31, 2008, 9:39:18 PM
    Author     : skotdavis
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

table.link {
    border: solid white 1px;
}

td.linkHeader {
    background: navy;
    color: white;
    font: courier bold 12px underline;
    background-color: navy;
    text-align: center;
    font-weight: bolder;
    text-decoration: underline;
    border-bottom: solid white 1px;
}

td.link {
    background: navy;
    color: white;
    left: 10px;   
}

/*************************************
            Default LINKS
*************************************/
a.link:link
{
    color: white;
    text-decoration: none;
}
a.link:visited
{
    color: white;
    text-decoration: none;
}
a.link:hover
{
    color: white;
    text-decoration: underline;
}
a.link:active
{
    color: white;
    text-decoration: none;
}

