/*
 * Do not show several items from screen-view in print-view
 */
#menu,
.headbox,
.letter,
.to-top {
	display : none;
	visibility : hidden;
}

/*
 * special styling for some elements
 */
#header img {
	float : left;
}
#content {
	clear : both;
}
.infobox {
	border : 1px solid #000;
	padding : 10px;
	margin : 10px;
}
#footer {
	text-align : center;
	padding : 10px;
	margin : 10px;
	font-size : 8px;
	border-top : 1px dotted #000;
}


/*
 * You cannot click a link on paper.
 * So we print the whole URL behind the link-text.
 * This does not work in IE.
 * For further information have a lookt at: http://www.alistapart.com/articles/goingtoprint/ .
 */
a:link:after, a:visited:after {
        content: " - (" attr(href) ") ";
        font-size: 0.9em;
}
/*
 * Mozilla/Firefox-browsers do not print domain themselves.
 * We use CSS3, which is partly supported in current Moz/FF-browsers.
 */
a[href^="/"]:after {
        content: " - (http://example.org" attr(href) ") ";
}

