/* 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, #container {
	width: 100%;
	margin: 0;
	float: none;
	background: #fff url(../newsite/css/none);
}

/* SECTION 2: Remove any elements not needed in print. 
   This would include navigation, ads, sidebars, etc. */
#header, #sidebar1, #footer, .noprint {
	display: none; 
}

/* SECTION 3: Set body font face, size, and color.
   Consider using a serif font for readability. */
body {
	font: 1em "Times New Roman", Georgia, Times, serif;
	color: #000; 
}

/* SECTION 4: Set heading font face, sizes, and color.
   Differentiate your headings from your body text.
   Perhaps use a large sans-serif for distinction. */
h1,h2,h3,h4,h5,h6 {
	font-family: Helvetica, Arial, sans-serif;
	color: #000;
}
p {
	margin: 0;
	padding-bottom:8px;
}
h1 {
	font-size: 120%;
	margin-bottom: 0px;
}
h2 { font-size: 110%; }

/* 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; }
#container a:link:after, #container a:visited:after {
	content: " (" attr(href) ") ";
}

.lftlabel {
	text-align: left;
	vertical-align: text-top;
	margin-bottom: 1em;
	margin-right: .5em;
}
.noprint {
	display: none;
}

fieldset {
	border: 1pt #999999 solid;
	padding-bottom: 0.5em;
	padding-top: 0.2em;
	margin-bottom: 0.8em;
}
legend {
	font-weight:bold;
	color: #000;
	padding-right: 8px;
}
textarea {
	width: 7.5in;
	vertical-align: text-top;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	height: 2in;
}
