#ux-extbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 200px;
    padding: 0;
    margin: 0;
    background: #000;
    cursor: pointer
}
#ux-extbox-shim {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    height: 200px;
    padding: 0;
    margin: 0
}

/* the overlayed element */
#ux-extbox {
    background-color: #fff;
    z-index: 10000;
    position: absolute;
    top: 0;
    left: 0
}
#ux-extbox-container {
    margin: 10px;
    position: relative;
}

#ux-extbox img,
#ux-extbox iframe {
    border: none;
    padding: 0;
    margin: 0;
}

/* close button positioned on bottom right corner */
#ux-extbox-navClose {
    background : transparent url('images/btn-close.gif') center center no-repeat;
    position: absolute;
    right: 5px;
    bottom: 0;
    cursor: pointer;
    height: 30px;
    width: 66px;
    text-indent: -9999px;
    z-index: 10001;
}

/* "next image" and "prev image" links */
#ux-extbox-navNext, #ux-extbox-navPrev {
    position:absolute;
    top:40%;
    cursor:pointer;
    display:block;
    text-indent: -9999px;
    width: 64px;
    height: 32px;
}

#ux-extbox-navPrev {
    left: 0;
    background: transparent url('images/btn-prev.gif') left center no-repeat;
}

#ux-extbox-navNext {
    right: 0;
    background: transparent url('images/btn-next.gif') right center no-repeat;
}

/* the "information box" */
#ux-extbox-info {
    position:absolute;
    width: 100%;
    height: 30px;
    bottom:0;
    left:0;
    padding: 4px 0;
    color:#666;
    background-color: #fff;
    font-size:11px;
    line-height: 14px;
}

#ux-extbox-title {
    font-weight: bold;
}

#ux-extbox-loadingOverlay {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 45%;
    left: 48%;
}
#ux-extbox-loading {
    width: 32px;
    height: 32px;
    background-image: url("images/loading.gif");
}
#ux-extbox-content {
    padding-bottom: 38px;
    width: 200px;
    height: 200px;
}