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

html, body {
	font: 12px Verdana, Helvetica, Arial, sans-serif;
	background: #FFF url(../imgs/bgnd-sparkle.jpg) left top no-repeat fixed;
	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 */
	height:100%;
}
.oneColFixCtrHdr #bgndoverlay {
	background: url(../imgs/bgnd-ribbon.png) bottom left no-repeat;
	height: 100%;
	min-height: 100%;
}
.oneColFixCtrHdr #container {
	width: 780px;  /* 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. */
}
.oneColFixCtrHdr #header {
	padding: 25px 0 0 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. */
}
.oneColFixCtrHdr #mainContent {
	padding: 0px;
}
.oneColFixCtrHdr #footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	height: 62px;
}
.oneColFixCtrHdr #footer p a {
	font-size: 9px;
	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 */
}
.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: 12px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 12px;
}
a:link {
	font-weight: bold;
	text-decoration: none;
	color: #000;
}
a:visited {
	font-weight: bold;
	text-decoration: none;
	color: #000;
}
a:hover {
	font-weight: bold;
	text-decoration: none;
	color: #ED1C24;
}