@charset "utf-8";
/* CSS Document */

#modalContainer {
	background-color:transparent;
	position:absolute;
	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:525px;
	min-height:140px;
	margin-top:100px;
	border:1px solid #900;
	background-color:#F2F5F6;
	background-image:url(/images/alert.gif);
	background-repeat:no-repeat;
	background-position:20px 40px;
	padding-bottom:5px;
}

#modalContainer > #alertBox {
	position:fixed;
}

#alertBox h1 {
	margin:0 0 5px 0;
	font:bold 12px verdana,arial;
	height:26px;
	line-height:26px;
	background:url(/images/alert_bg.jpg) repeat-x #930;
	color:#FFF;
	border-bottom:1px solid #900;
	padding:2px 0px 2px 5px;
}

#alertBox p {
	font:11px verdana,arial;
	height:auto;
	padding-left:5px;
	margin-left:100px;
	margin-bottom:10px;
	width:400px;
	clear:both;
	float:left;
}

#alertBox #closeBtn {
	display:block;
	position:relative;
	float:right;
	margin:3px 10px 0px 3px;
	font:12px verdana,arial;
	text-transform:uppercase;
	text-align:left;
	color:#FFF;
	text-decoration:none;
	height:25px;
	line-height:23px;
	padding-left:10px;
	width:136px;
	background:url(/images/alert_close.gif) no-repeat #900;
}


