@charset "UTF-8";
html,
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;
	height:100%;
	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;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	background-color: #6a6667;
}
img {
	border:none;
}
.HLyel {
	background-color: #FF6;
}
.HLyelPALE {
	background-color: #FFC;
}
.HLgray {
	background-color: #CCC;
}
.LEFT {
	text-align: left;
}
.red {
	color: #B7121F;
}
.CENTER {
	text-align: center;
}
.SMALL6 {
	font-size:6pt;
}
.SMALL7 {
	font-size:7pt;
}
.SMALL8 {
	font-size:8pt;
}
.SMALL9 {
	font-size:9pt;
	font-weight:100;
}
.SMALL10 {
	font-size:10pt;
	font-weight:100;
}
.LARGE11 {
	font-size:11pt;
}
.LARGE12 {
	font-size:12pt;
}
.LARGE14 {
	font-size:14pt;
}
.LARGE16 {
	font-size:16pt;
}
.LARGE24 {
	font-size:24pt;
	font-weight:100;
}
.PAD {
	padding-left:25px;
}
.PADtop {
	padding-top:35px;
}
.strikethrough {
	text-decoration: line-through;
}
.green {
	color: #093;
	font-size:14pt;
}
div#container {
	min-height:100%;
	position:relative;
	width: 955px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-family: Arial, Helvetica, sans-serif;
	background-color:#FFF;
}
div#header {
	border-top: 40px solid #6a6667;
}
div#mainContent {
	padding-left: 72px;
	padding-right: 72px;
}
#mainContent a:link {
	text-decoration: none;
	font-weight: normal;
	color: #B7121F;
}
#mainContent a:visited {
	text-decoration: none;
	font-weight: normal;
	color: #B7121F;
}
#mainContent a:hover,
#mainContent a:active {
	text-decoration: none;
	font-weight: bold;
	color: #B7121F;
}
#centeredmenu ul {
   clear:left;
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   left:50%;
   text-align:center;
}
#centeredmenu ul li {
   display:block;
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   right:50%;
}
#centeredmenu ul li a {
   display:block;
   margin:0 0 0 1px;
   padding:3px 10px;
   color:#B7121F;
   font-size:1.3em;
   text-decoration:none;
   line-height:1.3em;
}
#centeredmenu ul li a:hover {
   color:#B7121F;
}
#centeredmenu ul li a:active,
#centeredmenu ul li a:hover {
   color:#B7121F;
   font-weight: bold;
}
table {
	margin:0;
	float:left;
	width:100%;
	overflow:hidden;
	position:relative;
}
div#footer {
	position:absolute;
	bottom:0;
	margin: 0 auto;
	width:955px;
	height:40px;
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color: #6a6667;
	font-size: 7pt;
	color:#333;
	text-align: center;
}
#footer a:link {
	text-decoration: none;
	font-weight: normal;
	color: #333;
}
#footer a:visited {
	text-decoration: none;
	font-weight: normal;
	color: #333;
}
#footer a:hover,
#footer a:active {
	text-decoration: none;
	font-weight: bold;
	color: #333;
}

#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-top: 12px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
