@charset "UTF-8";
body  {
	background: #666666;
	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: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12pt;
}
.wrgPage #container {
	width: 1024px;
	margin: 12px auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-width: 1000px;
	background-color: #EEEEEE;
	border: medium double #111111;
} 
.wrgPage #header {
	border-bottom-width: medium;
	border-bottom-style: double;
	border-bottom-color: #111111;
	background-color: #C8AB95;
} 
.wrgPage #header #leftImage
{
	float: left;
	margin-top: 15px;
	margin-right: 6px;
	margin-bottom: 15px;
	margin-left: 6px;
	padding-top: 24px;
}
.wrgPage #header #rightImage
{
	float: right;
	margin: 24px 36px 12px 0px;
}

.wrgPage #footer {
	background:#DDDDDD;
	border-top-width: medium;
	border-top-style: double;
	border-top-color: #111111;
	text-align: center;
	height: 2em;
} 
.wrgPage #footer .copy  {
	float: left;
	padding: 6px 10px 8px 10px;
}
.wrgPage #footer .dateString {
	font-size: xx-small;
	float: right;
	padding: 10px 10px 8px 10px;
}

.wrgPage .pageHeading
{
	margin-bottom: 24px;
	font-size: 34px;
	font-family: "Times New Roman", Times, serif;
	font-weight: bold;
	padding-top: 24px;
}

.wrgPage .vertMenuBorder
{
	border-left-width: medium;
	border-left-style: solid;
	border-left-color: #666;
	margin-left: 16px;
}

.wrgPage #mainContent .paddedParagraph
{
	padding-right: 7em;
}

/* 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 */
	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;
}

