/* Required style sheet for Thickbox interface */

/* Import skin */
@import "jquery.thickbox.skin.css";

/* Minimum requirements */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}
#tb-dim {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    height: 100%;
}
#tb-loading, #tb-modal {
    position: fixed;
    top: 50%;
    left: 50%;
}
#tb-loading {
    z-index: 9999;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px;
}
#tb-modal {
    display: none;
    z-index: 10000;
}

/* IE specific */
* html #tb-dim, * html #tb-loading, * html #tb-modal {
    position: absolute;
}
* html #tb-dim iframe { /* hide selects in IE 6, not required in IE 7 */
    width: 100%;
    height: 100%;
    filter: Alpha(Opacity=0);
}
