/* CSS Document */

/* border-collapse property sets whether the table borders are collapsed into a single border or separated */

table
{
border-collapse:collapse;
width:100%;
margin:0 auto; /* centres tables in Firefox*/
}
table,th, td
{
border:1px solid green;
}
th
{
background-color:#66CC99;
color:green;
}

