@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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	background-color: #333333;
}
a:link, a:visited {
	color: #892034;
	text-decoration: none;
	font-weight: bold;
}
a:hover {
	text-decoration: underline;
}
h1, h2, h3, h4 {
	color: #825C26;
	font-family: Georgia, "Times New Roman", Times, serif;
	letter-spacing: 0.05em;
	margin-bottom: 0px;
}
h1 {
	font-size: 140%;
}
h2 {
	font-size: 130%;
}
h3 {
	font-size: 120%;
}
 #container {
	width: 924px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #FFFFFF;
	background-image: url(images/content_bg.jpg);
	background-repeat: repeat-y;
} 
 #header {
	padding: 0;
	background-repeat: no-repeat;
	background-image: url(images/exit_realty_logo.jpg);
	background-position: left 160px;
}
#nav {
	float: left;
	width: 600px;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0px;
	list-style-type: none;
	margin-top: 0px;
	margin-left: 250px;
}
#mainContent {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 20px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	background-repeat: no-repeat;
	background-position: left top;
} 
#mainContent p {
	line-height: 1.4;
	margin-top: 0px;
}
 #footer {
	background-image: url(images/footer_bg.jpg);
	background-repeat: no-repeat;
	background-position: bottom;
	padding-top: 0;
	padding-right: 10px;
	text-align: center;
	padding-bottom: 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 */
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 120%;
}
.box {
	background-image: url(images/boxbody.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	width: 185px;
}
.box h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 108%;
	color: #FFF;
	background-image: url(images/boxheader.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #892034;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 10px;
	text-align: center;
}
.box h3 a {
	color:#FFF;
	text-decoration: none;
}

.box p, .box p a {
	font-family: Georgia, "Times New Roman", Times, serif;
	margin: 0px;
	font-size: 90%;
	text-align: center;
	padding: 5px;
	color: #333;
	text-decoration: none;
}
.box a:hover {
	text-decoration: underline;
}
.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;
}
