/* POPUP BLOCK */
.dWinpop {
    position: absolute;
    z-index:99999;
    top:400px;
    left:300px;
}
.pSub {
    background: rgba(0,0,0,.3);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99990;
    top:0;
    left:0;
}
.dCont {
    background: rgba(160,160,160,.2);
    padding:5px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 0 10px -1px rgba(0,0,0,.5);
    -moz-box-shadow: 0 0 10px -1px rgba(0,0,0,.5);
    -o-box-shadow: 0 0 10px -1px rgba(0,0,0,.5);
    box-shadow: 0 0 10px -1px rgba(0,0,0,.5);
}
.cWrap {
    background: #fff;
    overflow: hidden;
    position: relative;
}
.cWrap .title {
    padding: 9px 10px 7px 10px;
    margin: 0;
    
    border-bottom:1px solid #5AABCE;
    
    color:#fff;
    text-transform: uppercase;
    text-shadow: 0 -1px 0 rgba(0,0,0,.4);
    
    background: #00A0DE; /* Old browsers */
    background: -moz-linear-gradient(top,  #00A0DE 0%, #0494D3 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00A0DE), color-stop(100%,#0494D3)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #00A0DE 0%,#0494D3 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #00A0DE 0%,#0494D3 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #00A0DE 0%,#0494D3 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #00A0DE 0%,#0494D3 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00A0DE', endColorstr='#0494D3',GradientType=0 ); /* IE6-9 */
   
    font-size:1.2em;
    font-weight: normal;
    
}
.cWrap span.closer {
    font-weight: bold;
    font-family: Trebuchet MS;
    text-transform:lowercase;
    position: absolute;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    width:13px;
    height:13px;
    display: block;
    position: absolute;
    top:4px;
    right:4px;
    text-align: center;
    color:#fff;
    line-height: 13px;
    font-size:9px;
    cursor: pointer;
    z-index: 3;
    background: url('../images/close_window_bold_red.gif') no-repeat 0 0 ;
}
.cWrap.notitle {
    padding-top: 6px;
}
.cWrap.notitle span.closer {
    color:#e36627;
}
.cBWrap {
    min-width: 150px;
    padding: 5px 10px 10px 10px;
}
.blured {
    filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=5);
    -webkit-filter: blur(5px);
}