@charset "UTF-8";
body {
	background: #d8b13c;
	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-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
}
a:link {
	text-decoration: none;
	
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
#border {
	border-top: 1px solid #000000;
	padding-top: 0px;
	padding-bottom: 5px;
	margin-top: 0px;
}
 #container {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	border:5px solid #FFF;
	margin: 10px 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 {
	height:100px;
	padding: 0 10px 0 20px;  /* 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-color: #DDDDDD;
	background-image: url(images/header.gif);
	background-repeat: no-repeat;
	background-position: left top;
	border:1px solid #000;
}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#navigation {
	height:18px;
	background:#ccc;
}
#navigation li {
    margin-left:5px;
	display: inline;  /* <---Solution for bug IE6 */
    padding-right:5px;
	list-style: none;
	color:#000;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 250px;
	height:490px;/* the background color will be displayed for the length of the content in the column, but no further */

	background-image:url(images/housingSidebar.jpg)
	
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; /* 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-left:25px;
	padding: 5px 10px 15px 25px;
	background-color: #fefefe;
	border-left:1px groove #000;
}
.content_sidebar {
	margin: 0 0 0 280px; /* the left margin on this div element creates the column down the left 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. */
}

#updates {
	float:left;
	padding: 0 20px;
	width:590px;
	background:#eee;
	border:1px solid #000;
}
#updates h1 {
	font-family: "Comic Sans MS", cursive;
	font-size: 36px;
	font-weight: bold;
	color: #003;
}
#video {
	float:right;
	width:330px;
	background:#eee;
	border:1px solid #000;
}
#videolink {
	float:right;
	width:300px;
	background:#eee;
	border:1px solid #000;
}
#Contact {
	float:left;
	padding: 5px 20px;
	width:280px;
	background:#eee;
	border:1px solid #000;
}

#Box2 {
	float:left;
	padding: 5px 20px;
	margin-left:5px;
	width:280px;
	background:#eee;
	border:1px solid #000;
}

#Box3 {
	float:left;
	padding: 5px 20px;
	margin-left:5px;
	width:280px;
	background:#eee;
	border:1px solid #000;
}
#Box4 {
	float:right;
	padding: 5px 20px;
	margin-right:5px;
	margin-top:5px;
	width:80px;
	background:#eee;
	border:1px solid #000;
}
#position {
	float:left;
	width:700px;
	padding:0 20px;
}


#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000;
	height:25px;
}
#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: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.copy_L {
	float:left;
	top:1px;
	color: #FFFFFF;
	font-size:11px;
}
.copy_R {
	float:right;
	top:1px;
	color: #FFFFFF;
	font-size:11px;
}
.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;
}
.left {
	float:left;
}
.right {
	float:right;
}
.white {
	color:#FFF;
}
.black {
	color:#000;
}
.email {
	color:#000;
	font-size:12px;
}
.BoxHeading {
	font-family: "Comic Sans MS", cursive;
	font-size: 20px;
	font-weight: bold;
	color: #003;
}
.txt{
	padding:0 5px;
}
.title {
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 26px;
	font-weight: bold;
	color: #003;
}
.name {
	font-family: "Comic Sans MS", cursive;
	font-size: 11px;
	font-style: italic;
	padding-left: 30px;
	color: #333;
}
.details{
	font-family: "Times New Roman", Times, serif;
	font-size: 12px;
	color: #000;
}
.quote {
    font-size: 12px;
 	color:blue;
	font-style:italic;
 }
.HighLight {
	font-family: "Comic Sans MS", cursive;
	font-size: 15px;
	font-style: italic;
} 
