/* 
    Document   : DataGrid
    Created on : Oct 4, 2008, 1:23:28 AM
    Author     : Onur CANCI
    Description:
        DataGrid Class Skin.
*/



.DataGrid
{
  cellpadding:0;
  cellspacing:0;

  font-family:serif;
  font-size:12px;

  width:910px;
}

.DataGrid_Title
{
  color:#000000;

  padding-top:8px;
  height:30px;
  background-image: url('../images/GridTitle.gif');
  font-weight:bold;
}

.DataGrid_Title td {
    padding-right:10px;
    padding-left:5px;
}

.DataGrid_Row
{
  color:black;
  height:21px;
}

.DataGrid_Row td {
    padding-right:10px;
    height:30px;
    border-bottom:1px solid #EAEAEA;
}

.DataGrid_Row:hover
{
  background-color:#d2eb81;
  color:white;
}

.DataGrid_Row a
{
  color:#000000;
  font-weight:bold;
  
  display:block;
}

.DataGrid_Row a:hover
{
  color:#FF0000;
}

.DataGrid_AlternateRow
{  
  height:30px;
}
.DataGrid_AlternateRow td {
    border-bottom:1px solid #EAEAEA;
}

.DataGrid_AlternateRow:hover
{
  background-color:#d2eb81;
  color:white;
}

.DataGrid_AlternateRow a
{
  color:#000000;
  font-weight:bold;

  display:block;
}

.DataGrid_AlternateRow a:hover
{
  color:#FF0000;
}

.DataGrid_Pager
{
  
}

.DataGrid_Pager li
{
  float:left;
  list-style:none;

  padding:2px;
  border:1px solid #EAEAEA;

  margin-right:4px;
  margin-bottom:2px;
  margin-top:2px;

  cursor:pointer;
}

.DataGrid_Pager li:hover
{
  border-color:maroon;
}

