@charset "UTF-8";

/*******************************************************************************
*  skidoo_redux_print.css : 2007.01.31 : ruthsarian@gmail.com
* -----------------------------------------------------------------------------
*
*  This print stylesheet is applied whenever a user prints out a webpage. The
*  goal of the stylesheet is to remove any extra junk that isn't needed in a 
*  printout.
*
*  For Skidoo we simply remove the left and right columns so that the printout
*  contains just the content of the page. If you find it desirable to include
*  the left and/or right columns in a printout you'll need to edit this
*  stylesheet to bring them back.
*  
* ------------------------------------------------------------------------------
*  This stylesheet is released into the public domain.
*******************************************************************************/

body
{
	margin:20px;
}
#left-column, #right-column, #middle-column div.rMenu-center
{
	display: none;		/* hide the left and right columns as well as 
				   the horizontal menu at the top of the
				   page */
}
#page-container, #outer-column-container, #source-order-container, 
#middle-column, #inner-column-container
{
	border-width: 0;
	margin: 0;
	padding: 0;		/* get rid of any gutter space and borders
				   on elements that are no longer needed with
				   the removal of the left and right columns */
}
#page-container, #inner-column-container
{
	border-width: 0;	/* remove borders around the page */
}
#source-order-container, #middle-column
{
	float: none;		/* no need to float anything now since we're
				   just showing the middle column. */
}
*, body
{
	color: #000 !important;	/* make sure everything is black text */
	font-family:arial, helvetica, sans-serif;
}
a, a:link, a:visited
{
	text-decoration: none;	/* don't underline hyperlinks */
}
.off
{
	position:relative;
	text-indent:0;
	left:0;
	top:0;
}

/* Specific to this website */

.printHide, .login, .hnav2
{
	display:none;
}
#header h1
{
	display:block;
	float:none;
	clear:both;
	text-indent:0;
	padding:0;
	margin:0;
	font-size:3em;
}
#header h1 a
{
	display:inline-block;
}
#header h2
{
	float:none;
	clear:both;
	padding:0;
	margin:0;
}
#header h3
{
	float:none;
	clear:both;
	padding:0;
	margin:0;
}



/******************************************************************************/
