@charset "iso-8859-1";

/*******************************************************************************
*  01_print.css : 11/5/2006
* -----------------------------------------------------------------------------
*  Print media stylesheet that removes the left and right columns 
*  from a printed copy of the webpage.
*******************************************************************************/

#left_nav, #menu
{
	float: none;	/* since left and right columns are being hidden,
			   there's no need to float any columns. */
}
html>body #outerwrapper
{
	width: auto;	/* help Opera out */
}
#left_nav, #menu, #bottom_nav, #top_nav, .printHide
{
	display: none;	/* hide the left and right columns as well as the
			   horizontal navigation element(s). also hide any
			   designated elements that should not be printed */
}
a, a:link, a:visited
{
	text-decoration: none;
	background-color: inherit;
	color: inherit;		/* we're printing, so there's no need to
				   differentiate links from regular text. so
				   remove any formatting the links get. */
}
body *
{
	background-color: #fff;
	color: #000;		/* simple catch-all to make sure we have no
				   colored items in the print out. delete this
				   if you want. */
}

/******************************************************************************/