
/* Jeff's first HTML5 css */

/* Define table borders */
table,th,td
{
border:1px solid black;
}

/* Define centered table */
table.center {
 margin-left:auto; 
 margin-right:auto;
 border:0px;
	 }

table.centerborder1 {
 margin-left:auto;
 margin-right:auto;
 border:1px;
         }


/* Center header text in tables */
th {
  text-align: center;
} 

/* Center cell text in tables */
td {
  text-align: center;
  margin-top:0px;
  margin-bottom:0px;
  padding:0px;  
} 


