/* Print Panharmonicon style */
/* By Panharmonicon */
/* In CSS-2 */
/* positioning converted from tables to CSS Oct. 2003 */
/* navigation added Feb. 2004 */

/********************** primary elements & text */

/* Each page has three colors: dark, light, and medium */
/* The dark color appears as the logo and dropcap backgrounds */
/* The medium color is the body background */
/* The light color is the content background */

body {
	margin: 32px;
	color: black;
	background-color: ;
	width: 600px;
	 font-family: "Georgia", "Palatino", "Palatino Linotype", "Lucida", "Lucida Sans", serif ; 
}

a 	{ text-decoration: underline; color: #445566; }
a:hover, a:focus { background-color: #aabbcc; color: #000253; }
a:visited { color: inherit; }
a:active { color: white; }

ul	{ margin-left: -1em; margin-top: 0; padding-top: 0; }

li	{ list-style: none; }

hr	{ /* border: solid; border-width: 1; */ margin-left: -2em;}

blockquote { margin-left: 2em; }

.dropcap { 
	color: ; 
	font-size: 360%; 
	float: left; 
	height: 1em; 
	line-height: 1em; 
	width: 1.1em; 
	text-align: center; 
	margin-top: -0.1em; 
	margin-right: 0.1em; 
	background-color: ; 
}

/********************** Navigation */
/* Not useful when printed! */

#navbar {
	display: none;
}

/********************** Positioning */

/* Units are in pixels */
/* logo has width of 504, with 12 padding, so 528 total */
/* content has a width of 504 with 12 padding, so 528 total */

/* We must compensate for IE5/Win's flawed box model as regards width */
/* This is done here using the Tan Hack */
/* which relies on a parsing error specific to that browser. */


/********** Header & Logo */
/* Image swap with text header. Done with the image in-line instead of a background, so both display if style sheets are off, but looks good on style-sheet enabled and text-only */

#logo {
	background: white;
	margin: 12px;
	padding: 12px;
	width: 536px;
	height: 75px;
	text-align: left;
}

* html #logo {
	width: 560px;
	height: 80px;
	w\idth: 536px;
	he\ight: 75px;
}

#printgearlogo {
	display: inline;
	width: 536;
	height: 75;
}

#logo h1 {
	display: none;
	border: 0;
	padding: 0;
	margin: 0;
}


/*********** Content */

#content {
	background-color: ;
	padding: 12px;
	margin: 12px;
	width: 536px;
}
	
* html #content {
	width: 560px;
	w\idth: 536px;
}

#chopmark {
	width: 14px;
	height: 14px;
	margin-left: 516px;
}

#printchopmark {
	display: inline;
}

