#msgToastBox {
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	display:none;
	z-index:9999;
}
#msgToastBack {
	background-color: rgba(0,0,0,0.0);
	width:100%;
	height:100%;
	position:relative;
}
#msgToast {
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	border-radius: 10px;
	padding: 10px 15px;
	box-sizing: border-box;
	max-width: 95%;
	max-height: 95%;
	min-width: 25%;
	text-align: center;
	overflow: auto;
}
#msgToast_skip {
	position: absolute;
	bottom: -20px;
	right: 6px;
	outline: none;
	text-decoration: none;
	color: #58f;
	font: inherit;
	font-size: 0.8em;
	padding: 0;
	margin: 0;
	background: none;
	border: none;
	cursor: pointer;
}
