#zoom {
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
    background: rgba(0, 0, 0, 0.8);
    display: none;
    filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99990;
}

#zoom .content {
    background: #ffffff no-repeat 50% 50%;
    border-radius: 4px;
    box-shadow: -20px 20px 20px rgba(0, 0, 0, 0.3);
    height: 200px;
    left: 50%;
    margin: -100px 0 0 -100px;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 200px;
    z-index: 99991;
}

#zoom .content.loading { background-image: url('../images/loading.gif'); }

#zoom img {
    background: #ececec;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    display: block;
    max-width: none;
}

#zoom .close {
    background: transparent url('../images/close.png') no-repeat 50% 50%;
    border-radius: 0 0 0 4px;
    cursor: pointer;
    filter: alpha(opacity=100);
    height: 49px;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    width: 49px;
    z-index: 99993;
}

#zoom .previous,
#zoom .next {
    display: block;
    height: 49px;
    margin-top: -25px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    width: 49px;
    z-index: 99992;
}

#zoom .previous {
    background: url('../images/arrows.png') no-repeat 0 0;
    border-radius: 0 4px 4px 0;
    left: 0;
}

#zoom .next {
    background: url('../images/arrows.png') no-repeat 100% 0;
    border-radius: 4px 0 0 4px;
    right: 0;
}

#zoom .close:hover { background-color: #da4f49; }

#zoom .previous:hover,
#zoom .next:hover { background-color: #0088cc; }