@charset "utf-8";
/* CSS Document */

/* CLEAR BROWSER DEFAULTS for padding, margine and borders for these elements for a fresh slate for your lay out*/
blockquote, h1, h2, h3, h4, body, p, img, td, a, a img {
	margin: 0px; 
	padding: 0px;
	border: 0px;}

body  {}

 #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-image: url(images/header-coldwell.jpg);
	margin: 0 auto 0 auto; /* the auto margins (in conjunction with a width) center the page */
	width: 840px;
	height:309px;
}

 /* This is the DIV that holds the words 'contact info' at the top right of the screen */
 #contactus { text-align:right; margin-right:65px;}
 /* This is the DIV - the container - that holds all the left and right column divs, and holds the 'website' in the center of the screen */
 
 #container {
	background-color:#FFF;
	width: 840px;
	margin: 0 auto; /* the auto margins left & right (in conjunction with a width) center the div on the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	overflow: hidden; /* this declaration makes the .container understand where the floated columns within ends and contain them */} 
	


 /* This is the DIV - that creates the left side column where the navigation box will go */
 #sidebar1 {
	float: left;
	width: 170px;
	padding: 0 12px 0 8px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #E3EEF4;
	}

/* This is the DIV that holds the 'top' graphic of the menu box*/
 #nav-top {float: left; /* since this element is floated, a width must be given */
	width: 177px; /* 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: 0px;
	background-image:url(images/menutop-coldwell.jpg); height:21px; width:177px;}
	
/* This is the DIV that holds the the php include file that is the menu/navigation, and has the background*/
 #nav {float: left; /* since this element is floated, a width must be given */
	width: 177px; /* 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: 0px;
	background-image: url(images/menubak-coldwell.jpg); height:2px; width:177px; background-repeat:repeat-y;
	height:auto;}
	
/* This is the DIV that holds the the php include file that is the menu/navigation, and has the background*/
 #nav-bottom {float: left; /* since this element is floated, a width must be given */
	width: 177px; /* 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: 0px; 
	background-image:url(images/menubottom-coldwell.jpg); height:7px;}
	
 .sidebar-title {
	width: 177px; /* 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 */
	height: 25px;
	margin: 10px 6px 0 3px; 
	padding: 0; background-image:url(images/sidebar-bak.jpg); font-size:1.2em; text-align:center; color:#FFF; font-weight:bold;}
	
	
	 .sidebar-info{
	width: 137px; /* 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 */	
	margin: 0px auto; 
	padding: 0;}
	
	/* This is the DIV - that creates the 1 main content area, right side column next to the left side menu */

 #mainContent { 
width: 644px;
float: left;
	margin-left: 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color:#ffffff;
	} 
	/* These are the DIVs - that create the 2 sub content areas, next to the left side menu. The 5px margin right puts some space between the two content columns */
	#mainColLeft {
	margin: 0 5px 0 5px;
	width: 320px;
	float: left; } 
	
	#mainColRight { 
	float: left;
	width: 319px;} 
	
 #footer {
	padding: 0;  
	background-image:url(images/footer-coldwell.jpg);
	height:71px;
} 


/* use this to clear text wrapped around an image*/
BR.clear{
     clear:both; 
}

img.alignLeft { 
    float: left; 
}
img.alignRight { 
    float: right; 
}


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

