@charset "utf-8";
body {
	font: 100% Verdana, Geneva, sans-serif;
	/*background: #890202;*/
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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;

}
#img.source-image {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.bg {
	left:0;
	position:absolute;
	top:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#765e32;
	background-image: url(../images/bkgd.jpg);
	background-repeat:repeat-y;
	background-attachment: fixed;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	padding:10px 10px 10px 10px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-left: outset 1px #C5D6E2;
	border-bottom: outset 2px #a0bacd;
	border-top: outset 1px #C5D6E2;
	border-right: outset 2px #a0bacd;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: #890202;
}

#header {

	padding: 0;  /* 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. */
	margin:0;
}
#header h1 {
	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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#hdrLogo {
	text-align: left;
	margin: 0px;
	padding: 10px 0 0 0;
}
#menu {
	text-align: center;
	margin-top: 0px;
	margin-right:20px;
	margin-bottom: 0px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
.maroon{
	color:#890202;
}
#container #header #CSSPanel1 #CSSPanel1_f #CSSPanel1_f_front #CSSPanel1_f_content #menu a {
	font-size: 1.2em;
	text-decoration:none;
	font-style: normal;
	font-weight: bold;
	font-variant: small-caps;
	color: #f1f4f9;
}
#container #header #CSSPanel1 #CSSPanel1_f #CSSPanel1_f_front #CSSPanel1_f_content #menu .padRight {
	padding-right: 15px;
}
#mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin:10px 0 0 0;
}
#CSSPanel2_h_content img {
	text-align: left;
	margin-top: 15px;
	margin-left: 0px;
}

.hdr {
	text-align: left;
	padding-left: 20px;
}

#container #mainContent #content {
	background-color: #fbfbfb;
	vertical-align:top;
	background-image:url(../images/main_bkgd.gif);
	background-position:top;
	background-repeat:repeat-x;
}
#container #mainContent #main_top {
	margin: 0px;
	padding: 0px;
	height:29px;
}
#container #mainContent #main_bottom {
	margin: 0px;
	padding: 0px;
	height:29px;
	vertical-align: baseline;
}
#container #mainContent #content #copyContainer {
	min-height:320px;
	font-family:comic sans ms,fantasy;
    margin-top:0px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
#copyContainer p {
	font-size: 14pt;
	font-weight:500;
	padding:0;
}
#content a {
	font-variant: normal;
	text-decoration: underline;
	color:#890202;
}
#content a:hover {
	font-variant: normal;
	text-decoration: none;
		color:#000000;
}
.mapquest{
	font-size:10px;
	line-height:25px;
	font-style:italic;
	font-weight:normal;
}
#copyContainer .fltlft {
	border: medium ridge #890202;
	margin-top:10px;
	margin-right:12px;
}
#copyContainer .fltrt {
	border: medium ridge #890202;
	margin-top:10px;
	margin-left:10px;
}
.bg #container #mainContent #content #CSSPanel2 #CSSPanel2_c #CSSPanel2_c_front #CSSPanel2_c_content #copyContainer .location {
	padding:20px;
}

.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;
}
#footer {
	padding: 15px 10px 0px 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	margin:0; 
	font-size:10px;
	color:#FFFFFF;
	text-align:right;
}
#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: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer a {
	font-variant: normal;
	text-decoration: none;
}
#footer a:hover {
	font-variant: normal;
	text-decoration: underline;
}
.uln {
	text-decoration: underline;
}
.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;
}