/* 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 */
   
html { 
  	font: normal 12px /1.4em Georgia, Times, Times New Roman, Capitals;  
  	color: #000; 
}
body, #container {
	margin: 0; 
	float: none;
	background: #FFF url(none); 
}
#container {
	width: 80%; 
	margin-left: 10%; 
} 
#text {
	text-align: justify; 
}

/* SECTION 2: Remove any elements not needed in print. 
   This would include navigation, ads, sidebars, etc. */
#header, #navigation, #sb-container, .smOW, #nav, #subMenusContainer, #breadcrumb, #services, div.services, #footer, #images, #downloads, #downloads + div, ul.image_list, ul.download_list, hr, #topbox span {
	display: none; 
}

/* SECTION 3: Set body font face, size, and color.
   Consider using a serif font for readability. */
body {
	font-size: 1.1em; 
	line-height: 1.6em;
}


/* SECTION 4: Set heading font face, sizes, and color.
   Diffrentiate your headings from your body text.
   Perhaps use a large sans-serif for distinction. */
h1 { 
	font-size: 1.4em; 
	line-height: 1.4em; 
}
h2, #topbox a { 
	font-size: 1.2em; 
	line-height: 1.2em;
}
h3{ 
	font-size: 1em; 
	line-height: 1em;
}
#topbox a { 
	font-weight: bold;
	text-decoration: none;
}
ul.news_list { 
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.news_list li { 
	margin: 0 0 15px 0;
	padding: 0;
}
ul.news_list li a { 
	text-decoration: none;
}
ul.news_list li span.header { 
	display: block;
	line-height: 22px;
	font-weight: bold;
}
form label, form input { 
	display: block;
	float: left;
	width: 100%;
}



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