/*
--------------------------------------------
Generic Print Stylesheet for Vassar Websites
Author: Tim Brown
Born on: 11/11/2005
--------------------------------------------*/


/* undohtml.css */
/* (CC) 2004 Tantek Celik.
Some Rights Reserved. */
/* http://creativecommons.org/ licenses/by/2.0 */
/* This style sheet is licensed under a Creative
Commons License. */
/* Purpose: undo some of the default styling of
common (X)HTML browsers */
/* link underlines tend to make hypertext less readable,
because underlines obscure the shapes of the lower
halves of words */
:link,:visited { text-decoration:none }
/* no list-markers by default, since lists are used more
often for semantics */
ul,ol { list-style:none }
/* avoid browser default inconsistent heading font-sizes */
h1,h2,h3,h4,h5,h6 { font-size:1em; }
/* remove the inconsistent (among browsers) default ul,ol
padding or margin */
/* the default spacing on headings does not match nor align
with normal interline spacing at all, so let's get rid of it. */
/* zero out the spacing around pre, form, body, html, p,
blockquote as well */
/* form elements are oddly inconsistent,
and not quite CSS emulatable. */
/* nonetheless strip their margin and padding as well */
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,
blockquote,fieldset,input
{ margin:0; padding:0 }

/* strip margin/padding from dl */
dl {
	margin: 0;
	padding: 0;
	}
/* dt is occasionally italicized, let's have that be a conscious decision */
dt {
	font-style: normal;
	}



/* Typography
--------------------------------------------*/
body {
	font: 12pt/15pt Georgia, "Times New Roman", Times, serif;
	background-color: #fff;
	color: #000;
	}
h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, table {
	margin: 12pt 0;
	}
h1 { font-size: 24pt; line-height: 27pt;}
h2 { font-size: 21pt; line-height: 24pt; }
h3 { font-size: 18pt; line-height: 21pt; }
h4 { font-size: 14pt; line-height: 17pt; }
h5 { font-size: 12pt; line-height: 15pt; }
h6 { font-size: 10pt; line-height: 13pt; }
ul {
	list-style: disc;
	margin-left: 20pt;
	}
ul ul { list-style: square; }
ul ul ul { list-style: circle; }
ol {
	list-style: decimal;
	margin-left: 20pt;
	}
ol ol { list-style: lower-alpha; }
ol ol ol { list-style: lower-roman; }
dt {
	margin: 12pt 0 0;
	font-style: italic;
	}
dd {
	margin: 0 0 12pt;
	padding-left: 12pt;
	}

a:link, a:visited {
	color: black;
	}
/* Print URLs ... see Eric Meyer, http://www.alistapart.com/articles/goingtoprint/ */
#content a:link:after,
#content a:visited:after {
	content: " (" attr(href) ")";
	}
#content h2 a:link:after,
#content h2 a:visited:after {
	content: "";
	}
	

/* Hide screen-specific elements
--------------------------------------------*/
#webstandards {
	display: none;
	}
#nav_site,
#nav_site_redundant,
#nav_page {
	display: none;
	}
.hide,
.noprint {
	display: none;
	}


/* Hide screen-specific elements

*** RETRO *** ... add elements as you need
--------------------------------------------*/
#container {
	width: 100%;
	}
#access,
.sidebar,
.entry-meta,
.edit-link,
#respond,
#footer {
	display: none;
	}