/* Based on lionstable See Hidemanipulate.html for sample results                */
/* CSS Table definition for US Presidents Table virustable.css                   */
#virustable
{
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;"
width:77%;     /* was 85% Jun-15-2020  was 92%  ...JIF... */
border-collapse:collapse; 
border-style:solid;
border-color: #002981;
border-width:1px; 
margin:auto;
}


#virustable td, #virustable th 
{
font-size:1.0em;                      /* Table row text size was 1.2 */
border:3px solid #002981;             /* Dark Navy Blue      */
/* padding:3px 7px 2px 7px; */
padding:3px;
}

#virustable th         
{
font-size:1.2em;                      /* Table header text  size was 1.4 */
text-align:center;
padding-top:3px;
padding-bottom:4px;
background-color: #008300; /* was #0052C5;    /* Table header Blue background colour */
color:#FFF;                           /* Table header White text colour      */
}


}
#virustable tr.div td 	 
{
color:#000;                           /* row text colour */
background-color:#7232FD;             /* divider row background colours  */

}


/*         SHOULD update with ODD EVEN declaration to simplify the data   */

#virustable 
tr:nth-child(even) 
{background-color: #B0D3B0;} /* Was #91B4FD;          /* Sky Blue        */ 

#virustable 
tr:nth-child(odd)  
{background-color: #CB97FF;} /* WAS #CBDCFF;}  */        /* Lighter Sky Blue */


/* Trying to modify stripedemo from above with different colours              */

table#virustable tbody tr:nth-child(2n) td 
{
  background: #B0E2B0;               /* Light Green */
}
table#virustable tbody tr:nth-child(2n+1) td 
{
  background: #D5E8CF;               /* Lighter Green */
}




#virustable
tr:hover {background-color:#EEA6FF;}
