@charset "utf-8";
body  {
	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: "Times New Roman", Times, serif;
	font-size: 16px;
	background-color: #d9d9d9;
	padding: 0px;
	margin: 0px;
}
a {
	color: #000000;
	text-decoration: none;
}
p {
	margin: 0px;
}

.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;
}





.fltrt { /* this class can be used whenever you wish to float an element to the right side of the page. The floated element must be placed above the element that will display next to it in the source code. */
	float: right;
}

.fltlft { /* this class can be used whenever you wish to float an element left on the page */
	float: left;
}
.hidden {
	display: none;
}
.text_lg_first_letter {
	font-size: 150%;
	color: #008480;
}
.size-80percent {
	font-size: 80%;
}
.outline_1pix_black {
	border: 1px solid #000000;
}
.text_justify {
	text-align: justify;
	display: inline-block;
}
.text_left_justify {
	text-align: left;
}
.text_right_justify {
	text-align: right;
}
.text_center_justify {
	text-align: center;
}
