/*
** 
**             File: print.css
**          Created: 12/04/08
**         Modified: 01/25/09
**          Creator: Micky Hulse
**           Author: Micky Hulse
**              Ref: 
**                   http://css-discuss.incutio.com/?page=PrintStylesheets
**                   http://www.alistapart.com/stories/goingtoprint/
**            Notes: 
**                   Use keywords for color.
** 
*/

	/*----------( PRINT: )---------*/
		body, * {
			color: black;
			background-color: white !important;
			background-image: none !important;
		}
		body { font: 12pt "Times New Roman", Times, serif; }
		
		h1 { font-size: 16pt; }
		h1 b {
			display: block;
			font-weight: bold;
		}
		h2 {
			font-size: 14pt;
			border-bottom: 1px solid #000;
		}
		h2 b {
			display: block;
			font-weight: normal;
		}
		
		.byline { margin: 1em 0; }
		.byline p {
			margin: 0;
			padding: 0;
		}
		
		#content {
			margin: 0 5% 10% 10%;
			padding-top: 1em;
		}
		
		#story {
			border-top: 1px solid #000;
			border-bottom: 1px solid #000;
		}
		
		/* Some link styling: */
		a:link, a:visited {
			color: blue;
			background: transparent;
			font-weight: bold;
			text-decoration: none;
			border-bottom: 1pt solid #999;
		}
		a:link:after, a:visited:after {
			content: " (" attr(href) ") ";
			font-size: 90%;
		}
		a[href^="/"]:after { content: " (http://www.registerguard.com" attr(href) ") "; }
