// print.cs -- style sheet for printing the page
 /* Remove unwanted elements */
 #header, #nav, #box, #footer-content, .noprint
 {
 display: none;
 }

 /* Ensure the content spans the full width */
 #body, #container, #container2, #content
 {
 width: 100%; margin: 0; float: none;
 }

 /* Change text colour to black (useful for light text on a dark background) */
 .lighttext
 {
 color: #000 
 }

 /* Improve colour contrast of links */
 a:link, a:visited
 {
 color: #781351
 }
