﻿/* Deals with Datagrid and data presentation elements */

.TableClear
{
    background:none!important;
	filter: none!important;
	background-color: Transparent!important;
    }
    
.TableItemText
{
   font-size: 0.85em;
    }


.TableItemStyle /* Primarily for DataGrids where there is a stripey effect on the tables 	This is the first line and odd numbered lines*/
{
   
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #EBF9FF), color-stop(1, #C2ECFF) );
	background:-moz-linear-gradient( center top, #EBF9FF 5%, #C2ECFF 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#EBF9FF', endColorstr='#C2ECFF');
	background-color:#cbeeff;
}

.TableAlternatingItemStyle /* Primarily for DataGrids where there is a stripey effect on the tables 	This is the even numbered lines*/
{
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #99DFFF), color-stop(1, #C2ECFF) );
	background:-moz-linear-gradient( center top, #99DFFF 5%, #C2ECFF 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#99DFFF', endColorstr='#C2ECFF');
	background-color: #abe4ff;
}

.TableHeaderStyle /* Primarily for DataGrids */
{
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ADE5FF), color-stop(1, #85D8FF) );
	background:-moz-linear-gradient( center top, #EBF9FF 5%, #C2ECFF 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#EBF9FF', endColorstr='#C2ECFF');
	font-weight: normal;
}


.TableSelectedItemStyle /* Primarily for DataGrids */
{
    background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #FFEBEB), color-stop(1, #FFBFBF) );
	background:-moz-linear-gradient( center top, #FFEBEB 5%, #FFBFBF 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEBEB', endColorstr='#FFBFBF');
	background-color: #FFBFBF;

}

.TableSelectedItemStylePointer /* Primarily for DataGrids */
{
      background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #FFEBEB), color-stop(1, #FFBFBF) );
	background:-moz-linear-gradient( center top, #FFEBEB 5%, #FFBFBF 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEBEB', endColorstr='#FFBFBF');
	background-color: #FFBFBF;

	cursor: pointer;
}





.TableAlternatingItemStyleHighlight 
{
	background-color: #abffb9;

}

.TableItemStyleHighlight /* Primarily for DataGrids where there is a stripey effect on the tables 	This is the first line and odd numbered lines*/
{
	background-color: #cbffe7;

}

.TableFooterStyle /* Primarily for DataGrids */
{
	background-color: #abe4ff;
	font-weight: normal;
	color: #000033;

}

.TableEditItemStyle /* Primarily for DataGrids */
{
	background-color: #0093D0;

	color: #000033;

}



.DatagridTotal /* Primarily for DataGrids */
{
	background-color: #FFBFBF;

	font-weight:normal;
}