/* 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 (in jqModal.js). You
  can change this value by either;
    a) supplying one via CSS
    b) passing the "zIndex" parameter. E.g.  (window).jqm({zIndex: 500}); */
  
  
  
.jqmWindow2 {
    display: none;
    position: fixed;
    top: 10px;
    left: 100px;
    width: 1100px;
    z-index: 80200;
    background-color: #ffffff;
    color: #000;
    padding: 12px;
    border: 2px #555 solid;
    
-moz-border-radius:9px; 
-webkit-border-radius:9px;
    
    
}

  
  
.jqmWindow {
    display: none;
    position: fixed;
    top: 10px;
    left: 50%;
    margin-left: -400px;
    width: 600px;
    z-index: 80200;
    background-color: #ffffff;
    color: #000;
    padding: 12px;
    border: 2px #555 solid;
   
-moz-border-radius:9px; 
-webkit-border-radius:9px;
    
    
}



.jqmOverlay { background-color: #101010; }

/* 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(30 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) -130)+ 'px');
}

* html .jqmWindow2 {
     position: absolute;
     top: expression(((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(30 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) -130)+ 'px');
}





            button.jqmClose {
               
            }

            button.jqmClose:hover, button.jqmClose:active {
           
            }

            #jqmTitle {

            }

            #jqmContent {
                width: 100%;
                height: 400px;
                display: block;
                clear: both;
                margin: 0;
                margin-top: 0px;
                border: 0px solid #ffffff;
            }
            
         
         
         
         
#fixme {
  /* Netscape 4, IE 4.x-5.0/Win and other lesser browsers will use this */
  position: absolute;  bottom: 0px; left: 0px;
}
body > div#fixme {
  /* used by Opera 5+, Netscape6+/Mozilla, Konqueror, Safari, OmniWeb 4.5+, iCab, ICEbrowser */
  position: fixed;
}

<!--[if gte IE 5.5]>
<![if lt IE 7]>

div#fixme {
  /* IE5.5+/Win - this is more specific than the IE 5.0 version */
  right: auto; bottom: auto;
  left: expression( ( -20 - fixme.offsetWidth + ( document.documentElement.clientWidth ? document.documentElement.clientWidth : document.body.clientWidth ) + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
  top: expression( ( -10 - fixme.offsetHeight + ( document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}

<![endif]>
<![endif]-->
         
