@charset "utf-8";
/* CSS Document */
/*
This file is used for the IDX framed site.  Currently the following tags are used:
body
h1
h2
table
p
I am concidering enclosing sections in class containers and then you would use one of each in the class defines.  see .mls table below

*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 14px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}

h1 {
	font-weight: lighter;
}
h2 {
	font-weight: lighter;
}
/* center a table class="mls" requires the body text-align: center above */
table {
	margin-right: auto;
	margin-left: auto;
	text-align: left;
	padding: 1px;
	border-collapse: collapse;
	border: 1px solid #BDBDBD;
}
td {
	margin: 0px;
	padding: 1px;
	border: 1px solid #BDBDBD;
}

