﻿/* table level rules */
.grid
{
    font-family: tahoma;
    font-size: 11px;
    border-collapse: collapse;
    width: 680px;
    color: #333333;
}


/* header column rules */
.grid th
{
    background: url(../img/grid_th.png);
    background-repeat: repeat-x;
    height: 26px;
    border: 0; /*border-color: #989898 #cbcbcb #989898 #989898;     border-style: solid solid solid none;     border-width: 1px 1px 1px medium;*/
    color: #000000; /*padding: 4px 5px 4px 10px;*/
    vertical-align: bottom;
    text-align: left;
    font-size: 12px;
}

.grid th a
{
    color: #FFFFFF;
    text-decoration: none;
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 3px;
    padding-bottom: 4px;
}

/* data cell and data row rules */
.grid td
{
    color: #00b0e0;
    padding: 4px 10px 4px 10px;
    border-bottom: solid 1px #BBD9EE;
}
.grid td a
{
    color: #00b0e0;
}
.grid td a:hover
{
    color: White;
}
.grid td.command
{
    padding-left: 0;
    padding-right: 0;
}
.grid .altrow
{
    background-color: #c7eaf4;
}

.grid .row
{
    background-color: #e8f2f5;
}
.grid .row:hover, .altrow:hover
{
    background-color: #6eafd5;
}
.grid .row:hover td, .altrow:hover td
{
    color: White;
}
.grid .row:hover a, .altrow:hover a
{
    color: White;
}
.grid .first
{
    padding-left: 10px;
}
.grid .row:hover .first, .altrow:hover .first
{
    background-repeat: no-repeat;
    background-image: url(../img/bullet.gif);
}
.grid .rownum
{
    text-align: center;
    padding-left: 0px;
    font-weight: bold;
    color: #333333;
}


