/*
 Cloud Zoom CSS. (c)2012-2013 Star Plugins.
*/
            /* div that surrounds Cloud Zoom image and content slider. */
            #surround 
            {
                width:100%;
                min-width: 256px;
                max-width: 480px;
            }
            
            /* Image expands to width of surround */
            img.cloudzoom {
                width:100%;
            
                border: 1px solid #e1e1e1;
}
            
            /* CSS for slider - will expand to width of surround */
            #slider-horiz {
                margin-top:20px;
                margin-left:20px;
                margin-right:20px;
                height: 80px;
                position:relative;
            }
            /* CSS for slider - will expand to width of surround */

            #slider-vert {
                float:left;
                margin-top:20px;
                width: 74px;
                height:300px;
                border-left: 1px solid #e1e1e1;
                border-right:1px solid #e1e1e1;
                position:relative;
                background-color:#fff;
            }


            /* little adjustments to default button sizes */
            .thumbelina-but.vert {
                height:22px;
            }
            .thumbelina-but.horiz {
                width:22px;
            }
            .showzoomImage
            {
                max-width: 315px;
                margin-left:10px;
                line-height:0;
                display:inline-block;
                }


/* CSS for lens */
.cloudzoom-lens {
    border:5px solid #888;
    width:100px;
    height:100px;
    box-shadow: -0px -0px 10px rgba(0,0,0,0.40);
    cursor:crosshair;
    z-index: 10;
}
/* CSS for zoom window. */
.cloudzoom-zoom {
    border:1px solid #888;
    width:500px;
    height:200px;
    box-shadow: -0px -0px 10px rgba(0,0,0,0.40);
    z-index:9999;
}
/* CSS for zoom window in 'inside' mode. */
.cloudzoom-zoom-inside {
    border:none;
    box-shadow:none;
    z-index:9999;
}

/* 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;
}

/* A blank image */
.cloudzoom-blank {
    background-image:url(blank.png);
}

/* The animated ajax loading image */
.cloudzoom-ajax-loader {
    background-image:url(ajax-loader.gif);
    width:32px;
    height:32px;
}