
/* --------- show items that are for printed page ---------------------------------- */
.printOnly{
	visibility: visible;
}
#logo img{
	display: inline;
}
/* --------- hide items that are not needed for printed page ----------------------- */
#topnav, #bread, #sidebar, #footer ul, input.cancel, input.submit, input.secondarySubmit, #priceDisplayDiv img{
	display: none;
}
h1{
	padding-top: 1em;
}
/* --------- set font face, size and colours --------------------------------------- */
* {
	background: none !important;
	color: black !important;
}
body{ 
	font-family: "Times New Roman", Times, Garamond, serif; 
	font-size: 12pt;
	background: white;
}
form, input, select, textarea{
	/* need to set font-family & font-size for form elements, 
  	otherwise default browser form font is used */
  font-family: inherit;
	font-size: 100%; 
}
fieldset img, label code, select, input, label.multi input,fieldset table th{
	left: 18em;
}
input{
 	width: 10em;
}

/* --------- set size of content area ---------------------------------------------- */

#wrapper {
	min-width: 0;
	width: 19.5cm;
}
/* width for IE6 */
* html #wrapper{
	width: 17cm !important;
}
#content{
	width: 100% !important;
  float: none !important;
  padding: 0 !important;
}
/* --------- highlight links to make them obvious ------------------------------------ */
/* will uncomment this once we have deep linking where session info not in URL
a:link:after, a:visited:after{
	content: "(" attr(href) ")";
	font-size: 90%;
} */

a:link, a:visited{
	color: blue;
	font-weight: bold;
	text-decoration: underline;
}
