/*-----------------------------------------------------------------------------------------------

	Filename			background.css
	Description			Css for only the background, covering two background over each other
	Website				ThijsVisser.nl
	Athor				Thijs Visser	

-----------------------------------------------------------------------------------------------*/

*{
margin: 0;
padding:0;
}

* body, * html{
min-height: 100%;
width:100%;
}
html body{
width: 100%;
height: 100%;

}
body{
background: #1d1d1d url('http://www.thijsvisser.nl/images/website_images/background_x_basic.jpg') left top repeat-x;
}

#one{
width:100%;
height: 100%;
position:fixed;
background: url('http://www.thijsvisser.nl/images/website_images/background_x2.jpg') left top repeat-x;
}

#two{
width:100%;
height: 100%;
background: url('http://www.thijsvisser.nl/images/website_images/background_big.jpg') left top no-repeat;
position:fixed;
left:0;
top:0;
}

*+html #two{
visibility:hidden;	
}

#content{
position:absolute;
}
