﻿<!--

html {
	overflow: auto;	/*for some reason this hides the disabled scrollbar on the right in IE*/
}

body{
	margin: 0;
	padding: 0;
	border: 0;
	overflow: auto;
	height: 100%; 
	max-height: 100%;
}

#contentscontainerdiv{
	position: absolute; 
	top: 0;
	left: 0;
	float: left;
	width: 30%;
	height: 100%;
	overflow: auto;
	background-color: silver;
	color: black;
	margin: 0;
}

#bodycontainerdiv{
	position: absolute;
	top: 0;
	right: 0;
	float: right;
	width: 70%;
	height: 100%;
	overflow: auto;
	background-color: white;
	color: black;
	margin: 0;
}

div.giveitsomepadding{
	padding: 10px;
}

p{
	margin: 4px;
	padding: 0;
	font-family: times, serif;
	font-size: 16px;
}

p.footnote{
	margin: 0;
	padding: 0;
	font-family: arial, sans-serif;
	font-size: 12px;
}

h1 {
	font-family: times, serif;
	font-size: 20px;
	font-style: normal;
	font-weight: normal;
	line-height: normal;
	margin: 0;
	padding: 0;
	text-align: center;
}

h2 {
	font-family: arial, sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	line-height: normal;
	margin: 0;
	padding: 0;
	text-align: center;
}

h3 {
	font-family: arial, sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: bold;
	line-height: normal;
	margin: 0;
	padding: 0;
	text-align: left;
}

a:link {
	text-decoration: none; /*don't want underlining*/
}

a:visited {
	text-decoration: none; /*don't want underlining*/
}

a:hover{
	text-decoration: underline; /*only underline on mouseover.  this must come after a:link and a:visited to be effective*/
}

a:active{
	color: red; /*shows up for a moment as the user clicks it.  this must come after a:hover to be effective*/
}

-->