/*
 Cloud Zoom CSS. (c)2012 Star Plugins.
 This CSS can be altered to change the look and size of the lens.
*/
.cloudzoom-lens {
    border:none;
    border:1px solid #888;
    width:100px;
    height:100px;
    box-shadow: -0px -0px 10px rgba(0,0,0,0.40);
    cursor:crosshair;
	z-index:1000;
	position:relative;
}
/* CSS for zoom window (not used for 'inside' position). */
.cloudzoom-zoom {
 
    box-shadow: -0px -0px 10px rgba(0,0,0,0.40);
    width:350px; height:270px;
    background-color:white;
    text-align:center;
position:relative;
z-index:2000;
}


/* 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:10px;
    font-family: sans-serif;
    font-size:11px;
}
    .cloudzoom-blank > div:last-child {
    display: none !important;
}