/**
 * Various CSS styles relating to page structure and layout - that is, display.
 */
h1 { margin: 0; padding: 0; }

html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
}

img {
	border: 0;
}

body {
	text-align: center;
	background: #91200C;
}

#header {
	position: relative;
	width: 100%;
	height: 185px;
	text-align: left;
}
#header-left {
	position: absolute;
	left: 0;
	width: 45%;
	height: 100%;
	background: url(images/back-left.gif) repeat-x;
}
#header-right {
	position: absolute;
	right: 0;
	width: 45%;
	height: 100%;
	background: url(images/back-right.gif) repeat-x;
}
#header-center {
	position: relative;
	width: 765px;
	height: 185px;
	margin: 0 auto;
	background: black url(images/header/header.jpg) no-repeat;
}
#header h1,
#header h2 {
	display: none;
}

#page {
	position: relative;
	width: 765px;
	margin: 0 auto;
	text-align: left;
	border-left: 1px solid black;
	border-right: 1px solid black;
	background: white;
	z-index: 1;
}

#mainmenu {
	position: absolute;
	top: -21px;
	left: 0px;
	width: 565px;
	height: 21px;
	background: black;
}
#quickmenu {
	position: absolute;
	top: -158px;
	right: 0px;
	width: 200px;
	height: 20px;
	background: black;
}

#sidebar {
	position: relative;
	width: 200px;
	margin-top: -138px;
	float: right;
	z-index: 2;
}

#footer {
	width: 535px;
	margin-right: 200px;
	border-top: 1px solid black;
	background: white;
	font-family: "Verdana", "Arial", "Helvetica", sans-serif;
	font-size: 0.75em;
	line-height: 1.6em;
	padding: 15px;
}

#footer a:link  {
	color: #E02C0C;
	text-decoration: underline;
}

#footer a:visited {
	color: #AF230A;
	text-decoration: underline;
}

#footer a:hover {
	color: #0B46A6;
	text-decoration: underline;
}

#footer a:active {
	color: #FA2803;
	text-decoration: underline;
}