@charset "utf-8";

/*******************************************************************************
*  print.css : 21.06.2005
* -----------------------------------------------------------------------------
*  Print media stylesheet that removes the left and right columns as well as
*  the horizontal navigational element from a printed copy of the webpage.
*******************************************************************************/

#leftColumn, #rightColumn, #contentColumn, #SOWrap
{
	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 */
}
#headerLinks, #headerRight, .printHide, #rightColumn, #leftColumn, #footer
{
	display:none;
}
#outerColumnContainer, #innerColumnContainer, #pageWrapper
{
	border-width: 0;	/* hide various borders, including those used
				   to create the backgrounds for the left and
				   right columns */
}
a, a:link, a:visited
{
	text-decoration: none;
	background-color: inherit;
	color: #000;
}
body *, .brown strong
{
	color: #000;
}
.mainImage
{
	margin:0 10px 10px 0;
}

/******************************************************************************/