/* ------------------------------------------------------ */
/* General Popup Container                                */
/* ------------------------------------------------------ */
.popup-container {
	width: 100%;
	height: 100%;
	display: none;
}
.popup-container .outer-container {
	position: absolute;
	background: #FFF;
	filter: alpha(opacity=80);
	opacity: .8;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 50001;
}
.popup-container .inner-container {
	position: absolute;
	background: #FFF;
	margin: 0 auto;
	min-width: 340px;
	max-width: 500px;
	left: 0px;
	right: 0px;
	top: 10%;
	display: inline-block;
	border: 2px solid #CCC;
	z-index: 50002;
}
.popup-container .inner-container .content {

}
.popup-container .inner-container .header {
	width: 99%;
	color: #000;
}
.popup-container .inner-container .header .copy {
	float: left;
	font-weight: bold;
	padding: 15px 0px 15px 15px;
}
.popup-container .inner-container .header .hide-container {
	float: right;
	font-weight: bold;
	padding: 15px 5px 15px 0px;
	cursor: pointer;
}
.popup-container .inner-container .header .hide-container a:hover {
	color: #007BFF;
}
.popup-container .inner-container .body {
	width: 100%;
	font-size: 11px;
}
.popup-container .inner-container .body .content {
	clear: both;
	font-size: 16px;
	padding: 0px 10px 0px 20px;
}
.popup-container .inner-container .body .content .btn {
	width: 230px;
}
.popup-container .inner-container .body .content .content-divider {
	clear: both;
	height: 10px;
	border-bottom: 1px solid #CCC;
}
.popup-container .inner-container .body .content .action-divider {
	clear: both;
	margin-bottom: 10px;
	border-bottom: 1px dashed rgba(80,80,80,.1);
}