#documentoverlay {
	background-color:rgba(155,155,155,0.8);
	position:absolute;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	padding-top:50px;
	z-index:10000;
}

#alertbox {
	position:absolute;
	width:300px;
	min-height:70px;
	margin-top:0;
	box-shadow: 0 2px 15px rgba(0,0,0,0.2);	
        padding: 10px 20px 10px 20px;
        z-index:10001;
        background:#fff;
}
#alerttext strong {
    background: #DD5F6C;
}

#documentoverlay > #alertbox {
	position:fixed;
}


#alertbox #closebutton {
    font-weight: bold;
    background: #d23a30;
    color: #fff;
    border: 0px solid rgba(0,0,0,0.5);
    border-radius: 5px; 
    cursor: pointer;
    font-size: 13px;
    margin: 10px auto;
    overflow: hidden;
    padding: 5px 12px;
}
#alertbox #closebutton:hover {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5),0px 1px 3px rgba(0,0,0,0.4);
}