﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

/* This style sheet is intended to contain OFTEN CHANGED rules used when the GridView control adapter is enabled. */
/* Empty rules are provided merely as a convenience for your future use or experimentation. */

.DefaultGridView .AspNet-GridView
{
    width: 100%;
    /*clear: both;*/
}

.DefaultGridView .AspNet-GridView div.AspNet-GridView-Pagination,
.DefaultGridView .AspNet-GridView div.AspNet-GridView-Pagination a,
.DefaultGridView .AspNet-GridView div.AspNet-GridView-Pagination span
{
    color: #FFFFFF;
    background: #666666;
    font-weight: normal;
    padding: 2px;
}

.DefaultGridView .AspNet-GridView table
{
    border: solid 1px #000000;
    border-bottom: 0px;
    width: 100%;
}

.DefaultGridView .AspNet-GridView table thead tr th
{
    color: #FFFFFF; 
    background-color: #000033;
    font-weight: bold;
    border-bottom: solid 1px #000000;
    padding: 5px;
}

.DefaultGridView .AspNet-GridView table thead tr th a
{
    color: #F7F6F3;
}

.DefaultGridView .AspNet-GridView table tbody tr td
{
    color: #000000;
    background: White;
    padding: 2px 20px 2px 2px;
    border-bottom: solid 1px #000000;
    border-right: solid 1px #000000;
    text-align: right;
    
}

.DefaultGridView .AspNet-GridView table tbody tr.AspNet-GridView-Alternate td
{
    background: #ccccff;
    white-space: nowrap;    
}

.DefaultGridView .AspNet-GridView table tbody tr.AspNet-GridView-Selected td
{
}

.DefaultGridView .AspNet-GridView table tfoot tr td
{
	color: #F7F6F3;
    background: #666666;
    font-weight: bold;
    padding: 2px 20px 2px 2px;
    border-bottom: solid 1px #CCCCCC;
    border-right: solid 1px #CCCCCC;
    text-align: right;
}

.GvNoWrap
{
	white-space: nowrap;
}