/* Styling for quickImage */

#QuickImage { 
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    line-height: 0;
}
#QuickImage #GlassPane { 
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #222;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

#QuickImage #Picture { 
	max-width: 500px;
}

#QuickImage #ImageBox{
    width: 300px;
    height: 300px;
    background-image: url(../GFX/quickImage/loading.gif);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #000;
    margin: 100px auto auto auto;
    position: relative;
    opacity: 1;
    filter: alpha(opacity=100);
    border: 2px solid #000;
    z-index: 22;
}
#QuickImage #ImageBox.error{
    background-image: none;
}
#QuickImage #ImageBox.error p {
    color: #fff;
    margin-left: 10px;
}

#QuickImage a.closeButton{
    display: block;
    position: absolute;
    background-image: url(../GFX/quickImage/controls.png);
    overflow: hidden;
    width: 0px;
    height: 0px;
    padding: 22px 22px 0 0;
    background-position: -50px 0;
    right: -2px;
    top: -25px;
    text-indent: 100px;
}
#QuickImage #AltImages{
    display: none;
    height: 0;
}
#QuickImage div.prev, #QuickImage div.next {
    color: #fff;
    font-size: 60px;
    position: absolute;
    top: 50%;
    top: -25px;
    
    background-image: url(../GFX/quickImage/controls.png);
    overflow: hidden;
    width: 0px;
    height: 0px;
    padding: 22px 22px 0 0;
}
#QuickImage div.prev:hover, #QuickImage div.next:hover {
    cursor: pointer;
}
#QuickImage div.prev {
    right: 50px;
}
#QuickImage div.next {
    right: 25px;
    background-position: -25px 0;
}

