/* Lunar Calibration -Print- CSS
 * Kyle Winfree, kwinfree@usgs.gov, kyle.winfree@gmail.com
 * April 2006
 * This CSS file will apply styling for print media format.  This is modeled as fixes and additions to all.css.
 */
 
/* Body */

body {
	background: #FFF;
	color: #000;
	font-family: Times, Times New Roman, Arial, serif;
}

/* Main, contains the entire content (header through footer) of the site */

.main {
	margin: auto;
	background: #FFF;
}

/* Top is the header */

.top {
	display: none;
}

/* Left is a left column, must exist for position: fixed; to work on the table of contents (leftStuff) */

.left {
	display: none; /* This should also hide leftStuff */
}

/* Right is the right column that here contains the page material and the footer */

.right {
	margin: auto;
	background: #FFF;
}

/* a banner that will print with the rest of the page, the standard banner does NOT print */

.pseudoBanner {
	display: block;
	height: 60px;
	width: 100%;
	background: url(/_images/navigation/pseudoBannerBG.jpg) top right repeat;
}

/* RightTop, there are two divisions that live in the right column, the page material and the footer.  This is the material */

.rightTop {
	background: #FFF;
}

/* RightBottom is the footer area */

.rightBottom {
	background: #FFF;
}

/* Span classes */

.link {
	display: inline;
	font-style: italic;
	text-decoration: none;
	color: #000080;
}

/* Div wide styles */

h1 { /* redundancy to force it to print this background image, IE will not (by default) print the image, so black helps the text to stand out */
	background: #000 url(/_images/navigation/h1_bg.jpg) center center no-repeat;
}

p {
	text-align: left;
}