
/* This is the moving lens square underneath the mouse pointer. */
.cloud-zoom-lens {
	border:2px solid #f37321;
	background:#FFF;
	margin:-2px;
    cursor:move;
    z-index: 10;
}
/* CSS for zoom window. */
.cloudzoom-zoom {
    border:1px solid #888;
    width:0;
    height:0;
    box-shadow: -0px -0px 10px rgba(0,0,0,0.40);
    background:#fff;
}

/* A blank image */
.cloudzoom-blank {
/*    background-image:url(blank.png);*/
}
/* CSS for captions */
.cloudzoom-caption {
    display:none;   /* CSS captions should be hidden initially */
    text-align: left;
    background-color:#000;
    color:#fff;
    font-weight:bold;
    padding-top:9px;
    padding-bottom:7px;
    font-size:12px;
    text-align:center;
}
/* This is the zoom window. */
.cloud-zoom-big {
	border:2px solid #f27322;
	overflow:hidden;
	background-color:#FFF;
	background-repeat:no-repeat;
}

/* 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 loading message. */
.cloud-zoom-loading {
	color:white;	
	background:#222;
	padding:3px;
	border:1px solid #000;
}


