/* Floating styles - Inspired by a desire to produce a modern alternative to frames */
/* Remove commented expressions to make it work in IE 6-
   Uses invalid CSS to allow IE 5.5-6 to combine top with position: absolute; resulting
   in an effect like position: fixed; - see http://www.howtocreate.co.uk/fixedPosition.html
   for details - I will no longer break my site to make up for IE's pathetic engine, it
   will work in IE 7, but I recommend you use a better browser, like Opera */

/* defaults */
html, body {
	background-color: #fff;
	color: #000;
	margin: 0px;
	padding: 0px;
}
img { border: none; }

/* heading */
div.heading {
	z-index: 5; /* gecko stacks inverted (duh!) */
	background-color: #bcd;
	position: absolute;
	padding-left: 16em;
	padding-right: 5px;
	padding-bottom: 2px;
	left: 0px;
	right: 0px;
	top: 0px;
	/*
	top: expression( 0 + (ignoreMe1=(document.documentElement&&document.documentElement.scrollTop)?document.documentElement.scrollTop:document.body.scrollTop) + 'px' );
	*/
	width: 100%;
	border-bottom: 1px dashed #000;
}
body > div.heading {
	position: fixed;
	width: auto;
}
div.heading h1 {
	font-size: 2em;
	margin: 0px;
	color: #004;
}
div.heading h1.canbesmall {
	font-size: 1.3em;
}
div.heading p {
	font-style: italic; float:right;
	margin: 0px;
	margin-top: 3px;
}

/* left menu */
div.leftMenu {
	z-index: 6; /* gecko stacks inverted (duh!) */
	position: absolute;
	top: 0px;
	/*
	top: expression( 0 + (ignoreMe1=(document.documentElement&&document.documentElement.scrollTop)?document.documentElement.scrollTop:document.body.scrollTop) + 'px' );
	*/
	height: 100%;
	left: 0px;
	width: 12.5em;
	overflow: auto;
	background-color: #79b;
	padding: 10px;
	color: #000;
	border-right: 10px solid #bcd;
	border-top: 10px solid #79b;
	border-bottom: 10px solid #79b;
	border-left: 10px solid #bcd;
}
body > div.leftMenu {
	position: fixed;
	bottom: 0px;
	height:auto;
}
div.leftMenu div a {
	padding: 4px;
	margin-top: 1px;
	font-weight: bold;
	color: #005;
	text-decoration: none;
	display: block;
}
div.leftMenu div a:hover, div.leftMenu div.oneInd a:hover, div.leftMenu div.oneInd a.onThis:hover, div.leftMenu div.twoInd a:hover, div.leftMenu div.twoInd a.onThis:hover {
	text-decoration: underline; }
div.leftMenu div.oneInd a { color: #128; padding-left: 1em; }
div.leftMenu div.twoInd a.onThis, div.leftMenu div.oneInd a.onThis { font-style: italic; }
div.leftMenu div.twoInd a { color: #fff; padding-left: 2em; }
/*
div.leftMenu p img {
	color: #456; content: "W3C: Valid XHTML 1.0 Strict, DOM (+JavaScript)";
	height: expression( 0 ); width: expression( 0 );
}
div.leftMenu p:hover img { content: "Invalid CSS used to make this appear fixed in IE 5.5+"; }
*/

/* main body area */
div.mainBody {
	margin-right: 10px;
	margin-left: 15em;
	margin-top: 2.5em;
	padding: 1em;
}
div.mainBody, div.mainBody p { line-height: 1.2em; }
div.tripBody p { clear: both; }
div.mainBody p a.floater { display: block; margin-right: 5px; float: left; border: none; }
div.mainBody p a.noBorder { border: none; }
div.mainBody p a.altfloat, div.mainBody div.floater { display: block; margin-left: 5px; float: right; border: none; }
div.mainBody p a.floater:hover, div.mainBody p a.altfloat:hover, div.mainBody div.floater a, div.mainBody div.floater a:hover { border: none; }
div.mainBody div.floater { text-align: center; }
div.mainBody div.floater a img { margin-top: 2px; }
h3.subHead { color: #fff; padding: 3px; width: 50%; margin-left: 0px; background-color: #79b; } /* margin for safari aligning bug */
div.mainBody a { color: #117; text-decoration: none; border-bottom: 1px solid #999; }
div.mainBody a:hover { border-bottom-style: dashed; }
th, td { padding: 3px; text-align: left; vertical-align: top; }
th { font-weight: bold; background: #79b; color: #007; }
table.basic th { width: 8.5em; }
table.basic td { border-top: 1px solid #777; }
table.doalt { margin-top: -1px; }
tr.alternate td { background-color: #abc; }

label { display: block; float: left; width: 8.5em; cursor: pointer; }
div.contactBody br { clear: both; }
input.autoSize, textarea { width: 20em; }
select { background-color: #79b; color: #005; }
input, textarea { background-color: #bdf; }
input.autoSize, input.chBox, textarea { border: 1px solid #005; margin-bottom: 1px; }
input:focus, input:active, textarea:focus, textarea:active { background-color: #def; }