/* Simple Print Stylesheet */

/* Basic Structure */
html {
	width:100%
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background: white;
	font-size: 12pt;
}

img {
	border: 0;
}

/* Link Management */
a:link, a:visited {
	color: #0000FF;
	background: transparent;
	font-weight: bold;
	text-decoration: underline;
}

/* Append site URL after links */
.primary a:link:after, #content a:visited:after {
	content: " (" attr(href) ") ";
	font-size: 90%;
}

/* For local links */
/*.primary a[href^="/"]:after {
	content: " (http://www.yourdomain.com" attr(href) ") ";
}*/