/* historical introduction  & notes on sources */

/* #headers h3 and #headers h1 are used to fix a bug that prevents hyperlinks in the left navbar from being displayed owing to IE6 not interpreting negative margins correctly*/
#headers h3    {
	margin-top: 0px;
	padding-top: 0px;
	}

#headers h1 {
	margin-bottom: 0px;
	padding-bottom: 0px;
	}


/*code for footnote pop-ups */
p a:hover {background: #fff;}
/* a:hover has to be specifically styled in some way as this is the "event" that leads to the notes being displayed */

a span {display: none;}
/* at first the notes are not visible */

a:hover span.note {
	display: block;
	position: absolute; /* ensures notes overlay, not interrupt the text */
	left: 350px;
	width: 25em; /* stops notes bleeding off page at right */
	color: #111;
	font-size: 80%;
	line-height: 1.3;
	padding: 8px;
	border: 1px solid #000000;
	z-index: 2;
	text-decoration: none;
	background: #fff;
	}
	
#footnotes p {
	font-size: 9pt;
	}
	
.bottomimage {
	border: 5px double #CCCCCC;
	background-repeat: repeat-x;
	position: relative;
	left: 0px;
	top: 0%;
	overflow: hidden;
	height: 243px;
	background-image: url(../images/css_bottomimage.jpg);
	width: 97%;
	z-index: 7;
	}

/* font colour for statutes still in force */	
.inforce {
	color: #0033FF;
}
