body {
	font-family: "Lucida Grande", Geneva, Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	background-color: #cfcfcf;
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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 */
}
.oneColFixCtrHdr #container {
	width: 860px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0px 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 {
	background-color: #cfcfcf;
	padding-top: 10px;
}
.oneColFixCtrHdr #header img {
	display: block;
}
.oneColFixCtrHdr #topContent {
	background-image: url(../images/content_top.png);
	background-repeat: no-repeat;
	height: 14px;
}
.oneColFixCtrHdr #topContent p {
	text-align: right;
	font-size: 95%;
}
.oneColFixCtrHdr #content {
	background-image: url(../images/content_bg.png);
	background-repeat: repeat-y;
}
.oneColFixCtrHdr #mainContent {
	margin-left: 30px;
	margin-right: 30px;
	min-height:300px;
	height: auto !important;
	height: 300px;
}
a:link {
	color: #c60a0a;
	text-decoration: none;
}
a:visited {
	color: #c60a0a;
	text-decoration: none;
}
a:hover {
	color: #1675ff;
	text-decoration: underline;
}
.big_name {
	font-size: 130%;
	font-weight: bold;
}
.content_small {
	font-size: 95%;
}
.form_label {
	font-size: 90%;
	font-weight: bold;
}
.time_picker_div {
	padding:5px;
	border:solid #999999 1px;
	background:#ffffff;
}
.validation_error {
	background-color: #FFFFD5;
	text-align: left;
	width: 400px;
	border: thin solid #DD9988;
	color: #990000;
	padding: 10px;
	margin-left: 1px;
}
.section_divider {
	font-size: 140%;
	color: #7f251e;
	border-bottom-style: dotted;
	border-bottom-color: #666666;
	width: 99%;
	border-bottom-width: thin;
	font-weight: bold;
}
.body_table_row {
	padding: 4px;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #7b120e;
}
.body_table_row_header {
	font-size: 90%;
	font-weight: bold;
	padding: 5px;
	border-bottom-width: medium;
	border-bottom-style: solid;
	border-bottom-color: #7b120e;
}
.alternate_row_header {
	padding: 5px;
	font-weight: bold;
	border-bottom-width: medium;
	border-bottom-style: solid;
	border-bottom-color: #7b120e;
}
.alternate_row_footer {
	text-align:right;
	background-color: #7b120e;
	padding: 5px;
}
.alternate_row_1 {
	padding: 4px;
	background-color: #fbfbfb;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #7b120e;
}
.alternate_row_2 {
	padding: 4px;
	background-color: #f1f1f1;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #7b120e;
}

/* 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: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the 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;
}