﻿/* grid view */
.AspNet-GridView
{
    border: solid 3px white;
}
.AspNet-GridView input[disabled], .AspNet-GridView select[disabled], .AspNet-GridView textarea[disabled]
{
    background-color: Transparent;
}
.AspNet-GridView table
{
    width: 100%;
    text-align: left;
    margin: 0;
}
/* caption */
.AspNet-GridView-Caption
{
    background-color: White;
    color: dimgray;
    font-size: 1.2em;
    font-weight: bold;
    padding: 0 6px 0 6px;
    text-align: left;
}
/* header */
.AspNet-GridView-Header th
{
    background-color: white;
    color: dimgray;
    padding: 0 3px 0 3px;
    vertical-align: bottom;
}
.AspNet-GridView-Header th a
{
    color: dimgray;
}
/* all cells */
.AspNet-GridView table tbody tr td
{
    padding: 2px 3px 2px 3px;
    vertical-align: top;
}
/* normal rows */
.AspNet-GridView table.selectable tbody tr.AspNet-GridView-Normal:hover
{
    cursor: pointer;
    background-color: orange;
}
.AspNet-GridView table.selectable tbody tr.AspNet-GridView-Normal td input[type="submit"], .AspNet-GridView table.selectable tbody tr.AspNet-GridView-Normal td input[type="button"]
{
    background: white;
    border: 0;
    color: dimgray;
    cursor: pointer;
    font-weight: bold;
    margin: 0;
    padding: 0 3px 0 3px;
}
.AspNet-GridView table.selectable tbody tr.AspNet-GridView-Normal td input[type="submit"]:hover, .AspNet-GridView table.selectable tbody tr.AspNet-GridView-Normal td input[type="button"]:hover
{
    background-color: dimgray;
    color: white;
}
/* alternate rows */
.AspNet-GridView-Alternate
{
    background-color: darkgray;
}
.AspNet-GridView table.selectable tbody tr.AspNet-GridView-Alternate:hover
{
    cursor: pointer;
    background-color: orange;
}
.AspNet-GridView table.selectable tbody tr.AspNet-GridView-Alternate td input[type="submit"], .AspNet-GridView table.selectable tbody tr.AspNet-GridView-Alternate td input[type="button"]
{
    background: white;
    border: 0;
    color: dimgray;
    cursor: pointer;
    font-weight: bold;
    margin: 0;
    padding: 0 3px 0 3px;
}
.AspNet-GridView table.selectable tbody tr.AspNet-GridView-Alternate td input[type="submit"]:hover, .AspNet-GridView table.selectable tbody tr.AspNet-GridView-Alternate td input[type="button"]:hover
{
    background-color: dimgray;
    color: white;
}
/* selected rows */
.AspNet-GridView-Selected
{
    color: dimgray;
    background-color: darkorange;
    font-weight: bold;
}
/* pager */
.AspNet-GridView div.AspNet-GridView-Pagination
{
    background-color: white;
    text-align: center;
    padding: 0 3px 0 3px;
    color: darkorange;
    font-weight: bold;
}
.AspNet-GridView div.AspNet-GridView-Pagination a
{
    color: dimgray;
}
/* empty */
.AspNet-GridView-Empty td
{
    padding: 6px;
}

