/* Intended to be applied over screen stylesheet */
BODY	{
	background: white;
	margin: 0;
	padding: 0;
	color: #000000;
	font: 12pt Times, "Times New Roman", Georgia, serif;
	line-height: 16pt;
}
h1{
	 COLOR: black;
	 FONT: 20pt "arial black", arial, geneva, sans-serif;
	 font-weight: normal;
	 border-bottom: 1px solid;
	 margin-bottom: 10px;
}
h2	{ 
	COLOR: #106ECF;
	FONT: 14pt Times, "Times New Roman", Georgia, serif;	/* 15px */
	font-weight: bold;
}
h3	{ 
	COLOR: #009999; 
	FONT: 14pt Times, "Times New Roman", Georgia, serif;	/* 15px */
	font-weight: bold;
	font-style: italic;
}
h4	{
	COLOR: #3399CC;
	FONT: 14pt Times, "Times New Roman", Georgia, serif;
	font-weight: bold;
}
.title	{ 
	COLOR: #106ECF; 
	FONT: 16pt Times, "Times New Roman", Georgia, serif; /* 20px */
	font-weight: normal;
}
.websitetitle {
	margin-bottom: 1em;
}
/* HIDE BITS OF THE PAGE */
#footerLinks {
	display: none;
}
#flashLogo {
	display: none;
}
div#wrapper, div#content {
	/* widen the content for the print styles as no sidebars to get in the way */
	margin: 0 2%;
	padding: 0;
	float: none !important;		/* avoid Gecko bug */
	width: auto;
	color: black; 
	background: transparent;	/* for safety's sake */
}
#navigation * {
	/* hide the sidebar */
	display: none;
}
.navmenu {
	display: none;
}
#extra * {
	/* hide the other sidebar */
	display: none;
}
/* END HIDES */
/* SHOW OTHER BITS */
.screenhide {
	display: inherit;
}
.blueBullet li {
	/* deleted list-style-image: url(images/bullet.gif) !important; */
	list-style-type: disc;
	margin: 0 0 0 0.5em;	/* 18px */
	padding: 0;
}
.websitetitle {
	COLOR: black; 
	FONT: 2.4em Times, "Times New Roman", Georgia, serif; /* 26px */
	font-weight: normal;
	margin-left: 2em;
}
/* Sneaky tricks from http://www.alistapart.com/articles/goingtoprint */
/* only works in CSS2 */
#content a:link:after, #content a:visited:after {
   content: " (" attr(href) ") ";
   font-size: 90%;
   }
/* only works in CSS3 */
#content a[href^="/"]:after {
   content: " (http://www.emmanuel-woodley.org" attr(href) ") ";
   }