/*******************************************************************************
*  This stylesheet defines the layout as it appears on print devices (printers)
*  by importing those stylesheets which should be used to render the layout on 
*  paper.
*******************************************************************************/

@import "base.css";
@import "fonts.css";

.pagewrapper
{
	border: none;
}
.leftColumn, .contentColumn
{
	float: none;	/* since left column is being hidden, there's no need to float any columns. */
}
.identity .logo
{
	background-image: url(../img/masthead-logo.png);
	background-position: top left;
	background-repeat: no-repeat;
}
.homepage .introblock
{
	padding: 0;
	margin: 0;
	width: auto;
	height: auto;
	top: 0;
	left: 0;
	position: relative;
}
.leftColumn, .printHide, .homepage .photos
{
	display: none;	/* hide the left column as well as the horizontal navigation element(s). also hide any designated elements that should not be pritned */
}
.outerColumnContainer, .innerColumnContainer
{
	border-left-width: 0;
	border-right-width: 0;	/* hide the borders used to create the left and right columns' backgrounds */
}
.masthead, .footer
{
	border: solid 1px #000;
	border-width: 1px 0;
	padding: 0.5em;		/* add some borders to the masthead and footer for presentation */
}
a
{
	text-decoration: none;
	background-color: inherit;
	color: #000;		/* we're printing, so there's no need to differentiate links from regular text. so remove any formatting the links get. */
}

/******************************************************************************/