html, body {
	margin: 0;
	width: 100%;
	height: 100%;

	font-family: "Lucida Grande", Geneva, Verdana, Arial, sans-serif;
	font-size: 76%;/* font sizing in ems, baby. if you want to change anything, just change this.*/
	/*funny thing happens at 75% and lower. opera goes to a nice small size, but moz and ie pc change almost not at all. seems 76% is as small as you can go and stay the same across browsers. poop.*/
	font-size: 10px;
	color: black;
	background: #161616;
}


/**********************
 * POSITIONING STYLES *
 **********************/

table {
	margin: 0;
	border: 0;
	padding: 0;
	width: 100%;
	height: 100%;

	text-align: center;
	vertical-align: middle;
}

tr, td {
	margin: 0;
	border: 0;
	padding: 0;
}

#header, #topnav, #bottomnav, #caption {
	margin: 0 auto;
	border: 0;
	padding: 0;
	width: 800px;
}

#header {
	margin-top: 15px;
	text-align: left;
}

#header a, #header img {
	margin: 0;
	border: 0;
	padding: 0;
}

#topnav {
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: left;
	color: #555;
}

#bottomnav {
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: left;
	color: #555;
}

#caption {
	margin-bottom: 15px;
	height: 40px;
	text-align: left;
	color: #ddd;

	text-align: justify;
}

#caption a {
	color: #ddd;
	text-decoration: underline;
}

#dark {
	overflow: hidden;

	margin: 5px 0;
	border: 0;
	padding: 0;
	width: 100%;
	height: 464px;

	background-color: #161616;
	color: #ddd;
	font-size: 10px;
	line-height: 15px;
}

#dark a {
	color: #ccc;
	text-decoration: underline;
}

#dark img {
	margin: 5px;
	border: 2px solid #fff;
	padding: 0;
}


/*********************
 * TYPOGRAPHY STYLES *
 *********************/

#topnav a, #bottomnav a, #topnav a:visited, #bottomnav a:visited {
	color: #555;
	text-decoration: none;
}

#topnav a:hover, #bottomnav a:hover {
	color: white;
}

pre {/*moz 1.0/1.1/1.2.1, net 7.0/7.01 make this way too small, but i'm not going to go larger because monospace tends to run you into overflow pretty quick. prior moz and net are okay.*/
	font-family: monospace;
	font-size: 1.0em;
}

strong, b {
	font-weight: bold;
}