﻿.shadeBox {
    width:100%; 
    height:100%; 
    background-color:#000; 
    filter:alpha(opacity=20); 
    -moz-opacity:0.2; 
    opacity:0.2; 
    z-index:999; 
    position:absolute; 
    left:0px; 
    top:0px;        
}
.dlgBox {
    width:300px;
    height:120px;
    /*padding:5px;*/
    background-color:#e3f2f7;
    border:1px #8ec6bd double;
    position:absolute;
    z-index:1000;
    left:0px;
    top:0px;        
}
.dlgBox div.info {
    width:100%;
    height:80px;
    background:#FFF;
    color:#000;
    font-size:12px;
}
.dlgBox div.btn {
    width:100%;
    height:40px;
    text-align:center;
}
.dlgBox div.btn input[type=button] {
    width:70px;
    height:30px;
    line-height:30px;
    margin-top:5px;
    background:#d8f3f4; 
    border:1px #9cdae1 double;
    color:#57a2aa; 
    text-align:center;
    cursor:pointer;
    vertical-align:middle;
    font-size:14px;
}
.dlgBox div.btn input[type=button]:hover {
    background:#effeff;
}