/* PRESENTATION - GENERAL
* blanket rules for site */
	body {
		font-family: Georgia, "Times New Roman", Times, serif;
		font-size: 62.5%; /* Reduces browser default font size from 16px to 10px */
		color: #000;
	}
	p, ul {
		font-size: 1.2em; /* equivalent to 12px */
		line-height: 150%;
	}
	h1 {
		font-size: 1.6em; /* equivalent to 16px */
		color: #1F4A93;
		margin: 10px 0 30px 0;
	}
	h2 {
		font-size: 1.2em;
		text-align: center;
	}
	table, table a {
		font-size: 1.2em;
	}
	img {
		border: none;
	}
	
/* PRESENTATION - SPECIFIC
* rules for specific elements */	
	#navbar ul {
		list-style-type: none;
		margin: 7px 0 0 0;
		padding: 0;
		text-align: center;
	}
	#navbar li {
		font-size: 1em;
		display: inline;
		margin: 0 5px 0 5px;
		padding: 7px 15px 5px 15px;
	}
	#navbar li.current {
		text-decoration: none;
		background: #1F4A93;
	}
	#navbar li.current a{
		color: #FFF;
	}
	#content ul {
		list-style-type: none;
		font-style: italic;
		font-weight: bold;
		text-align: center;
	}
	#center #content { /* center all text content on the contact and thank you page */
		text-align: center;
	}
	/* style font and links for alternative menu */
	#altmenu p, a {
		font-size: 1.4em;
	}
	/* set all text links to be coloured blue with no underline except on hover state */
	a:link, a:visited, a:active {
		text-decoration: none;
		color: #0066FF;
	}
	a:hover {
		text-decoration: underline;
	}
	/* define font size for email link in altmenu section */	
	.emaillink {
		font-size: 0.7em;
	}
	/* emphasise the last paragraph on the index page */
	.emph {
		font-size: 1.4em;
		font-style: italic;
		color: #0066FF;
		text-align: center;
	}
	/* align all text labels on form to the right */
	.labels {
		text-align: right;
	}
	/* align all text areas and input fields to the left on the form element */
	.input {
		text-align: left;
	}
	/* italicise the caption on the form */
	.caption {
		font-style: italic;
	}
	/* indent the addresses on the clinics page and underline the map links */
	.indent {
		text-align: center;
	}
	.indent a {
		text-decoration: underline;
	}
	
/* POSITIONING
* define where elements will be placed within page */
	#wrapper {
		position: relative;
		margin: 0 auto;
		width: 804px;
	}
	#spine { /* large spine image at left of content area */
		position: absolute;
		width: 201px;
		height: 751px;
		background-image: url(images/spine.jpg);
	}
	/* positional attributes for the content of the header section, both of which are images included within the html document */ 
	#contactdetails {
		position: absolute;
		top: 5px;
		left: 30px;
	}
	#logo {
		position: absolute;
		top: 5px;
		left: 470px;
		height: 80px;
		width: 200px;
	}
	/* banner placeholder */
	#banner {
		position: absolute;
		top: 50px;
		left: 100px;
		width: 704px;
		}
		/* banner background images */
		#topbanner {
			position: absolute;
			width: 704px;
			height: 10px;
			background-image: url(images/t-slice.png);
		}
		#middlebanner {
			position: absolute;
			top: 10px;
			width: 704px;
			height: 80px;
			background-image: url(images/m-slice.png);
		}
		#bottombanner {
			position: absolute;
			top: 90px;
			width: 704px;
			height: 30px;
			background-image: url(images/b-slice.png);
		}
	/* main placeholder */
	#main {
		position: absolute;
		top: 205px;
		left: 100px;
		width: 704px;
		}
		/* main background images */
		#topmain {
			position: absolute;
			width: 704px;
			height: 10px;
			background-image: url(images/t-slice.png);
		}
		#middlemain {
			position: absolute;
			top: 10px;
			width: 704px;
			height: 420px;
			background-image: url(images/m-slice.png);
			z-index: 1;
		}
		#bottommain {
			position: absolute;
			top: 430px;
			width: 704px;
			height: 30px;
			background-image: url(images/b-slice.png);
			z-index: 0;
		}
	/* navigation bar placeholder */
	#navbar {
		position: absolute;
		top: 165px;
		left: 100px;
		width: 700px;
		height: 30px;
	}
	/* content within main section placeholder */
	#content {
		position: absolute;
		top: 20px;
		left: 52px;
		width: 600px;
	}
	/* information-footer placeholder */
	#info {
		position: absolute;
		top: 665px;
		left: 100px;
		width: 704px;
		}	
		/* split the info section into three parts to display each element */
		#hpclogo {
			position: absolute;
			top: 37px;
			left: 80px;
			height: 66px;
			width: 200px;
			text-align: center;
		}
		#csoplogo {
			position: absolute;
			left: 280px;
			height: 140px;
			width: 100px;
			text-align: center;
		}
		#altmenu {
			position: absolute;
			top: 31px;
			left: 380px;
			height: 0px;
			width: 300px;
			text-align: center;
			color: #1F4A93;
		}
