.alert-window-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	background: #000;
	z-index: 8888;
}
.alert-window-holder {
	position: absolute;
	top: 200px;
	width: 100%;
	height: 260px;
	z-index: 9999;
}
.alert-window {
	position: relative;
	margin: 0 auto;
	height: 100%;
	width: 400px;
	background: #fff;
	border: 2px solid #26ADE4;
}
.alert-window > .alert-window-title {
	width: 100%;
	height: 28px;
	background: #26ADE4;
}
.alert-window-title > .alert-window-title-content {
	position: relative;
	width: 350px;
	height: 100%;
	font-weight: bold;
	font-size: 15px;
	margin-left: 8px;
	color: #fff;
	top: 4px;
}
.alert-window-title > .alert-window-title-close {
	position: relative;
	width: 12px;
	height: 12px;
	float: right;
	top: 7px;
	right: 5px;
	cursor: pointer;
	//background: url("common.png") 0 -191px;
	background: url("<?php echo $CLOUDFRONTPATH . "/common/images/common.png"?>") 0 -191px;
}
.alert-window-title > .alert-window-title-close:hover {
	//background: url("common.png") 0 -128px; 
	background: url("<?php echo $CLOUDFRONTPATH . "/common/images/common.png"?>") 0 -128px;
}
.alert-window > .alert-window-content {
	height: 175px;
	width: 100%;
}
.alert-window-content > .alert-window-content-text {
	position: relative;
	width: 351px;
	font-size: 15px;
	text-align: left;
	top: 15px;
	left: 25px;
}
.alert-window > .alert-window-bottom {
	position: absolute;
	bottom: 0;
	height: 50px;
	width: 100%;
}
.alert-window-bottom > .alert-window-btn {
	background: #4DBCE9;
	border-radius: 4px;
	color: #fff;
	padding: 5px;
	cursor: pointer;
	font-size: 14px;
	text-align: center;
	width: 100px;
	border: 1px solid #bfbfbf;
}
.alert-window-bottom > #alert-window-btn-positive {
	float: left;
	margin-left: 50px;
}
.alert-window-bottom > #alert-window-btn-negative {
	float: right;
	margin-right: 50px;
}