﻿
/*----------- Grid view styles ---------------------------*/
.GridViewStyle
{
   border: 1px solid #808080;   
}

.GridViewStyle th
{
	color: #fff;	         
    font-size:12px; 
	background: #ffffff;
	background: -moz-linear-gradient(top,  #ffffff 0%, #135DBA 0%); 
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(0%,#135DBA));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#135DBA 0%);
	background: -o-linear-gradient(top,  #ffffff 0%,#135DBA 0%);	
	background: linear-gradient(to bottom,  #ffffff 0%,#135DBA 0%);    
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#135DBA',GradientType=0 );       
	-webkit-transition: top 0.5s; 
	-moz-transition: top 0.5s;
	transition: top 0.5s; 
    height:20px; 
    border:#808080 1px solid;     
}
.GridViewStyle th a
{
    text-decoration: none;
	color: #333399;
}

.GridViewStyle td{ 
	 border:#808080 1px solid;
     padding: 0 4px 0 4px;	
	 background-color: #fff; 
}

.GridViewStyle td.GridViewMoneyStyle
{
/* This entry is specifically for 'money' columns.  Columns that use this
   will inherit the GridViewStyle above and then apply this specific style */
	text-align: right;
}
.GridViewStyle .PagerStyle td td
{
	border:none;    
    font-size:11px;
    background-color:#ffffff;
    text-decoration: none;
}
.GridViewStyle .PagerStyle td td a
{
	text-decoration: none;
}

table.GridViewStyle trs:hover {
    background: #ffffff;
	background: -moz-linear-gradient(top,  #ffffff 0%, #6bb6f6 50%); 
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#6bb6f6));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#6bb6f6 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#6bb6f6 100%);	
	background: linear-gradient(to bottom,  #ffffff 0%,#6bb6f6 30%);    
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#6bb6f6',GradientType=0 );       
	-webkit-transition: top 0.5s; 
	-moz-transition: top 0.5s;
	transition: top 0.5s;
    color: #000000;       
}

.GridViewStyle tr th a,.GridViewStyle tr th a:visited
{
        color:#ffffff; 
        text-decoration:underline;
             
}

/*  Define the background color for all the ODD background rows  */
.GridViewStyle tr:nth-child(odd){ 
    /*background-color: rgba(185, 212, 250, 0.76);*/      
}

td.GridViewDateAlignStyle
{
/* This entry is specifically for 'Date' columns.  Columns that use this
   will inherit the GridViewStyle above and then apply this specific style */
	text-align: center;
}

.UsersGridViewButton {
    font: normal 1em "Lucida Grande", verdana, sans-serif;
    padding: 1px 6px 1px 6px;
} 

