@charset "utf-8";
html, body {
		height:100%;
		}


body  {
	font: 100%/1.3em Verdana, Arial, Helvetica, sans-serif;
	background: #1c1a14 url(../images/bg_splash.jpg) no-repeat right bottom fixed;
	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: #f0f0f0;
}
* {margin:0; padding:0;}
#distance { 
		width:1px;
		height:50%;
		background-color:#1c1a14;
		margin-bottom:-159px; /* half of container's height */
		float:left;
		}
 

#container { 
	width: 743px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	position:relative; /* puts container in front of distance */
	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. */
	clear:left;
	height:318px;
} 


#contentContainer { 
	width: 743px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(../images/splash_center_bg.jpg) no-repeat;
	margin: 0;
	padding:0;
	height:318px; 
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 420px; /* 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 */	
	text-align:center;
}
#textBox{
	width:375px;
	margin:40px 0 35px 0;
	}
#mainContent { 
	margin: 0 470px 0 0; /* 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: 40px 10px 0 40px; 

} 
p {
	margin:0.7em 0;
	font-size:.87em;
	}
img, a{outline:none;}
ul.menuSplash{	
	text-align:center;
	margin-top:0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 374px;
	height:71px;
}
ul.menuSplash li{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	text-align: left;
	cursor: pointer;
	float: left;
}
ul.menuSplash a.design{
	background-image: url(../images/splash_design_b.jpg );
	background-repeat: no-repeat;
	background-position:0 70 ;
	width: 187px;
	height: 71px;
	margin: 0;
	padding: 0;
	border:none;
	text-indent:-10000px;
	display:block;
}

ul.menuSplash a:hover.design{ 
	background-image: url(../images/splash_design_b.jpg);
	background-repeat: no-repeat;
	background-position:0 -71px ;

}
ul.menuSplash a.property{
	background-image: url(../images/splash_property_b.jpg );
	background-repeat: no-repeat;
	background-position:0 0 ;
	width: 187px;
	height: 71px;
	margin: 0;
	padding: 0;
	border:none;
	text-indent:-10000px;
	display:block;
}

ul.menuSplash a:hover.property{ 
	background-image: url(../images/splash_property_b.jpg);
	background-repeat: no-repeat;
	background-position:0 -71px ;

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