

/* This helps the browser print only bits it should */
/* See http://jfischweb.com/blog/2007/01/22/setting-up-a-print-and-beyond-the-float-issue-with-firefox-printing/ */

/* class="NOPRINT" will not be printed */
.NOPRINT {
  display:              none    !important;
}

/* format the printing of the body */
/* also allows class="PRINTONLY" to now be seen */
body, .PRINTONLY {
  background-image:     none    !important;
  background-color:     #FFFFFF !important;
  border:               none    !important;
  float:                none    !important;
  margin:               8px     !important;
  padding:              0%      !important;
  width:                auto    !important;
/*display:              visible !important; CSS checker balks */
  overflow:             visible !important;
}

/* Most links should not stand out in the printed version: */
li a,
dd a,
div.achieve div div a,
p a {
  color:                inherit !important;
  font-weight:          inherit !important;
  font-style:           inherit !important;
}


