@charset "utf-8";
body {
	font: 100% Georgia, "Times New Roman", Times, serif;
	font-style:italic;
	background-color: #9F3100;
	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: #fff;
}
.oneColLiqCtrHdr #container {
	width: 80%;  /* this will create a container 80% of the browser width */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: center; /* this overrides the text-align: center on the body element. */
}
.oneColLiqCtrHdr #header {
	padding: 0px;
	text-align:center;
	margin:0 auto;
	width:900px;
}

.oneColLiqCtrHdr #mainContent { 
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */ 
	text-align: left;
}
.oneColLiqCtrHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	font-size:12px;
	text-align:center;
}
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 */
} 
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 */
}
a:link {
	color: #FF9900;
	text-decoration: none;
	font-weight: bold;
	background-color: transparent;
	font-size: 12px;
}
a:visited {
	color: #FF9900;
	text-decoration: none;
	font-weight: bold;
	background-color: transparent;
	font-size: 12px;
}
a:hover {
	color: #fff;
	text-decoration:underline;
	font-weight: bold;
	font-size: 12px;
}
a:active {
	color: #FF9900;
	text-decoration: none;
	font-size: 12px;
}

/* BUTTONS */

.NavHoriz {
	width:900px;
	border-collapse:collapse;
	border-top:2px solid #FF9900;
	border-bottom:2px solid #FF9900;
}
.NavHoriz th {
	display:none;
}
.NavHoriz td {
	padding:0px;
	white-space:nowrap;
	text-align:left;
	height:25px;
}
.NavHoriz td a {
	display:block;
	padding:0px 5px 0px 15px;
	color:black;
	font:Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	font-weight:bold;
	text-decoration:none;
	text-transform:uppercase;
	height:25px;
	line-height:24px;
	background-image:url(../images/BackgroundNav.gif);
	background-position:left;
	background-repeat:no-repeat;
}
.NavHoriz td a:hover {
	background-color:#FF9900;
	color:#FFFFFF;
	font:Georgia, "Times New Roman", Times, serif;
	font-size:14px;
	font-weight:bold;
	text-decoration:none;
	text-transform:uppercase;
	height:25px;
	background-image:url(../images/BackgroundNav.gif);
	background-position:left;
	background-repeat:no-repeat;
}
.NavHoriz th {
	display:none;
}
.NavHoriz .this a, .try2 .this a:hover {
	background:white;
	border-bottom:1px white solid;
}

.MainText{color:#FFFFFF; font-size:14px}