
/* styling for printouts */

/* don't print the navigation stuff */
.navigation
{ 
  display: none;
}

/* get rid of backgrounds */
body
{ 
  background: white;
}

#pageWrapper
{ 
  background: white;
}

#events
{ 
  background: white;
}

/* form entry fields */

input#realname,
input#email,
input#Subject,
textarea#Message
{ 
  background-color: white;
}

/* remove the picture */
#topPicture
{ 
  display: none;
}

/* un-float the columns (basically, un-column them) */
.column
{ 
  float: none;
  margin-right: 0px;
  margin-left: 0px;
  width: auto;
}

/* make print all black */
*
{ 
  color: black !important;
}

/* set font sizes in points for text */
p
{ 
  font-size: 10pt !important;
}

#events p
{ 
  font-size: 8pt !important;
}


/* print URLs for links */
a:after
{ 
  content: " (" attr(href) ") ";
}

