body {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 76%;
	/* font sizing in ems. if you want to change anything, just change this.*/
	/*76% is a good setting for compatability across browsers.*/
	color: #000000;
	background-color: #FFFFCC;
	background-repeat: no-repeat;
	background-position: top left;
	margin-top: 25px;
	margin-right: 25px;
	margin-bottom: 10px;
	margin-left: 25px;
	border-bottom: 1px #000000 solid;
}
#content {
	/* use padding instead of margin for multicolumn layouts because of a really odd ie5pc bug where it sometimes relates the width of an unrelated menu div to this div. i'll, uh, write about that somewhere. it was hard to figure out what was causing it, so i want this note here to remind me. */
margin-top: 25px;
margin-right: 40px;
margin-bottom: 10px;
margin-left: 25px; }
	
/*the following classes are to demonstrate better line heights for narrow columns*/	
.narrow1{
	width: 50%;
	line-height: 1.3em;
	}
.narrow2{
	width: 50%;
	line-height: 1.5em;
	}
		
/*typography*/
a {
	text-decoration: none;
	font-weight: bold;
	color: #000;
	}
a:link {
color: #0000ff; }
a:visited {
color: #0000ff; }
a:active {
color: #0000ff; }
a:hover {
	text-decoration: underline;
color: #ff0000; }

h1 {
	font-size: 2em;
	font-weight: bold;
	margin-top: 0em;
	margin-bottom: 0em;/*both set to zero and padding in header div is used intead to deal with compound ie pc problems that are beyound summary in a simple comment.*/
text-indent: 25px; }
h2 {
	font-size: 1.7em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
	}
h3 {
	font-size: 1.4em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: normal;
	}
h4 {
	font-weight: bold;
	font-size: 1.2em;
	margin: 1.2em 0em 1.2em 0em;
	}
h5 {
	font-size: 1.0em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
	}
h6 {
	font-size: 0.8em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
	}
img {
	border: 0;
	}
ol, ul, li {/*
	list-style: none;*/
	font-size: 1.0em;
	line-height: 1.8em;
	margin-top: 0.2em;
	margin-bottom: 0.1em; 
	}
p
{
	font-size: 1.2em;
	line-height: 1.8em;
	margin: 1.2em 0em 1.2em 0em;
	text-indent: 25px;
}
li > p {
	margin-top: 0.2em;
	}
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;
	}
element {
	}
	

/* ------------- image float */

img.imageleft {
	float: left;
	margin: 1em 1em 1em 0;
}	
	

img.imageright {
	float: right;
	margin: 1em 0 1em 1em;
}