﻿#MyPopup * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
#MyPopup {
    display:none;
    position:absolute;
    /*overflow:hidden;*/
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:33000;
    text-align:center;
}
#MyPopup .mp-back {
    position:fixed;
    /*overflow:hidden;*/
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: #101010;
    opacity:0.6;
    filter:alpha(opacity=60);
    /*background: rgba(12,12,12,0.6);*/
    z-index:33000;
}
#MyPopup .mp-box {
    display: inline-block;
    position: absolute;
    /*top: 0;
    bottom: 0;*/
    left: 0;
    right: 0;
    width: 200px;
    height: 100px;
    margin: auto;
    border-radius: 8px;
    /*padding:15px 0px;*/
    background: white;
    z-index:33000;
}
#MyPopup .mp-close {
    display: inline-block;
    position: absolute;
    top: -22px;
    left: -22px;
    cursor:pointer;
}
#MyPopup .mp-title {
    font-weight:bold;
    display:inline-block;
    width:100%;
}
#MyPopup .mp-iframe-container { margin:auto; }
#MyPopup .mp-iframe-container.mp-mobile {
    -webkit-overflow-scrolling: touch;
    overflow-y:scroll;
}
#MyPopup .mp-iframe { width:100%; height:100%; }

#MyPopup .mp-content { display:inline-block; padding: 0; /*white-space:nowrap;*/ }