.btn{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgb(48, 48, 177);
	font-size: 10px;
	font-weight: bold;
	font-family: Arial;
	padding: 10px 30px;
	cursor: pointer;
	color: #00426f;
}

#modalContainer {
	background-color:rgba(0, 0, 0, 0.3);
	position:absolute;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	z-index:10000;
}

#alertBox {
	position:relative;
	width:600px;
	min-height:135px;
	margin-top:250px;
	border:1px solid #666;
	background-color: white;
	background-repeat:no-repeat;
	background-position:20px 30px;
	border-radius: 10px;
	box-shadow: 0 0 10px black;
	font-size: 10pt;
	font-family: Arial;
	font-weight: normal;
	text-align: center;
	padding: 0px 0px 0px 0px;
}

#alertBox h1 {
	margin:0;
	font-size: 12pt;
	font-family: Arial;
	font-weight: bold;
	background-color: #4fbeed;
	color: white;
	text-align: center;
	border-bottom:1px solid #000;
	padding: 5px 5px 5px 10px;
	border-radius: 10px 10px 0px 0px;
	margin-left: 0px;
	margin-right: 0px;
}

#alertBox p {
	font-size: 10pt;
	font-family: Arial;
	font-weight: normal;
	text-align: center;
	height:50px;
	margin-left:10px;
	margin-right:10px;
	margin-top:10px;
	margin-bottom:10px;
}

#closeBtn {
	border: 1px solid #7f7f7f;
	display:block;
	position:relative;
	margin:5px auto;
	padding:7px;
	width:70px;
	font-size: 10pt;
	font-weight: bold;
	font-family: Arial;
	/* text-transform:uppercase; */
	text-align:center;
	color: #00426f;
	background-color:white;
	border-radius: 4px;
	text-decoration:none;
}

/*
#alertBox #closeBtn {
	display:block;
	position:relative;
	margin:5px auto;
	padding:7px;
	border: 1px solid #7f7f7f;
	width:70px;
	font-size: 10pt;
	font-weight: bold;
	font-family: Arial;
	text-transform:uppercase;
	text-align:center;
	color: #00426f;
	background-color:#E6EFF6;
	border-radius: 4px;
	text-decoration:none;
}
*/

#closeBtn:hover{
	border: 1px solid #00426f;
	border-color: #00426f;
	cursor: pointer;
	box-shadow: 0 0 10px #39f;
}
