﻿/* Deals with Datagrid and data presentation elements */




.TableItemStyle /* Primarily for DataGrids where there is a stripey effect on the tables 	This is the first line and odd numbered lines*/
{
    font-size: .9em;
	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*/
{
    font-size: .9em;
    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;
}



.TableGreyRowItemStyle /* Primarily for DataGrids where there is a stripey effect on the tables 	This is the even numbered lines*/ {
    background-color: #dddddd;
    font-size: .9em;
}

.TableLightGreyRowItemStyle /* Primarily for DataGrids where there is a stripey effect on the tables 	This is the even numbered lines*/ {
    background-color: #eeeeee;
    font-size: .9em;
}


.TableGreenRowItemStyle /* Primarily for DataGrids where there is a stripey effect on the tables 	This is the even numbered lines*/ {
    background-color: #65ce00;
 
}

.TableLightGreenRowItemStyle /* Primarily for DataGrids where there is a stripey effect on the tables 	This is the even numbered lines*/ {
    background-color: #a6e46a;
}


.TableOrangeRowItemStyle /* Primarily for DataGrids where there is a stripey effect on the tables 	This is the even numbered lines*/ {
    background-color: #ffd700;

}
.TableLightOrangeRowItemStyle /* Primarily for DataGrids where there is a stripey effect on the tables 	This is the even numbered lines*/ {
    background-color: #ffea70;
}


.TableDullGreenRowItemStyle /* Primarily for DataGrids where there is a stripey effect on the tables 	This is the even numbered lines*/ {
    background-color: #90ee90;
   
}


.TableDullRedRowItemStyle /* Primarily for DataGrids where there is a stripey effect on the tables 	This is the even numbered lines*/ {
    background-color: #ff7f50;
  
}


.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 */
{
    font-size: .9em;
     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;
}



.TableHeaderStyleDark /* Primarily for DataGrids */ {
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #788391), color-stop(1, #575f6a) );
    background: -moz-linear-gradient( center top, #788391 5%, #575f6a 100% );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='##788391', endColorstr='#575f6a');
    font-weight: normal;
    color: white;
}




.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;
}