div.msgBox {
    padding: 0px 20px 20px;
    position: fixed;
    font-family: OpenSansRegular, "Nimbus Sans L", sans-serif;
    background-color: #FFF;
    border: 1px solid #CDCDCD;
    color: #4C4C4C;
    z-index: 1000;
    border-radius: 3px;
}

div.msgBoxBackGround {
    top: 0;
    left: 0;
    position: absolute;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.9;
    z-index: 999;
}

div.msgBoxTitle {
    background: #fff;
    border-bottom: 2px solid #95d414;
    color: #4C4C4C;
    font-family: OpenSansSemiBold, "Nimbus Sans L", sans-serif;
    font-size: 16px;
    text-align: left;
    line-height: 40px;
    display: inline-block;
    width: 100%;
}

div.msgBoxImage {
    display: none;
}

div.msgBoxImageAlert {
    background-image: url('../../images/corelib/msgbox/alert.png');
}

div.msgBoxImageConfirm {
    background-image: url('../../images/corelib/msgbox/confirm.png');
}

div.msgBoxImageError {
    background-image: url('../../images/corelib/msgbox/error.png');
}

div.msgBoxImageInfo {
    background-image: url('../../images/corelib/msgbox/info.png');
}

div.msgBoxContent {
    font-size: 11pt;
    margin: 10px 3px 10px 3px;
    display: inline-block;
    float: left;
    overflow: auto;
}

div.msgBoxContent p {
    padding: 0;
    margin: 0;
    display: table;
    height: 100%;
    width: 100%;
}

div.msgBoxContent span {
    display: table-cell;
    vertical-align: middle;
    color: #4C4C4C;
}

div.msgBoxButtons {
    display: inline-block;
    width: 100%;
    text-align: right;
}

div.msgBoxButtons input[type='button'] {
    cursor: pointer;
    margin: 2px;
    height: 35px;
    min-width: 70px;
    background: #4bba53;
    color: #fff;
    border: none;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

div.msgBoxButtons input[type='button']:hover {
    background:#238441;
    color: #fdfdfd;
}

div.msgBoxButtons input[type='button']:active {
    background: #007f42;
    color: #fff;
}

div.msgBoxInputs {
    margin: 0 auto;
    padding-top: 2px;
    padding-bottom: 2px;
    margin-top: 5px;
    width: 195px;
}

div.msgInput input[type='text'], div.msgInput input[type='password'] {
    padding: 4px;
    border: 1px solid #CDCDCD;
    color: #4C4C4C;
    width: 180px;
}

div.msgInput text {
    color: #2f2f2f;
    font-size: 10pt;
}

.agree-cert-msg {
    margin-left: 10px;
    margin-top: 15px;
}