@charset "iso-8859-1"

/*******************************************************************************
* -----------------------------------------------------------------------------
*  Print media stylesheet that removes the header, left and right columns as well as
*  the horizontal navigational element from a printed copy of the webpage.
*******************************************************************************/

#leftColumn, #rightColumn, #contentColumn, #SOWrap, div.print
{
	float: none;	/* since left and right columns are being hidden,
			   there's no need to float any columns. */
}
html>body #SOWrap
{
	width: auto;	/* help Opera out */
}

#headerWrapper, #rightColumn, #leftColumn, .hnav, .printHide, #footer
{
	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 pritned */
}

div.print
{	display:block;	}

#outerColumnContainer, #innerColumnContainer, #pageWrapper, div.print
{
	border-width: 0;	/* hide various borders, including those used
				   to create the backgrounds for the left and
				   right columns */
	width: auto;
}
#masthead
{
	border: solid 1px #000000;
	border-width: 1px 0;
	padding: 0.5em;		/* add some borders to the masthead and footer
				   for presentation */
}
* html #footer
{
	/* \*/
		margin-top:	1em;
	/* help IE print space between the content and footer */
}
a, a:link, a:visited
{
	text-decoration: none;
}
body *
{
	background-color: #FFFFFF;
	color: #000000;		/* simple catch-all to make sure we have no
				  colored items in the print out. delete this
				   if you want. */
}

/******************************************************************************/
