#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;
}

.greyShadow {
    text-shadow : 2px 2px 9px #898989;
}

.greyShadow p {
    text-shadow : 2px 2px 9px #676767;
}

#message .info_block {
    float  : left;
    height : 30px;
    width  : 30px;
    margin : 0px 0px 0px 0px;
    background-image : url('../login/images/caution.png');
    background-repeat : no-repeat;
}

#message .tooltip {
    position : relative;
    display  : inline-block;
}

/* Tooltip text */
#message .tooltip .tooltiptext {
    visibility       : hidden;
    width            : 300px;
    background-color : rgba(0, 0, 0, 0.7);
    color            : #fff;
    text-align       : center;
    padding          : 10px;
    border-radius    : 6px;
    position         : absolute;
    z-index          : 1;
    left             : -230px;
    top              : -160px;
}

/* Show the tooltip text when you mouse over the tooltip container */
#message .tooltip:hover .tooltiptext {
    visibility: visible;
}