/*Print style sheet*/
/*3Cstrucure used as the basis*/
/*Universal selector, header, navigation, left col, right col, footer - all removed*/
/*!! denotes changes specifically for the print style sheet*/
html {
	font-size:100%
}

#printonly
 {/**/
	display: block;

}

#skipnav,#header,#navigation1,#hornav,#sizer,#Rcol,#Lcol,#footer {/*!!removes header, navigation, Left and Right columns*/
display: none
}

#content {
	width: 850px;
	float: left;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 0;
	background-color: #FFFFFF;
	background-repeat: repeat-x;
}
#content p {
	font-size: 0.8em;
	line-height: 1.8em;
	padding-left: 2em;
	margin-top: 0px;
}
#content h1 {/*Page title in central column yellow on black*/
	color: #000000;/*!! text yellow to black*/
	background-color: #FFFFFF;/*!! black to white*/
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 20px;/*!! 18 to 20*/
	font-style: normal;
	font-weight: bold;/*!! normal to bold*/
	font-variant: normal;
	text-indent: 10px;
	padding-top: 20px;
	padding-bottom: 3px;
	height: 20px;
	margin-top: 20px;/*!! 15 to 5*/
	margin-right: 5px;/*!! 15 to 5*/
	margin-left: 5px;/*!! 15 to 5*/
	text-decoration: underline;/*!! underline*/
	margin-bottom: 5px;
}
#content h2 {/**/
	color: #000000;/*!! text white to black*/
	background-color: #FFFFFF;/*!! black to white*/
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;/*!! 15 to 16*/
	font-style: normal;
	font-weight: bold;/*!! normal to bold*/
	font-variant: normal;
	text-indent: 5px;
	height: 20px;
	text-decoration: underline;/*3px padding to top and bottom removed*/
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: -10px;
	padding-left: 0px;
	margin-bottom: 5px;
	margin-top: 20px;/*!! 15 to 5*/




