.messageBox.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;
}

.messageBox .box
{
    position: absolute;
    top: 50%;
    left: 50%;
    background: white;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}

.messageBox .content
{
    margin: 10px;
    overflow: auto;
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    bottom: 50px;
}

.messageBox .actionPanel
{    
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

.messageBox .actionPanel button
{
    float: right;
}

.messageBox .titlePanel
{
    background: black;
    height: 35px;
    display:table;
    width: 100%;
    padding-left: 10px;
}

.messageBox .title
{
    color: white;
    display:table-cell;
    vertical-align:middle;
    font-weight: bold;
}

.messageBox .close {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 16px;
    width: 16px;
    cursor: pointer;
    background: url(../Includes/Images/delete_16.png);
    background-repeat: no-repeat;
}