/* @override 
	http://www.diamondreefestates.com/css.css
	http://www.equinoxdocumentaries.org/development/css.css
	http://diamondreefestates.com/css.css
*/

body  {
	font: 14px "Times New Roman", Times, serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 30px 0 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: #310c01;
	background: #2d0b00 url(images/bg.png) repeat-x;
}
#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 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. */
	height: 500px;
	background-color: #fff;
}

#container_siteplan { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 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. */
	background-color: #fff;
	padding-bottom: 20px;
	padding-right: 0;
	padding-left: 0;
}

#container_about { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 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. */
	height: 500px;
	background: #fff url(images/bg_about.jpg) no-repeat;
}



#container_lots { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 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. */
	height: 500px;
	background: #fff url(images/bg_lots.jpg) no-repeat;
}

#container_area { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 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. */
	height: 500px;
	background: #fff url(images/bg_area.jpg) no-repeat;
}



#container_directions { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 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. */
	height: 500px;
	background: #fff url(images/bg_directions.jpg) no-repeat;
}


#container_contact { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 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. */
	height: 500px;
	background: #fff url(images/bg_contact_us.jpg) no-repeat;
}

a {
	color: #310c01;
}


.small {
	font-size: 12px;
}

a:hover {
	text-decoration: none;
}

h1 {
	font-size: 24px;
	font-weight: normal;
	font-style: normal;
}

table.lots {
	font-size: 12px;
}

td.header {
	font-size: 140%;
}

p {
	font-size: 90%;
	line-height: 150%;
}

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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: 68px 10px 15px 0;
	z-index: 100;
	position: absolute;
	margin: 0;
	height: 415px;
}

#sidebar1 ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-position: inside;
	
}

#sidebar1 ul li {
	margin: 0;
	list-style-type: none;
	list-style-position: inside;
}

#sidebar1 ul li a {
	display:block;
	padding-left: 15px;
	color: #3d1b10;
	height: 29px;
	text-decoration: none;
}

#sidebar1 ul li a:hover {
	color: #be9e93;
	cursor: pointer;
	
}


#mainContent { 
	margin: 0 0 0 0px; /* 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. */
	padding: 0 0px 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	z-index: 10;
	position: absolute;
	float: left;
	
}



#innerContent { 
	float: right;
	margin: 0 auto;
	z-index: 10;
	width: 330px;
	padding-right: 30px;
	padding-top: 30px;
}

#footer {
	margin: 15px auto 0;
	width: 790px;
	height: 0px;
	clear: both;
	color: #ded9d7;
	font-size: 11px;
}

#footer a {
	color: #ded9d7;
	text-decoration: none;
}
#footer a:hover {
	text-decoration: underline;
}

#content_wrap {
	padding: 0;
	margin: 0;
}

.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;
}
.clear {
	clear: both;
}

#footer p {
	text-align: left;
	
}