#modalContainer {
	background-color:transparent;
	position:absolute;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	z-index:10000;
}

#alertBox {
	position:relative;
	width:415px; /*changed width size*/
	min-height:100px;
	margin-top:80px; /*changed margin-top*/
	border: 1em solid #4b0606; /*changed border size and color*/
	background-color:#F2F5F6;
}

#modalContainer > #alertBox {
	position:fixed;
}

#alertBox h1 {
	margin:0;
	font:bold 0.9em Lucida, arial; /*changed font-family*/
	background-color:#487688; /*changed background-color*/
	color:#FFF;
	border-bottom:2px solid #000; /*changed border size*/
	padding:2px 0 2px 5px;
	text-transform:capitalize; /* changed from uppercase to capitalize*/
}

#alertBox p {
	font: 1em Lucida,arial; /* changed font-family */
	height:50px;
	padding-left:5px;
	margin-left:55px;
}

#alertBox #closeBtn {
	display:block;
	position:relative;
	margin:5px auto;
	padding:3px;
	border:1px solid #000;
	width:70px;
	font:0.7em verdana,arial;
	text-transform:uppercase;
	text-align:center;
	color:#FFF;
	background-color:#78919B;
	text-decoration:none;
}

