/* PopUp aka Modal */
#pop-box{
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0,0,0,.6);
    display: none;
    left: 0;
    position: absolute;
    top: 0;
    z-index: 9999;
}
#pop-box .popup{
    width: 430px;
    padding: 28px 62px;
    border: 3px solid #084d9a;
    z-index: 1000;
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    display: none;
    font-size: 12px;
}
#pop-box .pop-close{
    position: absolute;
    top:20px;
    right: 20px;
    cursor: pointer;
    background: url("images/btn_close.gif") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    display: block;
    height: 14px;
    width: 14px;
    color: #0079C2;
}
.popup input, .popup textarea{
    width: 298px;
    border: 1px solid #959597;
    padding: 1px 0;
    margin: 5px 0;
    font: normal 12px Arial;
}
.popup h3{
    font-size: 16px;
    text-transform: uppercase;
}
/* end PopUp */
.popup textarea{
    resize: none;
}
