/* Made by Stephane Bortzmeyer <stephane+blog@bortzmeyer.org> */

/* Good resources on CSS printing:

http://www.alistapart.com/articles/goingtoprint/ 
http://css.alsacreations.com/Tutoriels-et-articles-divers/feuille-css-impression

Also, Wikipedia does it well (when you print with Firefox, you do not
get the menus, decoration, etc.

*/

/* Navigation items that should not be printed */
#left-column, #masthead, #get-source, p#get-pdf, p#get-source, p.get-rfc { 
   display: none;
}

/* Items that require a specific presentation for printing */

body {  
        background-color: #ffffff;
        color: #000000;
}

a  {  
  text-decoration: none;
  color: #000000;
  font-weight: normal;
  font-style: normal;
}

a.wikipedia:after, a.local-file:after, a.rfc:after { 
  content: ""; /* Do not print anything */                    
}

/* Non-Wikipedia links */
a:after { 
        content: " [" attr(href) "] "; 
}
