.popup-outer-frame {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* IE needs a background color or the outer frame won't block clicks */
    background-color: white;
   	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}

* html .popup-outer-frame { /* IE6 hack */
    position: absolute;
    height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

.popup-frame {
    position: absolute;
    padding: 16px;
    z-index: 10000;
    background-color: white;
    border: 1px #bebebe solid;
}

.popup-frame .popup-close {
    position: absolute;
    background: url(../images/close_button.gif) no-repeat;
    width: 14px;
    height: 13px;
    right: 4px;
    top: 4px;
    cursor: pointer;    
}

.popup-frame .popup-arrow {
    position: absolute;
    left: 0;
    bottom: -30px;
    z-index: 10000;
    width: 30px;
    height: 30px;
    background: url(../images/popup_arrow.gif) no-repeat;
}
