1/* jqModal base Styling courtesy of;
2  Brice Burgess <bhb@iceburg.net> */
3
4/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
5  the Window's z-index value will be set to 3000 by default (in jqModal.js). You
6  can change this value by either;
7    a) supplying one via CSS
8    b) passing the "zIndex" parameter. E.g.  (window).jqm({zIndex: 500}); */
9
10.jqmWindow {
11    display: none;
12
13    position: fixed;
14    top: 17%;
15    left: 50%;
16
17    margin-left: -300px;
18    width: 600px;
19
20    background-color: #EEE;
21    color: #333;
22    border: 1px solid black;
23    padding: 12px;
24}
25
26.jqmOverlay { background-color: #000; }
27
28/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
29* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
30  width: expression(this.parentNode.offsetWidth+'px');
31  height: expression(this.parentNode.offsetHeight+'px');
32}
33
34/* Fixed posistioning emulation for IE6
35     Star selector used to hide definition from browsers other than IE6
36     For valid CSS, use a conditional include instead */
37* html .jqmWindow {
38     position: absolute;
39     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
40}
41