@charset "UTF-8";
body {
	background: #e6e6e6;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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 */
	color: #79797d;
	font: 95% "Avant Garde", "Century Gothic", "Lucida Grande", Lucida, Verdana, sans-serif;
}
.oneColFixCtrHdr #container {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 10px auto 0; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #AA0000;
	text-align: left;
}
.oneColFixCtrHdr #header {
	padding:   /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */;
	padding-top: 20px;
	padding-bottom: 10px;
	padding-right: 20px;
	height: auto;
}
.oneColFixCtrHdr #header img {
	margin: 0;
	padding: 0 15px 0 30px;
}

.oneColFixCtrHdr #navbar {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0 10px 0 20px;
	text-align: center;
}

.oneColFixCtrHdr #navbar img {
	margin: 0; /* zeroing the margin of the last element in the div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0 20px 0 0;
	text-align: center;
}

.oneColFixCtrHdr #mainContent {
	padding: 10px 30px 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}

.oneColFixCtrHdr #mainContent p {
}

	
.oneColFixCtrHdr #footer {
	padding: 0 10px;
	margin-bottom: 5px;
	font-style: italic;
	color: #A50014;
	font-size: 120%;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 5px 25px 5px 5px;
	text-align: right;
}

li {
	padding-bottom: 5px;
	padding-left: 5px;
	padding-top: 5px;
	list-style-image: url(images/bulletbig.gif);
}

.red {
	color: #a91932;
}

.grey {
	font-weight: bold;
	color: #666;
}




a:link {
	color: #a91932;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #a91932;
}
a:hover {
	text-decoration: none;
	color: #5a0a13;
}
/* float */

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
/* outhouse design */

#outhouse {
	width: 780px;
	margin: 0 auto;
	text-align: right;
	font-size: 80%;
	padding: 0 25px 0 5px;
	color: #9b9999;
}

#outhouse a {
	color: #999;
	text-decoration: none;
}

#outhouse a:visited {
	color: #999;
}

#outhouse a:hover {
	color: #333;
}

h1 {
	color: #a91932;
	font-size: 200%;
	font-weight: normal;
	font-style: normal;
}

h2 {
	color: #47484b;
	font-size: 125%;
	font-weight: normal;
	font-style: normal;
}
.reditalic {
	color: #a91932;
	font-style: italic;
	font-size: 100%;
}

