/* CSS Document 
   Last modified 05-06-2009 */
   
   
html,body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
	background: #da2c2a url('./Images/background2a.png');

        /* COMMENT OUT NEXT LINE WHEN USING background3.png - include for other  four backgrounds */
	background-repeat:repeat-x; 
	
	/* ALTERNATIVE BACKGROUNDs
	   
	   TRY DIFFERENT BACKGROUNDS - REMOVE THESE COMMENTS BEFORE USING
	   You'll also need to change the colour in the background statement above 
	   (ie. the number between "background" and "url" in statement four.
	   if using background0.png the colour is #fef9f0
	   if using background1.png the colour is #fdfdfd 
	   if using background2.png the colour is #b96261 
	   if using background2a.png the colour is #da2c2a 
	   if using background3 the colour is #c3beb8 
	*/   
	
	FONT-SIZE: 13px;
	FONT-FAMILY: Verdana, 'Trebuchet MS',  'Luxi Sans', Helvetica, Arial,'nimbus sans l',sans-serif;
	color:#000;
}

h1 { 
	font:1.5em georgia,serif; 
	margin:0.5em 0;
}

h2 {
	font:1.25em georgia,serif; 
	margin:0 0 0.5em;
}
	h1, h2, a {
		color:orange;
	}

p { 
	line-height:1.5; 
	margin:0 0 1em;
}

div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:800px;
	background:#fbf8df;
	
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/

	min-height:100%; /* real browsers */
	
	border-left:2px double orange;
	border-right:2px double orange;
}

div#header {
	padding:0.4em;
	background: #FFFFFF url('./Images/logo.png') no-repeat top left;
	border-bottom:6px double orange;
}
	div#header p {
		font-style:italic;
		font-size:1.1em;
		margin:0;
	}

	div#header img {
		border: 0px;
		float: right;
	}



div#content {
	padding:1em 1em 5em; /* bottom padding for footer */
}
	div#content p {
		text-align:justify;
		padding:0 1em;
	}

	div#content h1 {
		font-size: 18px;
		color: #65441d;
		font-weight: bold;
		margin-top: 25px;
		margin-bottom: 5px;
	}

	div#content h2 {
		font-size: 17px;
		color: #65441d;
		font-weight: bold;
		margin-top: 20px;
		margin-bottom: 5px;
	}

	div#content h3 {
		font-size: 16px;
		color: #65441d;
		margin-top: 15px;
		margin-bottom: 5px;
	}

	div#content h4 {
		font-size: 15px;
		color: #65441d;
		margin-top: 10px;
		margin-bottom: 5px;
	}


	div#content h5 {
		font-size: 14px;	
		color: #65441d;		
	}	

	div#content hr {
		font-size: 24px;
		color: #993300;
	}


div#footer {
	position:absolute;
	width:100%;
	bottom:0; /* stick to bottom */
	background:#fff;
	border-top:6px double orange;
}
	div#footer p {
		padding:0.4em;
		margin: 0;
		text-align: center;
	}



