﻿.jqmWindow {
	display: none;
	position: fixed;
	top: 17%;
	left: 50%;
	margin-left: -300px;
	width: 600px;
	background-color: #FFF;
	color: #333;
	border: 5px solid #666666;
}

.jqmWindow  .popup-window-header {
	/*background:transparent url(images/header_background_gray.gif) repeat-x scroll 0 0;*/
	border-bottom:1px solid #CCCCCC;
	height:25px;
}

.jqmWindow  .popup-window-title {
	margin-left:100px;
	line-height:23px;
	color:#990000;
	display:block;
	float:left;
	font-weight: bold;
}

.jqmWindow  .jqmClose
{
	float:right;
	margin-right:10px;
	line-height:23px;
}

.jqmWindow .popup-window-content
{
	padding:10px;
}

.jqmOverlay { background-color: #000; }

* html .jqmOverlay {
	position: absolute;
    top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}

/* 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');
}