body {
   padding: 0px;
   width: 100%;
   height: 100%;
   margin: auto;
   font-family: Ariel;
   background-color: white;
}

#header {
  width: 100%;
  height: 120px;
  background: #202020;
  text-align: center;
}

#wrapper {
  width: 700px;
  height: auto;
  margin: 0px auto;
}

/*margin: 0px auto; is how to center without using the word center.*/

#wrapper #main img {
  width: 700px;
  height: 325px;
  border: 1px solid gray;
}

#header #nav {
  margin-top: -40px;
  margin-left: 225px;
}

#header #nav ul li {
	list-style: none;
	display: inline;
	padding 3px 8px 3px 8px;
	color: black;
	background-color: gray;
	font-family: times new roman;
	font-size: 21px;
}

#header #nav a {
   text-decoration: none;
   color: black;
}

#header #nav ul li a:hover {
   color: white;
}

#header #logo img {
	 width: 105px;
   margin-top: 10px;
   margin-left: -450px; 
}

#main {
   height: 300px;
}

#wrapper #table1 {
	width: 700px;
	height: 250px;
	table-layout: fixed;
}

#wrapper #table1 td {
	background: #d8d8d8;
	font-size: 14px;
	padding: 5px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	box-shadow: 0px 0px 10px #000;
	-moz-box-shadow: 0px 0px 10px #000;
	-webkit-box-shadow: 0px 0px 10px #000;;
} 

#wrapper #table1 td h3 {
	text-align: center;
	font-family: times new roman;
	font-size: 20px;
}

#footer {
   height: 40px;
   border-top: 1px solid gray;
   text-align: center;
   font-size: 14px;
}