/* ************************************* */
/* ***************** for POP UP FUNCTION */
.zoomBlock {
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:150;
}

.superZoomBlock {
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:200;
}

.zoomMessagePanierBlock {
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:250;
}

#fade, 
.fade {
	position:fixed; 
	width:100%;
	height:100%;
	background-color:#ffffff;
	filter:alpha(opacity=1);
	opacity: .11;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)"; /*--IE 8 Transparency--*/
	left:0;
	/*z-index:100;*/
}

.fadeSuperZoom {
	position:fixed; 
	width:100%;
	height:100%;
	background-color:#ffeeee;
	filter:alpha(opacity=50);
	opacity: .50;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; /*--IE 8 Transparency--*/
	left:0;
	/*z-index:100;*/
}

.popupBlock {
	background:#ffffff;
	border:1px solid #892955;
	float:left;
	width:633px;
	position:fixed;
	top:20%;
	left:50%;
	margin:0 0 0 -250px;
	/*z-index:101;*/
}

.popupBlockSuperZoom {
	background:#ffffff;
	border:1px solid #892955;
	float:left;
	width:633px;
	position:fixed;
	top:20px;
	left:50%;
	margin:0 0 0 -250px;
	/*z-index:101;*/
}

.popupBlockPatentierMessage {
	background:yellow;
	border:1px solid #892955;
	float:left;
	width:633px;
	position:fixed;
	top:350px;
	left:50%;
	margin:0 0 0 -200px;
	/*z-index:101;*/
}

.popupBlock .popup,
.popupBlockSuperZoom .popup {
	width:100%;
	/*z-index:102;*/
}
* html .popupBlock .popup, 
* html .popupBlockSuperZoom .popup {
	height:95%;
}


/*
Making IE6 Understand Fixed Positioning
*/

* html #fade, 
* html .fade,
* html .fadeSuperZoom {
	position:absolute;
	top:expression(eval(document.compatMode &&
	document.compatMode=='CSS1Compat') ?
	documentElement.scrollTop : document.body.scrollTop);
}

* html .popupBlock, 
* html .popupBlockSuperzoom,
* html .popupBlockSuperZoom {
	position:absolute;
	top:expression(eval(document.compatMode &&
	document.compatMode=='CSS1Compat') ?
	documentElement.scrollTop
	+((documentElement.clientHeight-this.clientHeight)/2)
	: document.body.scrollTop
	+((document.body.clientHeight-this.clientHeight)/2));
	left:expression(eval(document.compatMode &&
	document.compatMode=='CSS1Compat') ?
	documentElement.scrollLeft 
	+ (document.body.clientWidth /2 ) 
	: document.body.scrollLeft 
	+ (document.body.offsetWidth /2 ));
}
