/* CSS Document */
html,body {
  	height: 100%;
  	margin: 0;
  	padding: 0;
  	background-color: slategray;
  	text-align: center;
}
#container {
  width: 60%;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	text-align: left;
	background-color: slategray;
	position: relative;
	display: table; /*** For non-IE browsers ***/
	border: 0px solid black;
}
#header {
	background-color: slategray;
	height: 165px;
	border: 0px solid black;
	background-image: url("images/logo.gif");
	background-repeat: no-repeat;
	background-position: center bottom;
}
#mainnav {
	background-color: slategray;
	float: left;
	width: 130px;
	text-align: left;
	font: medium arial, hevetica, sans-serif;
	padding: 1px;
	border: 0px solid #336699;
}
#contents {
	margin-left: 140px;
	background-color: slategray;
	font: medium arial, hevetica, sans-serif;
	padding: 2px;
	border: 0px solid red;
	display: table; /*** For non-IE browsers ***/
	position: relative;
	height: 100%;
}
#footer {
	font: x-small arial, hevetica, sans-serif;
	background-color: slategray;
	border: 0px solid red;
	position: relative;
  width: 100%;
	text-align: center;
}
ul {
	list-style-type: none;
	padding: 1px;
	margin: 0;
}
a:link {
	color: black;
	text-decoration: none;
}
a:visited {
	color: black;
	text-decoration: none;
}
a:hover {
	color: white;
}
.clear {
	clear: both;
}