﻿/* CSS layout */
body {
	margin: 0;
	padding: 0;
}

#masthead {
	width: 800px;
	height: 30px;
	background-color: #008080;
}

#top_nav {
	background-color: #008080;
	font-family: Arial;
	font-size: medium;
}

#container {
	min-width: 600px;
}

#left_col {
	border: medium dotted #FF00FF;
	width: 100px;
	float: left;
}
#right_col {
	border: thin groove #008080;
	width: 200px;
	float: right;
}
#page_content {
	margin-left: 50px;
	margin-right: 200px;
}
#footer {
	border-width: thick;
	clear: both;
	font-size: x-small;
	font-family: Arial, Helvetica, sans-serif;
}
#top_nav-ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}
#top_nav-li {
	width: 100px;
	text-align: center;
	float: left;
	list-style-type: none;
	background-color: #00FF00;
}
#header-pic {
	float: left;
	width: 200px;
	height: 200px;
}
