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

body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #fff;
	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: #000;
}
body, table, input, textarea, select {
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
}

#container { 
	width: 693px;
	border: thin #999999 solid;
} 

#header { 
	position:relative;
} 

#mainContent { 
	text-align: left;
	padding: 10px;
}

#footer { 
	font-size: 9px;
} 

#dontprint { margin-top: 25px; }

.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;
}
h1 { padding: 0; margin: 0 0 5px 0; font-size: 18px; }
td.title { font-size: 18px; font-weight: bold; }
.bold { font-weight: bold; }
.red { color: #FF0000; }