#modalContainer {
	background-color:transparent;
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:10000;
}

#alertBox {
	/* Changed position to fixed and specified top/left values */
	position: fixed;
	top: 40%;
	left: 50%;
	width:300px;
	min-height:100px;
	margin-top:50px;
	/* changed border thickness and color */
	border:4px solid #00FF;
	/* changed bg color */
	background-color:#ffdead;
}

#modalContainer > #alertBox {
	position:fixed;
}
/* Changed text-transform to capitalize */
#alertBox h1 {
	/* Aligned text to center */
	text-align: center;
	margin:0;
	font:bold 0.9em verdana,arial;
	background-color:#78919B;
	color:#FFF;
	border-bottom:1px solid #000;
	padding:2px 0 2px 5px;
	text-transform:capitalize;
	/* Added font style */
	font-style: oblique;
	
	
}
/* Changed L/R margins and width to center text */
#alertBox p {
	font:0.7em verdana,arial;
	height:50px;
	padding-left:5px;
	margin-left:auto;
	margin-right:auto;
	width:200px;
}
/* Changed text-transform to capitalize */
#alertBox #closeBtn {
	display:block;
	position:relative;
	margin:5px auto;
	padding:3px;
	border:1px solid #000;
	width:70px;
	font:0.7em verdana,arial;
	text-transform:capitalize;
	text-align:center;
	color:#FFF;
	background-color:#78919B;
	text-decoration:none;
}

