/*
This style sheet is for print preview from a browser.
All DIVs are hidden except the main one
*/

/* Sample Stylesheet */
body {
  color: black; 
  background-color: white; 
  font: 100% Garamond, Georgia, "Times New Roman", Times, serif;
  margin-right: 50px;
}

P {

}

/* spread main content across page */
div#content {
	position: absolute;
  left: 0; 
  top: 200px; 
  margin-right: 10%;
  padding: 0; 
  width: 100%;
  height: 100%;
  color: black; 
  background-color: white;
}
div#logo {
	visibility: visible;
}

/* hide all the screen-specific stuff:
   nav bar, even the site logo */
div#navigation, div#logo_hide {
  display: none;
}

