html, body {
	background-image: url("images/background.png");
}

html, body, #header, #menu, #content, #footer {
	margin: 0;
	border: 0;
	padding: 0;
}

#header {
	background-image: url("images/top.png");
	background-repeat: no-repeat;
	position: fixed;
	top: 0px;
	left: 212px;
	width: 550px;
	height: 120px;
}
* html #header {
	/* As IE6 doesn't support position: fixed */
	position: absolute;
}

#header a {
	display: block;
	margin-top: 17px;
	margin-left: auto;
	margin-right: auto;
	width: 500px;
	height: 74px;
}

#menu {
	background-image: url("images/menu.png");
	background-repeat: no-repeat;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 220px;
	height: 339px;
}
* html #menu {
	/* As IE6 doesn't support position: fixed */
	position: absolute;
}

#menu a {
	display: block;
	margin-top: 5px;
	margin-left: 30px;
	width: 150px;
	height: 36px;
}

#menu > :first-child {
	margin-top: 30px;
}
* html #menu {
	/* As IE6 dosn't support :first-child. Only works becouse of the broken box model of IE6 */
	padding-top: 25px;
}

#content {
	background-image: url("images/content.png");
	background-repeat: repeat-y;
	padding-top: 120px;
	margin-left: 212px;
	padding-right: 20px;
	padding-left: 20px;
	width: 510px;
}
* html #content {
	/* As IE6 icludes the padding in the width */
	width: 550px;
}

#title {
	display: none;
}

#contact {
	margin-left: 75px;
	margin-bottom: 0;
}
#contact dt, #contact dd {
	padding-top: 2px;
	padding-bottom: 2px;
}
#contact dt {
	width: 100px;
	clear: both;
	float: left;
}
#contact dd {
	margin-left: 100px; /* Must be the same as the width of the coresponding dt */
}

#footer {
	background-image: url("images/bottom.png");
	background-repeat: no-repeat;
	margin-left: 212px;
	width: 550px;
	height: 35px;
}

/* Support for nicely printed pages. */
@media print {
	html, body, #content {
		background-image: none;
	}
	#content {
		padding-top: 0;
		margin-left: 0;
		width: 100%;
		height: auto;
	}
	#title {
		display: block;
	}
	#header, #menu, #footer {
		display: none;
	}
}

tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
}

hr {
	width: 90%;
	text-align: center;
}

h1, h2, h3, h4, h5, h6, h7, th, dd, dt {
	font-family: Verdana, "DejaVu Sans", "Bitstream Vera Sans", Arial, "Liberation Sans", sans-serif;
	font-size: 14px;
	line-height: normal;
}

p, td, li {
	font-family: Arial, "Liberation Sans", Verdana, "DejaVu Sans", "Bitstream Vera Sans", sans-serif;
	font-size: 14px;
	line-height: normal;
}

pre, code {
	font-family: "Courier New", "Liberation Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace; 
	font-size: 14px;
	line-height: normal;
}

img {
	border: 0;
}

a:link {
	color: #0000FF
}
a:visited {
	color: #800080
}
a:active {
	color: #FF0000
}
a:hover {
	color: #FF0000
}

h1 {
	font-size: 18px;
	font-weight: bold;
	font-style: normal;
	letter-spacing: 1px;
	/* text-align: center; */
	text-align: left;
}

h2 {
	font-size: 17px;
	font-weight: bold;
	font-style: normal;
	letter-spacing: 1px;
	/* text-align: center; */
	text-align: left;
}

h3 {
	font-size: 16px;
	font-weight: normal;
	font-style: italic;
	letter-spacing: 0px;
	/* text-align: center; */
	text-align: left;
}

h4 {
	font-size: 15px;
	font-weight: normal;
	font-style: normal;
	letter-spacing: 0px;
	text-align: left;
}

h5, h6, h7 {
	font-size: 14px;
	font-weight: normal;
	font-style: normal;
	letter-spacing: 0px;
	text-align: left;
}
