1.	<?php // Script 8.11 - header.html #3
2.	
3.	// Turn on output buffering:
4.	ob_start();
5.	
6.	?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
7.		"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
8.	<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
9.	<head>
10.		<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
11.		<title><?php // Print the page title.
12.		if (defined('TITLE')) { // Is the title defined?
13.			print TITLE;
14.		} else { // The title is not defined.
15.			print 'Elliott Smith Fan Club';
16.		}
17.		?></title>
18.	
19.		<style type="text/css">
20.			body {
21.				margin:0px 0px 0px 0px;
22.				background: #9F9;
23.				}
24.			#leftcontent {
25.				float:left;
26.				width:67%;
27.				background:#fff;
28.				border-right:2px solid #000;
29.				border-bottom:2px solid #000;
30.				margin-right:15px;
31.				padding-bottom:20px;
32.				}
33.			p,h1,pre {
34.				margin:0px 30px 10px 30px;
35.				}
36.			h1 {
37.				font-size:14px;
38.				padding-top:10px;
39.				}
40.			#rightcontent p {
41.				font-size:14px;
42.				margin-left:0px;
43.				}
44.		</style>
45.	
46.	</head>
47.	<body>
48.	<div id="leftcontent">
49.	<!-- BEGIN CHANGEABLE CONTENT. -->