/* jqModal base Styling courtesy of Brice Burgess <bhb@iceburg.net> */

#actionbarModal, #addContentModal
{
    background-color: #eee;
    border: 1px solid black;
    color: #333;
    display: none;
    left: 0;
    padding: 12px;
    padding: 30px 30px 0 30px;
    position: fixed;
    top: 17%;
}

.modalOverlay { background-color: #000; }

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm
{
    height: expression(this.parentNode.offsetHeight+'px');
    left: 0;
    position: absolute;
    top: 0;
    width: expression(this.parentNode.offsetWidth+'px');
    z-index: -1;
}

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html #actionbarModal, * html #addContentModal {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}
