div.msgBox
{
    padding: 35px 40px 40px;
    position: fixed;
    z-index: 1000;
    width: 500px;
    min-height:160px;
    border-radius: 0px;
    background-color: rgb(255, 255, 255);
}
div.msgBoxBackGround
{
    top:0;
    left:0;
    position:absolute;
    padding:0;
    margin:0;
    width:100%;
    height:100%;
    opacity:0.7;
    z-index:999;
    filter:  alpha(opacity=50);
    /*position: fixed;*/
    zoom: 1;
    background-color: rgb(0, 0, 0);
}
div.msgBoxTitle
{
    font-size: 23px;
    font-weight: 700;
    text-align: center;
    color: #41484e;
    text-transform: uppercase;
    margin-bottom: 30px;
}

div.msgBoxContainer {
    background-color: #eff0f1;
    border-radius: 5px;
    padding: 25px 20px;
}
div.msgBoxContainer:before,
div.msgBoxContainer:after {
    content: " ";
    display: table;
}

div.msgBoxContainer:after {
    clear: both;
}

div.msgBoxImage
{
    display:inline-block;
    float:left;
    margin-right: 15px;
}
div.msgBoxContent
{
    display:inline-block;
    float:left;
    width:250px;
}

div.msgBoxButtons
{
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
div.msgBoxButtons input[type='button']
{
    background-color: #f9794c;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    padding: 11px 15px;
    text-transform: uppercase;
    min-width: 120px;
}
div.msgBoxButtons input[type='button'] + input[type='button']
{
    margin-left: 5px;
}
div.msgBoxButtons input[type='button']:first-child
{
    background-color: #a0a6ab;
}
div.msgBoxButtons input[type='button']:last-child
{
    background-color: #f9794c;
}

.msgBox span.closePopUp {
    background: url(../images/close.png);
    width: 30px;
    height: 30px;
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
}

a.msgBoxButtons
{
    background-color: #f9794c;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    padding: 11px 15px;
    min-width: 120px;
}