/*
 * jQuery Nivo Zoom v1.0
 * http://nivozoom.dev7studios.com
 *
 * Copyright 2010, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * April 2010
 */
 
.nivoZoomHover {
	position:absolute;
	top:0px;
	left:0px;
	z-index:9;
	width:100%;
	height:100%;
	cursor:pointer;
}
.nivoCaption {
	display:none;
	position:absolute;
	z-index:110;
	text-align:center;
	background:#010101;
	color:#fff;
	padding:4px 0;
	overflow:hidden;
}

/*
 * Note: Include the nivo-zoom.css file that comes
 * with the main download before including this file.
 */
 
a.nivoZoom {
    border:0 !important;
}
a.nivoZoom img {
    -moz-box-shadow:0px 0px 5px #000;
    -webkit-box-shadow:0px 0px 5px #000;
    box-shadow:0px 0px 5px #000;
}
a.nivoZoom img.nivoLarge {
    -moz-box-shadow:0px 0px 10px #000;
    -webkit-box-shadow:0px 0px 10px #000;
    box-shadow:0px 0px 10px #000;
}
.nivoZoomHover {
    background:url(/js/nivozoom/zoom.png) no-repeat 50% 50%;
}
.nivoZoomHover.loading {
    background:url(/js/nivozoom/loading.gif) no-repeat 50% 50%;
    border:4px solid #000;
    width:16px;
    height:16px;
    top:43%;
    left:43%;
    opacity:0.8;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    border-radius:4px;
}