/*
	Author: Lucien Couture
	Date:	August 29, 2015
*/

/* Navigation and Header */
nav {
	margin-right: 16%;
	margin-left: 16%;
	display: block;
	text-align: center;
}

nav li{
	display: block;
	float: left;
	text-align: center;
	width: 15%;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
}

/* Body */
body {
	text-align: center;
	min-width: 800px;
	max-width: 800px;
	background-color: rgb(204, 255, 255);
}

body h1 {
	color: green;
}

/* Table Format*/
table {
	margin-right: auto;
	margin-left: auto;
	border: 2px double blue;
}

table td {
	border: 1px solid blue;
	margin: 5%;
}

table img {
	width: 150px;
	height: 150px;
}

