/***********************O'Reilly code*****************************/
/*----- blockquote handler -----*/
/*
how to use:
<blockquote>
	<p>blah</p>
	<cite>who</cite>
</blockquote>
no need to put double-quotes or dashes on anything.
blockquote code from O'Reilly CSS Cookbook
*/
blockquote {
	padding:0;
	margin:0;
	text-align:center;
	padding-top:7pt;
	padding-bottom:7pt;
}
blockquote>p {
	font-size:1em;
	padding-bottom:3em;
	font-family:Georgia, Times, "Times New Roman", serif;
	margin:0;
	padding:0;
}
blockquote>cite {
	display:block;
	text-align:center;
}
blockquote>p:before {
	content:"\201C";
	font-size:1.2em;
	font-weight:bold;
	font-family:Georgia, Times, "Times New Roman", serif;
}
blockquote>p:after {
	content:"\201D";
	font-size:1.2em;
	font-weight:bold;
	font-family:Georgia, Times, "Times New Roman", serif;
}
blockquote>cite:before {
	content:"\2014 ";
}
blockquote>cite:after {
	display:block;
	text-align:center;
}
/*-----  -----*/

/*-----  -----*/

/*-----  -----*/

/*-----  -----*/

/*-----  -----*/

/*-----  -----*/

/*-----  -----*/

/*-----  -----*/

/*-----  -----*/

/*-----  -----*/

/*-----  -----*/
