/* Default skin for Thickbox interface */

/* All types */

/* building blocks */
#tb-dim {
    background: #0a3049;
    opacity: .7;
}
#tb-loading {
    background: url(../../ext/jjs/plugins/tbr/kety.png) no-repeat 50% 50%;
}
#tb-modal {
    border: solid #d4dbdf;
    border-width: 0 1px;
    background: #fff;
}
#tb-modal * {
    margin: 0;
    padding: 0;
    font: 12px/1.3 Arial, Helvetica, Geneva, "sans-serif";
}
#tb-content {
    padding: 13px 19px 0;
}
#tb-title {
    padding: 0 10px 13px 0;
}
#tb-close a { /* image replacement */
    position: absolute;
    top: 12px;
    right: 8px;
    z-index: 999;
    overflow: hidden;
    width: 26px;
    height: 26px;
    background: url(../../ext/jjs/plugins/tbr/close.gif) no-repeat;
    line-height: 30px;
    text-indent: 1000px;
}

/* round corners */
}
#tb-modal .tl, #tb-modal .tr {
    top: 0;
}
#tb-modal .br, #tb-modal .bl {
    top: 100%;
    margin-top: -3px;
    /*bottom: 0;*/ /* stupid IE 6 borks on that one */
}
#tb-modal .tl, #tb-modal .bl {
    left: -1px;
}
#tb-modal .tr, #tb-modal .br {
    right: -1px;
}
/* Specific types: ajax, confirm, external, image, inline. The modal window belongs to a class of one of these types. */

/* confirm */
.tb-confirm #tb-content a {
    color: #666;
}
#tb-confirm {
    float: left;
}
#tb-cancel {
    float: right;
}

/* external */
.tb-external #tb-content iframe {
    padding: 0;
    width: 100%;
}

/* image */
.tb-image #tb-content img {
    display: block;
}
#tb-browse {
    padding: 12px 0 0;
    text-align: center;
}
#tb-next {
    float: right;
}
#tb-prev {
    float: left;
}
#tb-browse em {
    font-style: normal;
}


/* IE fixes - WARNING: do not group selectors, otherwise IE 6 will ignore complete rule (because of the + combinator) */
* html #tb-dim { /* @ IE 6 & IE 7 Quirks Mode */
    filter: Alpha(Opacity=70);
}
*:first-child+html #tb-dim { /* @ IE 7 Standards Mode */
    filter: Alpha(Opacity=70);
}

