/* 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: fixed;
    top: 10%;
    left: 50%;
    width: 972px;
    background-color: #F0F0F0;
    color: #333;
    padding: 12px;
    height: 460px;
    overflow: auto;
    border-radius: 3px;
    border: none;
    box-shadow: 0 1px 1px 0px rgba(0,0,0,.5) inset, 0 0 0 4px rgba(0,0,0,.07);
    -moz-box-shadow: 0 1px 1px 0px rgba(0,0,0,.5) inset, 0 0 0 4px rgba(0,0,0,.07);
    -o-box-shadow: 0 1px 1px 0px rgba(0,0,0,.5) inset, 0 0 0 4px rgba(0,0,0,.07);
    -webkit-box-shadow: 0 1px 1px 0px rgba(0,0,0,.5) inset, 0 0 0 4px rgba(0,0,0,.07);
}

.jqmWindow .comments_show {
    color: #ef6f09;
    font-size: 14px; 
    font-weight: bold;
}
.jqmOverlay { background-color: #000; }

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
    width: expression(this.parentNode.offsetWidth+'px');
    height: expression(this.parentNode.offsetHeight+'px');
}
.jqmClose {
    width: 25px;
    height: 25px;
}
.jqmClose_div {
    height: 25px;
    width: 25px;
    cursor: pointer;
    background: url(../images/moblin-close.png) no-repeat;
    background-position: -0px 0px !important;
    background-position-x: -0px !important;
    background-position-y: 0px !important;
}
.jqmClose_div:hover {
    background-position: -27px 0px !important;
    background-position-x: -27px !important;
    background-position-y: 0 !important;
}
/* 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');
}