.jqmWindow {
	display: none;
	
	position: fixed;
	top: 15px;
	left: 50%;
	
	width: 600px;
	height: 100px;
	min-height: 100px;	
	margin-left: -300px; /* (width + padding) / 2 */
	
	border: 1px solid #CCC;
	background-color: #FFF;
	
	z-index: 3000;
	
	overflow-y: scroll;	
}
body > .jqmWindow {
	height: auto;
}

.jqmWindow #loading {
	background: url(../picture/interface/mif/loading.gif) center no-repeat;
	width: 100%;
	height: 100px;
}

.jqmOverlay { 
	background-color: #000; 
}

/* Background iframe styling for IE6. Prevents ActiveX bleed-through (<select> form elements, etc.) */
* iframe.jqm {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: expression(this.parentNode.offsetWidth+'px');
	height: expression(this.parentNode.offsetHeight+'px');
}

/* Fixed posistioning emulation for ie6 */
* html .jqmWindow {
	position: absolute;
 	top: expression(parseInt(document.documentElement.scrollTop || document.body.scrollTop) + 15 + 'px');
}
