/* 
    Document   : tables.css
    Created on : Jun 25, 2009, 2:31:33 PM
    Author     : Imre
    Description:
        Purpose of the stylesheet follows.
*/

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

table.contacts{
    width: 100%;
    background-color: #fafafa;
    border: 1px #000000 solid;
}


td.contactDept{
    text-align:center;
    background-color: #ccc;
    border: 1px #000000 solid;
    font-family: Verdana;
    font-weight: bold;
    font-size: 12px;
    color: #404040;
}

td.contact
{
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 0px;
    padding-right: 0px;
    border-bottom: 1px #6699CC dotted;
}

tr.contact
{
    font-family: Verdana, sans-serif, Arial;
    font-weight: normal;
    color: #404040;
    background-color: #fafafa;
}

tr.contact:hover
{
    background-color: #aaa;
}
