
/* This is the moving lens square underneath the mouse pointer. */
.cloud-zoom-lens {
	margin: -1px 0;
    background-image: url(../images/cloudzoom_lens_bg.png), url(../images/cloudzoom_lens.png);
    background-repeat: repeat, no-repeat;
    background-position: center center, center center !important;
	cursor:move;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, .2);
       -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, .2);
            box-shadow: 0 2px 2px rgba(0, 0, 0, .2);
}

/* 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:1px solid #e0e0e0;
    background: #f00;
	overflow:hidden;
}

/* This is the loading message. */
.cloud-zoom-loading {
	color:white;	
	background:#222;
	padding:3px;
	border:1px solid #000;
}


