/* ポップアップjQuery から参照されるCSS */
/* ポップアップのスタイル */
.m_win {
    display: none;
    position: fixed;
    top: 0%;
    left: 50%;
    border: 1px solid;
    padding: 0px 0px 0px 0px;
	border-color: #a3bae9;
	background: #fff;
}

.draggable {
	cursor: move;
}

.m_titlebar {
    height: 0px;
    background: #dfe8f6;
    padding: 0px 5px 0 10px;
	color: #15428b;
	font-weight: bold;
}

.m_overlay {
    background-color: #000;
}

.m_frame {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}

.m_close {
    background: none;
    border: 1px solid #a3bae9;
    clear: right;
    float: right;
    margin-top:5px;
    margin-left:5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 9px;
    font-family: Verdana;
    width: 18px;
    height: 18px;
}
/*
* iframe {position:absolute;top:0;left:0;z-index:-1;
	width: expression(this.parentNode.offsetWidth+'px');
	height: expression(this.parentNode.offsetHeight+'px');
}
*/


* html .m_win {
     position: absolute;
/*     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px'); */
     top: 0px;
}
