@charset "iso-8859-1";

/*******************************************************************************
*  skidoo_too_print.css : 2004.11.26
* -----------------------------------------------------------------------------
*  Print media stylesheet that removes the left and right columns as well as
*  the horizontal navigational element from a printed copy of the webpage.
*  WITH SOME MODIFICATION BY JEFF FOR DC LEARNS
*******************************************************************************/

#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 */
}

#rightColumn, #leftColumn, .hnav, .printHide, #menu
{
	display: none;	/* hide the left and right columns as well as the
			   horizontal navigation element(s). also hide any
			   designated elements that should not be printed */
}


#masthead, #outerColumnContainer, #innerColumnContainer, #pageWrapper
{
min-width: 0;
border-left: 0;
border-right: 0;
border-top: 0;
border-bottom: 0;
border-width: 0;	/* hide various borders, including those used
				   to create the backgrounds for the left and
				   right columns */
}


* html #footer
{
	/* \*/
		margin-top:	1em;
              background-color: #FFFFFF;
	/* help IE print space between the content and footer */
}

a, a:link, a:visited, #content a, #content a, #content a:link, #content a:visited, #content a:active, #content a:hover, .outline a, #content a, .outline a:link, .outline a:visited, .outline a:active, .outline a:hover 
{
	border-bottom: none; /* JEFF ADDED - to remove fake dotted link decoration */
       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. */
}

#footer
{
	border: solid 0px #FFFFFF;
	border-width: 0px 0;
	padding: 0;		
	background-color: #FFFFFF;
       color: #000;
}

body
{
	margin: 0px;
	background-color: #FFFFFF;
	color: #000;		/* simple catch-all to make sure we have no
				   colored items in the print out. delete this
				   if you want. */
}

/******************************************************************************/