/* 
    Document   : tables
    Created on : 2010-02-19, 22:04:48
    Author     : fizyk
    Description:
        Purpose of the stylesheet follows.
*/


/*
Ordinary table
*/
table
{
    margin: 5px 0px 5px 0px;
    width: 100%;
    border: solid #000000;
    border-width: 1px 0px 0px 1px;
}

table caption
{
    background-color: #cdcdcd;
    border: solid #979d9d;
    border-width: 1px 1px 0px 1px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 3px 5px;
}

table thead th
{
    font-weight: bold;
    text-shadow: 1px 1px 1px #979d9d;
    background-color: #cdcdcd;
    border: solid #000000;
    border-width: 0px 1px 1px 0px
}

table tbody td
{
    border: solid #000000;
    border-width: 0px 1px 1px 0px
}

table tbody tr:hover td
{
    background-color: #cdcdcd;
}
/*
 * Experience table
 */
table.experience
{
    margin-bottom: 5px;
    width: 100%;
    border: 0px;
}
table.experience thead td
{
    font-size: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 1px #979d9d;
}

table.experience td
{
    border-bottom: 1px solid #cacaca;
    border-right: 0px;
    padding: 3px;
}

table.experience tbody tr
{
    margin-bottom: 1px;
}

table.experience tbody tr td:first-child
{
    font-size: 0.89em;
    text-align: left;
}

table.experience td:first-child
{
    border-right: 1px solid #000000;
    width: 130px;
    vertical-align: top;
}

table.experience tbody tr:hover td
{
    background-color: #cdcdcd;
}
