/*
Josh Stevens
Class: CWB110
Date: 4/2/2016

Table formatting page */


table {
	border-collapse: collapse;
	font-family: sans-serif;
	width: 80%;
    margin-left:auto; 
    margin-right:auto;
	text-align: center;
	font-size: 0.85em;
}

table th, table td {
	border: 2px solid gray;
}

/* Table header */

table thead {
	background-color: rgb(0,0,90);
	color: white;
}

table thead tr {
	height: 50px;
}

/* table body */

table tbody tr {
	height: 50px;
}

table tbody td {
	vertical-align: top;
}

/* caption */

table caption {
	caption-side: bottom;
	text-align: center;
}
