/*
* Zoomy 1.3.2 - jQuery plugin 
* http://redeyeops.com/plugins/zoomy
*
* Copyright (c) 2010 Jacob Lowe (http://redeyeoperations.com)
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* Built for jQuery library
* http://jquery.com
*
* Addition fixes and modifications done by Larry Battle ( blarry@bateru.com )
* Code has been refactored and the logic has been corrected.
*
*Cusor fix from IE by Chris Pearson ( http://www.upland.co.uk )
*
*/


.parent-zoom img{
    cursor:  cell;
    cursor: -moz-zoom-in;
    cursor: -webkit-zoom-in;
    border: 0;
	filter: expression(document.execCommand("BackgroundImageCache", false, true));

}


.zoomy{
    position: absolute;
    visibility: hidden;
    background-repeat: no-repeat;
    -webkit-box-shadow: 0px 5px 10px #000;
    -moz-box-shadow: 0px 5px 10px #000;
    filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=1, Color='#3333333', Positive='true');
	filter: expression(document.execCommand("BackgroundImageCache", false, true));
    border: 0px solid #333;
    line-height: 100px;
    text-align: center;
    background-color: #fff;
    z-index: 1115;
    overflow: hidden;
    border: 3px solid #fff;
	cursor: url(/images/blank.cur), move;
}

.zoomy span{
    display: block;
    margin: 5px auto;
}


.zoomy a{
    color: #333;
    text-decoration: none;
    outline: 0;
}

.inactive img{
    opacity: 1!important;
    filter:alpha(opacity=100)!important;
	filter: expression(document.execCommand("BackgroundImageCache", false, true));
}

.zoomy #tmp{
    max-width: none !important;
    max-height: none !important;
    width: auto !important;
    height: auto !important;
    top: -999999px;
    left: -999999px;
}



