/* Simple 2-Column CSS Page */

body {
	font: normal 12px "Helvetica Neue", Helvetica, Geneva, sans-serif;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	background-color: eeeeee;
}

#container {
	width: 70%;
	text-align: left;
	border: 4px solid gray;
	overflow: auto;
	margin: 2em auto;
	padding: 1em;
	background-color: white;
}

#col1 {
	float: left;
	width: 40%;
	text-align: center;
	padding-left: 1em;
}


#col2 {
	float: right;
	width: 50%;
	border-left: 1px dotted silver;
	padding-left: 1em;
}

p {	margin-bottom: 1em;}	p, td, th, li {	font-size: 1em;}h1 {	font-size: 2.25em;}h2 {	font-size: 1.5em;}h3 {	font-size: 1.2em;}h4 {	font-size: 1em;}a:link {	color: #be5e08;	text-decoration: underline;}a:visited {	color: #00f;	text-decoration: underline;}a:hover {	color: #f00;	text-decoration: none;	font-weight: bold;}a:active {	color: #f00;	text-decoration: none;	font-weight: bold;}.small_text {	font-size: .6em;	font-style: italic;}.highlight {	background-color: #ff0;}
