﻿/********************** Tables & Forms ******************************/
.Table {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    border: 1px solid #CCCC99;
    background-color: #F5F5F5; /* #EFF3FB; */ /* #F7F7DE; */
    border-collapse: collapse;
}

.TablePadding td {
    padding: 3px;
}

.TableHeader, .TableHeader td, .TableHeader th {
    color: White;
    background-color: #104676; /* #6B696B; */
    font-weight: bold;
    text-align: center;
    /*    padding-top: 3px;
    padding-bottom: 3px;*/
    padding: 5px;
}

.OuterTable {
    /*    font-family: Verdana, Arial, Helvetica, sans-serif;
    background-color: #F5F5F5; /* #EFF3FB; */ /* #F7F7DE; */
    /*    border-collapse: collapse;*/
    border: 0 none;
    cursor: default; /* Prevent the edit cursor from appearing over text although text cannot be selected in the Infragistics grid */
}

.InnerTableHeaderAndCell {
    border: 1px solid #CCCC99;
}

.InnerTableHeader {
    color: White;
    background-color: #104676; /* #6B696B; */
    text-align: center;
    padding: 5px;
    cursor: pointer;
}

.InnerTableHeaderDisabledSorting {
    cursor: default; /* For column headers where sorting is disabled, don't show the pointer (hand) cursor, but the default cursor */
}

.InnerTableCell {
    padding: 3px;
}

.InnerTableActionCell /* Cells in the Action column; prevent icons from being wrapped */ {
    white-space: nowrap;
}

    .InnerTableActionCell img /* img tags in the Action column */ {
        /* Don't show a border for hyperlink images */
        border-style: none;
    }

    .InnerTableActionCell input /* input tags in the Action column */ {
        /* Show the hand cursor for ImageButtons (icons) instead of the default cursor */
        cursor: pointer;
    }

.DisabledImageButton /* Disabled image buttons in the Action column; show as kind of "greyed-out" */ {
    opacity: 0.3; /* CSS 3 property; works with Firefox > 1.5 */
    filter: alpha(opacity=30); /* Workaround for IE < 8, does the same as opacity */
}

.InnerTableSelectedRow {
    border-style: inset;
    border-width: 5px;
    background-color: #FFEFBB;
}

.InnerTableFirstColumnCell {
    text-align: center;
}
/********************** Tables & Forms ******************************/

