﻿/* The default stylesheet for the website. */

html {
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;

	font: 80% arial, helvetica, sans-serif;
	background: #360;
}

p {
	line-height: 1.5;
}

h1 {
	margin: 0;
	
	font-size: 2em;
	color: #470;
}

h2 {
	font-size: 1.5em;
	color: #470;
}

h3 {
	font-size: 1.25em;
}

table {
	margin: auto;
	
	border-collapse: collapse;
	border-bottom: 1px solid black;
}

th, td {
	padding: 0.1em 0.5em;
}

th {
	text-align: left;
}

thead th {
	border-bottom: 1px solid black;
}

td {
	text-align: right;
}

.clear {
	clear: both;
}

.fixgap {			/* A hack to fix another IE 6.x bug */
	float: right;
	height: 0;
}

#container {
	position: relative;
	width: 900px;
	
	margin: 0 auto;
	border: solid #470;
	border-width: 0 3px;
	padding-top: 60px;

	background: white;
}

#navigation {
	position: absolute;
	top: 20px;
	left: 0;
	width: 130px;
}

#navigation img {
	margin: 0 0 1em 1em;
}

#navigation ul {
	margin: 0;
	padding: 0;
	
	list-style: none;
}

#navigation ul li {
	display: inline;	/* Another IE 6.x hack!  Needed to make lists space properly. */
}
		
#navigation ul a {
	display: block;
	
	padding: .25em 0.5em;
	margin: 0 1em 0.5em 1em;
	
	color: #470;
	font-size: 130%;
	font-weight: bold;
	text-decoration: none;
}

#navigation a:visited {
	color: #470;
}

#navigation a:hover {
	color: white;
	background-color: #470;
}

#content {
	min-height: 800px;
	height: auto !important;	/* I hate IE 6.x! IE 6.x ignores the important attribute, */
	height: 800px;				/* but treats height as min-height. */

	margin-left: 130px;
	border: solid #470;
	border-width: 3px 0 0 3px;
	padding: 1em 1em 0 1em;
	
	-moz-border-radius-topleft: 10px;		/* CSS3 preliminary for Firefox. */
	-webkit-border-top-left-radius: 10px;	/* CSS3 preliminary for Safari. */
	border-top-left-radius: 10px;			/* Valid provisional CSS3. */
}

#content img {
	float: right;
	clear: right;
	
	margin: 0 0 1em 1em;
	border: solid black 2px;
}

#content img.left_image {
	float: left;
	clear: left;
	
	margin: 0 1em 1em 0;
}

#footer {
	clear: both;
	
	padding-top: 5em;
	padding-bottom: 1em;

	text-align: center;
}

