/* jqModal base Styling courtesy of;
    Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
    the Window's z-index value will be set to 3000 by default (via jqModal.js). */
    
.jqmWindow {
    display: none;
    
    position: absolute;
    top: 100px;
    left: 100px;

 width: 99%;
    /*width: 600px;*/
    max-width: 600px;
    /*
    min-height: 300px;
    max-height: 80%;
    */
    background-color: #fff;
    color: #333;
    border: 2px solid #333;
 border-radius: 8px;
 -moz-border-radius: 8px;
 -webkit-border-radius: 8px;
    
    
    padding: 0px;
}

.jqmOverlay {
    background-color: #999;
}

.jqmBody {
    /*position: absolute;*/
    /*top: 22px;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    padding: 10px;
    /*margin-bottom: 30px;*/
    overflow: auto;
 padding-bottom: 60px;
}
/*
.jqmBody textarea {
    width: 99%;
    height: 94%;
}
*/
.jqDnRHandle {
    /*position: absolute;*/
    /*height: 22px;*/
    /*left: 0;*/
    /*right: 0;*/
    padding-left: 10px;
    color: #fff;
    background: #56a;
    /*font-size: 0.8em;*/
    font-weight: bold;
 font-size: 1.2em;
 padding-top: 5px;
 padding-bottom: 5px;
}

.btnArea {
    /*margin-top: 10px;*/
    /*width: 144px;*/
    /*margin-right: auto;*/
    /*margin-left: auto;*/
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /*padding-bottom: 6px;*/
 height: 50px;
}
.btnArea > div {
 height: 100%;
 width: 100%;
 position: relative;
}
.btnArea > div > div {
 position: absolute;
 -ms-transform: translate(-50%, -50%);
 -webkit-transform: translate(-50%, -50%);
 transform: translate(-50%, -50%);
 top: 50%;
 left: 50%;
}
#jqm-cancel-btn,
#jqm-login-btn {
 display: inline-block;
}
#jqm-cancel-btn > a {
 display: block;
 color: #ffffff;
 font-weight: bold;
 background-color: #005bf9;
 padding-top: 10px;
 padding-bottom: 10px;
 border-radius: 6px;
 opacity: 0.8;
 margin: 0 auto;
 text-align: center;
 padding-left: 5px;
 padding-right: 5px;
 white-space: nowrap;
}
#jqm-login-btn > a {
 display: block;
 color: #ffffff;
 font-weight: bold;
 background-color: #005bf9;
 padding-top: 10px;
 padding-bottom: 10px;
 border-radius: 6px;
 opacity: 0.8;
 margin: 0 auto;
 text-align: center;
 padding-left: 5px;
 padding-right: 5px;
 white-space: nowrap;
}
#jqm-cancel-btn > a:hover,
#jqm-login-btn > a:hover {
 opacity: 1;
 text-decoration: none;
}
.jqmBody input[type="text"],
.jqmBody input[type="password"] {
 width: 100%;
}
