﻿@charset "utf-8";
*, html {
	margin: 0; /* it's good practice to zero the margin and padding of all the elements to account for differing browser defaults */
	padding: 0;
	border: none;
}
body {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	font-size: 0.9em;
	line-height: 135%;
}
#wrapper {
	width: 100%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0;
	text-align: left;
	background-image: url("../images/header-background.png");
	background-repeat: repeat-x;
	background-position: top;
}
.container {
	width: 940px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}
.left {
	width:50%;
	text-align: left;
	float: left;
}
.right {
	width:50%;
	text-align: right;
	float: right;
}
a:link {
	text-decoration: underline;
	color: #9A0000;
}
a:visited {
	text-decoration: underline;
	color: #9A0000;
}
a:hover {
	text-decoration: none;
	color: #C10000;
	text-align: center;
}
#navigation a {
	margin-left: 20px;
}
#header {
	background-image: url("../images/header-background.png");
	background-repeat: repeat-x;
	background-position:top;
	color: #FFF;
	height: 460px;
}
#header a:link {
	color: #FFF;
}
#header a:visited {
	color: #FFF;
}
#header a:hover {
	color: #C10000;
}
#header p {
	color: #FFF;
}
#news {
	color:#CCC;
	background-color:#666;
	height:30px;
	padding:10px;
	line-height:200%;
}
#news a:link {
	color: #FFF;
}
#news a:visited {
	color: #FFF;
}
#news a:hover {
	color: #C10000;
}
#body {
	min-height: 520px;
}
h1, h2 {
	padding-bottom: 15px;
	padding-top: 5px;
}
p {
	margin-top: 15px;
}
h3 {
	color: #9a0000;
	padding-bottom: 5px;
	padding-top: 5px;
}
h4 {
	color: #9a0000;
	padding-bottom: 0px;
	padding-top: 5px;
}
blockquote {
	margin-left:40px;
}
ul {
	margin-top: 15px;
	margin-left: 35px;
	margin-bottom: 10px;
}
li {
	padding-top: 2px;
	padding-bottom: 10px;
	list-style:url("../images/dash-white.png");
}
#footerContainer {
	width: 100%;
	height:60px;
}
#footer {
	padding-top:20px;
	width: 930px;
	margin: 0 auto;
}
.caption {
	color: #666;
	line-height: 150%;
}
.quote {
	font-size: medium;
	font-style: italic;
}



