/* 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}); */
  
.jqm-container {
    display: none;
    
    position: fixed;
    top: 17%;
    left: 50%;
    
    margin-left: -250px;
    width: 500px;
    
    background-image: url('images/jqm_background_60.png'); /*#C1D6D8;*/
    padding: 10px;
    -moz-border-radius: 10px;
}

.jqm-message {
    background-color: #ffffff;
    padding: 5px;
    border: 1px solid #0A5F66;
}

#jqm-header {
    border-bottom: 1px solid #0A5F66;
    padding: 5px 5px 0px 5px;
    font-weight: bold;
}

#jqm-body {
    padding: 5px 5px 5px 5px;
    font-weight: normal;
}

#jqm-buttons{
      text-align: center;
      padding: 5px 0 0 0;
}
.jqm-message button {
      border: 1px solid #0A5F66;
      background-color: #C1D6D8; /*#c0cEa6;*/
      padding: 3px 10px 3px 10px;
      margin: 0 10px;
} 

.jqm-message button:hover {
      background-color: #0B6067;
      color: #fff;
} 

.jqm-important {
      color: #0A5F66;
}

.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 .jqm-container {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}
