#multiModalOverlay, #multiModalBackground {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#multiModalOverlay {
    position: absolute; /* Tries to make it work reasonably in IE6 too */
    position: fixed;
}

#multiModalBackground {
    position: absolute;

    /* Transparent background effect for MSIE */
    background: #000;
    filter: alpha(opacity=60);

    /* Same effect in standards browsers */
    background: rgba(0, 0, 0, 0.6);

    /* To remind me to set the colour properly */
    color: #f00;
}

/* close button */
#closeModal {
    background: #ffffff;
    color: #333333;
    border: 1px solid #000;
    border-bottom-color: #a71a5d;
    padding: 0;
    font-size: 18px;

    position: absolute;
    top: -22px;
    right: 18px; /* this is so people won't accidentally click it instead of the scrollbar. */
    width: 36px;
    height: 22px;
}

.multiModal {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}
