@charset "UTF-8";
body  {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	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: #000000;
	font-size: 100%;
	background-color: #FFF;
 }
.twoColLiqRtHdr #topcontainer {
	margin: 0px;
	width: 100%; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	position: relative;
	padding-top: 0px;
	min-width: 780px;
	max-width: 1260px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #D4E8F9;
} 
.twoColLiqRtHdr #container {
	width: 90%; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	position: relative;
	padding-top: 10px;
	min-width: 780px;
	max-width: 1260px;
} 
.twoColLiqRtHdr #header {
	position: relative;
	background-image: url(/images/banner.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 350px;
} 
.twoColLiqRtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColLiqRtHdr #nav {
	margin: 0px;
	padding: 0px;
	width: 250px;
	height: 200px;
	position: relative;
	left: 35%;
	bottom: 30px;
}
.navul {
	list-style-type: none;
/*	width: 250px;
*/	overflow: hidden;
	float: right;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}
.navli {
	float: right;
	width: 200px;
	margin-bottom: 10px;
	background-color: #EE5C42; /*tomato*/
	background-image: -ms-linear-gradient(top, #F8BBB0 0%, #EE5C42 5%, #EE5C42 95%, #F8BBB0 100%);/* IE10 */ 
	background-image: -moz-linear-gradient(top, #F8BBB0 0%, #EE5C42 5%, #EE5C42 95%, #F8BBB0 100%);/* Mozilla Firefox */ 
	background-image: -o-linear-gradient(top, #F8BBB0 0%, #EE5C42 5%, #EE5C42 95%, #F8BBB0 100%);/* Opera */ 
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F8BBB0), color-stop(0.05, #EE5C42), color-stop(0.95, #EE5C42), color-stop(1, #F8BBB0));/* Webkit (Safari/Chrome 10) */ 
	background-image: -webkit-linear-gradient(top, #F8BBB0 0%, #EE5C42 5%, #EE5C42 95%, #F8BBB0 100%);/* Webkit (Chrome 11+) */ 
	background-image: linear-gradient(top, #F8BBB0 0%, #EE5C42 5%, #EE5C42 95%, #F8BBB0 100%);	border-top-width: medium;/* Proposed W3C Markup */
	border-top-style: ridge;
	border-right-style: ridge;
	border-bottom-style: ridge;
	border-left-style: ridge;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
}
a.nav:link,a.nav:visited {
	padding: 5px;
	display: block;
	color: #FFFFFF;
	text-decoration: none;
	text-align: center;
}
a.nav:hover,a.nav:active {
	background-color: #FF0000;
	text-align: center;
}
.twoColLiqRtHdr #navhere {
	background-color: #FF0000;
	text-align: center;
}
.twoColLiqRtHdr #subnav {
	position: relative;
	float: right;
	text-align: right;
	width: 500px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 12px;
	font-weight: bold;
	margin-top: 1px;
	margin-right: 0px;
	margin-bottom: 0px;
	z-index: 1;
	top: 0px;
	right: 10px;
}
.subul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}
.subli {
	float: right;
	list-style-type: none;
}
a.sub:link,a.sub:visited {
	display: block;
	color: #666;
	text-align: right;
	text-decoration: none;
	padding-left: 4px;
	padding-right: 4px;
}
a.sub:hover,a.sub:active {
	text-decoration: underline;
}
.twoColLiqRtHdr #subhere {
	font-weight: bold;
	text-decoration: underline;
}
/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqRtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
.twoColLiqRtHdr #sidebar1 {
	position: relative;
	margin: 0px;
	float: right; /* since this element is floated, a width must be given */
	width: 145px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 20px;
	border: thick double #8B0000;
	background-color: #FF0000;
	color: #FFF;
}
.twoColLiqRtHdr #sidebar1 h2 {
	text-align: center;
	font-size: larger;
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
/*	padding-bottom: 10px;*/
}
.twoColLiqRtHdr #sidebar1 h3 {
	text-align: left;
	font-size: medium;
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
.twoColLiqRtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
	font-size: small;
	color: #FFFFFF;
}
.twoColLiqRtHdr #sidebar2 {
	position: relative;
	margin: 0px;
	float: right; /* since this element is floated, a width must be given */
	width: 270px;
	margin-left: 50px;
	border: none;
}
.twoColLiqRtHdr #sidebar3 {
	position: relative;
	margin: 0px;
	float: right; /* since this element is floated, a width must be given */
	width: 270px;
	padding: 20px;
	margin-left: 50px;
	border: medium ridge #FF0000;
	background-color: #EEE;
}
.twoColLiqRtHdr #sidebar3 h1 {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	text-align: center;
	font-size: xx-large;
	color: #FF0000;
}
.twoColLiqRtHdr #sidebar3 h2 {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	text-align: center;
	font-size: x-large;
	color: #FF0000;
}
.twoColLiqRtHdr #sidebar3 p {
	font-size: large;
	color: #000;
}
.twoColLiqRtHdr #floatbox {
	margin: 0px;
	padding: 4px;
	float: right; /* since this element is floated, a width must be given */
	position: relative;
	border: thick ridge #F8BBB0;
	background-color: #EE5C42;
	margin-bottom: 50px;
}
.twoColLiqRtHdr #floatbox img {
	opacity:1.0;
	filter:alpha(opacity=100); /* For IE8 and earlier */
}
.twoColLiqRtHdr #floatbox:hover {
	opacity:0.6;
	filter:alpha(opacity=60); /* For IE8 and earlier */
}
/* Tips for mainContent:
1. the space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.twoColLiqRtHdr #mainContent {
	background-color: #FFFFFF;
	padding-top: 25px;
	padding-bottom: 35px;
	padding-left: 35px;
	padding-right: 0px;
	margin-top: 0;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 0;
}
.twoColLiqRtHdr #mainContent h1 {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	text-align: left;
	padding-right: 135px;
	padding-bottom: 5px;
	font-size: xx-large;
	color: #F00;
}
.twoColLiqRtHdr #mainContent h2 {
	text-align: left;
	font-size: x-large;
	padding-right: 135px;
	padding-bottom: 5px;
	padding-top: 30px;
	color: #555;
}
.twoColLiqRtHdr #mainContent h3 {
	text-align: left;
	font-size: large;
	padding-right: 135px;
	padding-top: 30px;
	color: #555;
}
.twoColLiqRtHdr #mainContent h4 {
	text-align: left;
	font-size: x-large;
	padding-right: 15px;
	padding-top: 10px;
	color: #555;
}
.twoColLiqRtHdr #mainContent p {
	text-align: left;
	padding-right: 135px;
	font-size: medium;
}
.twoColLiqRtHdr #fullContent {
	background-color: #FFFFFF;
	padding-top: 25px;
	padding-bottom: 35px;
	padding-left: 35px;
	padding-right: 35px;
	margin-top: 0;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 0;
}
.twoColLiqRtHdr #fullContent h1 {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	text-align: left;
	padding-right: 35px;
	padding-bottom: 5px;
	font-size: xx-large;
	color: #F00;
}
.twoColLiqRtHdr #fullContent h2 {
	text-align: left;
	font-size: x-large;
	padding-right: 35px;
	padding-bottom: 5px;
	padding-top: 30px;
	color: #555;
}
.twoColLiqRtHdr #fullContent p {
	text-align: left;
	padding-right: 35px;
	font-size: medium;
}
.twoColLiqRtHdr #formContent  {
	position: relative;
	background-color: #FFFFFF;
	padding: 10px;
	margin-top: 0;
	margin-right: 275px;
	margin-bottom: 0;
	margin-left: 10px;
}
.RealtorAdv {
	position: relative;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	margin-left: 10px;
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: left;
	font-size: 12px;
	color: #333;
}
.RealtorAdv h1 {
	font-size: 22px;
	font-weight: bold;
	color: #FF0000;
	display: inline;
}
.twoColLiqRtHdr #footer {
	float: right;
	margin: 0px;
	padding: 0px;
	margin-top: 20px;
/*	padding-top: 20px;*/
	position: relative;
	text-align: center;
	width: 100%;
	background-image: url(/images/house_sold.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
} 
.twoColLiqRtHdr #footer p {
	margin: 0;
	padding: 20px 0px;
	color: #333;
	font-size: x-small;
}
.twoColLiqRtHdr #map {
	margin: 0px;
	float: right;
	position: relative;
	text-align: right;
	margin-left: 10px;
	margin-right: 10px;
	padding: 0px;
}
.twoColLiqRtHdr #map h1 {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 16px;
	color: #FF0000;
}
.mapul {
	width: 180px;
	list-style-type: none;
	overflow: hidden;
	padding: 0px;
}
.mapli {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 12px;
	color: #999;
	float: right;
	list-style-type: none;
	width: 180px;
	line-height: 18px;
	padding: 0px;
}
a.map:link,a.map:visited {
	width: 180px;
	display: block;
	color: #666;
	text-align: right;
	text-decoration: none;
	padding: 0px;
}
a.map:hover,a.map:active {
	color: #666;
	text-decoration: underline;
	padding: 0px;
}
.twoColLiqRtHdr #maphere {
	color: #666;
	text-decoration: underline;
}
.twoColLiqRtHdr #socialfooter {
	float: right;
	position: relative;
	text-align: right;
	margin-top: 20px;
	margin-right: 10px;
	margin-bottom: 30px;
	width: 650px;
}
.twoColLiqRtHdr #socialfooter h1 {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 16px;
	color: #FF0000;
}
.twoColLiqRtHdr #socialfooter p {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 13px;
	color: #000;
}
/**************** Miscellaneous classes for reuse ******************/
.ahheaderleft {
	position: relative;
	float: left;
	margin-top: 1px;
	margin-left: 10px;
	margin-right: 1px;
	margin-bottom: 1px;
	padding: 0px;
	z-index: 2;
}
.graphicsSocial {
	padding: 0px;
	margin-left: 65px;
}
.graphicsSocial img {
	opacity:1.0;
	filter:alpha(opacity=100); /* For IE8 and earlier */
}
.graphicsSocial:hover {
	opacity:0.6;
	filter:alpha(opacity=60); /* For IE8 and earlier */
}
.fltright {
	position: relative;
	float: right;
	margin-top: 1px;
	margin-left: 10px;
	margin-right: 1px;
	margin-bottom: 1px;
	padding: 10px;
}
.fltrightnolink {
	position: relative;
	float: right;
	margin-top: 1px;
	margin-left: 15px;
	margin-right: 1px;
	margin-bottom: 1px;
	padding: 0px;
}
.fltleft {
	position: relative;
	float: left;
	margin-top: 1px;
	margin-left: 1px;
	margin-right: 15px;
	margin-bottom: 10px;
	padding: 10px;
}
.fltleftnolink {
	position: relative;
	float: left;
	margin-top: 1px;
	margin-left: 1px;
	margin-right: 15px;
	margin-bottom: 10px;
	padding: 10px;
}
.fltleft img, .fltright img {
	opacity:1.0;
	filter:alpha(opacity=100); /* For IE8 and earlier */
}
.fltleft:hover, .fltright:hover {
	opacity:0.6;
	filter:alpha(opacity=60); /* For IE8 and earlier */
}
.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;
}
.table {
	table-layout: fixed;
	border: solid #FF0000;
	width: 98%;
	margin-left: 10px;
	margin-right: 10px;
}
.tableheader {
	table-layout: fixed;
	background-color: #FF0000;
	color: #FFF;
	font-weight: bold;
}
.hometable {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	text-align: left;
	padding: 10px;
	font-size: large;
	color: #555;
	text-decoration: none;
	display: block;
	margin-right: 200px;
}
.hometablert {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	text-align: right;
	padding: 10px;
	font-size: large;
	color: #555;
	text-decoration: none;
	display: block;
	margin-left: 200px;
}
.hometable:link, .hometable:visited, .hometablert:link, .hometablert:visited {
	text-decoration: none;
}
.hometable:hover, .hometable:active, .hometablert:hover, .hometablert:active {
	text-decoration: none;
	color: #999;
}
.formfloatleft {
	float: left;
	padding: 0;
	margin: 0;
}
.bullet {
	color: #000000;
	margin-left: 25px;
	margin-bottom: 10px;
	list-style-position: outside;
	list-style-image: url(/images/bullet.gif);
	display: list-item;
}
.caption {
	text-align: left;
	font-size: xx-small;
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}
.quote  {
	width: 250px;
	margin-top: 40px;
	margin-bottom: 40px;
	text-align: center;
	font-size: x-large;
	color: #FFF;
	font-style: italic;
	background-color: #EE5C42;
	padding: 20px;
	border: thin ridge #FF0000;
	font-weight: normal;
}
.bodyTextItalic {
	text-align: left;
	font-size: small;
	font-style: italic;
	padding-bottom: 30px;
}
.bodyTextItalicSmall {
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	font-style: italic;
	padding-bottom: 5px;
	font-size: small;
}

