/* See Hidemanipulate.html for sample results */
/* CSS Table definition for Lions Table and arbitrary name */
#lionstable
{
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
width:95%;
border-collapse:collapse; 
margin:auto;
}
#lionstable td, #lionstable th 
{
font-size:1.2em;           /* Table row text size */
border:2px solid #002981;
padding:3px 7px 2px 7px;
}
#lionstable th         
{
font-size:2.1em;           /* Table header text  size */
text-align:center;
padding-top:5px;
padding-bottom:4px;
background-color:#0052C5;  /* Table header background colour */

color:#FECB00;             /* Table header text colour  Lions Yellow  */
}

#lionstable tr.alt td 
{
color:#000;                /* row text colour */
background-color:#CBDCFF;  /* alternate row background colours */
}

#lionstable tr.reg td	 
{
color:#fff;               /* row text colour */
background-color:#91B4FD; /* row background colours  */
}

#lionstable tr.div td 	/* Divider Line Don't have to use but available */
{
color:#fff;               /* row text colour */
background-color:#7232FD; /* row background colours  */
text-align:center;
}

/*         SHOULD update with ODD EVEN declaration to simplify the data   */

#lionstable 
tr:nth-child(even) 
{background-color: #CBDCFF;}   /* Purple */ 

#lionstable 
tr:nth-child(odd)  
{background-color: #91B4FD;}   /* #9EFF00 = light green    #4CAF50 = Green */

