@charset "utf-8";
/* CSS Document */

#dropElem {
	display: none;
	position: absolute;
	top: 0;
	border-radius: 10px 10px 10px 10px;
	padding: 20px;
	background: #f5f5f5;
	z-index: 99999;
}
#shadowElem {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.3;
	z-index: 99999;
}
#dropContent {
	position: relative;
	z-index: 99999;
	margin: 0 auto;
}
#dropClose {
	position: absolute;
	z-index: 99999;
	cursor: pointer;
	top: -32px;
	right: -30px;
	padding: 5px;
	background-color: black;
	border-radius: 6px 6px 6px 6px;
	color: #fff;
}
