/* ---------------------------------------------------------------------

    Title:      Pearson MyKit CSS file for all PRINT media ONLY
    Filename:   print.css
    Method:     <link>
    Author:     R. Prokop | bobprokop@yahoo.com for Pearson Education
    Updated:    September 2009
    Notes:      !NOTE: This file for print output only!

---------------------------------------------------------------------- */
/*--- IE doesn't like the position for print ---*/
#header{
	position:inherit;
}
/*--- hrefs: no links, text black ---*/
a:link, a:visited, a:hover, a:active{
	color:#000;
	text-decoration:none;
}
/*--- things we don't want to see on print ---*/
.sidebar, .rule, a.scrollTop, .ws{
	display:none;
}
/*--- let's remove the left border for printing, add top margin (due to IE7's poor handling of the header element, and add a border to the top since we've removed the rule divs ---*/
.main{
	margin-top:20px;
	border:none;
	border-top:4px solid #000;
	width:96%;
	/* these last 2 declarations necessary for IE7 printing issues */
	float:none;
	position:relative;
}
/*--- let's keep the tables at a readable width ---*/
.main table{
	width:536px;
}
/*--- no need for color text when printing ---*/
.main h1, .main dt, .main dd.subH, dl.vanilla dt, #products h1{
	color:#000;
}
/*--- no need for img on external links ---*/
a.ext, a.ext:hover{
	padding:0;
	margin:0;
	background:none!important;
}
