/* stylesheet to tailor page for larger font sizes. Gets rid of right column, and lets middle column expand to 
   fit all space available */
   
#rightcolumn {
	display: none;
}

#middlecolumn {
	float: right;
	width: 100%;
	margin-left: -210px;
	position: static;
}

#leftcolumn {
	width: 200px;
	float: left;
	position: static;
}

#header, #sectionpanel, #content, #footer {
	margin-left: 210px;
}

body {
	font-size: 95%;
}