@charset "utf-8";
/* CSS Document */

body {
	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: #000000;
	background-color: #000000;
	background-image: url(../images/bkg.jpg);
	background-repeat: repeat-x;
	font-family: "Lucida Grande", "Lucida Sans", Verdana, sans-serif, Arial;
	font-size: .9em;
}
/* Miscellaneous classes for reuse */
.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 The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #container h1 {
	font-family: "Lucida Grande", "Lucida Sans", Verdana, sans-serif, Arial;
	font-size: 1.5em;
	color: #931516;
}
.oneColFixCtrHdr   #mainContent   a {
	font-family: "Lucida Grande", "Lucida Sans", Verdana, sans-serif, Arial;
	color: #313634;
	text-decoration: underline;
}
.oneColFixCtrHdr  #mainContent  a:hover {
	color: #5C0402;
	text-decoration: none;
}
.oneColFixCtrHdr #container li {
	list-style-type: square;
}
.oneColFixCtrHdr #container h2 {
	font-family: "Lucida Grande", "Lucida Sans", Verdana, sans-serif, Arial;
	font-size: 1em;
	color: #313634;
}
.oneColFixCtrHdr #header {
	background: #ffffff;
	padding: 0 0px 0 0px;  /* 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. */
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	background-color: #931516;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#C7CECF;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #313634;
}
.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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.9em;
}
.oneColFixCtrHdr  #mainContent  img {
	border: 2px solid #727272;
}
	
.oneColFixCtrHdr #mainContent #flash {
	text-align: center;
	color: #931516;
	height: 220px;
	width: 427px;
	border: thin solid #333333;
	margin-right: auto;
	margin-left: auto;
}

.oneColFixCtrHdr #mainContent #address {
	text-align: center;
	color: #931516;
	margin-right: auto;
	margin-left: auto;
}
