/*自訂 alert 視窗樣式*/
#modalContainer {
	background-color:rgba(0, 0, 0, 0.3);
	position:fixed;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	z-index:10000;
	background-image:url(tp.png); /* required by MSIE to prevent actions on lower z-index elements */
}

#alertBox {
	position:relative;
	width:95%;
	max-width: 1000px;	
	/*min-height:100px;*/
	margin: 20px auto;
	padding-bottom: 10px;
	border-radius: 10px;
	background-color:#fff;
	background-repeat:no-repeat;
	background-position:20px 30px;
}
#alertBox h1 {
	margin:0;
	text-align: center;
	font-weight: bold;
	font-size: 1.7em;
	border-radius: 10px 10px 0 0;
	background-color:#2DCFF4;
	color:#FFF;
	padding:2px 0;
}

#alertBox p {
	text-align: center;
	font-size:1.5rem;
	padding: 5px;
}

#alertBox #closeBtn {
	display:block;
	position:relative;
	margin:5px auto;
	padding:5px;
	border:0 none;
	width:300px;
	font-size:1.5rem;
	text-transform:uppercase;
	text-align:center;
	color:#FFF;
	background-color:#2DCFF4;
	border-radius: 10px;
	text-decoration:none;
}
