/* print.css */

@page {
             size: portrait;
             /* The margin related properties only validates in CSS1, CSS2 and CSS21... but *not* CSS3 (why ???). */
             /* margin: 0.25in; */
}

body {
             background: white;
             font-family: Georgia, serif;
             font-size: 12pt;
}

div.outerWrapper {
	width: 100%;
	margin: 20px 20px 50px 20px;
}

a {
	text-decoration: none;
}

span.captcha-address a:link:after, span.captcha-address a:visited:after {
	content: " (full address not shown) ";
}
/* +++
For main-body links, add the actual URL to the printed output. This came from "A List Apart #144"
(http://www.alistapart.com/articles/goingtoprint/). According to that article, the spaces separating
the tokens in the following content: statements are *required* syntax.
*/

.textBlock a:link:after, .textBlock a:visited:after {
            content: " (" attr(href) ") ";
            font-size: 90%;
            font-style: italic;
            color: #520;
            background: transparent;
            text-decoration: underline;
}

/* handle any relative links by inserting the appropriate URL path first */
/* NOTE: this is a CSS3 selector! */
.textBlock a[href^="/"]:after {
            content: " (http://myspecialdomain.com" attr(href) ") ";
}
.textBlock a[href="#"]:after {
            content: none;
}

abbr, acronym {
	border-bottom: 0px;
}
#sitenav-menu {
	display: none;
}
#bottom-box {
	background-color: transparent;
	border-top-style: none;
}

#bottom-badges img {
	visibility: hidden;
}