.acknowledgementMessageBox.overlay
{
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2; 
    cursor: default;
}

.acknowledgementMessageBox .box
{
    position: absolute;
    top: 50%;
    left: 50%;
    background: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}

.acknowledgementMessageBox .content
{
    margin: 10px;
    overflow: auto;
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    bottom: 50px;
}

.acknowledgementMessageBox .actionPanel
{    
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    text-align: right;
}

.acknowledgementMessageBox .actionPanel div
{
    display: inline-block;
    margin-right: 10px;
}

.acknowledgementMessageBox .actionPanel button
{
    text-align: right;
}

.acknowledgementMessageBox .actionPanel button[disabled]
{
    background-color: grey;
}

.acknowledgementMessageBox .actionPanel input[type=checkbox]
{
   text-align: center;
    margin-right: 5px;
   vertical-align: middle;
}

.acknowledgementMessageBox .titlePanel
{
    background: black;
    height: 35px;
    display:table;
    width: 100%;
    padding-left: 10px;
}

.acknowledgementMessageBox .title
{
    color: white;
    display:table-cell;
    vertical-align:middle;
    font-weight: bold;
}

.acknowledgementMessageBox .close {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 16px;
    width: 16px;
    cursor: pointer;
    background: url(../Includes/Images/delete_16.png);
    background-repeat: no-repeat;
}