﻿/* Default Print Stylesheet Template
   by Rob Glazebrook of CSSnewbie.com
   Last Updated: June 4, 2008
   
   Feel free (nay, compelled) to edit, append, and 
   manipulate this file as you see fit. */
   

/* SECTION 1: Set default width, margin, float, and
   background. This prevents elements from extending 
   beyond the edge of the printed page, and prevents
   unnecessary background images from printing */
body, #content {
	width: 100%;
	margin: 0;
	float: none;
	background: #fff;
font: 1em Georgia, "Times New Roman", Times, serif;
	color: #000; 
	text-align:left;
	}

/* SECTION 2: Remove any elements not needed in print. 
   This would include navigation, ads, sidebars, etc. */

#header, #breadcrumb {
	display: none; 
}

#content {
	border: 0px;
}
.title {
	text-align:center;
	font-weight:bold;
	}
h1,h2,h3,h4,h5,h6, #title {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	color: #000;
}
h1{ font-size: 250%; }
h2  { font-size: 175%; }
h3, .header { font-size: 135%; }
h4 { font-size: 80%; }
h5 { font-size: 100%; }
h6 { font-size: 90%; }

/* SECTION 5: Make hyperlinks more usable.
   Ensure links are underlined, and consider appending
   the URL to the end of the link for usability.
a:link, a:visited {
	color: #00c;
	font-weight: bold;
	text-decoration: underline; }
#content a:link:after, #content a:visited:after {
	content: " (" attr(href) ") ";
}
*/