/**
 *  chui_print.css
 *    Print style sheet.
 *    Provides a content-only view of
 *    the CHUI web site, no colours and
 *    images.
 *
 *    @version 0.0.3100
 *    @copyright Stephen Karl Lang 2006 - 2007
 *    @author Stephen Karl Lang <s.lang@screwlessdesign.co.uk>
 */


/**
 *  Set large page margins and
 *  font size for readability.
 */
body {
	margin: .6in;
	font-family: Verdana, sans-serif;
	font-size: 12pt;
}


/**
 *  Set links to black, with a dashed light-
 *  grey underline for readability.
 */
a:link, a:visited, a:hover, a:active {
	color: black;
	text-decoration: none;
	border-bottom: 1px dashed #999;
}


/**
 *  Hide unnecessary content.
 */
img, input, #mod_copyright, #mod_terms, #footer li, #accessibility {
	display: none;
}


/**
 *  Show copyright.
 */
#footer ul.floatLeft li:first-child {
	display: block;
}


/**
 *  Insert text where CHUI logo would be.
 */
#customise_your_life:before {
	content: "chui, ";
}


/**
 * Print non-visited URLs after link text.
 */
a:link:after {
	content: " (URL, not visited: " attr(href) ") ";
}


/**
 * Print visited URLs after link text.
 */
a:visited:after {
	content: " (URL, visited: " attr(href) ") ";
}


/**
 * Print out full acronyms and abbreviations.
 */
acronym, abbr:after {
	border: none !important;
	content: " (" attr(title) ") ";
}