
#c-myAlert{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(160, 160, 160, 0.7);
}
#c-myAlert-content{
	min-height: 180px;
	min-width: 320px;
	width: 350px;
	height: 200px;
	position: absolute;
	left: 35%;
	top: 30%;
	box-shadow: 0 1px 2px 2px #666;
	border-radius: 10px;
	background-color: #eee;
}
#c-title{
	width: 96%;
	height: 40px;
	line-height: 40px;
	margin: 0 2%;
	cursor: move;
	border-bottom: 1px solid #999;
}
#c-title #c-close{
	width: 30px;
	height: 30px;
	float: right;
	margin-top: 5px;
	text-align: center;
	line-height: 30px;
	font-size: 24px;
	cursor: pointer;
	border-radius: 10px;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}
#c-title #c-close:hover{
	color: #fff;
	background-color: #f69;
}
#c-title #c-text{
	width: 85%;
	height: 40px;
	line-height: 40px;
	float: left;
}
#c-modify{
	width: 40px;
	height: 40px;
	position: absolute;
	right: 10px;
	bottom: 20px;
	background-color: #ccc;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
	color: #666;
	box-shadow: 1px 1px 2px #999;
	border-radius: 10px;
	font-size: 12px;
}
#c-modify:hover{
	background-color: #f69;
	color: #fff;
}
#c-myAlert-content span{
	position: absolute;
}
#c-myAlert-content #c-top,
#c-myAlert-content #c-bottom{
	width: 100%;
	height: 4px;
	left: 0;
	cursor: n-resize;
}
#c-myAlert-content #c-top{
	top: 0;
}
#c-myAlert-content #c-bottom{
	bottom: 0;
}
#c-myAlert-content #c-right,
#c-myAlert-content #c-left{
	width: 4px;
	height: 100%;
	top: 0;
	cursor: e-resize;
}
#c-myAlert-content #c-right{
	right: 0;
}
#c-myAlert-content #c-left{
	left: 0;
}
#c-myAlert-content #c-tl{
	width: 8px;
	height: 8px;
	position: absolute;
	top: 0;
	left: 0;
	cursor: nw-resize;
}
#c-myAlert-content #c-tr{
	width: 8px;
	height: 8px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: ne-resize;
}
#c-myAlert-content #c-br{
	width: 16px;
	height: 16px;
	position: absolute;
	bottom: 0;
	right: 0;
	cursor: se-resize;
	transform: rotate(-45deg);
}
#c-myAlert-content #c-br i{
	width: 16px;
	height: 1px;
	background-color: #333;
	display: block;
	margin: 3px 0;
}
#c-myAlert-content #c-br i:nth-of-type(2){
	width: 10px;
	margin-left: 3px;
}
#c-myAlert-content #c-br i:nth-of-type(3){
	width: 4px;
	margin-left: 6px;
}
#c-myAlert-content #c-bl{
	width: 8px;
	height: 8px;
	position: absolute;
	bottom: 0;
	left: 0;
	cursor: sw-resize;
}