
/* Jeff's first HTML5 css */

/* Define table borders */
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;  
} 

td.list{
text-align: left;
border:0px; 
}

/* Necessary for some IE versions? */
body {text-align:center;}
