﻿/* 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}); */
  
 .login-jqmWindow, 
 .jqmWindow {
    display: none;
    position: fixed;
    top: 50%;
    left:50%;
    width: 500px;
    color: #333;
    margin-top:10px;
}

.dialogContent{overflow:hidden;}
.login-jqmWindow .dialogContent .header,
.login-jqmWindow .dialogContent .content,
.login-jqmWindow .dialogContent .header,
.jqmWindow .dialogContent .content{padding:14px 10px 10px 10px}
.login-jqmWindow .dialogContent .header,
.jqmWindow .dialogContent .header{overflow:hidden;padding:15px 0;}
.jqmWindow .dialogContent .header a,
.login-jqmWindow .dialogContent .header a{float:left;}
.jqmWindow .dialogContent .header h2,
.login-jqmWindow .dialogContent .header h2{float:right;margin:0px;font-size:18px;color:#B30C10;font-family:Tahoma;font-weight:bold}
.jqmWindow .dialogContent .content,
.login-jqmWindow .dialogContent .content{direction:rtl;text-align:right; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box;}
.login .dialogContent .content{height:200px;}
.jqmWindow .close,
.login-jqmWindow .close{text-align:left;}
.jqmOverlay { background-color: #ffffff; }

/* 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,
* html .login-jqmWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}
