.jqmWindow {
    display: none;
    
    position: fixed;
    top: 17%;
    left: 50%;
    
    margin-left: -225px;
    width: 350px;
    padding: 10px;
    
    background-color: White;
    color: Black;
    border: 2px solid Black;
}

.jqmWindow H1
{
    font-size: 14px;
    margin-top: 10px;
    color: #EF6B29;
}

.jqmWindow .content
{
    float:left;
}

.jqModalClose
{
 float: right;   
}

.jqmOverlay { background-color: #000; }

/* 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 .jqmWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}