@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.
*******************************************************************************/

body
{
	font-family:arial, verdana, helvetica;
}
#left-column, #right-column, #source-order-container
{
	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, #right-column, #left-column, #footer, .articleLinks, #Breadcrumb, #header, #search, .hnav
{
	display:none;
}
#outer-column-container, #inner-column-container, #page-container
{
	border-width: 0;	/* hide various borders, including those used
				   to create the backgrounds for the left and
				   right columns */
}
#middle-column
{
	width:100%;
}
.inside
{
	padding:0;
}
a, a:link, a:visited
{
	text-decoration: none;
	background-color: inherit;
	color: #000;
}
body *, .brown strong
{
	color: #000;
}

/******************************************************************************/