@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, 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: #000;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #DDD;
}
.twoColFixRtHdr #container {
	width: 780px;
	margin: 35px auto 15px auto;
	text-align: left;
	background-image: url(gpickett/images/residentialContent.jpg);
	background-repeat: no-repeat;
	background-color: #f5f5f5;
} 

#container2 {
	float:none;
	margin: 0 auto 0 70px;
}

#container h3{
	font-size:.6em;
	text-align:center;
	position:relative;
	bottom:2px;
	padding:0 0 2px 0;
	color:#CCC;
}
.twoColFixRtHdr #header {
	background-image: url(gpickett/images/logo.png);
	background-repeat: no-repeat;
	background-color: #3d95c5;
	padding: 0 0 80px 0;
	color: #FFF;
	margin: 0 0 10px 0;
	background-position:15px 5px;
		} 

#header h2 {
	font-size:1.1em;
	position:relative;
	left:480px;
	top:85px;
	
}

#header p{
	text-align: right;
	margin: 0 5px -10px 0;
}

.twoColFixRtHdr #header h1 {
	margin: 5px; /* 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 */
	
}

.twoColFixRtHdr #mainContent {
	float:left;
	margin: 240px auto 0 auto; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding:0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #FFF;
	width:90%;
	border: 1px solid #ccc;
} 

#maincontent2 {
	float:left;
	width:90%;
	padding:0;
	background-color: #ffffff;
	position:relative;
	right:50%;
	
}


#contentleft{
	width:48%;
	float: left;
	padding:7px;
	border-right:dashed 1px #CCC;
	}
	
#contentleft h1{
	font-size: 16px;
	color:#666;
	}
	
#contentleft p {
	font-size: 0.8em;
	color:#999;
	}
	
#contentleft h2 {
	color:#333;
	font-size:.8em;
}
	
#contentleft a {
	color:#3d95c5;
	font-size:10px;
	text-decoration:none;
}

#contentleft a:hover {
	color:#999;
}

#contentright{
	float:left;
	width:46%;
	padding:10px;
	}

#contentright p {
	font-size: 0.8em;
	color:#999;
	}

#contentright h1{
	font-size: 16px;
	color:#666;
}

#contentright a {
	color:#3d95c5;
	font-size:10px;
	text-decoration:none;
}

#contentright a:hover {
	color:#999;
}

.twoColFixRtHdr #footer {
	width:82%;
	margin: 10px auto 25px auto; 
	background:#ffffff;
	font-size:0.8em;
	text-indent: 5px;	
	border:1px solid #CCC;
		} 
		
.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 */
}

#footer a{
	
	color:#3d95c5;
	text-decoration:none;
}

#footer a:hover{
	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;
}

