@charset "utf-8";
body  {
	font: 90% Verdana, Arial, Helvetica, sans-serif;
	background:url(../images/backgrounds/background.gif) repeat-x top left;
	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;
}

.twoColFixRtHdr #container { 
	width: 900px;  /* 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 */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* Header and logo */

.twoColFixRtHdr #header { 
	padding: 0;  /* 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: #3b6188;
	z-index: 1;
} 

.twoColFixRtHdr #logo {
	width:150px;
	float:left;
	margin-right:10px;
	margin-bottom:25px;
}

/* Navigation */

ul#navtabs {
  	list-style-type: none;
  	margin:0px 0px;
  	padding:0px 0px 0px 0px;
	float: left;
	width: 696px;
	font-family: georgia;
	font-size: 16px;
	font-weight:bold; 
	background:url(../images/nav/navtabs.jpg) no-repeat;
	height:40px;
}


ul#navtabs li {
  	list-style: none;
  	float:left;
	width:110px;
	padding:0;
	margin:0;
	text-align:center;
	font-weight:normal;
	font-family:Arial, Helvetica, sans-serif;
}
	
ul#navtabs li a {
  	float: left;
  	color: #000;
	padding:0;
	margin:15px 0 0 0;
	text-decoration:none;
	text-align:center;
	width:115px;
}

ul#navtabs li a:hover {
	text-decoration:underline;
	color:#fff;
}

/* Head panel (banner) */

#banner {
	background-image: url(../images/header/banner3.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 345px;
	width: 900px;
	color:#fff;
}
#banner h3 {
	font-weight:normal;
	color:#fff;
	margin:0 0 0 10px;
	padding:0;
	line-height:35px;
}

/* Content */

#Content {
	background:#fff;
	width:900px;
	margin:0;
	padding:10px 0 0 0;
}

/* Sidebar */

.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 305px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 35px 10px;
	background-image: url(../images/sidebar/08-0137_Real_Estate_Sign2.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
}

/* Main Content */

.twoColFixRtHdr #mainContent {
	margin-top: 0;
	margin-right: 305px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 50px;
	padding-bottom: 0;
	padding-left: 20px;
} 

#mainContent h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size:1.5em;
	color:#369;
	font-weight:normal;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
}

/* Footer */

.twoColFixRtHdr #footer { 
	background-color:#369;
	width:900px;
	margin-bottom:20px;
	color:#fff;
}
 
.twoColFixRtHdr #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-size: 12px;
  	color: #ffffff;
}
	
#footer ul {
	list-style:none;
	list-style-type:none;
	margin:0;
	padding:0;
	font:90% Verdana, Arial, Helvetica, sans-serif;
}

#footer ul a {
	color:#fff;}
	
.foot {
	float:left;
	background:#369;
	padding:25px 20px;
	margin-right:30px;
}
.footlast {
	float:none;
	padding:25px;
	background:#369;
}

/* Miscellaneous */

.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;
}

