/*html, body{
	width:100%;
	height:100%;
	overflow:hidden;
}

#layout{
	position:relative;
	width:100%;
	height:100%;
	overflow:auto;
}

.fixed{
	position:absolute;
	top:10%;
	left:40%;
	z-index:1;
} */
body
{
	background-attachment: fixed;
	
}

#header
{
	width: 100%;
	padding:0;
    position: fixed;
    top: 0;
    left: 0;
    //position: absolute;
    ;top: expression(
    document.getElementsByTagName( 'body' )[0].scrollTop + "px"
    );
	;left: expression(document.getElementsByTagName( 'body' )[0].scrollLeft+"px");		
	z-index:999;
	background-color:#ffff85; /*#FFF9F0;*/
	border:0;
	border-top: 1px #ddd solid;
	/*border-bottom: 1px #999 solid;*/
	
}

#content
{
	padding: 40px 0 100px;
    width: 100%;
	z-index:0;
}

#footer
{
	width: 100%;
    position: fixed;
    left: 0;
	bottom:0;
    //position: absolute;
    ;top: expression(document.getElementsByTagName( 'body' )[0].scrollTop+document.getElementsByTagName( 'body' )[0].clientHeight-footer.clientHeight);
	;left: expression(document.getElementsByTagName( 'body' )[0].scrollLeft+"px");	
	padding:0;
	height:50px;
	z-index:888;
	background-color:#ffff85; /*#FFF9F0;*/
	border-top: 1px #999 solid;
	border-bottom: 1px #ddd solid;
}
