/* 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: -260px;
	position: static;
}

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

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

body {
	font-size: 120%;
}