@charset "UTF-8";
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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
	background-color: #999999;
}
.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. */
	background-color: #FFF;
}
.oneColFixCtrHdr #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. */
	background: #FFF;
	background-image: url(graphics_common/stripe_header.gif);
	height: 100px;
	background-position: bottom;
}
.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: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px;
	background-color: #FFFFFF;
	background-image: url(graphics_common/main_border.gif);
	background-repeat: repeat-y;	
}
.oneColFixCtrHdr #mainContentIndex {
	background-color: #FFFFFF;
	background-image: url(graphics_common/index_background.gif);
	background-repeat: no-repeat;
	height: 500px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
}
.oneColFixCtrHdr #footer {
	height: 60px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-color: #999;
	background-image: url(graphics_common/footer_background.gif);
}
.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: 20px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
/* 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: left;
	margin-top: 20px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 160px;
	display: inline;
}

.fltflags { /* 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: left;
	margin-top: 25px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 20px;
	display: inline;
}

.fltrtbtm { /* 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: 0px;
}

.fltrtbtmx { /* 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-top: 0px;
	margin-right: -22px;
	margin-bottom: 0px;
	margin-left: 0px;
	display: inline;
}
/* Miscellaneous classes for reuse */
.fltrtfoot { /* 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-top: -138px;
	margin-right: 7px;
	margin-bottom: 0px;
	margin-left: 0px;
	display: inline;
}
.fltrtfooti { /* 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-top: -125px;
	margin-right: 7px;
	margin-bottom: 0px;
	margin-left: 0px;
	display: inline;
}
.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;
}
.fltlft {
	float: left;
	margin-left: -100px;
	padding-right: 80px;
}
.liten {font-size: smaller;}

