@charset "utf-8";
body  {
	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: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #333;
	line-height: 1.8em;
}
h1 {
	font-size: 1.6em;
}
h2 {
	font-size: 1.4em;
}
h3 {
	font-size: 1.2em;
}
a {
	color: #FFFF66;
}
#container {
	width: 1000px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #000046;
	border: 1px solid #000000;
} 
#header {
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
} 
#headerimage1 {
	top: 0px;
	left: 0px;
	margin-bottom: 10px;
	border: 3px ridge #FFFFFF;
	width: 994px;
	background-color: #6F0000;
	text-align: center;
}
#tdMLSsearch {
	background-color: #677D85;
}
#menubar {
	text-align: center;
}
#menubar img {
	padding: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#menubar a {
	display: inline-block;
	border: 3px ridge #FFFFFF;
	background-color: #6F0000;
}
#menubar a:hover {
	background-color: #555;
}
#menubar #current {
	background-color: #000046;
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 180px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px;
	background-color: #6F0000;
	line-height: 1.25em;
	font-size: 0.9em;
	margin-left: 25px;
	margin-top: 17px;
}
#sidebar1 img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#mainContent {
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
	margin-right: 10px;
} 
#mainContent2 img {
	float: right;
	height: 300px;
	width: 225px;
	margin-right: -15px;
	margin-left: 12px;
}
#container #mainContent a img {
	border: none;
}
#container #mainContent img {
	text-align: center;
}
#footer {
	text-align: center;
	font-size: 85%;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#container #footer #footercontact {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.5em;
	padding: .6em;
	font-weight: bold;
	line-height: .8em;
}
#footer img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.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;
}