/* Stylesheet for printouts 
 * Props to:
 * http://www.alistapart.com/articles/improvingprint
 * http://www.webcredible.co.uk/user-friendly-resources/css/print-stylesheet.shtml
 * http://meyerweb.com/eric/articles/webrev/200001.html
 * All errors are mine, though.
 * Copyright (c) 2009, Ted Roche. All Rights Reserved.
 *
 * 1. Display links after anchors
 * 2. Hide banners and sidebars
 * 3. Display center content full-width
 * 4. Retain footer for copyright and contact info
 */


a:link:after,
a:visited:after {
  content: " (" attr(href) ") ";
  font-size: 90%;
}
div#rightcontent, 
div#leftcontent,
div#banner {
  display:none;
}
div#centercontent,
div#content {
  margin:0;
  width:90%;
  float:none;
}
/* Papers page uses left sidebar as continuation of center */
body#papers div#rightcontent {
  clear:both;
  display:block;
  margin: 0;
  width:90%;
  float: none;
}
