
/**
 * jQuery Simple Dialog 
*/
.sd_container{
    font-family: arial,helvetica,sans-serif;
    margin:0;
    padding: 10px;
    position: absolute;
    background-color: #fff;
    border-top:5px solid #0dff0d;
    border-left:5px solid #0dff0d;
    border-bottom:5px solid #0dff0d;
    border-right:5px solid #0dff0d;
    text-align:center;
    width:900px;
    z-index:400;
}
.sd_header{
    font-size: 125%;
    font-weight:bold;
    margin-bottom: 10px;
}
.sd_content{}
.sd_footer{
    color: #a0a0a0;
    margin-top: 10px;
}
.sd_overlay{
    position: absolute;
    margin:0;
    padding: 0;
    top: 0;
    left: 0;
    background-color: #222;
    z-index:410;
}
.sd_loading{
    background: url('../images/indicator.gif') center no-repeat;
    background-color: #fff;
    height: 60px;
    width: 60px;
}
.sd_closelabel{
    position:absolute;
    width:50px;
    height:22px;
    line-height:22px;
    top:0;
    left:0;
    padding:5px;
    text-align:center;
    background-color:#ccc;
    z-index:410;
}
.sd_closelabel a {
    text-decoration:none;
    color: #222;
    font-size: 12px;
    font-weight:bold;
    z-index:420;
}

