/* CSS Document */


.stdtable {
border: 3px solid red;
border-collapse:collapse;  /*IF THE TABLE IS IN A TIGHT AREA, USE THIS TO ELIMINATE EXTRA WHITE SPACE*/
width: 100%;
}

.stdtable td {
border: 1px solid blue;
padding: 0.3em;
}

.stdtable th {
border: 1px solid #000;
background-color: #999;
font-weight: bold;
text-align:left;
padding-left: 0.3em
}

.stdtable caption {
font: bold 1.1em;
color: green;
text-align:left;
padding: 0.4em 0 0.8em 0;
}

.altrow {
background-color: #eee;
color: #000;
}

.stdtable tr:hover { /*Does not work in IE6 or earlier but can add script from CSS anthology book 101 essential tips, page 155 if necesssary*/
	background-color: #ccc;
	color:#663300; /*Colour that the text changes to when you hover over it. */
	}

table.home tr td
{text-align:center;
vertical-align:top;
font-weight:bold;}
table.home tr td p
{margin-bottom:40px;
margin-top:10px;}

table.home
{width:80%;
margin:0 auto;}