Bonjour et merci d'avance pour votre aide.

Probléme liée à mon background repeat-y qui est centré.

http://www.delightfactory.eu/index.php

En 1450x1050 le site semble s'afficher correctement, à la différence que si le viewport passe sous les 1350px with, mon background body se décale.
Dans le cas inverse où il est égale ou dépasse les 1350px, il est parfaitement centré, comment puis-je évité cela ?

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
<body>
<div id="DIV_Global">
<div id="DIV_Leftbody"></div>
<div id="DIV_Body">
<div id="DIV_Flash"></div>
<div id="Include"></div>
<div id="DIV_Footer"></div>
</div>
<div id="DIV_Rightbody"></div>
</div>
</body>
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
body {
	margin: 0px;
	padding: 0px;
	text-align: center;
	background-image: url(../PIC/Lineground.jpg);
	background-repeat: repeat-y;
	font-family: Helvetica, Arial;
	font-size: 12px;
	color: #666;
	background-position: center top;
	background-color: #FFF;
	height: 100%;
}
#DIV_Footer {
	background-image: url(../PIC/DIV_Bottom.jpg);
	height: 147px;
	width: 1020px;
	margin-bottom: 0px;
}
#DIV_Install {
	height: 562px;
	width: 1020px;
	background-image: url(../PIC/Install_flash.jpg);
	background-repeat: no-repeat;
	padding-top: 380px;
	font-family: Helvetica, Arial;
	font-size: 12px;
	color: #FFF;
	text-align: left;
	padding-left: 90px;
}
 
#DIV_Global {
	width: 1350px;
	margin-right: auto;
	margin-left: auto;
	text-align: left;
}
#DIV_Body {
	float: left;
	width: 1020px;
}
#DIV_Flash {
	width: 1020px;
	height: 506px;
	margin: 0px;
}
 
 
 
#DIV_Leftbody {
	background-image: url(../PIC/Left_body.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	width: 165px;
	float: left;
	height: 1300px;
}
 
#DIV_Rightbody {
	background-image: url(../PIC/Right_body.jpg);
	background-repeat: no-repeat;
	background-position: right;
	width: 165px;
	float: left;
	height: 1300px;
}
#Include {
	margin: 0px;
	width: 1020px;
	height: 1300px;
	background-color: #F00;
}




Merci