﻿#mask_shadow
{
	display: none;
	opacity: 0;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
}
#popup
{
	display: none;
	opacity: 0;
	position: absolute;
	z-index: 9999;
	top: 150px;
	width: 600px;
	min-height: 175px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
#popup .title
{
	position: relative;
	width: 100%;
	height: 40px;
	background-color: #318a0c;
	cursor: move;
}
#popup .title p
{
	padding-left: 14px;
	line-height: 40px;
	color: #fff;
}
#popup .title span
{
	position: absolute;
	top: 4px;
	right: 20px;
	width: 30px;
	height: 30px;
	color: #000;
	opacity: .2;
	font-size: 21px;
	cursor: pointer;
	text-align: center;
	border: 1px solid #333;
}
#popup .title span:hover
{
	opacity: .8;
}
#popup .cont
{
	width: 96%;
	padding:2%;
	min-height: 111px;
	background-color: #EDEDED;
}
