@charset "utf-8";

/*
COLOR SCHEME (DARK TO LIGHT):
ORANGES:	#807059 - body bg
			#BF9960 - text color, rule color
			#CCB48F - link color, input bg
			#E6DCCF - link hover color
TEALS:		#567A7A - div bg, input color
			#598080 - UNUSED
			#60BFBF - biv-bright color
			#CFE6E6 - UNUSED
PURPLES:	#62567A - div border, input border
			#665980 - UNUSED
			#8060BF - div-bright bg, div-code border
			#D6CFE6 - UNUSED
*/

body {
	margin: 10px;
	font-family: 'Lucida Console', monospace;
	font-size: 11pt;
	line-height: 125%;
	background-color: #807059;
	color: #BF9960;
}

div.content, td.content {
	text-align: left;
	vertical-align: top;
	background-color: #567A7A;
	border: solid 1px #62567A;
	padding: 5px;
	overflow: hidden;
}

div.content-bright {
	background-color: #8060BF;
	border: solid 1px #60BFBF;
	padding: 5px;
}

div.break {
	margin-top: 5px;
	font-size: 0px;
}

div.rule {
	margin-top: 10px;
	margin-bottom: 10px;
	border-top: solid 1px #BF9960;
	font-size: 0px;
}

div.note {
	font-size: 9px;
	font-style: italic;
}

div.code {
	font-size: 10pt;
	color: #FFFFFF;
	background-color: #000000;
	border: solid 1px #8060BF;
}

table {
	border-collapse: collapse;
}

h1, h2, h3 {
	margin: 0px;
	font-weight: bold;
	line-height: 125%;
}

h1 {
	font-size: 23pt;
}

h2 {
	font-size: 17pt;
}

h3 {
	font-size: 13pt;
}

p {
	margin: 0px;
}

a {
	text-decoration: none;
	color: #CCB48F;
}

a:hover {
	color: #E6DCCF;
}

img {
	border: 0px;
}

form {
	margin: 0px;
}

input {
	margin: 0px;
	padding: 1px;
	width: 150px;
	border: solid 1px #62567A;
	background-color: #CCB48F;
	color: #567A7A;
	font-family: 'Lucida Console', monospace;
	font-size: 11pt;
	vertical-align: middle;
}

.border {
	border: solid 1px #62567A;
}