/*Don't print the test which is displayed on older browsers*/
.none
{
	display: none;
}
/*Change the font for the printed content*/
#main
{
	font-family: "Times New Roman", Times, serif;
	font-size: 12pt;
/*should be expressed in pt, not px, this is print content*/
}
TABLE
{
}
/*Remove the underlined links*/
#main UL.links LI A
{
	text-decoration: none;
}
/*Don't display the sidebar*/
#sidebar
{
	display: none;
}
/*Don't display the left navigation*/
#navbar
{
	display: none;
}
/*Don't display the header*/
#header
{
	display: none;
}
/*Don't display the footer*/
#footer
{
	display: none;
	background: inherit;
}
