/* 	Author: lmitchel
	Date: 11-02-2005
	Scripps Institution of Oceanography, UCSD
*/

/* PRINT STYLES */

body	{
	background-color: white;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 10pt;
	line-height: 14pt;
	color: #000;
	}
	
h1, h2, h3 {
	background-color: transparent;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 10pt;
	 page-break-after: avoid;
	}
	
/* 	DISPLAY - hide the following for legibility and usage of print materials: 
	background pictures, banners, search buttons,   Elements (div) can be hidden with display:none;.*/

#nav	{
	background-color:transparent;
 	display: none; /* items will not be displayed but layout will be maintained  */
 	}
	

*/
/* LINKS: display href attribute */

/*#content a[href^="/"]:after {
  	content: " (http://siobeta.ucsd.edu/u/lmitchel/explorations/" attr(href) ") ";
   }
   */
/*
a:after, a:link:after  { 
	color: #000;
	background-color:transparent; 
	}
	
a:visited:after {
	color:#000; 
	background-color:transparent;
	content: " * Link " attr(href) "* "; 
	}
*/
	
/*	PADDING AND MARGIN: 
	Set to 0px: the text will utilize the full width of the page  */

#sidebar {
	width: 30%;
	background-color:transparent;
	margin: 0;
	padding: 0;
	}
	
#content   { 
	background-color:transparent;
	padding: 0px;
	margin: 0px;
	}
	
p.header {
	background-color:transparent;
	color: #000;
	}




/*


a:visited:after (Links)

For a link to make sense in print, it's href attribute has to be printed out. 
This can be accomplished by the pseudo class :after and the property :content to print out the complete URL of the link. 
This CSS properties is currently supported by Mozilla and Safari.

a:after, a:link:after  { 
color: #000;
background-color:transparent; 
}
a:visited:after {
color:#000; 
background-color:transparent;
content: " * Link " attr(href) "* "; }

page breaks

You can force a page break with page-break-after:always;. Avoid avoids it, obviously.

page-break-after:always;
page-break-before:always;
page-break-after:avoid;
page-break-before:avoid;
