/* - DEFAULT VALUES ( float, margin, background, width )
--------------------------------------------------------------------------------------------------------------------------*/
body, #content, #container {
		float: none;
		margin: 0;
		background: #fff url(none);
		width: 100%;
}

body {
	font: 1em Georgia, "Times New Roman", Times, serif;
	color: #000; 
}

/* - ELEMENTS WE DON'T NEED TO PRINT ( float, margin, background, width )
--------------------------------------------------------------------------------------------------------------------------*/
#Header, #footer, .sidebar {
	display: none; 
}
  
/* - HEADINGS, H1 - H6 ( font-family, size, color )
--------------------------------------------------------------------------------------------------------------------------*/
h1,h2,h3,h4,h5,h6 {
	font-family: Helvetica, Arial, sans-serif;
	color: #000;
}
h1 { font-size: 250%; }
h2 { font-size: 175%; }
h3 { font-size: 135%; }
h4 { font-size: 100%; font-variant: small-caps; }
h5 { font-size: 100%; }
h6 { font-size: 90%; font-style: italic; }

/* - HYPERLINKS ( make links usable in print )
--------------------------------------------------------------------------------------------------------------------------*/
a:link, a:visited {
	color: #00c;
	font-weight: bold;
	text-decoration: underline; }
#content a:link:after, #content a:visited:after {
	content: " (" attr(href) ") ";
}