/*  Nascom print.css  All Rights Reserved. *****************

Title: print.css
Purpose: going to print, hide all element that have no need to be printed
Status: Valid CSS 2.1 according to W3C, lets keep it this way
Author: Mark, ...
Version: 1.1 Alpha
/************************************************************/

body {
   background: white;
   font-size: 12pt;
   }
#menu { /* please add here all element that don't need to be printed */
   display: none;
   }
#wrapper, #content {
   width: auto;
   margin: 0 5%;
   padding: 0;
   border: 0;
   float: none !important;
   color: black;
   background: transparent none;
   }
div#content {
   margin-left: 10%;
   padding-top: 1em;
   border-top: 1px solid #930;
   }
a:link, a:visited {
   color: #520;
   background: transparent;
   font-weight: bold;
   text-decoration: underline;
   }
a:link:after, #content a:visited:after {
   content: " (" attr(href) ") ";
   font-size: 90%;
   }
a[href^="/"]:after {
   content: " (http://www.website.com" attr(href) ") "; /*please change to youre needs (website) */
   }