/*  POPUP */
#Mask {
	background-color: #333333;
	height: 100%;
	width: 100%;	
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10001;
}
#PopUp {
	background-color: #ffffff;
	border: #333333;
	position: absolute;
	top: 100px;
	z-index: 10002;
	
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}
.PUClose {
	background-image: url('/app/flyers/img/icons/dialog_close.png');
	width: 18px;
	height: 18px;
	background-position: 0 0;
	float: right;
	margin-top: -5px;
	cursor: pointer;
}
.PUClose:hover {
	background-position: 0 -18px;
	float: right;
}
.PUTitleBox {
	margin: 0;
	background-image: url('/app/flyers/img/layout/popup_hdr.png') repeat-x;
	width: 100%;
	height: 28px;
	background-color: #f2f2f2;
	padding-bottom: 2px;
	border-bottom: 1px solid #333333;	
	
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-khtml-border-radius-topleft: 5px;
	-khtml-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.PUTitleBox .PUTitle {
	padding: 10px 10px 7px 10px;
	color: #000000;
	font-weight: bold;
}
#PUContent {
	height: 100%;
	padding: 5px 12px 5px 12px;
}
#PUTitleText {
	position: relative;
	top: -5px;
}
/* END POPUP */