#modalContainer {
position:absolute;
z-index:10000;
left:0px;
top:0px;
width:100%;
height:100%;
background-color:Transparent;
background-image:url('images/tp.gif');
direction:ltr;
text-align:left;
}
#alertBox {
position:relative;
border:#3A7CD0 2px solid;
min-height:100px;
width:300px;
background-color:#f4f3f6;
overflow:auto;
}
#modalContainer > #alertBox{
position:fixed;
}
#alertBox H1
{
    padding: 3px;
    padding-left: 5px;
    margin: 0px;
    font: bold 0.9em verdana,arial;
    color: #666666;
    border-bottom: #fff 1px solid;
    background-color: #3A7CD0;
    height: 17px;
}
#alertBox H1 a
{
    text-decoration: none;
    color: #808080;
}
.modal-close, .modal-max{
    display:block;
    background-repeat:no-repeat;
    background-position:center center;
    width:17px;
    height:17px;
	 margin-right: 5px;
	 float: left;
}
.modal-close{
    background-image:url(images/close.gif);
}
.modal-max{
    background-image:url(images/max.gif);
}
#alertBox div{
    padding:5px;
}
#alertBox #closeBtn, #alertBox #endBtn{
border:#3A7CD0 2px solid;
display:block;
padding:3px;
margin: 5px 10px;
color: black;
position: relative;
background-color:#F1F8F9;
text-align: center;
text-decoration:none;
width:70px;
}
#alertBox #closeBtn{
	float: right;
}
#alertBox #endBtn{
	float: left;
}
.modalClear{clear:both;}