/* This rectifies problems Netscape 4.x may
have with bold tags inheriting other font
weights */

b  {
	font-weight : 600;
	}


/* This will fix the background image in
position for broswers that recognise CSS
but don't recognise the bgproperties
attribute */

body  {
	background-attachment : fixed;
	}


/* This is the style that changes link colours
when the cursor hovers over them (IE 5 and
Netscape 6 only) */

a:hover  {
	color : #cc0000;
}