/* ! 2006/06/30.jpg */
/* ! 2006/06.jpg */
/* ! 2006.jpg */
/* default.jpg */

body {
    background-image: url("/default.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position:  center;
}



@media (max-width: 2000px) {
	body {
    	background-image: url("/default.jpg@2000");
	}
}


@media (max-width: 1800px) {
	body {
    	background-image: url("/default.jpg@1800");
	}
}


@media (max-width: 1200px) {
	body {
    	background-image: url("/default.jpg@1200");
	}
}


@media (max-width: 900px) {
	body {
    	background-image: url("/default.jpg@900");
	}
}


@media (max-width: 600px) {
	body {
    	background-image: url("/default.jpg@600");
	}
}

