/* 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}); */
  
.jqmWindow {
    display: none;
    
    position: fixed;
    top: 12%;
    left: 50%;
    
    margin-left: -185px;
    width: 370px;
    
    background:transparent none left bottom no-repeat;
    color: #333;
    padding: 19px 35px 35px 35px;
	
	z-index:30000; /* must be above 20000 to be drawn over udm menu */
}

/* .jqmWindow h2, .jqmWindow p, .jqmWindow li {
	background-color: #fff;
} */

.jqmWindowTop {
	position: absolute;
	top: -16px;
	left: 0;
	width: 440px;
	height: 16px;
	font-size: 0;
	line-height: 0;
	background: transparent none left top no-repeat;
}

.jqmOverlay { background-color: #990066; }

/* 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');
}

* iframe.jqm {position:absolute;top:0;left:0;z-index:-1;
	width: expression(this.parentNode.offsetWidth+'px');
	height: expression(this.parentNode.offsetHeight+'px');
}

.jqmAlertTitle{
  /*margin:5px 2px;*/
  height:20px;
  color:#FFF;
}
.jqmAlertTitle h1{
	margin:5px 2px;
	padding:0px 0px 0px 5px;
	font-size:14px;
	text-transform:capitalize;
	color:#F99c1c;
	font-family:verdana,arial,helvetica;
	float:left;
	height:20px;
}

div.jqmWindow .jqmClose em{display:none;}
div.jqmWindow .jqmClose {
  width:15px;
  height:15px;
  display:block;
  float:right;
  clear:right;
  background:transparent url(../images/popup-close.gif) 50% 50% no-repeat;
  margin:5px;
}

div.jqmAlertContent{
	padding:10px 5px;
	border:1px dotted #111;
	background:#fff;
	letter-spacing:0px;
	font-family:verdana,arial,helvetica;
	font-size:12px;
	height:300px;
	overflow:auto;
	clear:both;
}

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */