/*Gavin's stylesheet*/

a:link, a:visited { 
	font-weight: bold; 
	text-decoration: underline; 
	color: #FFF;
}

a:link.email {
	font-weight: bold; 
	text-decoration: underline; 
	color: #00FF00;
}

a:hover { 
	text-decoration: underline; 
	color: green;
}

a:active {
	font-weight: bold;
	text-decoration: none;
	color: red;
}

body {
	color: #00FF00;
	background-color: #000;
	background: url("images/background.jpg");
	background-repeat: repeat;
	text-align: center;
}

#container {
	margin: auto;
	width: 800px;
	min-height: 900px;
}

#title {
	margin: 0 auto 0 auto;
	width: 700px;
	height: 200px;
	border: 4px outset #00FF00;
}

#navbar {
	margin: 4px auto 4px auto;
	padding: 4px;
	width: 600px;
	border: 4px outset #00FF00;
}

#body {
	margin: 4px auto 4px auto;
	width: 700px;
	max-height: 600px;
	border: 4px outset #00FF00;
	overflow: hidden;
}

#footer {
	margin: 4px auto 4px auto;
	width: 700px;
	border: 4px outset #00FF00;
}

form, h4 {
	display: inline;
}


p {
	text-align: left;
	padding: 4px;
}