/* CSS Document */
/*
Web page should use:
<link rel="stylesheet" type="text/css" href="print.css" media="print" />
The only difference between this link element and the link to your screen style sheet is the attribute: media="print"
Be sure to add 
media="screen"
to any other stylesheets 
*/

body { 
  color : #000000; 
  background : #ffffff; 
  font-family : "Palatino Linotype", Palatino, Georgia, serif;
}
a { 
  text-decoration : underline; 
  color : #0000ff; 
}
body img {
	display: none;
}
#header a {
	text-decoration:none;
	color : #000000;
}