/*
modal window
*/
select{
    background-color: white;
    border-radius: 5px;
    border: 1px solid #c6c7c7;
}

.winBlock {
    position: fixed;
    border: none;
/*    overflow: hidden;*/
    display: none;
    background: rgba(117, 135, 161, .5);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    overflow: auto;
}
#signIn, #recPwdWin, #regUsrWin, #recPwdByCodeWin{
    width:350px;
    height:350px;
    z-index: 1100;
    display: none;
    position: relative;
    margin: 0 auto;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #a1a1a1;
    box-shadow: 0 0 10px #a6bfe3;
}
#recPwdUsr{
    margin: 5px 0px 0px 70px;
}
#authUsrInput, #regUsrInput, #recUsrPwd, #recUsrPwdByCode {
    padding: 10px 10px 10px 10px;
    border-top: 1px solid #2b589b;
}
.inputs{
    margin: 10px 0px 20px 23px;
    padding:0px;
    position: relative;
    display: block;
    width: 295px;
    height: 26px;
    border-radius: 5px;
    border: 1px solid #c6c7c7;
}
.inputs:hover{
    cursor: text;
    border-radius: 5px;
    border: 1px solid #a6bfe3;
    box-shadow: 0 0 10px #1b4e9b;
}

.inputs:focus{
    border-radius: 5px;
    border: 1px solid #a6bfe3;
    box-shadow: 0 0 10px #1b4e9b;
}
.buttons{
    position: relative;
    display: block;
    margin: 10px;
    width: 140px;
    height: 32px;
    border: 1px solid #c6c7c7;
    border-radius: 5px;
    color: white;
    font-weight: 500;
}
.negativeButtons{
    background: -moz-linear-gradient(bottom, #bebfbf  10%,#d2d4d4 50%);
    background: -o-linear-gradient(bottom, #bebfbf  10%,#d2d4d4 50%);
    background: -webkit-linear-gradient(bottom, #bebfbf 10%,#d2d4d4 50%);
    background: linear-gradient(bottom, #bebfbf 10%, #d2d4d4 50%);
    background: -ms-linear-gradient(bottom, #bebfbf 10%, #d2d4d4 50%);
}
.negativeButtons:hover{
    cursor: pointer;
    background: #7f8080;
    background: -moz-linear-gradient(bottom, #a4a6a6  10%,#bebfbf 50%);
    background: -o-linear-gradient(bottom, #a4a6a6  10%,#bebfbf 50%);
    background: -webkit-linear-gradient(bottom, #a4a6a6 10%,#bebfbf 50%);
    background: linear-gradient(bottom, #a4a6a6  10%, #bebfbf 50%);
    background: -ms-linear-gradient(bottom, #a4a6a6  10%, #bebfbf 50%);
}
.positiveButtons{
    background: -moz-linear-gradient(bottom, #5f90d9  10%,#86a7d9 50%);
    background: -o-linear-gradient(bottom, #5f90d9  10%,#86a7d9 50%);
    background: -webkit-linear-gradient(bottom, #5f90d9 10%,#86a7d9 50%);
    background: linear-gradient(bottom, #d5f90d9  10%, #86a7d9 50%);
    background: -ms-linear-gradient(bottom, #5f90d9  10%,#86a7d9 50%);

}
.positiveButtons:hover{
    cursor: pointer;
    background: -moz-linear-gradient(bottom, #3c75c9  10%,#5f90d9 50%);
    background: -o-linear-gradient(bottom, #3c75c9 10%,#5f90d9 50%);
    background: -webkit-linear-gradient(bottom, #3c75c9 10%,#5f90d9 50%);
    background: linear-gradient(bottom, #3c75c9  10%,#5f90d9 50%);
    background: -o-linear-gradient(bottom, #3c75c9 10%,#5f90d9 50%);
}
#btn_recPwd,#btn_regUsr,#btn_sign,#btn_recPwdCode,#btn_sign_cancel, #btn_regUsr_cancel, #btn_recPwd_cancel, #btn_recPwdCode_cancel{
    margin: 0 auto;
    margin-top: 10px;
}
h3 {
    display: inline-block;
    padding: 0px 30px 0px 15px;
    margin: 10px  0px 8px 15px;
    color: #1b4e9b;
}
.lnk{
    color: black;
    margin: 20px 0px 0px 70px;
}
.lnk:hover{
    cursor: pointer;
    color: #2b589b;
}
#regUsrWin{
    height: 495px;
}
.divRegApply{
    padding: 7px;
    margin-top: 15px;
    border-radius: 5px;
    border: 1px solid #a1a1a1;
    font-size: 12px;
    text-align: justify;
}
#applyReg{
    margin: 0;
    padding: 0;
    margin-right: 15px;
    display: inline;
    position: relative;
    z-index: 901;
}

/*
end modal window
*/