
/* This is the moving lens square underneath the mouse pointer. */
.cloud-zoom-lens {
	border: 4px solid #888;
	margin:-4px;	/* Set this to minus the border thickness. */
	background-color:#fff;	
	cursor:move;		
}

/* This is for the title text. */
.cloud-zoom-title {
	font-family:Arial, Helvetica, sans-serif;
	position:absolute !important;
	background-color:#000;
	color:#fff;
	padding:3px;
	width:100%;
	text-align:center;	
	font-weight:bold;
	font-size:10px;
	top:0px;
}

/* This is the zoom window. */
.cloud-zoom-big {
	border:4px solid #ccc;
	overflow:hidden;
}

/* This is the loading message. */
.cloud-zoom-loading {
	color:white;	
	background:#222;
	padding:3px;
	border:1px solid #000;
}

/* 
 * MLII-327: Product detail image overlaps QVE windows.
 * This is because of the z-index 9999 in the cloud-zoom.1.0.2.js: 
 * <div id="wrap" style="top:0px;z-index:9999;position:relative;"></div>
 * Fixed this with adding an override declaration in this css file.
 */
.detailImage #wrap {
	z-index: auto !important;
}

/* 
 * MLPB-9143: Product detail image overlaps DHLML menu.
 * 
 * Root cause: z-index of class mousetrap in Cloud Zoom is greater than class '.sf-menu a:hover' of DHTML menu.
 * <div class='mousetrap' style='background-image:url(\".\");z-index:999;position:absolute;...' />
 *
 * Solution: Fixed this with adding an override declarations in this css file. 
 * Note that cloud-zoom-big's z-index should be lesser than mousetrap's one.
 */
.mousetrap {
	z-index: 98 !important;
}
.cloud-zoom-big {
	z-index: 97 !important;
}