/*
 Tutorial 8, Case 3
    Your Name: Ruby-Anne Locke
    Today's Date: Nov 25, 2017
	Style sheet
 */
 
 body {
  background-color: #ffffff;
  font-size: 1.2em;
  font-family: "Times New Roman", Times, serif;
 }
 
 header, h1 {
  text-align: center;
 }
 
 a {
   color: maroon;
   font-size: 1.1em;
   padding: 4px;
   text-decoration: none;
 }
 
 a:hover {
	padding: 4px;
	text-decoration: underline;
 }
 
 h3.clear {
	 clear: both;
 }
 table {
	width: 50%;
	margin: 2px 10px 8px 0;
	border: solid thin navy;
	border-collapse: collapse;
	float: left;
}

th, td {
	border: solid thin black;
	padding: 4px;
}
caption {
	padding: 4px;
	color: white;
	background-color: green;
	font-weight: bold;
	font-style: italic;
}

col.date {
	color: white;
	background-color: gray;
}

 
 