/* CSS Table definition for Daylight Saving Time Table */
/* Copied from TablesTable.css to make it sortable */


#SortableTablesTable
{
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
width:90%;
border-collapse:collapse;
margin:auto;

}


#SortableTablesTable td, #SortableTablesTable th 
{
font-size:1.1em;
/* border:2px solid #AA00E4;  */
border:2px solid #000870;         /* #000087; #40E6FF with DARK header  *******  */
padding:3px 7px 2px 7px;
}


#SortableTablesTable th 
{
font-size:1.2em;
text-align:center;
padding-top:5px;
padding-bottom:5px;
/* background-color:#8000dd; to 6700ce ba55d3  9400d3 :#9932CC  #0004FE */
background-color:#0004FE;     /* Header background  000087 is DARK Blue and tr colour
				should be changed to 0004FE with white fonts    ***** */
border:2px solid #000870; 
color:#fff;
}

/* *********************************************************************************** */

/* Manual striping of table  using tr. class="reg" and tr class="alt"  plain tr
produces font colour defined here fff=white 000=black */ 

/* *********************************************************************************** */
#SortableTablesTable tr, td 
{
color:#000;
background-color:#B0DEFD;      /* #B0DEFD with black fonts #0004FE with white fonts */
font-size:  1.1em;
/* background-color:#ffdcff; */  /* pale purple was Original colour */

/* border:2px solid #000870; */
}

#SortableTablesTable tr.alt td 
{
color:#000;
background-color:#B0DEFD;
font-size:  1.1em;
/* background-color:#ffdcff; */  /* Original colour */
}


#SortableTablesTable tr.reg td 
{
color:#000;
background-color:#91B4FD;
font-size:  1.1em;
/* background-color:#ffdcff; */  /* Original colour */
}

/* DO NOT USE THIS in SORTABLE TABLES originated in (TablesTable) tr class="currentyear"
DSTTable  and used in ThanksGiving Easter and other tables to identify current year */
#SortableTablesTable tr.currentyear td 
{
color:#000;
background-color:#9EFF00;

}


/*        Updated with ODD EVEN declaration to simplify the data entry  */
/*
#SortableTablesTable 
tr:nth-child(even) 
{background-color: #B0DEFD;}          /* Light Green */ 

#SortableTablesTable 
tr:nth-child(odd)  
{background-color: #91B4FD;}          /* Darker Light Green */
*/
/* Commenting out the hover feature ***********************************************/

#SortableTablesTable
tr:hover {background-color:#EEA6FF;}
/* tr:hover {background-color:#29BFF7;} */

/*  Zebra sort from author Will mdify to work HERE */
/*
table.sortable tbody tr:nth-child(2n) td {
  background: #ffcccc;
}
table.sortable tbody tr:nth-child(2n+1) td {
  background: #ccffff;
}

*/

#SortableTablesTable tbody tr:nth-child(2n) td {
  background: #ffcccc;
}
#SortableTablesTable tbody tr:nth-child(2n+1) td {
  background: #ccffff;
}
