/* no image are to be printed at all */
#dontprint img{ 
	display: none; 
}

/* Places in a div will not print that div with dontprint id*/
#dontprint { 
	display: none; 
}

/* Places in a div will print that div with print id*/
#print { 
	margin-top: 0;
	padding-top: 0;
	color: black;
}

a { 
  text-decoration : underline; 
  color : #0000ff; 
}


body { 
  color : #000000; 
  background : #ffffff; 
  font-family : "Arial", "Times New Roman", Times, serif;
  font-size : 12pt; 
}
