@charset "UTF-8";
/*Print style sheet by Mobius New Media*/
body {
	background: white;
	font-size: 12pt;
}
img {
	border: none;
}
#nav {/* do not print these divs */
	display: none;
}
#container, #header, #mainContent, #leftSide, #rightSide, #footer {/*put all your content divs that your want to print here to clear all div widths, paddings, margins, floats, colors, and backgrounds*/
	width: auto;
	margin: 0;
	padding: 0;
	border: 0;
	float: none;
	color: black;
	background: transparent none;
}
a:link, a:visited { /*style for text links*/
	color: #000;
	background: transparent;
	font-weight: bold;
	text-decoration: underline;
}
a:link:after, a:visited:after {/*prints the url after the link*/
   content: " (" attr(href) ") ";
   font-size: 90%;
   }
a[href^="/"]:after {/*prints the full url, but only if the link begins if "/"*/
   content: " (http://www.yourURL.com" attr(href) ") ";
}
