/* CSS Document */

#quicknavigation, #breadcrumbs, #header a, #tagline, #sitebranding, #footer, #navigation, #header2 a {
	display: none;
}/* this is so that these things will not be seen on the print as it comes out */

body {
	color: black;
	background-color: white;
	text-align: left;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12pt;
}

.printcontent:before {
	content: "This is a print version of the page. All screen elements have been removed other than the content.";
} /* this is something simple to make sure the user doesnt get confused as he goes into print view and doesn't get whats on the screen */

.printcontent:after {
	content: "Copyright 2008, Mike Hoggan, All Rights Reserved.";
	font-size: smaller;
	font-weight: bold;
}

a:after {content:" ["attr(href)"] "; font-size: smaller
}


