/* Print styles for [Site Name Here] */
/* Styles which only apply when printing the page */

/* First, we hide things... */
#header, #sidebar, #startPane, 
#slideShow, #endPane, 
#breadcrumb, #imageNav,
#storeBreadcrumbs
{
	display: none;
}

input[type=submit] {
    display: none;
}

/* ...as well as show things. */
.printOnly {
	display: block;
}
body {
	background: #FFF;
}
#pageContent div#imageBlock {
	margin-right: 0;
	padding: 0;
}
#footer {
	margin-top: 1em;
	position: static;
}
#footer li {
	color: #333;	
}
#footer li a {
	color: #333;
	text-decoration: none;
}

/* Then we substitute our printable header. */
#printOnlyHeader {
	display: block;
	padding: 0.25in 0;
}
	#printOnlyHeader h1 {
		float: left;
	}
	#printOnlyHeader h2 {
		float: right;
		width: 60%;
		text-align: center;
		padding: 1.5em 0;
		font-weight: normal;
		color: #333;
	}

/* Next, we resize the contents to fit a printed page. */
#container {
	width: 8in;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
	background: white;
	color: #222;
}
#pageContent {
	width: 8in;
	min-height: 0;
	padding: 1em 0 0.5em;
	clear: both;
}

/* Tweak the site colors to conserve folks' ink... */
h2, h2#pageTitle {
	color: #333;
}
h3, h3#pageTitle {
	color: #666;
}
ul, ol, li, tr, th, td, .odd, .even {
    background: none;
    border: none;
    color: #222;
}

/* And fix any page-specific blocks that need tweaking */
#breadcrumb.plant {
    display: block;
    background: none;
    margin-top: 0;
    padding-top: 0;
    float: left;
    clear: left;
}
    #breadcrumb.plant h3.common {
        color: #666;        
    }
h3.plant {
    clear: left;
}
#skuForm {
    width: auto;
}
#plantSKUs {
    page-break-inside: avoid;
    width: 90%;
    margin: 0 auto;
    border: 1px solid #222;
}
#plantSKUs td, #plantSKUs th {
    width: auto;
    border: none;
    background: none;
    color: #222;
}
#plantSKUs .qty {
    display: none;
}
#plantTips, .homeownerTips {
    page-break-inside: avoid;
    max-width: 100%;
    background: none;
    border: 1px solid #222;
    color: #222;
}
#plantTips h3, .homeownerTips h3 {
    color: #222;
}

#plantChars .sectionHeader,
.additionalBox .sectionHeader {
    color: #222;
    background: white;
}

@media print {
  a[href]:after {
    content: none !important;
  }
 }
