/* Remember to define borders for
both the table and the table cells.*/

table, th, td {
border: 1px solid black;
background-color: light blue;
/*If you want the borders to collapse into one border,
add the CSS border-collapse property:*/
border-collapse: collapse;
}

/*Cell padding specifies the space between the cell content and its borders.
If you do not specify a padding, the table cells will be displayed without padding.
To set the padding, use the CSS padding property:*/
th, td {
padding: 15px;
}

/* By default, table headings are bold and centered.
To left-align the table headings, use the CSS text-align property:*/
th {
text-align: left;
}

/*Define a special style only for table id = t01:*/
table#Table_1 {
background-color: #33DAFF;
}

body{
	background-color:yellow;
}

#allcontent{
	width: 500px;
	padding-top:5px;
	padding-bottom:5px;
	margin-left:auto;
	margin-right:auto;
}

h2{
	background-color: gray;
	text-align: center;
}
