﻿.popUpWindow {
    display: none;
    
    position: fixed;
    top: 17%;
    left: 50%;
    
    margin-left: -300px;
    width: 442px;
    
    background-color: #a3b5bc;
    border: 8px solid #a3b5bc;
}
.popUpWindow .popUpWindowHeader
{
	height: 60px;
	background:  transparent url('/img/logo.png') no-repeat 15px 8px;
}
.popUpWindow .popUpWindowContent
{
	padding: 26px 34px 26px 42px;
	background-color: #f6f7f8;
}
.popUpWindow .popUpWindowClose
{
	display: block;
	float: right;
}
.popUpWindow .popUpWindowClose a
{
	display: block;
	height: 18px;
	line-height: 18px;
	width: 52px;
	color: #f6f7f8;
	text-decoration: none;
	background: transparent url('/img/popUpClose.png') no-repeat top right;
}

.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 .popUpWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}