/*Styles for fuzz overlay & message box*/
#fuzz {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: url('../img/dim.png');
    display: none;
    text-align: left;
}

/*Message box, positioned in dead center of browser*/
.msgbox {
    color: #000000;
    position: absolute;
    width: 300px;
    height: 100px;
    z-index: 200;
    border: 1px solid #222;
    background: #FFF;
    top: 35%;
    left: 50%;
    margin-top: -100px;
    margin-left: -150px;
}

#msgboxMessage {
    position: relative;
    top: 40%;
    left: 45px;
}

.msgbox img {
    border: none;
    margin: 5px;
}

/*The "X" in the upper right corner of msgbox*/
.close {
    top: 0px;
    float: right;
}