﻿div.msgBox{
    padding: 4px 10px 4px 10px;
    position: fixed;
    z-index: 1000;
    font-family: Helvetica, Arial, sans-serif;
    width: 430px;
    min-height: 160px;
    color: #333;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    background: #fff;
    border: solid 2px #ccc;
}
div.msgBoxBackGround{
    top:0;
    left:0;
    position:absolute;
    padding:0;
    margin:0;
    width:100%;
    height:100%;
    background:#333;
    opacity:0.9;
    z-index:999;
}
div.msgBoxTitle{
    padding: 5px 0 5px 0;
    font-size: 16px;
    color: #333;
    width: 100%;
    border-bottom: 1px solid #333;
}
div.msgBoxImage{
    margin:20px 5px 0 5px;
    display:inline-block;
    float:left;
    height:75px;
    width:75px;
}
div.msgBoxImage img{
    height:75px;
    width:75px;
}
div.msgBoxContent{
    font-size:13px;
    margin:0 3px 6px 3px;
    display:inline-block;
    float:left;
    height:90px;
    width:319px;
}
div.msgBoxContent p{
    padding:0;
    margin:0;
    display: table;
    height: 100%;
    width: 100%;
}

div.msgBoxContent span{
    display: table-cell;
    vertical-align: middle;
    color: #333;
}

div.msgBoxButtons{
    display:inline-block;
    width:100%;
    text-align:right;
}
div.msgBoxButtons input[type='button']{
    cursor:pointer;
    margin:2px;
    height:35px;
    width:90px;
    background:#29475f;
    color:#FFFFFF;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}
div.msgBoxButtons input[type='button']:hover{
    background-color:#2576b7;
    color: white;
}
div.msgBoxButtons input[type='button']:active{
    color: white;
}
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 #e8e8e8;
    color:#333;
    width:180px;
}
div.msgInput text{
    color:#333;
    font-size:13px;
}