@media screen,print
{
/* format classes */
body	{
	/* establish base defaults */
	margin: 0;
	padding: 0;
	border : none;
	color: #000;
	background-color : #fff;
	font-size : 100.01%;
	line-height: 1.5;
	font-weight : normal;
	font-family : Arial, Helvetica, sans-serif;
	}
a:hover	{
	background-color : #f7d; /* #f6c */
	}
img	{
	/* hmmm - html CSS validator seems to see this and say it has too many values! */
	border: 0 none;
	}
h1	{
	margin: 1.5em 0 0 0;
	}
p	{
	margin-left : 3em;
	}
h2	{
	margin: 0 0 0 3em;
	text-align: left;
	font-size: 100.01%;
	font-weight: normal;
	}
ul	{
	margin-left : 0;
	}
li	{ /* do we really need to set this here, should be inherited from body */
	margin : 0 0 0 0;
	}
dl	{ /* need to define this for use on menu pages */
	text-transform: lowercase; 
	}
dt	{ /* need to define this for use on menu pages */
	font-weight: bold;
	margin-top : 0.5em;
	}
dd	{ /* need to define this for use on menu pages */
	margin-left: 1em;
	}
acronym	{
/* 	text-transform : lowercase; */
	color : #c66;
	}
strong	{
	font-weight : bolder;
	/* background-color : #ccf; */
	/* padding : 1px; */
	}
.encounter {
	margin-left: 3em;
	background-color : #80ffff;
	}
.toc	{
	margin-left : 1em;
	}
.toc1	{
	padding-top : 0;
	margin-left : 1em;
	}
.toc2	{
	margin-left : 2em;
	}
.lc	{text-transform:lowercase;}
.unmade	{ /* used in update page */
	color: #333;
	background-color: #ccc;
	}
/* position and style page divs */
#reporttitle {
	position : fixed;
	top : 0px;
	left : 0px;
	width : 100%;
	height : 1em;
	font-weight : bolder;
	font-style : italic;
	border-bottom : 3px solid #f7d; /* #f6c */
	background-color : #fff;
	padding-bottom : 1em;
	}
#leftcol {
	float: left;
	width : 20em; /* was 30% */
	height : auto;
	margin : 1.5em 0 0 0;
	min-height : 400px;
	overflow : auto;
}
#leftcol ul {
	list-style: none;
	margin-left: 0;
	}
#leftcol li {
	margin: .5em 0 .5em 0;
	}
#leftcol p {
	margin-top: 1.5em;
	margin-left: 1.5em;
	}
#rightcol {
	margin-left: 23em;
	padding : 0.5em 0 0 0;
	vertical-align : top;
	}
}
@media print
{
body {font-size : 10pt;}
#reporttitle { display : none;}
#leftcol { display : none;}
#rightcol {font-size : 10pt; width : 5in; padding : 0 0 0 0;}
}
