@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #fff url(../images/body_bg.png) repeat-x scroll top;
	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: #333;
}
ul, li {
	list-style-type: none;
	margin: 0;
	padding: 0;
	list-style-position: inside;
}
.body #container { 
	width: 920px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 20px auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.body #header { 
	padding: 10px 30px 0 30px;
	height: 140px;/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background: url(../images/header_bg6.png) no-repeat scroll top center;
} 
.body #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 */
	color: #CCC;
}
.body #header h1 a {
	text-decoration: none;
	color: #fff;
}
.body #header h2 {
	color: #ccc;
	padding: 0;
	margin: 0;
}
.body #header .headerphone {
	float: right;
	color: #fff;
	padding: 15px 0 0 0;
	margin: 0;
}
.body #header p {
	color:#ccc;
	padding: 0;
	margin: 0;
}
.body #content {
	background: url(../images/content_bg3.png) repeat-y center top;
	padding: 20px 30px 20px 30px;
	overflow: hidden;
}
.body #content h1 {
	margin: 0;
	padding: 10px 0;
}
.body #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 170px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: url(../images/sidebar1_top.png) no-repeat scroll center top;
	padding: 15px 0 0 0;
	margin: 0;
	font-size: 80%;
}
.body #sidebar1 h3, .body #sidebar2 h3 {
	margin: 0;
	padding: 10px 0;
}
.body #sidebar1 li {
	background: url(../images/arrow.png) no-repeat scroll 0 7px;
	list-style-position: outside;
	padding: 0;
}
.body #sidebar1 li:hover {
	background-position: 5px 7px;
}

.body #sidebar1 li a {
	display: block;
	padding: 5px 0 5px 20px;
	color: #000;
	text-decoration: none;
}
.body #sidebar1 li:hover a {
}

.body .sidebar1content {
	background: url(../images/sidebar1_content.png) repeat-y scroll center;
	padding: 0 10px 1px 20px; /* padding keeps the content of the div away from the edges */

}
.body .sidebar1foot {
	background: url(../images/sidebar1_foot.png) no-repeat scroll left bottom;
	padding: 0 0 15px 0;
}

.body #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 15px 0 0 0; /* padding keeps the content of the div away from the edges */
	background: url(../images/sidebar2_top.png) no-repeat scroll center top;
	margin: 0;
	font-size: 80%;
}
.body .sidebar2content {
	background: url(../images/sidebar2_content.png) repeat-y scroll center;
	padding: 0 10px 1px 15px;
}
.body .sidebar2foot {
	background: url(../images/sidebar2_foot.png) no-repeat scroll center bottom;
	padding: 0 0 15px 0;
}


.body #mainContent { 
	margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.body #mainContentWide {
	margin: 0 0 0 200px;
	padding: 0 10px;
}
.body #footer { 
	padding: 10px 30px 0 30px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: url(../images/footer_bg1.png) no-repeat scroll center top;
	height: 105px;
	color: #999;
} 
.body #footer .footermenu {
	height: 20px;
	font-size: 70%;
}
.body #footer .footermenu li {
	float: left;
	border-right: 1px solid #999;
}
.body #footer .footermenu li:first-child {
	border-left: 1px solid #999;
}
.body #footer .footermenu li a {
	display: block;
	color: #999;
	text-decoration: none;
	padding: 0 10px 0 10px;
}
/*.body #footer .footermenu li:first-child a {
	padding-left: 0;
}
*/
.body #footer .footermenu li:hover a {
	color: #000;
	background-color: #999;
}
.body #footer .footermenu li:active a {
	background-color: #fff;
}
.body #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 */
}
.body #footer p.copyright {
	font-size: 70%;
}
.body #footer p.designanddevelopment {
	font-size: 70%;
	padding: 0;
}
.body #footer p.designanddevelopment a {
	color: #999;
	padding: 0 5px;
	margin: 0 5px;
	text-decoration: none;
	border-left: 1px solid #999;
	border-right: 1px solid #999;
}
.body #footer p.designanddevelopment a:hover {
	color: #000;
	background-color: #999;
}
.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;
	+display: none;
}
.asterisk {
	color: #F00;
}
.asterisk span {
	display: none;
	font-size: 10px;
	margin: 0 0 0 0;
}
.asterisk:hover span {
	display: inline;	
}
.sidetoside {	
	width: 90%;
}
.error {
	color: #F00;
	font-weight: bold;
	padding: 5px;
	border: 1px solid #f00;
}
#listinginfo {
	font-size: 12px;
}
#listinginfo td {
	padding: 3px;
	border: 1px solid #ccc;
}
#listingcontact {
	padding: 20px 0 0 0;
	margin: 20px 0 0 0;
	border-top: 1px solid #000;
}
td#listingslideshow {
	padding: 0;
	border: none;
}
input, textarea {
	border: 1px solid #ccc;
	background-color: #F3F3F3;
	padding: 3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333;
}
#listlistings td {
	padding: 3px;
	border: 1px solid #ccc;
}
#mls {
	margin: 0 0 0 171px;
}


