/* Overview */
/* .style_name {} is used for class="style_name"  */
/* #style_name {} is used for <div id="style_name></div>  */
/* tag_name {} is used to redefine style settings for standard HTML tag ie. <P>
/* Can also use <td style="font-style:italic; color:#FFFFFF; font-weight:bold;"> when you want to specify style settings with the HTML tag */


/* This stylesheet overrides all other style sheets when printing a page
/* ---------------------------------------------------------------------------------- */

/* Items with this class will only appear when printing */
.print_only {
	display:block;	
	margin: auto;
	left: auto;
	right: auto;
	TOP: auto;
	BOTTOM: auto; 
	float: none;
}

.print_only hr{
	border-width:thick;
	border-color:#000;
}

/* Hide the following DIV's */
#head, #foot, #fusebible_lookup, #fusemail_lookup, #foot_grey {
	display: none;
}

/* This class can be assigned to pics, ads & other stuff we dont want to print */
.noprint {
	display: none;
	font-family:Arial, Helvetica, sans-serif;
}

/* Ensure the content spans the full width */
#content {
	BORDER: 0px;
	WIDTH: 100%; 
	HEIGHT: 100%;
	PADDING:0px;	
	margin: auto;
	left: auto;
	right: auto;
	TOP: auto;
	BOTTOM: auto; 
	float: none;
	OVERFLOW:visible;		/* display entire content over multiple pages */
}

/* reformat the body tag */
body {
	BACKGROUND: #fff; 

}

/* Improve colour contrast of links */
a:link, a:visited
{
color: #000;
text-decoration:none;
}

/* Reverse heading colours (from shop.css)*/
.prodtable_heading
{	
	color: #000; 
	background-color:#fff;
}

