@charset "iso-8859-1";

/*******************************************************************************
*  andreanyffeler.ch 
* -----------------------------------------------------------------------------
*  Print media stylesheet that removes the left column as well as
*  the header from a printed copy of the webpage.
*******************************************************************************/

#left
{
	float: none;	/* since left and right columns are being hidden,
			   there's no need to float any columns. */
}
html>body #contwrap
{
	width: auto;	/* help Opera out */
}
#left, #head
{
	display: none;	/* hide the left column as well as the header. 
	any elements that should not be printed */
}
#wrap
{
	border-width: 0;	/* hide borders */
}
#head, #foot
{
	border: solid 1px #000;
	border-width: 1px 0;
	padding: 0.5em;		/* add some borders to the masthead and footer
				   for presentation */
}
* html #foot
{
	/* \*/
		margin-top:	1em;
	/* help IE print space between the content and footer */
}
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;
	font-family: Garamond, Helvetica, Verdana, Arial, serif; 
	/* simple catch-all to make sure we have no
				   colored items in the print out. delete this
				   if you want. */
}

/******************************************************************************/
