/* Improve type (tip 3) */
body {
	font-family: Georgia, "Times New Roman, serif";
	font-size: 12pt;
	line-height: 20pt;
}

/* Remove the page furnature (Tip1) */

#navigation {
	display: none;
}

/* remove the background colours (see gotchya 2) */

#header,
#content {
	background: none;
}

/* Linearise content (tip 2) */
.left-col,
.right-col {
	float: none;
	width: 100%;
}

/* Go wild on links (tip 4) */
a:link:after,
a:visited:after,
a:hover:after,
a:active:after {
	content: " <" attr(href) "> ";
	color: #8D7E95; /* most browsers will display the content as black - see tip browser support */
	font-style: italic;
	font-weight: normal;
	border: none;
}
a[href^="/"]:after {
	content: " <http://www.example.com"attr(href)"> ";
}
a[href^="mailto"]:after {
	content: "";
}