@charset "utf-8";
/* 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-type: disc;
} 

/* avoid browser default inconsistent heading font-sizes */
/* and pre/code too */
h1,h2,h3,h4,h5,h6,pre,code { 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,blockquote,fieldset,input
{ margin:0; padding:0 }

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img { border:none }

/* de-italicize address */
address { font-style:normal }

/* more varnish stripping as necessary... */

/* establish print font, size and colour */
body { 
	text-align: left;
	font-family: "Times New Roman", Times, serif; 
	font-size: 10pt;
	color: black;
	background-color: white;
}
#wrapper {
	width: 100%;
	}
/* remove blocks that we don't need to print */
#nav {
	display: none;
	}
#byline {
	display: none;
	}
#search {
	display: none;
	}
/* remove links and their colours */
a {
	text-decoration: none;
	color: black;
}
#branding {
	display: none;
}
#brandingprint {
	width: 100%;
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}
.brandingprintcompany {
	font-weight: bold;
	font-size: 120%;
}
.brandingprintaddress {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
}
h1 {
	font-size : 130%;
	font-weight: bold;
	padding-bottom: 10px;
}
h2 {
	font-size : 110%;
	font-weight: bold;
	padding-top: 10px;

}
.boxheader {
	font-size : 110%;
	font-weight: bold;
	color: #000000;
}

#contentside {
	display: none;
}
#contentside2 {
	display: none;
}
.fillerpic {
	display: none;
}

#siteinfo {
	display: none;
}
#siteinfoprint {
	font-size: 0.8em;
	text-align: left;
	color: #666666;
	width: 100%;
	margin-top: 20px;

	border-top-width: 1px;
	border-top-style: solid;
}
.text_byline {
	font-family: "Courier New", Courier, monospace;
	font-size: 120%;
	color: #000000;
	font-weight: bold;
}
#recordsetpaging {
	display: none;
}
#recordsetserch {
	display: none;
}

.text_moredetails {
	display: none;
}





